Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | |
Artem Bityutskiy | cc8f9b9 | 2011-07-22 10:55:50 +0300 | [diff] [blame] | 2 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | List of maintainers and how to submit kernel changes |
| 4 | |
| 5 | Please try to follow the guidelines below. This will make things |
| 6 | easier on the maintainers. Not all of these guidelines matter for every |
| 7 | trivial patch so apply some common sense. |
| 8 | |
| 9 | 1. Always _test_ your changes, however small, on at least 4 or |
| 10 | 5 people, preferably many more. |
| 11 | |
| 12 | 2. 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 | |
| 20 | 3. 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 | |
| 24 | 4. When you are happy with a change make it generally available for |
| 25 | testing and await feedback. |
| 26 | |
| 27 | 5. 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 Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 34 | generalized kernel feature ready for next time. |
| 35 | |
| 36 | PLEASE check your patch with the automated style checker |
Akash Shende | 6f9e245 | 2015-02-16 15:59:48 -0800 | [diff] [blame] | 37 | (scripts/checkpatch.pl) to catch trivial style violations. |
Mauro Carvalho Chehab | 8c27ceff3 | 2016-10-18 10:12:27 -0200 | [diff] [blame] | 38 | See Documentation/process/coding-style.rst for guidance here. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Joe Perches | f70f873 | 2009-06-16 15:34:08 -0700 | [diff] [blame] | 40 | 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. |
Mauro Carvalho Chehab | 8c27ceff3 | 2016-10-18 10:12:27 -0200 | [diff] [blame] | 44 | See Documentation/process/submitting-patches.rst for details. |
Joe Perches | f70f873 | 2009-06-16 15:34:08 -0700 | [diff] [blame] | 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | 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 Cox | c9ee133 | 2006-05-20 15:00:12 -0700 | [diff] [blame] | 53 | PLEASE remember that submissions must be made under the terms |
Stephen Hemminger | 08602d7 | 2015-06-03 13:32:02 -0700 | [diff] [blame] | 54 | of the Linux Foundation certificate of contribution and should |
| 55 | include a Signed-off-by: line. The current version of this |
| 56 | "Developer's Certificate of Origin" (DCO) is listed in the file |
Mauro Carvalho Chehab | 8c27ceff3 | 2016-10-18 10:12:27 -0200 | [diff] [blame] | 57 | Documentation/process/submitting-patches.rst. |
Alan Cox | c9ee133 | 2006-05-20 15:00:12 -0700 | [diff] [blame] | 58 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | 6. 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 Cox | c9ee133 | 2006-05-20 15:00:12 -0700 | [diff] [blame] | 63 | 7. 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 | |
| 67 | 8. Happy hacking. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
Joe Perches | c7c4fb1 | 2009-10-26 16:49:48 -0700 | [diff] [blame] | 69 | Descriptions of section entries: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
Joe Perches | c7c4fb1 | 2009-10-26 16:49:48 -0700 | [diff] [blame] | 71 | P: Person (obsolete) |
| 72 | M: Mail patches to: FullName <address@domain> |
Paul E. McKenney | eafbaac | 2014-06-02 09:06:37 -0700 | [diff] [blame] | 73 | R: Designated reviewer: FullName <address@domain> |
| 74 | These reviewers should be CCed on patches. |
Joe Perches | c7c4fb1 | 2009-10-26 16:49:48 -0700 | [diff] [blame] | 75 | L: Mailing list that is relevant to this area |
| 76 | W: Web-page with status/info |
Jani Nikula | 2de2bd9 | 2016-12-12 16:46:02 -0800 | [diff] [blame] | 77 | B: URI for where to file bugs. A web-page with detailed bug |
| 78 | filing info, a direct bug tracker link, or a mailto: URI. |
Jani Nikula | 57599f9 | 2016-12-12 16:46:08 -0800 | [diff] [blame] | 79 | C: URI for chat protocol, server and channel where developers |
| 80 | usually hang out, for example irc://server/channel. |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 81 | Q: Patchwork web based patch tracking system site |
Joe Perches | cea8321 | 2014-03-03 15:38:38 -0800 | [diff] [blame] | 82 | T: SCM tree type and location. |
| 83 | Type is one of: git, hg, quilt, stgit, topgit |
Joe Perches | c7c4fb1 | 2009-10-26 16:49:48 -0700 | [diff] [blame] | 84 | S: Status, one of the following: |
| 85 | Supported: Someone is actually paid to look after this. |
| 86 | Maintained: Someone actually looks after it. |
| 87 | Odd Fixes: It has a maintainer but they don't have time to do |
| 88 | much other than throw the odd patch in. See below.. |
| 89 | Orphan: No current maintainer [but maybe you could take the |
| 90 | role as you write your new code]. |
| 91 | Obsolete: Old code. Something tagged obsolete generally means |
| 92 | it has been replaced by a better system and you |
| 93 | should be using that. |
| 94 | F: Files and directories with wildcard patterns. |
| 95 | A trailing slash includes all files and subdirectory files. |
| 96 | F: drivers/net/ all files in and below drivers/net |
| 97 | F: drivers/net/* all files in drivers/net, but not below |
| 98 | F: */net/* all files in "any top level directory"/net |
| 99 | One pattern per line. Multiple F: lines acceptable. |
Stephen Warren | bbbe96e | 2013-04-29 16:17:23 -0700 | [diff] [blame] | 100 | N: Files and directories with regex patterns. |
| 101 | N: [^a-z]tegra all files whose path contains the word tegra |
| 102 | One pattern per line. Multiple N: lines acceptable. |
Joe Perches | 6ab88e0 | 2014-01-23 15:54:22 -0800 | [diff] [blame] | 103 | scripts/get_maintainer.pl has different behavior for files that |
| 104 | match F: pattern and matches of N: patterns. By default, |
| 105 | get_maintainer will not look at git log history when an F: pattern |
| 106 | match occurs. When an N: match occurs, git log history is used |
| 107 | to also notify the people that have git commit signatures. |
Joe Perches | c7c4fb1 | 2009-10-26 16:49:48 -0700 | [diff] [blame] | 108 | X: Files and directories that are NOT maintained, same rules as F: |
| 109 | Files exclusions are tested before file matches. |
| 110 | Can be useful for excluding a specific subdirectory, for instance: |
| 111 | F: net/ |
| 112 | X: net/ipv6/ |
| 113 | matches all files in and below net excluding net/ipv6/ |
| 114 | K: Keyword perl extended regex pattern to match content in a |
Stephen Warren | bbbe96e | 2013-04-29 16:17:23 -0700 | [diff] [blame] | 115 | patch or file. For instance: |
Joe Perches | c7c4fb1 | 2009-10-26 16:49:48 -0700 | [diff] [blame] | 116 | K: of_get_profile |
Stephen Warren | bbbe96e | 2013-04-29 16:17:23 -0700 | [diff] [blame] | 117 | matches patches or files that contain "of_get_profile" |
Joe Perches | c7c4fb1 | 2009-10-26 16:49:48 -0700 | [diff] [blame] | 118 | K: \b(printk|pr_(info|err))\b |
Stephen Warren | bbbe96e | 2013-04-29 16:17:23 -0700 | [diff] [blame] | 119 | matches patches or files that contain one or more of the words |
| 120 | printk, pr_info or pr_err |
Joe Perches | c7c4fb1 | 2009-10-26 16:49:48 -0700 | [diff] [blame] | 121 | One regex pattern per line. Multiple K: lines acceptable. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
| 123 | Note: For the hard of thinking, this list is meant to remain in alphabetical |
| 124 | order. If you could add yourselves to it in alphabetical order that would be |
| 125 | so much easier [Ed] |
| 126 | |
Joe Perches | c7c4fb1 | 2009-10-26 16:49:48 -0700 | [diff] [blame] | 127 | Maintainers List (try to look for most precise areas first) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
Joe Perches | c7c4fb1 | 2009-10-26 16:49:48 -0700 | [diff] [blame] | 129 | ----------------------------------- |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 130 | |
Steffen Klassert | a6d8991 | 2007-08-10 14:05:27 -0700 | [diff] [blame] | 131 | 3C59X NETWORK DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 132 | M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de> |
Steffen Klassert | a6d8991 | 2007-08-10 14:05:27 -0700 | [diff] [blame] | 133 | L: netdev@vger.kernel.org |
| 134 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 135 | F: Documentation/networking/vortex.txt |
Jeff Kirsher | ca7a8e8 | 2011-03-30 03:47:06 -0700 | [diff] [blame] | 136 | F: drivers/net/ethernet/3com/3c59x.c |
Steffen Klassert | a6d8991 | 2007-08-10 14:05:27 -0700 | [diff] [blame] | 137 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | 3CR990 NETWORK DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 139 | M: David Dillow <dave@thedillows.org> |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 140 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | S: Maintained |
Jeff Kirsher | ca7a8e8 | 2011-03-30 03:47:06 -0700 | [diff] [blame] | 142 | F: drivers/net/ethernet/3com/typhoon* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | |
adam radford | c4de0ce | 2010-03-08 12:40:36 -0800 | [diff] [blame] | 144 | 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) |
adam radford | 2c9bce5 | 2016-12-09 11:08:05 -0800 | [diff] [blame] | 145 | M: Adam Radford <aradford@gmail.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | L: linux-scsi@vger.kernel.org |
adam radford | c4de0ce | 2010-03-08 12:40:36 -0800 | [diff] [blame] | 147 | W: http://www.lsi.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | S: Supported |
adam radford | c4de0ce | 2010-03-08 12:40:36 -0800 | [diff] [blame] | 149 | F: drivers/scsi/3w-* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | |
| 151 | 53C700 AND 53C700-66 SCSI DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 152 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | L: linux-scsi@vger.kernel.org |
| 154 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 155 | F: drivers/scsi/53c700* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
Alexander Aring | 68d96dc | 2014-07-11 10:24:19 +0200 | [diff] [blame] | 157 | 6LOWPAN GENERIC (BTLE/IEEE 802.15.4) |
Alexander Aring | aff3eaa | 2016-02-19 09:59:10 +0100 | [diff] [blame] | 158 | M: Alexander Aring <aar@pengutronix.de> |
Jukka Rissanen | 6970c34 | 2014-09-15 11:03:36 +0300 | [diff] [blame] | 159 | M: Jukka Rissanen <jukka.rissanen@linux.intel.com> |
Alexander Aring | 68d96dc | 2014-07-11 10:24:19 +0200 | [diff] [blame] | 160 | L: linux-bluetooth@vger.kernel.org |
Varka Bhadram | ebef9c1 | 2014-08-08 17:32:45 +0530 | [diff] [blame] | 161 | L: linux-wpan@vger.kernel.org |
Alexander Aring | 68d96dc | 2014-07-11 10:24:19 +0200 | [diff] [blame] | 162 | S: Maintained |
| 163 | F: net/6lowpan/ |
Alexander Aring | 6304f8f | 2014-07-28 15:16:30 +0200 | [diff] [blame] | 164 | F: include/net/6lowpan.h |
Alexander Aring | ea9eb69 | 2015-08-11 21:44:10 +0200 | [diff] [blame] | 165 | F: Documentation/networking/6lowpan.txt |
Alexander Aring | 68d96dc | 2014-07-11 10:24:19 +0200 | [diff] [blame] | 166 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | 6PACK NETWORK DRIVER FOR AX.25 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 168 | M: Andreas Koensgen <ajk@comnets.uni-bremen.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | L: linux-hams@vger.kernel.org |
| 170 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 171 | F: drivers/net/hamradio/6pack.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
Francois Romieu | c8a75b3 | 2011-04-17 17:46:40 -0700 | [diff] [blame] | 174 | M: Realtek linux nic maintainers <nic_swsd@realtek.com> |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 175 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | S: Maintained |
Jeff Kirsher | a8fe65b | 2011-05-19 23:27:55 -0700 | [diff] [blame] | 177 | F: drivers/net/ethernet/realtek/r8169.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
| 179 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 180 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | L: linux-serial@vger.kernel.org |
Greg Kroah-Hartman | 8ee16a1 | 2010-10-06 13:29:44 -0700 | [diff] [blame] | 182 | S: Maintained |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 183 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 184 | F: drivers/tty/serial/8250* |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 185 | F: include/linux/serial_8250.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
| 187 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 188 | L: netdev@vger.kernel.org |
Paul Gortmaker | 0cf445c | 2011-01-01 13:28:30 +0000 | [diff] [blame] | 189 | S: Orphan / Obsolete |
Jeff Kirsher | 644570b | 2011-04-02 06:20:12 -0700 | [diff] [blame] | 190 | F: drivers/net/ethernet/8390/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | |
Eric Van Hensbergen | 67543e5 | 2006-03-25 03:07:29 -0800 | [diff] [blame] | 192 | 9P FILE SYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 193 | M: Eric Van Hensbergen <ericvh@gmail.com> |
| 194 | M: Ron Minnich <rminnich@sandia.gov> |
| 195 | M: Latchesar Ionkov <lucho@ionkov.net> |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 196 | L: v9fs-developer@lists.sourceforge.net |
Eric Van Hensbergen | 27a2a5f | 2007-07-23 13:06:13 -0500 | [diff] [blame] | 197 | W: http://swik.net/v9fs |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 198 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
Joe Perches | eeba444 | 2009-11-11 14:26:44 -0800 | [diff] [blame] | 199 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 200 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 201 | F: Documentation/filesystems/9p.txt |
| 202 | F: fs/9p/ |
Rob Landley | 2315cb1 | 2013-05-28 13:47:58 -0500 | [diff] [blame] | 203 | F: net/9p/ |
| 204 | F: include/net/9p/ |
| 205 | F: include/uapi/linux/virtio_9p.h |
| 206 | F: include/trace/events/9p.h |
| 207 | |
Eric Van Hensbergen | 67543e5 | 2006-03-25 03:07:29 -0800 | [diff] [blame] | 208 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 209 | A8293 MEDIA DRIVER |
| 210 | M: Antti Palosaari <crope@iki.fi> |
| 211 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 212 | W: https://linuxtv.org |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 213 | W: http://palosaari.fi/linux/ |
| 214 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 215 | T: git git://linuxtv.org/anttip/media_tree.git |
| 216 | S: Maintained |
| 217 | F: drivers/media/dvb-frontends/a8293* |
| 218 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 219 | AACRAID SCSI RAID DRIVER |
Dave Carroll | 2a81ffd | 2016-06-15 11:27:17 -0600 | [diff] [blame] | 220 | M: Adaptec OEM Raid Solutions <aacraid@microsemi.com> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 221 | L: linux-scsi@vger.kernel.org |
| 222 | W: http://www.adaptec.com/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 224 | F: Documentation/scsi/aacraid.txt |
| 225 | F: drivers/scsi/aacraid/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
Josh Triplett | ea8f8fc | 2014-06-06 14:38:27 -0700 | [diff] [blame] | 227 | ABI/API |
| 228 | L: linux-api@vger.kernel.org |
Josh Triplett | ea8f8fc | 2014-06-06 14:38:27 -0700 | [diff] [blame] | 229 | F: include/linux/syscalls.h |
Josh Triplett | ea8f8fc | 2014-06-06 14:38:27 -0700 | [diff] [blame] | 230 | F: kernel/sys_ni.c |
| 231 | |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 232 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
Hans de Goede | 93d0cc5 | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 233 | M: Hans de Goede <hdegoede@redhat.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 234 | L: linux-hwmon@vger.kernel.org |
Hans de Goede | f2b84bb | 2006-06-04 20:22:24 +0200 | [diff] [blame] | 235 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 236 | F: drivers/hwmon/abituguru.c |
Hans de Goede | f2b84bb | 2006-06-04 20:22:24 +0200 | [diff] [blame] | 237 | |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 238 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 239 | M: Alistair John Strachan <alistair@devzero.co.uk> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 240 | L: linux-hwmon@vger.kernel.org |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 241 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 242 | F: drivers/hwmon/abituguru3.c |
Alistair John Strachan | 249e3c8 | 2008-08-15 00:40:37 -0700 | [diff] [blame] | 243 | |
William Breathitt Gray | 1b06d64 | 2016-01-20 13:50:11 -0500 | [diff] [blame] | 244 | ACCES 104-DIO-48E GPIO DRIVER |
| 245 | M: William Breathitt Gray <vilhelm.gray@gmail.com> |
| 246 | L: linux-gpio@vger.kernel.org |
| 247 | S: Maintained |
| 248 | F: drivers/gpio/gpio-104-dio-48e.c |
| 249 | |
William Breathitt Gray | 6ddcf9b | 2015-11-23 12:54:50 -0500 | [diff] [blame] | 250 | ACCES 104-IDI-48 GPIO DRIVER |
| 251 | M: "William Breathitt Gray" <vilhelm.gray@gmail.com> |
| 252 | L: linux-gpio@vger.kernel.org |
| 253 | S: Maintained |
| 254 | F: drivers/gpio/gpio-104-idi-48.c |
| 255 | |
William Breathitt Gray | e255898 | 2015-10-28 17:24:16 -0400 | [diff] [blame] | 256 | ACCES 104-IDIO-16 GPIO DRIVER |
| 257 | M: "William Breathitt Gray" <vilhelm.gray@gmail.com> |
| 258 | L: linux-gpio@vger.kernel.org |
| 259 | S: Maintained |
| 260 | F: drivers/gpio/gpio-104-idio-16.c |
| 261 | |
William Breathitt Gray | 28e5d3b | 2016-09-28 14:00:01 -0400 | [diff] [blame] | 262 | ACCES 104-QUAD-8 IIO DRIVER |
| 263 | M: William Breathitt Gray <vilhelm.gray@gmail.com> |
| 264 | L: linux-iio@vger.kernel.org |
| 265 | S: Maintained |
| 266 | F: drivers/iio/counter/104-quad-8.c |
| 267 | |
William Breathitt Gray | 02e74fc | 2017-02-01 15:37:55 -0500 | [diff] [blame] | 268 | ACCES PCI-IDIO-16 GPIO DRIVER |
| 269 | M: William Breathitt Gray <vilhelm.gray@gmail.com> |
| 270 | L: linux-gpio@vger.kernel.org |
| 271 | S: Maintained |
| 272 | F: drivers/gpio/gpio-pci-idio-16.c |
| 273 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | ACENIC DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 275 | M: Jes Sorensen <jes@trained-monkey.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | L: linux-acenic@sunsite.dk |
| 277 | S: Maintained |
Jeff Kirsher | 531c4f8 | 2011-08-13 00:37:14 -0700 | [diff] [blame] | 278 | F: drivers/net/ethernet/alteon/acenic* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | |
Peter Feuerer | e86435e | 2009-06-21 18:53:03 +0200 | [diff] [blame] | 280 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 281 | M: Peter Feuerer <peter@piie.net> |
Matthew Garrett | d0944853 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 282 | L: platform-driver-x86@vger.kernel.org |
Joe Perches | 4fc26e3 | 2009-07-29 15:04:22 -0700 | [diff] [blame] | 283 | W: http://piie.net/?section=acerhdf |
| 284 | S: Maintained |
| 285 | F: drivers/platform/x86/acerhdf.c |
Peter Feuerer | e86435e | 2009-06-21 18:53:03 +0200 | [diff] [blame] | 286 | |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 287 | ACER WMI LAPTOP EXTRAS |
Lee, Chun-Yi | 182ae55 | 2012-12-14 16:14:24 +0800 | [diff] [blame] | 288 | M: "Lee, Chun-Yi" <jlee@suse.com> |
Matthew Garrett | d0944853 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 289 | L: platform-driver-x86@vger.kernel.org |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 290 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 291 | F: drivers/platform/x86/acer-wmi.c |
Carlos Corbacho | 745a5d2 | 2008-02-05 02:17:10 +0000 | [diff] [blame] | 292 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | ACPI |
Joe Perches | 9c3646d | 2015-06-25 15:02:00 -0700 | [diff] [blame] | 294 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
Rafael J. Wysocki | 7fb0608 | 2014-03-20 03:34:47 +0100 | [diff] [blame] | 295 | M: Len Brown <lenb@kernel.org> |
Len Brown | 6968e50 | 2005-12-30 00:32:49 -0500 | [diff] [blame] | 296 | L: linux-acpi@vger.kernel.org |
Rafael J. Wysocki | 360818b | 2013-10-09 01:48:26 +0200 | [diff] [blame] | 297 | W: https://01.org/linux-acpi |
| 298 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ |
| 299 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm |
Rafael J. Wysocki | 6865644 | 2016-11-25 00:13:56 +0100 | [diff] [blame] | 300 | B: https://bugzilla.kernel.org |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 301 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 302 | F: drivers/acpi/ |
| 303 | F: drivers/pnp/pnpacpi/ |
| 304 | F: include/linux/acpi.h |
Felipe Contreras | 43368e7 | 2009-09-21 17:04:24 -0700 | [diff] [blame] | 305 | F: include/acpi/ |
Yaowei Bai | 3a75ef0 | 2015-01-17 15:31:07 +0800 | [diff] [blame] | 306 | F: Documentation/acpi/ |
Lv Zheng | 89ca78a | 2013-06-20 08:02:44 +0800 | [diff] [blame] | 307 | F: Documentation/ABI/testing/sysfs-bus-acpi |
Octavian Purdila | 0bf54fc | 2016-07-08 19:13:13 +0300 | [diff] [blame] | 308 | F: Documentation/ABI/testing/configfs-acpi |
Bjorn Helgaas | 15fd830 | 2013-06-26 13:38:37 -0600 | [diff] [blame] | 309 | F: drivers/pci/*acpi* |
| 310 | F: drivers/pci/*/*acpi* |
| 311 | F: drivers/pci/*/*/*acpi* |
Yaowei Bai | 3a75ef0 | 2015-01-17 15:31:07 +0800 | [diff] [blame] | 312 | F: tools/power/acpi/ |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 313 | |
Rafael J. Wysocki | 3774929 | 2013-10-09 01:48:35 +0200 | [diff] [blame] | 314 | ACPI COMPONENT ARCHITECTURE (ACPICA) |
| 315 | M: Robert Moore <robert.moore@intel.com> |
| 316 | M: Lv Zheng <lv.zheng@intel.com> |
Joe Perches | 9c3646d | 2015-06-25 15:02:00 -0700 | [diff] [blame] | 317 | M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> |
Rafael J. Wysocki | 3774929 | 2013-10-09 01:48:35 +0200 | [diff] [blame] | 318 | L: linux-acpi@vger.kernel.org |
| 319 | L: devel@acpica.org |
| 320 | W: https://acpica.org/ |
| 321 | W: https://github.com/acpica/acpica/ |
| 322 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ |
| 323 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm |
Rafael J. Wysocki | 6865644 | 2016-11-25 00:13:56 +0100 | [diff] [blame] | 324 | B: https://bugzilla.kernel.org |
| 325 | B: https://bugs.acpica.org |
Rafael J. Wysocki | 3774929 | 2013-10-09 01:48:35 +0200 | [diff] [blame] | 326 | S: Supported |
| 327 | F: drivers/acpi/acpica/ |
| 328 | F: include/acpi/ |
Lv Zheng | 2754c44 | 2014-01-15 12:04:24 +0800 | [diff] [blame] | 329 | F: tools/power/acpi/ |
Rafael J. Wysocki | 3774929 | 2013-10-09 01:48:35 +0200 | [diff] [blame] | 330 | |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 331 | ACPI FAN DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 332 | M: Zhang Rui <rui.zhang@intel.com> |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 333 | L: linux-acpi@vger.kernel.org |
Rafael J. Wysocki | 5ca92bd | 2013-10-10 23:03:44 +0200 | [diff] [blame] | 334 | W: https://01.org/linux-acpi |
Rafael J. Wysocki | 6865644 | 2016-11-25 00:13:56 +0100 | [diff] [blame] | 335 | B: https://bugzilla.kernel.org |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 336 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 337 | F: drivers/acpi/fan.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | |
Lorenzo Pieralisi | daeb201 | 2016-10-05 12:25:40 +0100 | [diff] [blame] | 339 | ACPI FOR ARM64 (ACPI/arm64) |
| 340 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
| 341 | M: Hanjun Guo <hanjun.guo@linaro.org> |
| 342 | M: Sudeep Holla <sudeep.holla@arm.com> |
| 343 | L: linux-acpi@vger.kernel.org |
| 344 | S: Maintained |
| 345 | F: drivers/acpi/arm64 |
| 346 | |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 347 | ACPI THERMAL DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 348 | M: Zhang Rui <rui.zhang@intel.com> |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 349 | L: linux-acpi@vger.kernel.org |
Rafael J. Wysocki | 5ca92bd | 2013-10-10 23:03:44 +0200 | [diff] [blame] | 350 | W: https://01.org/linux-acpi |
Rafael J. Wysocki | 6865644 | 2016-11-25 00:13:56 +0100 | [diff] [blame] | 351 | B: https://bugzilla.kernel.org |
Len Brown | 8b59a45 | 2007-01-08 19:03:28 -0500 | [diff] [blame] | 352 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 353 | F: drivers/acpi/*thermal* |
Kristen Carlson Accardi | 998be20 | 2006-07-26 10:52:33 -0700 | [diff] [blame] | 354 | |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 355 | ACPI VIDEO DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 356 | M: Zhang Rui <rui.zhang@intel.com> |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 357 | L: linux-acpi@vger.kernel.org |
Rafael J. Wysocki | 5ca92bd | 2013-10-10 23:03:44 +0200 | [diff] [blame] | 358 | W: https://01.org/linux-acpi |
Rafael J. Wysocki | 6865644 | 2016-11-25 00:13:56 +0100 | [diff] [blame] | 359 | B: https://bugzilla.kernel.org |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 360 | S: Supported |
Dan Carpenter | 86f98a3 | 2015-12-01 11:58:40 +0300 | [diff] [blame] | 361 | F: drivers/acpi/acpi_video.c |
Len Brown | 359acec | 2007-02-10 01:59:24 -0500 | [diff] [blame] | 362 | |
Carlos Corbacho | bff431e | 2008-02-05 02:17:04 +0000 | [diff] [blame] | 363 | ACPI WMI DRIVER |
Matthew Garrett | d0944853 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 364 | L: platform-driver-x86@vger.kernel.org |
Carlos Corbacho | 5b92725 | 2011-05-02 09:57:13 +0100 | [diff] [blame] | 365 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 366 | F: drivers/platform/x86/wmi.c |
Carlos Corbacho | bff431e | 2008-02-05 02:17:04 +0000 | [diff] [blame] | 367 | |
Thibaut VARENE | 2f39d51 | 2008-02-20 21:05:56 +0100 | [diff] [blame] | 368 | AD1889 ALSA SOUND DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 369 | M: Thibaut Varene <T-Bone@parisc-linux.org> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 370 | W: http://wiki.parisc-linux.org/AD1889 |
| 371 | L: linux-parisc@vger.kernel.org |
| 372 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 373 | F: sound/pci/ad1889.* |
Thibaut VARENE | 2f39d51 | 2008-02-20 21:05:56 +0100 | [diff] [blame] | 374 | |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 375 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
| 376 | M: Michael Hennerich <michael.hennerich@analog.com> |
Joe Perches | a3f531a | 2011-03-22 16:34:28 -0700 | [diff] [blame] | 377 | W: http://wiki.analog.com/AD5254 |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 378 | W: http://ez.analog.com/community/linux-device-drivers |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 379 | S: Supported |
| 380 | F: drivers/misc/ad525x_dpot.c |
| 381 | |
| 382 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) |
| 383 | M: Michael Hennerich <michael.hennerich@analog.com> |
Joe Perches | a3f531a | 2011-03-22 16:34:28 -0700 | [diff] [blame] | 384 | W: http://wiki.analog.com/AD5398 |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 385 | W: http://ez.analog.com/community/linux-device-drivers |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 386 | S: Supported |
| 387 | F: drivers/regulator/ad5398.c |
| 388 | |
| 389 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) |
| 390 | M: Michael Hennerich <michael.hennerich@analog.com> |
Joe Perches | a3f531a | 2011-03-22 16:34:28 -0700 | [diff] [blame] | 391 | W: http://wiki.analog.com/AD7142 |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 392 | W: http://ez.analog.com/community/linux-device-drivers |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 393 | S: Supported |
| 394 | F: drivers/input/misc/ad714x.c |
| 395 | |
| 396 | AD7877 TOUCHSCREEN DRIVER |
| 397 | M: Michael Hennerich <michael.hennerich@analog.com> |
Joe Perches | a3f531a | 2011-03-22 16:34:28 -0700 | [diff] [blame] | 398 | W: http://wiki.analog.com/AD7877 |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 399 | W: http://ez.analog.com/community/linux-device-drivers |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 400 | S: Supported |
| 401 | F: drivers/input/touchscreen/ad7877.c |
| 402 | |
| 403 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) |
| 404 | M: Michael Hennerich <michael.hennerich@analog.com> |
Joe Perches | a3f531a | 2011-03-22 16:34:28 -0700 | [diff] [blame] | 405 | W: http://wiki.analog.com/AD7879 |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 406 | W: http://ez.analog.com/community/linux-device-drivers |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 407 | S: Supported |
| 408 | F: drivers/input/touchscreen/ad7879.c |
| 409 | |
Jiri Kosina | 1330b0d | 2011-10-31 17:11:41 -0700 | [diff] [blame] | 410 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
Jiri Kosina | e5f6450 | 2015-08-09 09:11:34 +0200 | [diff] [blame] | 411 | M: Jiri Kosina <jikos@kernel.org> |
Jiri Kosina | 1330b0d | 2011-10-31 17:11:41 -0700 | [diff] [blame] | 412 | S: Maintained |
| 413 | |
Michael Hennerich | 7302b9d | 2015-12-11 11:17:15 +0100 | [diff] [blame] | 414 | ADF7242 IEEE 802.15.4 RADIO DRIVER |
| 415 | M: Michael Hennerich <michael.hennerich@analog.com> |
| 416 | W: https://wiki.analog.com/ADF7242 |
| 417 | W: http://ez.analog.com/community/linux-device-drivers |
| 418 | L: linux-wpan@vger.kernel.org |
| 419 | S: Supported |
| 420 | F: drivers/net/ieee802154/adf7242.c |
| 421 | F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt |
| 422 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | ADM1025 HARDWARE MONITOR DRIVER |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 424 | M: Jean Delvare <jdelvare@suse.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 425 | L: linux-hwmon@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 427 | F: Documentation/hwmon/adm1025 |
| 428 | F: drivers/hwmon/adm1025.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | |
Corentin Labbe | cae2caa | 2007-02-14 21:15:04 +0100 | [diff] [blame] | 430 | ADM1029 HARDWARE MONITOR DRIVER |
LABBE Corentin | fce8ffa | 2014-05-08 16:07:45 +0200 | [diff] [blame] | 431 | M: Corentin Labbe <clabbe.montjoie@gmail.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 432 | L: linux-hwmon@vger.kernel.org |
Corentin Labbe | cae2caa | 2007-02-14 21:15:04 +0100 | [diff] [blame] | 433 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 434 | F: drivers/hwmon/adm1029.c |
Corentin Labbe | cae2caa | 2007-02-14 21:15:04 +0100 | [diff] [blame] | 435 | |
Michael Wu | cc0b88c | 2007-08-31 01:15:25 -0400 | [diff] [blame] | 436 | ADM8211 WIRELESS DRIVER |
Michael Wu | cc0b88c | 2007-08-31 01:15:25 -0400 | [diff] [blame] | 437 | L: linux-wireless@vger.kernel.org |
Johannes Berg | 491b26b | 2012-06-05 14:21:14 +0200 | [diff] [blame] | 438 | W: http://wireless.kernel.org/ |
John W. Linville | e71bcbd | 2010-07-12 16:03:07 -0400 | [diff] [blame] | 439 | S: Orphan |
Kalle Valo | d4a1730 | 2015-11-17 19:49:19 +0200 | [diff] [blame] | 440 | F: drivers/net/wireless/admtek/adm8211.* |
Michael Wu | cc0b88c | 2007-08-31 01:15:25 -0400 | [diff] [blame] | 441 | |
Sakari Ailus | e8e3162 | 2012-11-12 18:14:39 -0300 | [diff] [blame] | 442 | ADP1653 FLASH CONTROLLER DRIVER |
| 443 | M: Sakari Ailus <sakari.ailus@iki.fi> |
| 444 | L: linux-media@vger.kernel.org |
| 445 | S: Maintained |
| 446 | F: drivers/media/i2c/adp1653.c |
Mauro Carvalho Chehab | b5dcee2 | 2015-11-10 12:01:44 -0200 | [diff] [blame] | 447 | F: include/media/i2c/adp1653.h |
Sakari Ailus | e8e3162 | 2012-11-12 18:14:39 -0300 | [diff] [blame] | 448 | |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 449 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
| 450 | M: Michael Hennerich <michael.hennerich@analog.com> |
Joe Perches | a3f531a | 2011-03-22 16:34:28 -0700 | [diff] [blame] | 451 | W: http://wiki.analog.com/ADP5520 |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 452 | W: http://ez.analog.com/community/linux-device-drivers |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 453 | S: Supported |
| 454 | F: drivers/mfd/adp5520.c |
| 455 | F: drivers/video/backlight/adp5520_bl.c |
Joe Perches | 45b4e0d | 2011-03-22 16:34:27 -0700 | [diff] [blame] | 456 | F: drivers/leds/leds-adp5520.c |
Joe Perches | 77278d5 | 2012-01-10 15:08:44 -0800 | [diff] [blame] | 457 | F: drivers/gpio/gpio-adp5520.c |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 458 | F: drivers/input/keyboard/adp5520-keys.c |
| 459 | |
| 460 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) |
| 461 | M: Michael Hennerich <michael.hennerich@analog.com> |
Joe Perches | a3f531a | 2011-03-22 16:34:28 -0700 | [diff] [blame] | 462 | W: http://wiki.analog.com/ADP5588 |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 463 | W: http://ez.analog.com/community/linux-device-drivers |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 464 | S: Supported |
| 465 | F: drivers/input/keyboard/adp5588-keys.c |
Joe Perches | 77278d5 | 2012-01-10 15:08:44 -0800 | [diff] [blame] | 466 | F: drivers/gpio/gpio-adp5588.c |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 467 | |
| 468 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) |
| 469 | M: Michael Hennerich <michael.hennerich@analog.com> |
Joe Perches | a3f531a | 2011-03-22 16:34:28 -0700 | [diff] [blame] | 470 | W: http://wiki.analog.com/ADP8860 |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 471 | W: http://ez.analog.com/community/linux-device-drivers |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 472 | S: Supported |
| 473 | F: drivers/video/backlight/adp8860_bl.c |
| 474 | |
Dirk Eibach | 8c22a8f | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 475 | ADS1015 HARDWARE MONITOR DRIVER |
| 476 | M: Dirk Eibach <eibach@gdsys.de> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 477 | L: linux-hwmon@vger.kernel.org |
Dirk Eibach | 8c22a8f | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 478 | S: Maintained |
| 479 | F: Documentation/hwmon/ads1015 |
| 480 | F: drivers/hwmon/ads1015.c |
| 481 | F: include/linux/i2c/ads1015.h |
| 482 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | ADT746X FAN DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 484 | M: Colin Leroy <colin@colino.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 486 | F: drivers/macintosh/therm_adt746x.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | |
Jean Delvare | b058b85 | 2009-12-09 20:36:08 +0100 | [diff] [blame] | 488 | ADT7475 HARDWARE MONITOR DRIVER |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 489 | M: Jean Delvare <jdelvare@suse.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 490 | L: linux-hwmon@vger.kernel.org |
Jean Delvare | b058b85 | 2009-12-09 20:36:08 +0100 | [diff] [blame] | 491 | S: Maintained |
| 492 | F: Documentation/hwmon/adt7475 |
| 493 | F: drivers/hwmon/adt7475.c |
| 494 | |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 495 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
| 496 | M: Michael Hennerich <michael.hennerich@analog.com> |
Joe Perches | a3f531a | 2011-03-22 16:34:28 -0700 | [diff] [blame] | 497 | W: http://wiki.analog.com/ADXL345 |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 498 | W: http://ez.analog.com/community/linux-device-drivers |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 499 | S: Supported |
| 500 | F: drivers/input/misc/adxl34x.c |
| 501 | |
Matthew Wilcox | 8c6af9e | 2007-07-26 11:03:19 -0400 | [diff] [blame] | 502 | ADVANSYS SCSI DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 503 | M: Matthew Wilcox <matthew@wil.cx> |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 504 | M: Hannes Reinecke <hare@suse.com> |
Matthew Wilcox | 8c6af9e | 2007-07-26 11:03:19 -0400 | [diff] [blame] | 505 | L: linux-scsi@vger.kernel.org |
| 506 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 507 | F: Documentation/scsi/advansys.txt |
| 508 | F: drivers/scsi/advansys.c |
Matthew Wilcox | 8c6af9e | 2007-07-26 11:03:19 -0400 | [diff] [blame] | 509 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | AEDSP16 DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 511 | M: Riccardo Facchetti <fizban@tin.it> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 513 | F: sound/oss/aedsp16.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 515 | AF9013 MEDIA DRIVER |
| 516 | M: Antti Palosaari <crope@iki.fi> |
| 517 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 518 | W: https://linuxtv.org |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 519 | W: http://palosaari.fi/linux/ |
| 520 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 521 | T: git git://linuxtv.org/anttip/media_tree.git |
| 522 | S: Maintained |
| 523 | F: drivers/media/dvb-frontends/af9013* |
| 524 | |
| 525 | AF9033 MEDIA DRIVER |
| 526 | M: Antti Palosaari <crope@iki.fi> |
| 527 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 528 | W: https://linuxtv.org |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 529 | W: http://palosaari.fi/linux/ |
| 530 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 531 | T: git git://linuxtv.org/anttip/media_tree.git |
| 532 | S: Maintained |
| 533 | F: drivers/media/dvb-frontends/af9033* |
| 534 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | AFFS FILE SYSTEM |
Geert Uytterhoeven | 6cf515e | 2011-04-24 10:32:49 +0200 | [diff] [blame] | 536 | L: linux-fsdevel@vger.kernel.org |
| 537 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 538 | F: Documentation/filesystems/affs.txt |
| 539 | F: fs/affs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 541 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 542 | M: David Howells <dhowells@redhat.com> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 543 | L: linux-afs@lists.infradead.org |
| 544 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 545 | F: fs/afs/ |
| 546 | F: include/net/af_rxrpc.h |
| 547 | F: net/rxrpc/af_rxrpc.c |
David Howells | ee84595 | 2016-12-15 13:59:50 +0000 | [diff] [blame] | 548 | W: https://www.infradead.org/~dhowells/kafs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 549 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | AGPGART DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 551 | M: David Airlie <airlied@linux.ie> |
Dave Airlie | 878eaf6 | 2014-02-27 14:51:55 +1000 | [diff] [blame] | 552 | T: git git://people.freedesktop.org/~airlied/linux (part of drm maint) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 554 | F: drivers/char/agp/ |
| 555 | F: include/linux/agp* |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 556 | F: include/uapi/linux/agp* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | |
| 558 | AHA152X SCSI DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 559 | M: "Juergen E. Fischer" <fischer@norbit.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | L: linux-scsi@vger.kernel.org |
| 561 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 562 | F: drivers/scsi/aha152x* |
| 563 | F: drivers/scsi/pcmcia/aha152x* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | |
Hannes Reinecke | 64624d4 | 2007-10-19 10:32:29 +0200 | [diff] [blame] | 565 | AIC7XXX / AIC79XX SCSI DRIVER |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 566 | M: Hannes Reinecke <hare@suse.com> |
Hannes Reinecke | 64624d4 | 2007-10-19 10:32:29 +0200 | [diff] [blame] | 567 | L: linux-scsi@vger.kernel.org |
| 568 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 569 | F: drivers/scsi/aic7xxx/ |
Hannes Reinecke | 64624d4 | 2007-10-19 10:32:29 +0200 | [diff] [blame] | 570 | |
Hans Verkuil | 450500a | 2012-11-23 07:11:33 -0300 | [diff] [blame] | 571 | AIMSLAB FM RADIO RECEIVER DRIVER |
| 572 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 573 | L: linux-media@vger.kernel.org |
| 574 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 575 | W: https://linuxtv.org |
Hans Verkuil | 450500a | 2012-11-23 07:11:33 -0300 | [diff] [blame] | 576 | S: Maintained |
| 577 | F: drivers/media/radio/radio-aimslab* |
| 578 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 579 | AIO |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 580 | M: Benjamin LaHaise <bcrl@kvack.org> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 581 | L: linux-aio@kvack.org |
| 582 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 583 | F: fs/aio.c |
| 584 | F: include/linux/*aio*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 585 | |
Antti Palosaari | 469d4ec | 2014-07-17 21:57:14 -0300 | [diff] [blame] | 586 | AIRSPY MEDIA DRIVER |
| 587 | M: Antti Palosaari <crope@iki.fi> |
| 588 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 589 | W: https://linuxtv.org |
Antti Palosaari | 469d4ec | 2014-07-17 21:57:14 -0300 | [diff] [blame] | 590 | W: http://palosaari.fi/linux/ |
| 591 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 592 | T: git git://linuxtv.org/anttip/media_tree.git |
| 593 | S: Maintained |
| 594 | F: drivers/media/usb/airspy/ |
| 595 | |
Lino Sanfilippo | b956702 | 2016-12-05 23:07:17 +0100 | [diff] [blame] | 596 | ALACRITECH GIGABIT ETHERNET DRIVER |
| 597 | M: Lino Sanfilippo <LinoSanfilippo@gmx.de> |
| 598 | S: Maintained |
| 599 | F: drivers/net/ethernet/alacritech/* |
| 600 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | ALCATEL SPEEDTOUCH USB DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 602 | M: Duncan Sands <duncan.sands@free.fr> |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 603 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | W: http://www.linux-usb.org/SpeedTouch/ |
| 605 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 606 | F: drivers/usb/atm/speedtch.c |
| 607 | F: drivers/usb/atm/usbatm.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 609 | ALCHEMY AU1XX0 MMC DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 610 | M: Manuel Lauss <manuel.lauss@gmail.com> |
Manuel Lauss | 08fcb72 | 2008-06-09 08:40:35 +0200 | [diff] [blame] | 611 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 612 | F: drivers/mmc/host/au1xmmc.c |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 613 | |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 614 | ALI1563 I2C DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 615 | M: Rudolf Marek <r.marek@assembler.cz> |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 616 | L: linux-i2c@vger.kernel.org |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 617 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 618 | F: Documentation/i2c/busses/i2c-ali1563 |
| 619 | F: drivers/i2c/busses/i2c-ali1563.c |
R.Marek@sh.cvut.cz | 4a4e578 | 2005-04-21 09:07:56 +0000 | [diff] [blame] | 620 | |
LABBE Corentin | bc36879 | 2015-07-17 16:39:42 +0200 | [diff] [blame] | 621 | ALLWINNER SECURITY SYSTEM |
| 622 | M: Corentin Labbe <clabbe.montjoie@gmail.com> |
| 623 | L: linux-crypto@vger.kernel.org |
| 624 | S: Maintained |
| 625 | F: drivers/crypto/sunxi-ss/ |
| 626 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | ALPHA PORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 628 | M: Richard Henderson <rth@twiddle.net> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 629 | M: Ivan Kokshaysky <ink@jurassic.park.msu.ru> |
Matt Turner | abd4d60 | 2010-01-14 13:15:20 -0500 | [diff] [blame] | 630 | M: Matt Turner <mattst88@gmail.com> |
Joe Perches | c89f4f9 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 631 | S: Odd Fixes |
Cheng Renquan | a940669 | 2009-03-31 15:23:35 -0700 | [diff] [blame] | 632 | L: linux-alpha@vger.kernel.org |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 633 | F: arch/alpha/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | |
Pali Rohár | 3017293 | 2016-06-18 17:47:38 -0700 | [diff] [blame] | 635 | ALPS PS/2 TOUCHPAD DRIVER |
| 636 | R: Pali Rohár <pali.rohar@gmail.com> |
| 637 | F: drivers/input/mouse/alps.* |
| 638 | |
Ley Foon Tan | f62092f | 2015-02-04 16:32:18 +0800 | [diff] [blame] | 639 | ALTERA MAILBOX DRIVER |
| 640 | M: Ley Foon Tan <lftan@altera.com> |
| 641 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
| 642 | S: Maintained |
| 643 | F: drivers/mailbox/mailbox-altera.c |
| 644 | |
Tien Hock Loh | c5abbba | 2015-02-24 01:53:03 -0800 | [diff] [blame] | 645 | ALTERA PIO DRIVER |
| 646 | M: Tien Hock Loh <thloh@altera.com> |
| 647 | L: linux-gpio@vger.kernel.org |
| 648 | S: Maintained |
| 649 | F: drivers/gpio/gpio-altera.c |
| 650 | |
Thor Thayer | 8ce064b | 2016-06-02 12:52:22 -0500 | [diff] [blame] | 651 | ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT |
Thor Thayer | 06c177c | 2017-02-13 13:30:41 -0600 | [diff] [blame] | 652 | M: Thor Thayer <thor.thayer@linux.intel.com> |
Thor Thayer | 8ce064b | 2016-06-02 12:52:22 -0500 | [diff] [blame] | 653 | S: Maintained |
| 654 | F: drivers/gpio/gpio-altera-a10sr.c |
| 655 | F: drivers/mfd/altera-a10sr.c |
Thor Thayer | 6270068 | 2017-02-22 11:10:17 -0600 | [diff] [blame] | 656 | F: drivers/reset/reset-a10sr.c |
Thor Thayer | 8ce064b | 2016-06-02 12:52:22 -0500 | [diff] [blame] | 657 | F: include/linux/mfd/altera-a10sr.h |
Thor Thayer | 843fc75 | 2017-02-22 11:10:16 -0600 | [diff] [blame] | 658 | F: include/dt-bindings/reset/altr,rst-mgr-a10sr.h |
Thor Thayer | 8ce064b | 2016-06-02 12:52:22 -0500 | [diff] [blame] | 659 | |
Vince Bridgers | 16b8b92 | 2014-03-17 17:52:40 -0500 | [diff] [blame] | 660 | ALTERA TRIPLE SPEED ETHERNET DRIVER |
Vince Bridgers | c53fed0 | 2014-10-09 10:08:42 -0500 | [diff] [blame] | 661 | M: Vince Bridgers <vbridger@opensource.altera.com> |
Vince Bridgers | 16b8b92 | 2014-03-17 17:52:40 -0500 | [diff] [blame] | 662 | L: netdev@vger.kernel.org |
| 663 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
| 664 | S: Maintained |
| 665 | F: drivers/net/ethernet/altera/ |
| 666 | |
Tobias Klauser | adf9251 | 2011-02-09 10:58:29 +0100 | [diff] [blame] | 667 | ALTERA UART/JTAG UART SERIAL DRIVERS |
| 668 | M: Tobias Klauser <tklauser@distanz.ch> |
| 669 | L: linux-serial@vger.kernel.org |
Tobias Klauser | 61bd094 | 2014-02-25 15:01:49 -0800 | [diff] [blame] | 670 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
Tobias Klauser | adf9251 | 2011-02-09 10:58:29 +0100 | [diff] [blame] | 671 | S: Maintained |
| 672 | F: drivers/tty/serial/altera_uart.c |
| 673 | F: drivers/tty/serial/altera_jtaguart.c |
| 674 | F: include/linux/altera_uart.h |
| 675 | F: include/linux/altera_jtaguart.h |
| 676 | |
Netanel Belgazal | 1738cd3 | 2016-08-10 14:03:22 +0300 | [diff] [blame] | 677 | AMAZON ETHERNET DRIVERS |
| 678 | M: Netanel Belgazal <netanel@annapurnalabs.com> |
| 679 | R: Saeed Bishara <saeed@annapurnalabs.com> |
| 680 | R: Zorik Machulsky <zorik@annapurnalabs.com> |
| 681 | L: netdev@vger.kernel.org |
| 682 | S: Supported |
| 683 | F: Documentation/networking/ena.txt |
| 684 | F: drivers/net/ethernet/amazon/ |
| 685 | |
Tom Lendacky | f4875e1 | 2013-11-12 11:46:57 -0600 | [diff] [blame] | 686 | AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER |
| 687 | M: Tom Lendacky <thomas.lendacky@amd.com> |
Tom Lendacky | 29e9330 | 2016-03-21 11:43:22 -0500 | [diff] [blame] | 688 | M: Gary Hook <gary.hook@amd.com> |
Tom Lendacky | f4875e1 | 2013-11-12 11:46:57 -0600 | [diff] [blame] | 689 | L: linux-crypto@vger.kernel.org |
| 690 | S: Supported |
| 691 | F: drivers/crypto/ccp/ |
| 692 | F: include/linux/ccp.h |
| 693 | |
Andreas Herrmann | 512d102 | 2011-05-25 20:43:31 +0200 | [diff] [blame] | 694 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
Huang Rui | 96818b5 | 2015-12-10 11:56:11 +0800 | [diff] [blame] | 695 | M: Huang Rui <ray.huang@amd.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 696 | L: linux-hwmon@vger.kernel.org |
Huang Rui | 96818b5 | 2015-12-10 11:56:11 +0800 | [diff] [blame] | 697 | S: Supported |
Andreas Herrmann | 512d102 | 2011-05-25 20:43:31 +0200 | [diff] [blame] | 698 | F: Documentation/hwmon/fam15h_power |
| 699 | F: drivers/hwmon/fam15h_power.c |
| 700 | |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 701 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
Jordan Crouse | 67d7671 | 2008-05-12 14:02:22 -0700 | [diff] [blame] | 702 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
Greg Kroah-Hartman | b473197 | 2015-09-25 20:45:27 -0700 | [diff] [blame] | 703 | S: Orphan |
Joe Perches | faf2e1d | 2014-08-08 14:26:18 -0700 | [diff] [blame] | 704 | F: drivers/usb/gadget/udc/amd5536udc.* |
Thomas Dahlmann | 167a675 | 2007-07-12 09:30:39 -0700 | [diff] [blame] | 705 | |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 706 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
Andres Salomon | 6900609 | 2010-12-21 17:24:23 -0800 | [diff] [blame] | 707 | P: Andres Salomon <dilinger@queued.net> |
Jordan Crouse | 67d7671 | 2008-05-12 14:02:22 -0700 | [diff] [blame] | 708 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 709 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
| 710 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 711 | F: drivers/char/hw_random/geode-rng.c |
| 712 | F: drivers/crypto/geode* |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 713 | F: drivers/video/fbdev/geode/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 714 | F: arch/x86/include/asm/geode.h |
Jordan Crouse | f90b811 | 2006-01-06 00:12:14 -0800 | [diff] [blame] | 715 | |
Joerg Roedel | 919ee7d | 2008-06-26 21:28:09 +0200 | [diff] [blame] | 716 | AMD IOMMU (AMD-VI) |
Joerg Roedel | e411056 | 2012-10-23 16:16:23 +0200 | [diff] [blame] | 717 | M: Joerg Roedel <joro@8bytes.org> |
Joerg Roedel | 919ee7d | 2008-06-26 21:28:09 +0200 | [diff] [blame] | 718 | L: iommu@lists.linux-foundation.org |
Joerg Roedel | 525b233 | 2012-03-15 11:56:44 +0100 | [diff] [blame] | 719 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
Joerg Roedel | e411056 | 2012-10-23 16:16:23 +0200 | [diff] [blame] | 720 | S: Maintained |
Joe Perches | b2c1639 | 2011-12-08 20:21:40 -0800 | [diff] [blame] | 721 | F: drivers/iommu/amd_iommu*.[ch] |
| 722 | F: include/linux/amd-iommu.h |
Joerg Roedel | 919ee7d | 2008-06-26 21:28:09 +0200 | [diff] [blame] | 723 | |
Oded Gabbay | 16423d6 | 2014-07-15 13:08:36 +0300 | [diff] [blame] | 724 | AMD KFD |
Oded Gabbay | 1241e0b | 2015-05-10 12:37:28 +0300 | [diff] [blame] | 725 | M: Oded Gabbay <oded.gabbay@gmail.com> |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 726 | L: dri-devel@lists.freedesktop.org |
| 727 | T: git git://people.freedesktop.org/~gabbayo/linux.git |
| 728 | S: Supported |
Oded Gabbay | 130e037 | 2015-06-12 21:35:14 +0300 | [diff] [blame] | 729 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c |
| 730 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h |
Oded Gabbay | 32c22e9 | 2015-06-12 21:38:22 +0300 | [diff] [blame] | 731 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c |
Ben Goz | ff758a1 | 2014-10-07 14:43:07 +0300 | [diff] [blame] | 732 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 733 | F: drivers/gpu/drm/amd/amdkfd/ |
Oded Gabbay | 04df25d | 2015-01-05 18:15:45 +0200 | [diff] [blame] | 734 | F: drivers/gpu/drm/amd/include/cik_structs.h |
| 735 | F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h |
Ben Goz | ff758a1 | 2014-10-07 14:43:07 +0300 | [diff] [blame] | 736 | F: drivers/gpu/drm/amd/include/vi_structs.h |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 737 | F: drivers/gpu/drm/radeon/radeon_kfd.c |
| 738 | F: drivers/gpu/drm/radeon/radeon_kfd.h |
| 739 | F: include/uapi/linux/kfd_ioctl.h |
Oded Gabbay | 16423d6 | 2014-07-15 13:08:36 +0300 | [diff] [blame] | 740 | |
Suravee Suthikulpanit | 2510eb7 | 2016-02-08 11:59:06 -0600 | [diff] [blame] | 741 | AMD SEATTLE DEVICE TREE SUPPORT |
| 742 | M: Brijesh Singh <brijeshkumar.singh@amd.com> |
| 743 | M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com> |
| 744 | M: Tom Lendacky <thomas.lendacky@amd.com> |
| 745 | S: Supported |
| 746 | F: arch/arm64/boot/dts/amd/ |
| 747 | |
Lendacky, Thomas | 45198c7 | 2014-06-05 09:15:24 -0500 | [diff] [blame] | 748 | AMD XGBE DRIVER |
| 749 | M: Tom Lendacky <thomas.lendacky@amd.com> |
| 750 | L: netdev@vger.kernel.org |
| 751 | S: Supported |
| 752 | F: drivers/net/ethernet/amd/xgbe/ |
Tom Lendacky | 08b8940 | 2016-02-08 11:59:15 -0600 | [diff] [blame] | 753 | F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi |
Lendacky, Thomas | 45198c7 | 2014-06-05 09:15:24 -0500 | [diff] [blame] | 754 | |
Stelian Pop | 284f42b | 2006-12-12 18:18:31 +0100 | [diff] [blame] | 755 | AMS (Apple Motion Sensor) DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 756 | M: Michael Hanselmann <linux-kernel@hansmi.ch> |
Stelian Pop | 284f42b | 2006-12-12 18:18:31 +0100 | [diff] [blame] | 757 | S: Supported |
Jean Delvare | bd5f47e | 2010-10-28 20:31:50 +0200 | [diff] [blame] | 758 | F: drivers/macintosh/ams/ |
Stelian Pop | 284f42b | 2006-12-12 18:18:31 +0100 | [diff] [blame] | 759 | |
Hans Verkuil | 531fca1 | 2012-11-23 06:53:24 -0300 | [diff] [blame] | 760 | ANALOG DEVICES INC AD9389B DRIVER |
| 761 | M: Hans Verkuil <hans.verkuil@cisco.com> |
| 762 | L: linux-media@vger.kernel.org |
| 763 | S: Maintained |
| 764 | F: drivers/media/i2c/ad9389b* |
| 765 | |
Lars-Peter Clausen | 614b438 | 2015-01-23 12:52:34 -0300 | [diff] [blame] | 766 | ANALOG DEVICES INC ADV7180 DRIVER |
| 767 | M: Lars-Peter Clausen <lars@metafoo.de> |
| 768 | L: linux-media@vger.kernel.org |
| 769 | W: http://ez.analog.com/community/linux-device-drivers |
| 770 | S: Supported |
| 771 | F: drivers/media/i2c/adv7180.c |
| 772 | |
Hans Verkuil | c40ddfa | 2013-08-12 10:02:48 -0300 | [diff] [blame] | 773 | ANALOG DEVICES INC ADV7511 DRIVER |
| 774 | M: Hans Verkuil <hans.verkuil@cisco.com> |
| 775 | L: linux-media@vger.kernel.org |
| 776 | S: Maintained |
| 777 | F: drivers/media/i2c/adv7511* |
| 778 | |
Hans Verkuil | 531fca1 | 2012-11-23 06:53:24 -0300 | [diff] [blame] | 779 | ANALOG DEVICES INC ADV7604 DRIVER |
| 780 | M: Hans Verkuil <hans.verkuil@cisco.com> |
| 781 | L: linux-media@vger.kernel.org |
| 782 | S: Maintained |
| 783 | F: drivers/media/i2c/adv7604* |
| 784 | |
Hans Verkuil | c40ddfa | 2013-08-12 10:02:48 -0300 | [diff] [blame] | 785 | ANALOG DEVICES INC ADV7842 DRIVER |
| 786 | M: Hans Verkuil <hans.verkuil@cisco.com> |
| 787 | L: linux-media@vger.kernel.org |
| 788 | S: Maintained |
| 789 | F: drivers/media/i2c/adv7842* |
| 790 | |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 791 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
Lars-Peter Clausen | 535bd16 | 2011-10-17 20:33:05 +0200 | [diff] [blame] | 792 | M: Lars-Peter Clausen <lars@metafoo.de> |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 793 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Joe Perches | a3f531a | 2011-03-22 16:34:28 -0700 | [diff] [blame] | 794 | W: http://wiki.analog.com/ |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 795 | W: http://ez.analog.com/community/linux-device-drivers |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 796 | S: Supported |
Mark Brown | 39c9d19 | 2011-06-17 11:22:27 +0100 | [diff] [blame] | 797 | F: sound/soc/codecs/adau* |
Lars-Peter Clausen | cc52688 | 2011-06-27 17:04:01 +0200 | [diff] [blame] | 798 | F: sound/soc/codecs/adav* |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 799 | F: sound/soc/codecs/ad1* |
Mark Brown | ae48f5e | 2013-08-07 18:01:08 +0100 | [diff] [blame] | 800 | F: sound/soc/codecs/ad7* |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 801 | F: sound/soc/codecs/ssm* |
Lars-Peter Clausen | 40216ce | 2011-11-28 09:44:17 +0100 | [diff] [blame] | 802 | F: sound/soc/codecs/sigmadsp.* |
Michael Hennerich | 527a1a8 | 2010-10-28 11:31:28 +0000 | [diff] [blame] | 803 | |
Mike Frysinger | 4bdef3b | 2010-08-11 23:52:23 -0400 | [diff] [blame] | 804 | ANALOG DEVICES INC ASOC DRIVERS |
Richard Weinberger | b3fe92b | 2014-06-06 14:38:29 -0700 | [diff] [blame] | 805 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
Mike Frysinger | 4bdef3b | 2010-08-11 23:52:23 -0400 | [diff] [blame] | 806 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 807 | W: http://blackfin.uclinux.org/ |
| 808 | S: Supported |
| 809 | F: sound/soc/blackfin/* |
Rob Herring | 7d1f901 | 2014-12-26 13:47:30 -0600 | [diff] [blame] | 810 | |
Lars-Peter Clausen | 4ce72ab | 2014-08-18 09:08:00 +0100 | [diff] [blame] | 811 | ANALOG DEVICES INC IIO DRIVERS |
| 812 | M: Lars-Peter Clausen <lars@metafoo.de> |
| 813 | M: Michael Hennerich <Michael.Hennerich@analog.com> |
| 814 | W: http://wiki.analog.com/ |
| 815 | W: http://ez.analog.com/community/linux-device-drivers |
| 816 | S: Supported |
| 817 | F: drivers/iio/*/ad* |
Michael Hennerich | bc82222 | 2017-03-29 11:42:58 +0200 | [diff] [blame] | 818 | F: drivers/iio/adc/ltc2497* |
Lars-Peter Clausen | 4ce72ab | 2014-08-18 09:08:00 +0100 | [diff] [blame] | 819 | X: drivers/iio/*/adjd* |
| 820 | F: drivers/staging/iio/*/ad* |
Dan Carpenter | d5d4602 | 2016-10-11 14:12:29 +0300 | [diff] [blame] | 821 | F: drivers/staging/iio/trigger/iio-trig-bfin-timer.c |
Mike Frysinger | 4bdef3b | 2010-08-11 23:52:23 -0400 | [diff] [blame] | 822 | |
Lars-Peter Clausen | 0e3b67b | 2015-08-20 17:39:13 +0200 | [diff] [blame] | 823 | ANALOG DEVICES INC DMA DRIVERS |
| 824 | M: Lars-Peter Clausen <lars@metafoo.de> |
| 825 | W: http://ez.analog.com/community/linux-device-drivers |
| 826 | S: Supported |
| 827 | F: drivers/dma/dma-axi-dmac.c |
| 828 | |
Rob Herring | 27eb662 | 2016-08-02 14:07:24 -0700 | [diff] [blame] | 829 | ANDROID CONFIG FRAGMENTS |
| 830 | M: Rob Herring <robh@kernel.org> |
| 831 | S: Supported |
| 832 | F: kernel/configs/android* |
| 833 | |
Greg KH | 41c9e95 | 2015-01-18 16:33:24 +0900 | [diff] [blame] | 834 | ANDROID DRIVERS |
| 835 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
Baruch Siach | 2768240 | 2015-03-18 21:29:10 +0200 | [diff] [blame] | 836 | M: Arve Hjønnevåg <arve@android.com> |
Greg KH | 41c9e95 | 2015-01-18 16:33:24 +0900 | [diff] [blame] | 837 | M: Riley Andrews <riandrews@android.com> |
Lee Campbell | 0e4a566 | 2015-05-24 14:47:38 -0700 | [diff] [blame] | 838 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
Greg KH | 41c9e95 | 2015-01-18 16:33:24 +0900 | [diff] [blame] | 839 | L: devel@driverdev.osuosl.org |
| 840 | S: Supported |
| 841 | F: drivers/android/ |
| 842 | F: drivers/staging/android/ |
| 843 | |
Laura Abbott | d03c023 | 2016-04-11 10:51:11 -0700 | [diff] [blame] | 844 | ANDROID ION DRIVER |
| 845 | M: Laura Abbott <labbott@redhat.com> |
| 846 | M: Sumit Semwal <sumit.semwal@linaro.org> |
| 847 | L: devel@driverdev.osuosl.org |
| 848 | S: Supported |
| 849 | F: drivers/staging/android/ion |
| 850 | F: drivers/staging/android/uapi/ion.h |
| 851 | F: drivers/staging/android/uapi/ion_test.h |
| 852 | |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 853 | AOA (Apple Onboard Audio) ALSA DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 854 | M: Johannes Berg <johannes@sipsolutions.net> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 855 | L: linuxppc-dev@lists.ozlabs.org |
Joe Perches | 9371166 | 2009-06-16 15:34:07 -0700 | [diff] [blame] | 856 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 857 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 858 | F: sound/aoa/ |
Johannes Berg | 4226906 | 2006-07-25 16:15:50 +0200 | [diff] [blame] | 859 | |
William Breathitt Gray | 4075a28 | 2016-08-29 16:22:56 -0400 | [diff] [blame] | 860 | APEX EMBEDDED SYSTEMS STX104 IIO DRIVER |
William Breathitt Gray | 97a445d | 2016-02-11 11:49:36 -0500 | [diff] [blame] | 861 | M: William Breathitt Gray <vilhelm.gray@gmail.com> |
| 862 | L: linux-iio@vger.kernel.org |
| 863 | S: Maintained |
William Breathitt Gray | 4075a28 | 2016-08-29 16:22:56 -0400 | [diff] [blame] | 864 | F: drivers/iio/adc/stx104.c |
William Breathitt Gray | 97a445d | 2016-02-11 11:49:36 -0500 | [diff] [blame] | 865 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | APM DRIVER |
Jiri Kosina | e5f6450 | 2015-08-09 09:11:34 +0200 | [diff] [blame] | 867 | M: Jiri Kosina <jikos@kernel.org> |
Jiri Kosina | 81024fc | 2011-05-04 13:41:31 +0200 | [diff] [blame] | 868 | S: Odd fixes |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 869 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 870 | F: arch/x86/kernel/apm_32.c |
| 871 | F: include/linux/apm_bios.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 872 | F: include/uapi/linux/apm_bios.h |
Jiri Kosina | 81024fc | 2011-05-04 13:41:31 +0200 | [diff] [blame] | 873 | F: drivers/char/apm-emulation.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | |
Henrik Rydberg | bd7aa4b | 2008-09-02 14:35:43 -0700 | [diff] [blame] | 875 | APPLE BCM5974 MULTITOUCH DRIVER |
Henrik Rydberg | 75dd112 | 2015-01-08 14:32:21 -0800 | [diff] [blame] | 876 | M: Henrik Rydberg <rydberg@bitmath.org> |
Henrik Rydberg | bd7aa4b | 2008-09-02 14:35:43 -0700 | [diff] [blame] | 877 | L: linux-input@vger.kernel.org |
Henrik Rydberg | 75dd112 | 2015-01-08 14:32:21 -0800 | [diff] [blame] | 878 | S: Odd fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 879 | F: drivers/input/mouse/bcm5974.c |
Henrik Rydberg | bd7aa4b | 2008-09-02 14:35:43 -0700 | [diff] [blame] | 880 | |
Nicolas Boichat | 6f2fad7 | 2007-05-08 00:24:52 -0700 | [diff] [blame] | 881 | APPLE SMC DRIVER |
Henrik Rydberg | 75dd112 | 2015-01-08 14:32:21 -0800 | [diff] [blame] | 882 | M: Henrik Rydberg <rydberg@bitmath.org> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 883 | L: linux-hwmon@vger.kernel.org |
Henrik Rydberg | 75dd112 | 2015-01-08 14:32:21 -0800 | [diff] [blame] | 884 | S: Odd fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 885 | F: drivers/hwmon/applesmc.c |
Nicolas Boichat | 6f2fad7 | 2007-05-08 00:24:52 -0700 | [diff] [blame] | 886 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | APPLETALK NETWORK LAYER |
Arnaldo Carvalho de Melo | 0c59d28 | 2017-02-13 14:15:44 -0300 | [diff] [blame] | 888 | L: netdev@vger.kernel.org |
| 889 | S: Odd fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 890 | F: drivers/net/appletalk/ |
| 891 | F: net/appletalk/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | |
Duc Dang | 21c7532 | 2015-08-12 17:01:12 -0700 | [diff] [blame] | 893 | APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT |
| 894 | M: Duc Dang <dhdang@apm.com> |
| 895 | S: Supported |
| 896 | F: arch/arm64/boot/dts/apm/ |
| 897 | |
Iyappan Subramanian | 2429950 | 2014-08-07 15:14:25 -0700 | [diff] [blame] | 898 | APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER |
| 899 | M: Iyappan Subramanian <isubramanian@apm.com> |
| 900 | M: Keyur Chudgar <kchudgar@apm.com> |
Iyappan Subramanian | b3fd38d | 2017-03-15 13:27:21 -0700 | [diff] [blame] | 901 | M: Quan Nguyen <qnguyen@apm.com> |
Iyappan Subramanian | 2429950 | 2014-08-07 15:14:25 -0700 | [diff] [blame] | 902 | S: Supported |
| 903 | F: drivers/net/ethernet/apm/xgene/ |
Iyappan Subramanian | 2efccc6 | 2016-07-25 17:12:47 -0700 | [diff] [blame] | 904 | F: drivers/net/phy/mdio-xgene.c |
Iyappan Subramanian | 2429950 | 2014-08-07 15:14:25 -0700 | [diff] [blame] | 905 | F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt |
Iyappan Subramanian | 2efccc6 | 2016-07-25 17:12:47 -0700 | [diff] [blame] | 906 | F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt |
Iyappan Subramanian | 2429950 | 2014-08-07 15:14:25 -0700 | [diff] [blame] | 907 | |
Iyappan Subramanian | 70dbd9b | 2017-03-07 17:08:45 -0800 | [diff] [blame] | 908 | APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER |
| 909 | M: Iyappan Subramanian <isubramanian@apm.com> |
| 910 | M: Keyur Chudgar <kchudgar@apm.com> |
| 911 | S: Supported |
| 912 | F: drivers/net/ethernet/apm/xgene-v2/ |
| 913 | |
Tai Nguyen | fd3a628 | 2016-07-15 10:38:02 -0700 | [diff] [blame] | 914 | APPLIED MICRO (APM) X-GENE SOC PMU |
| 915 | M: Tai Nguyen <ttnguyen@apm.com> |
| 916 | S: Supported |
| 917 | F: drivers/perf/xgene_pmu.c |
| 918 | F: Documentation/perf/xgene-pmu.txt |
| 919 | F: Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt |
| 920 | |
Laurent Pinchart | 62a37dc | 2013-08-09 08:46:11 -0300 | [diff] [blame] | 921 | APTINA CAMERA SENSOR PLL |
| 922 | M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com> |
| 923 | L: linux-media@vger.kernel.org |
| 924 | S: Maintained |
| 925 | F: drivers/media/i2c/aptina-pll.* |
| 926 | |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 927 | ARC FRAMEBUFFER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 928 | M: Jaya Kumar <jayalk@intworks.biz> |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 929 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 930 | F: drivers/video/fbdev/arcfb.c |
| 931 | F: drivers/video/fbdev/core/fb_defio.c |
Jaya Kumar | 1154ea7 | 2005-06-21 17:17:04 -0700 | [diff] [blame] | 932 | |
Michael Grzeschik | c38f6ac | 2015-09-17 15:26:16 +0200 | [diff] [blame] | 933 | ARCNET NETWORK LAYER |
| 934 | M: Michael Grzeschik <m.grzeschik@pengutronix.de> |
| 935 | L: netdev@vger.kernel.org |
| 936 | S: Maintained |
| 937 | F: drivers/net/arcnet/ |
| 938 | F: include/uapi/linux/if_arcnet.h |
| 939 | |
Alexey Brodkin | 71d298c | 2016-02-19 15:34:30 +0300 | [diff] [blame] | 940 | ARC PGU DRM DRIVER |
| 941 | M: Alexey Brodkin <abrodkin@synopsys.com> |
| 942 | S: Supported |
| 943 | F: drivers/gpu/drm/arc/ |
| 944 | F: Documentation/devicetree/bindings/display/snps,arcpgu.txt |
| 945 | |
Mark Rutland | 588deb6 | 2016-08-09 11:03:56 +0100 | [diff] [blame] | 946 | ARM ARCHITECTED TIMER DRIVER |
| 947 | M: Mark Rutland <mark.rutland@arm.com> |
| 948 | M: Marc Zyngier <marc.zyngier@arm.com> |
| 949 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 950 | S: Maintained |
| 951 | F: arch/arm/include/asm/arch_timer.h |
| 952 | F: arch/arm64/include/asm/arch_timer.h |
| 953 | F: drivers/clocksource/arm_arch_timer.c |
| 954 | |
Liviu Dudau | c5a906a | 2015-08-04 17:41:58 +0100 | [diff] [blame] | 955 | ARM HDLCD DRM DRIVER |
| 956 | M: Liviu Dudau <liviu.dudau@arm.com> |
| 957 | S: Supported |
Liviu Dudau | 59ba242 | 2016-04-25 15:02:49 +0100 | [diff] [blame] | 958 | F: drivers/gpu/drm/arm/hdlcd_* |
Liviu Dudau | c5a906a | 2015-08-04 17:41:58 +0100 | [diff] [blame] | 959 | F: Documentation/devicetree/bindings/display/arm,hdlcd.txt |
| 960 | |
Liviu Dudau | 59ba242 | 2016-04-25 15:02:49 +0100 | [diff] [blame] | 961 | ARM MALI-DP DRM DRIVER |
| 962 | M: Liviu Dudau <liviu.dudau@arm.com> |
| 963 | M: Brian Starkey <brian.starkey@arm.com> |
| 964 | M: Mali DP Maintainers <malidp@foss.arm.com> |
| 965 | S: Supported |
| 966 | F: drivers/gpu/drm/arm/ |
| 967 | F: Documentation/devicetree/bindings/display/arm,malidp.txt |
| 968 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | ARM MFM AND FLOPPY DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 970 | M: Ian Molton <spyro@f2s.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 972 | F: arch/arm/lib/floppydma.S |
| 973 | F: arch/arm/include/asm/floppy.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | |
Will Deacon | 6f96521 | 2011-07-01 14:38:53 +0100 | [diff] [blame] | 975 | ARM PMU PROFILING AND DEBUGGING |
| 976 | M: Will Deacon <will.deacon@arm.com> |
Will Deacon | 55d5c4a | 2016-09-15 10:14:41 +0100 | [diff] [blame] | 977 | M: Mark Rutland <mark.rutland@arm.com> |
Will Deacon | 6f96521 | 2011-07-01 14:38:53 +0100 | [diff] [blame] | 978 | S: Maintained |
Will Deacon | 55d5c4a | 2016-09-15 10:14:41 +0100 | [diff] [blame] | 979 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Mark Rutland | dd06a84 | 2015-10-02 10:55:07 +0100 | [diff] [blame] | 980 | F: arch/arm*/kernel/perf_* |
Will Deacon | 6f96521 | 2011-07-01 14:38:53 +0100 | [diff] [blame] | 981 | F: arch/arm/oprofile/common.c |
Mark Rutland | dd06a84 | 2015-10-02 10:55:07 +0100 | [diff] [blame] | 982 | F: arch/arm*/kernel/hw_breakpoint.c |
| 983 | F: arch/arm*/include/asm/hw_breakpoint.h |
| 984 | F: arch/arm*/include/asm/perf_event.h |
Will Deacon | 55d5c4a | 2016-09-15 10:14:41 +0100 | [diff] [blame] | 985 | F: drivers/perf/* |
Mark Rutland | fa8ad78 | 2015-07-06 12:23:53 +0100 | [diff] [blame] | 986 | F: include/linux/perf/arm_pmu.h |
Will Deacon | 55d5c4a | 2016-09-15 10:14:41 +0100 | [diff] [blame] | 987 | F: Documentation/devicetree/bindings/arm/pmu.txt |
Geert Uytterhoeven | 5d3fa80 | 2017-03-12 14:16:59 +0100 | [diff] [blame] | 988 | F: Documentation/devicetree/bindings/perf/ |
Will Deacon | 6f96521 | 2011-07-01 14:38:53 +0100 | [diff] [blame] | 989 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 990 | ARM PORT |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 991 | M: Russell King <linux@armlinux.org.uk> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 992 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 993 | W: http://www.armlinux.org.uk/ |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 994 | S: Maintained |
Russell King | 0d7f4f0 | 2016-11-01 20:27:13 +0000 | [diff] [blame] | 995 | T: git git://git.armlinux.org.uk/~rmk/linux-arm.git |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 996 | F: arch/arm/ |
| 997 | |
Stephen Boyd | d323c243 | 2012-10-24 11:00:29 -0700 | [diff] [blame] | 998 | ARM SUB-ARCHITECTURES |
| 999 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Zhang Yanfei | 56ca9d9 | 2013-01-11 14:32:04 -0800 | [diff] [blame] | 1000 | S: Maintained |
Stephen Boyd | d323c243 | 2012-10-24 11:00:29 -0700 | [diff] [blame] | 1001 | F: arch/arm/mach-*/ |
| 1002 | F: arch/arm/plat-*/ |
| 1003 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git |
| 1004 | |
Russell King | cefbf4e | 2009-11-22 17:40:28 +0000 | [diff] [blame] | 1005 | ARM PRIMECELL AACI PL041 DRIVER |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 1006 | M: Russell King <linux@armlinux.org.uk> |
Russell King | cefbf4e | 2009-11-22 17:40:28 +0000 | [diff] [blame] | 1007 | S: Maintained |
| 1008 | F: sound/arm/aaci.* |
| 1009 | |
| 1010 | ARM PRIMECELL CLCD PL110 DRIVER |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 1011 | M: Russell King <linux@armlinux.org.uk> |
Russell King | cefbf4e | 2009-11-22 17:40:28 +0000 | [diff] [blame] | 1012 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 1013 | F: drivers/video/fbdev/amba-clcd.* |
Russell King | cefbf4e | 2009-11-22 17:40:28 +0000 | [diff] [blame] | 1014 | |
| 1015 | ARM PRIMECELL KMI PL050 DRIVER |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 1016 | M: Russell King <linux@armlinux.org.uk> |
Russell King | cefbf4e | 2009-11-22 17:40:28 +0000 | [diff] [blame] | 1017 | S: Maintained |
| 1018 | F: drivers/input/serio/ambakmi.* |
| 1019 | F: include/linux/amba/kmi.h |
| 1020 | |
Russell King | 2761f5c | 2007-05-24 06:56:08 +0200 | [diff] [blame] | 1021 | ARM PRIMECELL MMCI PL180/1 DRIVER |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 1022 | M: Russell King <linux@armlinux.org.uk> |
Russell King | 08a5c9a | 2013-02-11 15:28:51 +0000 | [diff] [blame] | 1023 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 1024 | F: drivers/mmc/host/mmci.* |
Russell King | 2f748aa | 2013-02-11 15:28:05 +0000 | [diff] [blame] | 1025 | F: include/linux/amba/mmci.h |
Russell King | 2761f5c | 2007-05-24 06:56:08 +0200 | [diff] [blame] | 1026 | |
Russell King | 1b4304e | 2013-02-11 15:26:27 +0000 | [diff] [blame] | 1027 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 1028 | M: Russell King <linux@armlinux.org.uk> |
Russell King | 1b4304e | 2013-02-11 15:26:27 +0000 | [diff] [blame] | 1029 | S: Maintained |
| 1030 | F: drivers/tty/serial/amba-pl01*.c |
| 1031 | F: include/linux/amba/serial.h |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1032 | |
Russell King | cefbf4e | 2009-11-22 17:40:28 +0000 | [diff] [blame] | 1033 | ARM PRIMECELL BUS SUPPORT |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 1034 | M: Russell King <linux@armlinux.org.uk> |
Russell King | cefbf4e | 2009-11-22 17:40:28 +0000 | [diff] [blame] | 1035 | S: Maintained |
| 1036 | F: drivers/amba/ |
| 1037 | F: include/linux/amba/bus.h |
| 1038 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1039 | ARM/ADS SPHERE MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1040 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1041 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1042 | S: Maintained |
| 1043 | |
Sergey Lapin | 9c784f9 | 2008-08-03 02:29:48 +0100 | [diff] [blame] | 1044 | ARM/AFEB9260 MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1045 | M: Sergey Lapin <slapin@ossfans.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1046 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Sergey Lapin | 9c784f9 | 2008-08-03 02:29:48 +0100 | [diff] [blame] | 1047 | S: Maintained |
| 1048 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1049 | ARM/AJECO 1ARM MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1050 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1051 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1052 | S: Maintained |
| 1053 | |
Maxime Ripard | 5c6dcd7 | 2015-10-07 18:39:40 +0100 | [diff] [blame] | 1054 | ARM/Allwinner sunXi SoC support |
Maxime Ripard | 1b10669 | 2012-11-15 21:51:26 +0100 | [diff] [blame] | 1055 | M: Maxime Ripard <maxime.ripard@free-electrons.com> |
Maxime Ripard | 5c6dcd7 | 2015-10-07 18:39:40 +0100 | [diff] [blame] | 1056 | M: Chen-Yu Tsai <wens@csie.org> |
Maxime Ripard | 1b10669 | 2012-11-15 21:51:26 +0100 | [diff] [blame] | 1057 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1058 | S: Maintained |
Maxime Ripard | 5c6dcd7 | 2015-10-07 18:39:40 +0100 | [diff] [blame] | 1059 | N: sun[x456789]i |
Maxime Ripard | 87c586a | 2017-03-31 09:40:51 +0200 | [diff] [blame] | 1060 | N: sun50i |
| 1061 | F: arch/arm/mach-sunxi/ |
Andre Przywara | 6bc37fa | 2016-01-18 10:24:31 +0000 | [diff] [blame] | 1062 | F: arch/arm64/boot/dts/allwinner/ |
Maxime Ripard | 87c586a | 2017-03-31 09:40:51 +0200 | [diff] [blame] | 1063 | F: drivers/clk/sunxi-ng/ |
| 1064 | F: drivers/pinctrl/sunxi/ |
| 1065 | F: drivers/soc/sunxi/ |
| 1066 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git |
Maxime Ripard | 60b0f38 | 2013-12-30 16:03:33 +0100 | [diff] [blame] | 1067 | |
| 1068 | ARM/Allwinner SoC Clock Support |
| 1069 | M: Emilio López <emilio@elopez.com.ar> |
| 1070 | S: Maintained |
| 1071 | F: drivers/clk/sunxi/ |
Maxime Ripard | 1b10669 | 2012-11-15 21:51:26 +0100 | [diff] [blame] | 1072 | |
Carlo Caione | 7931845 | 2016-02-23 10:43:11 +0100 | [diff] [blame] | 1073 | ARM/Amlogic Meson SoC support |
Carlo Caione | 7c1e387 | 2014-09-12 20:18:31 +0200 | [diff] [blame] | 1074 | M: Carlo Caione <carlo@caione.org> |
Kevin Hilman | 6683d91 | 2016-05-06 06:59:26 -0700 | [diff] [blame] | 1075 | M: Kevin Hilman <khilman@baylibre.com> |
Carlo Caione | 7c1e387 | 2014-09-12 20:18:31 +0200 | [diff] [blame] | 1076 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Kevin Hilman | 6683d91 | 2016-05-06 06:59:26 -0700 | [diff] [blame] | 1077 | L: linux-amlogic@lists.infradead.org |
Carlo Caione | 7931845 | 2016-02-23 10:43:11 +0100 | [diff] [blame] | 1078 | W: http://linux-meson.com/ |
Carlo Caione | 7c1e387 | 2014-09-12 20:18:31 +0200 | [diff] [blame] | 1079 | S: Maintained |
Carlo Caione | 7931845 | 2016-02-23 10:43:11 +0100 | [diff] [blame] | 1080 | F: arch/arm/mach-meson/ |
| 1081 | F: arch/arm/boot/dts/meson* |
Kevin Hilman | 6683d91 | 2016-05-06 06:59:26 -0700 | [diff] [blame] | 1082 | F: arch/arm64/boot/dts/amlogic/ |
| 1083 | F: drivers/pinctrl/meson/ |
Kevin Hilman | 51c5d84 | 2016-10-19 11:18:24 -0700 | [diff] [blame] | 1084 | F: drivers/mmc/host/meson* |
Carlo Caione | 7931845 | 2016-02-23 10:43:11 +0100 | [diff] [blame] | 1085 | N: meson |
Carlo Caione | 7c1e387 | 2014-09-12 20:18:31 +0200 | [diff] [blame] | 1086 | |
Jerome Brunet | fd33f3e | 2017-03-31 12:14:17 +0200 | [diff] [blame] | 1087 | ARM/Amlogic Meson SoC CLOCK FRAMEWORK |
| 1088 | M: Neil Armstrong <narmstrong@baylibre.com> |
| 1089 | M: Jerome Brunet <jbrunet@baylibre.com> |
| 1090 | L: linux-amlogic@lists.infradead.org |
| 1091 | S: Maintained |
| 1092 | F: drivers/clk/meson/ |
| 1093 | F: include/dt-bindings/clock/meson* |
| 1094 | F: include/dt-bindings/clock/gxbb* |
| 1095 | F: Documentation/devicetree/bindings/clock/amlogic* |
| 1096 | |
Tsahee Zidenberg | eff506f | 2015-03-12 13:53:25 +0200 | [diff] [blame] | 1097 | ARM/Annapurna Labs ALPINE ARCHITECTURE |
| 1098 | M: Tsahee Zidenberg <tsahee@annapurnalabs.com> |
Antoine Tenart | a9e5547 | 2016-02-22 14:22:30 +0100 | [diff] [blame] | 1099 | M: Antoine Tenart <antoine.tenart@free-electrons.com> |
Antoine Tenart | 4d2bf02 | 2016-07-26 10:00:48 +0200 | [diff] [blame] | 1100 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Tsahee Zidenberg | eff506f | 2015-03-12 13:53:25 +0200 | [diff] [blame] | 1101 | S: Maintained |
| 1102 | F: arch/arm/mach-alpine/ |
Antoine Tenart | a9e5547 | 2016-02-22 14:22:30 +0100 | [diff] [blame] | 1103 | F: arch/arm/boot/dts/alpine* |
| 1104 | F: arch/arm64/boot/dts/al/ |
| 1105 | F: drivers/*/*alpine* |
Tsahee Zidenberg | eff506f | 2015-03-12 13:53:25 +0200 | [diff] [blame] | 1106 | |
Lars Persson | 5255034d | 2016-02-11 17:06:21 +0100 | [diff] [blame] | 1107 | ARM/ARTPEC MACHINE SUPPORT |
| 1108 | M: Jesper Nilsson <jesper.nilsson@axis.com> |
| 1109 | M: Lars Persson <lars.persson@axis.com> |
| 1110 | M: Niklas Cassel <niklas.cassel@axis.com> |
| 1111 | S: Maintained |
| 1112 | L: linux-arm-kernel@axis.com |
| 1113 | F: arch/arm/mach-artpec |
| 1114 | F: arch/arm/boot/dts/artpec6* |
Lars Persson | 33b8ac9 | 2016-04-04 11:23:23 +0200 | [diff] [blame] | 1115 | F: drivers/clk/axis |
Jesper Nilsson | 00df058 | 2017-04-03 14:47:04 +0200 | [diff] [blame] | 1116 | F: drivers/pinctrl/pinctrl-artpec* |
Jesper Nilsson | 9c6c149 | 2017-03-30 13:27:44 +0200 | [diff] [blame] | 1117 | F: Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt |
Lars Persson | 5255034d | 2016-02-11 17:06:21 +0100 | [diff] [blame] | 1118 | |
Joel Stanley | 8c2ed9b | 2016-03-21 17:22:31 +1030 | [diff] [blame] | 1119 | ARM/ASPEED MACHINE SUPPORT |
| 1120 | M: Joel Stanley <joel@jms.id.au> |
| 1121 | S: Maintained |
| 1122 | F: arch/arm/mach-aspeed/ |
| 1123 | F: arch/arm/boot/dts/aspeed-* |
| 1124 | F: drivers/*/*aspeed* |
| 1125 | |
Alexandre Belloni | 8dca5ce | 2015-09-02 18:24:21 +0200 | [diff] [blame] | 1126 | ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT |
Nicolas Ferre | e085b9d | 2017-01-27 15:43:42 +0100 | [diff] [blame] | 1127 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
Nicolas Ferre | d68b35f | 2015-04-29 11:57:18 +0200 | [diff] [blame] | 1128 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1129 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Nicolas Ferre | c1fc867 | 2011-01-20 14:44:27 -0800 | [diff] [blame] | 1130 | W: http://www.linux4sam.org |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 1131 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git |
Nicolas Ferre | c1fc867 | 2011-01-20 14:44:27 -0800 | [diff] [blame] | 1132 | S: Supported |
| 1133 | F: arch/arm/mach-at91/ |
Alexandre Belloni | f0a0a58 | 2014-11-07 21:58:21 +0100 | [diff] [blame] | 1134 | F: include/soc/at91/ |
Mark Brown | 70e389c | 2013-10-16 12:04:07 +0100 | [diff] [blame] | 1135 | F: arch/arm/boot/dts/at91*.dts |
| 1136 | F: arch/arm/boot/dts/at91*.dtsi |
| 1137 | F: arch/arm/boot/dts/sama*.dts |
| 1138 | F: arch/arm/boot/dts/sama*.dtsi |
Alexandre Belloni | 5f58c97 | 2015-01-12 19:42:14 +0100 | [diff] [blame] | 1139 | F: arch/arm/include/debug/at91.S |
Alexandre Belloni | f4e6dfc | 2017-03-27 17:18:17 +0200 | [diff] [blame] | 1140 | F: drivers/memory/atmel* |
Andrew Victor | d4a89c7 | 2006-12-04 13:56:21 +0100 | [diff] [blame] | 1141 | |
Boris BREZILLON | 6e05dd4 | 2014-05-27 13:39:28 +0200 | [diff] [blame] | 1142 | ARM/ATMEL AT91 Clock Support |
| 1143 | M: Boris Brezillon <boris.brezillon@free-electrons.com> |
| 1144 | S: Maintained |
| 1145 | F: drivers/clk/at91 |
| 1146 | |
Rob Herring | 986cf2e | 2011-06-22 11:28:53 -0500 | [diff] [blame] | 1147 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
Rob Herring | 5d3ad8a | 2013-12-03 10:20:16 -0600 | [diff] [blame] | 1148 | M: Rob Herring <robh@kernel.org> |
Rob Herring | 986cf2e | 2011-06-22 11:28:53 -0500 | [diff] [blame] | 1149 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1150 | S: Maintained |
| 1151 | F: arch/arm/mach-highbank/ |
Rob Herring | e68d7c1 | 2015-12-10 17:38:23 -0600 | [diff] [blame] | 1152 | F: arch/arm/boot/dts/highbank.dts |
| 1153 | F: arch/arm/boot/dts/ecx-*.dts* |
Rob Herring | 986cf2e | 2011-06-22 11:28:53 -0500 | [diff] [blame] | 1154 | |
Anton Vorontsov | d94f944 | 2010-03-25 17:12:41 +0300 | [diff] [blame] | 1155 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
Krzysztof Hałasa | 5529c2c | 2014-09-30 10:32:58 +0200 | [diff] [blame] | 1156 | M: Krzysztof Halasa <khalasa@piap.pl> |
Anton Vorontsov | d94f944 | 2010-03-25 17:12:41 +0300 | [diff] [blame] | 1157 | S: Maintained |
| 1158 | F: arch/arm/mach-cns3xxx/ |
Anton Vorontsov | d94f944 | 2010-03-25 17:12:41 +0300 | [diff] [blame] | 1159 | |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1160 | ARM/CAVIUM THUNDER NETWORK DRIVER |
| 1161 | M: Sunil Goutham <sgoutham@cavium.com> |
| 1162 | M: Robert Richter <rric@kernel.org> |
| 1163 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1164 | S: Supported |
Aleksey Makarov | 322e5cc | 2015-08-30 12:29:09 +0300 | [diff] [blame] | 1165 | F: drivers/net/ethernet/cavium/thunder/ |
Sunil Goutham | 4863dea | 2015-05-26 19:20:15 -0700 | [diff] [blame] | 1166 | |
Alexander Shiyan | 386ab51 | 2012-11-17 17:57:24 +0400 | [diff] [blame] | 1167 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
| 1168 | M: Alexander Shiyan <shc_work@mail.ru> |
| 1169 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1170 | S: Odd Fixes |
Alexander Shiyan | b8ba387 | 2014-02-15 12:05:33 +0400 | [diff] [blame] | 1171 | N: clps711x |
Alexander Shiyan | 386ab51 | 2012-11-17 17:57:24 +0400 | [diff] [blame] | 1172 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1173 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
Russell King | ddd559b | 2009-09-12 12:02:26 +0100 | [diff] [blame] | 1174 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
Ryan Mallon | 1c5454e | 2011-06-15 14:45:36 +1000 | [diff] [blame] | 1175 | M: Ryan Mallon <rmallon@gmail.com> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1176 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1177 | S: Maintained |
Hartley Sweeten | d19d366 | 2009-07-10 23:02:59 +0100 | [diff] [blame] | 1178 | F: arch/arm/mach-ep93xx/ |
| 1179 | F: arch/arm/mach-ep93xx/include/mach/ |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1180 | |
| 1181 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1182 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1183 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1184 | S: Maintained |
| 1185 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1186 | ARM/CLKDEV SUPPORT |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 1187 | M: Russell King <linux@armlinux.org.uk> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1188 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Joe Perches | 3741704 | 2012-03-23 15:01:58 -0700 | [diff] [blame] | 1189 | S: Maintained |
Russell King | 0d7f4f0 | 2016-11-01 20:27:13 +0000 | [diff] [blame] | 1190 | T: git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1191 | F: arch/arm/include/asm/clkdev.h |
Joe Perches | 4fa2651 | 2011-03-22 16:34:31 -0700 | [diff] [blame] | 1192 | F: drivers/clk/clkdev.c |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1193 | |
Mike Rapoport | d48134e | 2008-08-20 09:03:26 +0100 | [diff] [blame] | 1194 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1195 | M: Mike Rapoport <mike@compulab.co.il> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1196 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Russell King | a9da4f7 | 2008-07-12 21:42:04 +0100 | [diff] [blame] | 1197 | S: Maintained |
| 1198 | |
Hubert Feurstein | 9415009 | 2009-10-07 08:36:07 +0100 | [diff] [blame] | 1199 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
| 1200 | M: Hubert Feurstein <hubert.feurstein@contec.at> |
| 1201 | S: Maintained |
| 1202 | F: arch/arm/mach-ep93xx/micro9.c |
| 1203 | |
Pratik Patel | a06ae86 | 2014-11-03 11:07:35 -0700 | [diff] [blame] | 1204 | ARM/CORESIGHT FRAMEWORK AND DRIVERS |
| 1205 | M: Mathieu Poirier <mathieu.poirier@linaro.org> |
| 1206 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1207 | S: Maintained |
Mathieu Poirier | 01081f5 | 2015-03-30 14:13:41 -0600 | [diff] [blame] | 1208 | F: drivers/hwtracing/coresight/* |
Pratik Patel | a06ae86 | 2014-11-03 11:07:35 -0700 | [diff] [blame] | 1209 | F: Documentation/trace/coresight.txt |
| 1210 | F: Documentation/devicetree/bindings/arm/coresight.txt |
Mathieu Poirier | 7a25ec8 | 2014-11-10 14:06:42 -0700 | [diff] [blame] | 1211 | F: Documentation/ABI/testing/sysfs-bus-coresight-devices-* |
Mathieu Poirier | 7e21b0d | 2016-09-16 09:49:59 -0600 | [diff] [blame] | 1212 | F: tools/perf/arch/arm/util/pmu.c |
Mathieu Poirier | a818c56 | 2016-09-16 09:50:00 -0600 | [diff] [blame] | 1213 | F: tools/perf/arch/arm/util/auxtrace.c |
| 1214 | F: tools/perf/arch/arm/util/cs-etm.c |
| 1215 | F: tools/perf/arch/arm/util/cs-etm.h |
| 1216 | F: tools/perf/util/cs-etm.h |
Pratik Patel | a06ae86 | 2014-11-03 11:07:35 -0700 | [diff] [blame] | 1217 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1218 | ARM/CORGI MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1219 | M: Richard Purdie <rpurdie@rpsys.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | S: Maintained |
| 1221 | |
Paulius Zaleckas | 881a95f | 2009-03-26 10:06:27 +0200 | [diff] [blame] | 1222 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
Hans Ulli Kroll | 162500b | 2010-05-13 06:43:59 +0100 | [diff] [blame] | 1223 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1224 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Hans Ulli Kroll | b60e23b | 2015-05-07 19:29:03 +0200 | [diff] [blame] | 1225 | T: git git://github.com/ulli-kroll/linux.git |
Hans Ulli Kroll | 162500b | 2010-05-13 06:43:59 +0100 | [diff] [blame] | 1226 | S: Maintained |
Paulius Zaleckas | f49afbb | 2009-05-28 16:41:36 +0300 | [diff] [blame] | 1227 | F: arch/arm/mach-gemini/ |
Hans Ulli Kroll | 98a9bb5 | 2015-05-20 17:49:31 +0200 | [diff] [blame] | 1228 | F: drivers/rtc/rtc-gemini.c |
Paulius Zaleckas | 881a95f | 2009-03-26 10:06:27 +0200 | [diff] [blame] | 1229 | |
Barry Song | a990cbd | 2011-07-12 21:44:10 +0800 | [diff] [blame] | 1230 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
Barry Song | 5abf58b | 2013-09-29 22:45:10 +0800 | [diff] [blame] | 1231 | M: Barry Song <baohua@kernel.org> |
Barry Song | a990cbd | 2011-07-12 21:44:10 +0800 | [diff] [blame] | 1232 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Barry Song | 85529d1 | 2013-06-17 09:44:26 +0800 | [diff] [blame] | 1233 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
Barry Song | a990cbd | 2011-07-12 21:44:10 +0800 | [diff] [blame] | 1234 | S: Maintained |
Rob Herring | e68d7c1 | 2015-12-10 17:38:23 -0600 | [diff] [blame] | 1235 | F: arch/arm/boot/dts/prima2* |
Barry Song | a990cbd | 2011-07-12 21:44:10 +0800 | [diff] [blame] | 1236 | F: arch/arm/mach-prima2/ |
Joe Perches | 4a9c44f | 2014-08-08 14:25:03 -0700 | [diff] [blame] | 1237 | F: drivers/clk/sirf/ |
Barry Song | 05f30e8 | 2013-09-29 22:45:09 +0800 | [diff] [blame] | 1238 | F: drivers/clocksource/timer-prima2.c |
Barry Song | 5833ac9 | 2015-01-12 00:04:43 +0800 | [diff] [blame] | 1239 | F: drivers/clocksource/timer-atlas7.c |
Barry Song | f8505ef | 2014-01-03 11:24:13 +0800 | [diff] [blame] | 1240 | N: [^a-z]sirf |
Barry Song | a990cbd | 2011-07-12 21:44:10 +0800 | [diff] [blame] | 1241 | |
Baruch Siach | c9d862c | 2015-04-28 13:59:43 +0300 | [diff] [blame] | 1242 | ARM/CONEXANT DIGICOLOR MACHINE SUPPORT |
| 1243 | M: Baruch Siach <baruch@tkos.co.il> |
| 1244 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1245 | S: Maintained |
Baruch Siach | cde137a | 2015-07-06 14:41:46 +0300 | [diff] [blame] | 1246 | F: arch/arm/boot/dts/cx92755* |
Baruch Siach | c9d862c | 2015-04-28 13:59:43 +0300 | [diff] [blame] | 1247 | N: digicolor |
| 1248 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1249 | ARM/EBSA110 MACHINE SUPPORT |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 1250 | M: Russell King <linux@armlinux.org.uk> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1251 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 1252 | W: http://www.armlinux.org.uk/ |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1253 | S: Maintained |
| 1254 | F: arch/arm/mach-ebsa110/ |
Jeff Kirsher | b955f6c | 2011-03-30 07:46:36 -0700 | [diff] [blame] | 1255 | F: drivers/net/ethernet/amd/am79c961a.* |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1256 | |
Uwe Kleine-König | 4721f3c | 2013-12-20 21:21:59 +0100 | [diff] [blame] | 1257 | ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT |
| 1258 | M: Uwe Kleine-König <kernel@pengutronix.de> |
| 1259 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1260 | S: Maintained |
| 1261 | N: efm32 |
| 1262 | |
Russell King | a9da4f7 | 2008-07-12 21:42:04 +0100 | [diff] [blame] | 1263 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
Stefan Schmidt | d9bd264 | 2016-12-03 22:59:57 +0100 | [diff] [blame] | 1264 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
| 1265 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Russell King | a9da4f7 | 2008-07-12 21:42:04 +0100 | [diff] [blame] | 1266 | S: Maintained |
Stefan Schmidt | cafc226 | 2009-06-14 01:08:36 +0200 | [diff] [blame] | 1267 | F: arch/arm/mach-pxa/ezx.c |
Russell King | a9da4f7 | 2008-07-12 21:42:04 +0100 | [diff] [blame] | 1268 | |
Paulius Zaleckas | 6a915af | 2009-03-25 13:10:20 +0200 | [diff] [blame] | 1269 | ARM/FARADAY FA526 PORT |
Hans Ulli Kroll | 162500b | 2010-05-13 06:43:59 +0100 | [diff] [blame] | 1270 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1271 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Hans Ulli Kroll | 162500b | 2010-05-13 06:43:59 +0100 | [diff] [blame] | 1272 | S: Maintained |
Joe Perches | 1fa7e54 | 2010-10-26 14:23:02 -0700 | [diff] [blame] | 1273 | T: git git://git.berlios.de/gemini-board |
Paulius Zaleckas | f49afbb | 2009-05-28 16:41:36 +0300 | [diff] [blame] | 1274 | F: arch/arm/mm/*-fa* |
Paulius Zaleckas | 6a915af | 2009-03-25 13:10:20 +0200 | [diff] [blame] | 1275 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1276 | ARM/FOOTBRIDGE ARCHITECTURE |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 1277 | M: Russell King <linux@armlinux.org.uk> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1278 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 1279 | W: http://www.armlinux.org.uk/ |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1280 | S: Maintained |
| 1281 | F: arch/arm/include/asm/hardware/dec21285.h |
| 1282 | F: arch/arm/mach-footbridge/ |
| 1283 | |
Sascha Hauer | 86183a5 | 2008-07-24 23:50:35 +0200 | [diff] [blame] | 1284 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
Shawn Guo | 7609ea2 | 2015-06-03 19:34:10 +0800 | [diff] [blame] | 1285 | M: Shawn Guo <shawnguo@kernel.org> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1286 | M: Sascha Hauer <kernel@pengutronix.de> |
Fabio Estevam | b046302 | 2016-06-06 10:51:40 -0300 | [diff] [blame] | 1287 | R: Fabio Estevam <fabio.estevam@nxp.com> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1288 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Sascha Hauer | 86183a5 | 2008-07-24 23:50:35 +0200 | [diff] [blame] | 1289 | S: Maintained |
Shawn Guo | f1c1283 | 2014-03-11 22:57:53 +0800 | [diff] [blame] | 1290 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
Shawn Guo | 2a82f95 | 2013-12-10 22:19:21 +0800 | [diff] [blame] | 1291 | F: arch/arm/mach-imx/ |
Shawn Guo | ce515a6 | 2014-07-02 15:37:10 +0800 | [diff] [blame] | 1292 | F: arch/arm/mach-mxs/ |
Shawn Guo | 2a82f95 | 2013-12-10 22:19:21 +0800 | [diff] [blame] | 1293 | F: arch/arm/boot/dts/imx* |
| 1294 | F: arch/arm/configs/imx*_defconfig |
Shawn Guo | cf20968 | 2015-04-26 21:58:12 +0800 | [diff] [blame] | 1295 | F: drivers/clk/imx/ |
Lucas Stach | 721cabf | 2017-02-17 20:02:44 +0100 | [diff] [blame] | 1296 | F: drivers/soc/imx/ |
Shawn Guo | cf20968 | 2015-04-26 21:58:12 +0800 | [diff] [blame] | 1297 | F: include/soc/imx/ |
Shawn Guo | 8bcb976 | 2011-10-07 22:24:18 +0800 | [diff] [blame] | 1298 | |
Stefan Agner | 142109d | 2015-03-02 00:09:02 +0100 | [diff] [blame] | 1299 | ARM/FREESCALE VYBRID ARM ARCHITECTURE |
Shawn Guo | 7609ea2 | 2015-06-03 19:34:10 +0800 | [diff] [blame] | 1300 | M: Shawn Guo <shawnguo@kernel.org> |
Stefan Agner | 142109d | 2015-03-02 00:09:02 +0100 | [diff] [blame] | 1301 | M: Sascha Hauer <kernel@pengutronix.de> |
| 1302 | R: Stefan Agner <stefan@agner.ch> |
| 1303 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1304 | S: Maintained |
| 1305 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
| 1306 | F: arch/arm/mach-imx/*vf610* |
| 1307 | F: arch/arm/boot/dts/vf* |
| 1308 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1309 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1310 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1311 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1312 | S: Maintained |
| 1313 | |
Jaya Kumar | 90b8fc3 | 2008-03-15 05:11:07 +0100 | [diff] [blame] | 1314 | ARM/GUMSTIX MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1315 | M: Steve Sakoman <sakoman@gmail.com> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1316 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Jaya Kumar | 90b8fc3 | 2008-03-15 05:11:07 +0100 | [diff] [blame] | 1317 | S: Maintained |
| 1318 | |
Philipp Zabel | ef47d5f | 2009-05-28 07:07:47 +0200 | [diff] [blame] | 1319 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1320 | M: Philipp Zabel <philipp.zabel@gmail.com> |
Philipp Zabel | 12a93f3 | 2012-02-26 12:40:19 +0100 | [diff] [blame] | 1321 | M: Paul Parsons <lost.distance@yahoo.com> |
| 1322 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Philipp Zabel | ef47d5f | 2009-05-28 07:07:47 +0200 | [diff] [blame] | 1323 | S: Maintained |
| 1324 | F: arch/arm/mach-pxa/hx4700.c |
| 1325 | F: arch/arm/mach-pxa/include/mach/hx4700.h |
Philipp Zabel | 12a93f3 | 2012-02-26 12:40:19 +0100 | [diff] [blame] | 1326 | F: sound/soc/pxa/hx4700.c |
Philipp Zabel | ef47d5f | 2009-05-28 07:07:47 +0200 | [diff] [blame] | 1327 | |
Wei Xu | 4dfad06 | 2014-07-07 10:41:53 +0800 | [diff] [blame] | 1328 | ARM/HISILICON SOC SUPPORT |
| 1329 | M: Wei Xu <xuwei5@hisilicon.com> |
| 1330 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1331 | W: http://www.hisilicon.com |
| 1332 | S: Supported |
| 1333 | T: git git://github.com/hisilicon/linux-hisi.git |
| 1334 | F: arch/arm/mach-hisi/ |
Rob Herring | e68d7c1 | 2015-12-10 17:38:23 -0600 | [diff] [blame] | 1335 | F: arch/arm/boot/dts/hi3* |
| 1336 | F: arch/arm/boot/dts/hip* |
| 1337 | F: arch/arm/boot/dts/hisi* |
| 1338 | F: arch/arm64/boot/dts/hisilicon/ |
Wei Xu | 4dfad06 | 2014-07-07 10:41:53 +0800 | [diff] [blame] | 1339 | |
Kristoffer Ericson | 21f37bc | 2006-11-21 01:20:31 +0100 | [diff] [blame] | 1340 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1341 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 1342 | W: www.jlime.com |
| 1343 | S: Maintained |
Kristoffer Ericson | 084bad9 | 2009-07-29 15:04:32 -0700 | [diff] [blame] | 1344 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
| 1345 | F: arch/arm/mach-sa1100/jornada720.c |
| 1346 | F: arch/arm/mach-sa1100/include/mach/jornada720.h |
Kristoffer Ericson | 21f37bc | 2006-11-21 01:20:31 +0100 | [diff] [blame] | 1347 | |
Javier Martinez Canillas | 5e767ab | 2012-10-08 10:47:34 +0200 | [diff] [blame] | 1348 | ARM/IGEP MACHINE SUPPORT |
| 1349 | M: Enric Balletbo i Serra <eballetbo@gmail.com> |
| 1350 | M: Javier Martinez Canillas <javier@dowhile0.org> |
| 1351 | L: linux-omap@vger.kernel.org |
| 1352 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1353 | S: Maintained |
Javier Martinez Canillas | 06ff74f | 2013-10-18 17:37:53 +0200 | [diff] [blame] | 1354 | F: arch/arm/boot/dts/omap3-igep* |
Javier Martinez Canillas | 5e767ab | 2012-10-08 10:47:34 +0200 | [diff] [blame] | 1355 | |
Marek Vasut | 403d297 | 2010-05-22 00:29:39 +0200 | [diff] [blame] | 1356 | ARM/INCOME PXA270 SUPPORT |
| 1357 | M: Marek Vasut <marek.vasut@gmail.com> |
| 1358 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1359 | S: Maintained |
Joe Perches | ec15408 | 2010-10-26 14:22:59 -0700 | [diff] [blame] | 1360 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
Marek Vasut | 403d297 | 2010-05-22 00:29:39 +0200 | [diff] [blame] | 1361 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1362 | ARM/INTEL IOP32X ARM ARCHITECTURE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1363 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1364 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Dan Williams | f00f510 | 2009-08-18 15:21:50 -0700 | [diff] [blame] | 1365 | S: Maintained |
Dan Williams | e2bdb17 | 2007-01-02 18:32:37 +0100 | [diff] [blame] | 1366 | |
| 1367 | ARM/INTEL IOP33X ARM ARCHITECTURE |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1368 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Dan Williams | 08223d8 | 2014-08-19 06:07:56 -0700 | [diff] [blame] | 1369 | S: Orphan |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1370 | |
| 1371 | ARM/INTEL IOP13XX ARM ARCHITECTURE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1372 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1373 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Dan Williams | f00f510 | 2009-08-18 15:21:50 -0700 | [diff] [blame] | 1374 | S: Maintained |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1375 | |
| 1376 | ARM/INTEL IQ81342EX MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1377 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1378 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Dan Williams | f00f510 | 2009-08-18 15:21:50 -0700 | [diff] [blame] | 1379 | S: Maintained |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1380 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1381 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1382 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1383 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1384 | S: Maintained |
| 1385 | |
Krzysztof Hałasa | dfdd8cc | 2009-09-21 18:31:24 +0200 | [diff] [blame] | 1386 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
| 1387 | M: Imre Kaloz <kaloz@openwrt.org> |
Krzysztof Hałasa | 5529c2c | 2014-09-30 10:32:58 +0200 | [diff] [blame] | 1388 | M: Krzysztof Halasa <khalasa@piap.pl> |
Russell King | baea7b9 | 2009-09-24 21:22:33 +0100 | [diff] [blame] | 1389 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Krzysztof Hałasa | dfdd8cc | 2009-09-21 18:31:24 +0200 | [diff] [blame] | 1390 | S: Maintained |
| 1391 | F: arch/arm/mach-ixp4xx/ |
| 1392 | |
Joe Perches | 838553c | 2010-10-26 14:22:59 -0700 | [diff] [blame] | 1393 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
Jonathan Cameron | 7f49a7f | 2009-10-15 16:39:30 +0100 | [diff] [blame] | 1394 | M: Jonathan Cameron <jic23@cam.ac.uk> |
| 1395 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1396 | S: Maintained |
| 1397 | F: arch/arm/mach-pxa/stargate2.c |
| 1398 | F: drivers/pcmcia/pxa2xx_stargate2.c |
| 1399 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1400 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1401 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1402 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Dan Williams | f00f510 | 2009-08-18 15:21:50 -0700 | [diff] [blame] | 1403 | S: Maintained |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1404 | |
| 1405 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1406 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1407 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1408 | S: Maintained |
| 1409 | |
Santosh Shilimkar | 1154f85 | 2013-08-05 14:11:14 -0400 | [diff] [blame] | 1410 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
Santosh Shilimkar | 9721580 | 2014-10-13 14:16:28 -0400 | [diff] [blame] | 1411 | M: Santosh Shilimkar <ssantosh@kernel.org> |
Santosh Shilimkar | 1154f85 | 2013-08-05 14:11:14 -0400 | [diff] [blame] | 1412 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1413 | S: Maintained |
| 1414 | F: arch/arm/mach-keystone/ |
Nishanth Menon | 5edafc2 | 2016-03-22 09:06:22 -0700 | [diff] [blame] | 1415 | F: arch/arm/boot/dts/keystone-* |
Santosh Shilimkar | 317929c | 2013-11-23 17:31:27 -0500 | [diff] [blame] | 1416 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
Santosh Shilimkar | 1154f85 | 2013-08-05 14:11:14 -0400 | [diff] [blame] | 1417 | |
Santosh Shilimkar | bc6aa56 | 2014-06-22 16:06:22 -0400 | [diff] [blame] | 1418 | ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK |
Santosh Shilimkar | 9721580 | 2014-10-13 14:16:28 -0400 | [diff] [blame] | 1419 | M: Santosh Shilimkar <ssantosh@kernel.org> |
Santosh Shilimkar | bc6aa56 | 2014-06-22 16:06:22 -0400 | [diff] [blame] | 1420 | L: linux-kernel@vger.kernel.org |
| 1421 | S: Maintained |
| 1422 | F: drivers/clk/keystone/ |
| 1423 | |
| 1424 | ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE |
Santosh Shilimkar | 9721580 | 2014-10-13 14:16:28 -0400 | [diff] [blame] | 1425 | M: Santosh Shilimkar <ssantosh@kernel.org> |
Santosh Shilimkar | bc6aa56 | 2014-06-22 16:06:22 -0400 | [diff] [blame] | 1426 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1427 | L: linux-kernel@vger.kernel.org |
| 1428 | S: Maintained |
| 1429 | F: drivers/clocksource/timer-keystone.c |
| 1430 | |
| 1431 | ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER |
Santosh Shilimkar | 9721580 | 2014-10-13 14:16:28 -0400 | [diff] [blame] | 1432 | M: Santosh Shilimkar <ssantosh@kernel.org> |
Santosh Shilimkar | bc6aa56 | 2014-06-22 16:06:22 -0400 | [diff] [blame] | 1433 | L: linux-kernel@vger.kernel.org |
| 1434 | S: Maintained |
| 1435 | F: drivers/power/reset/keystone-reset.c |
| 1436 | |
| 1437 | ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS |
Santosh Shilimkar | 9721580 | 2014-10-13 14:16:28 -0400 | [diff] [blame] | 1438 | M: Santosh Shilimkar <ssantosh@kernel.org> |
Santosh Shilimkar | bc6aa56 | 2014-06-22 16:06:22 -0400 | [diff] [blame] | 1439 | L: linux-kernel@vger.kernel.org |
| 1440 | S: Maintained |
| 1441 | F: drivers/memory/*emif* |
| 1442 | |
Chanho Min | 8cb555b | 2016-04-11 20:54:47 +0900 | [diff] [blame] | 1443 | ARM/LG1K ARCHITECTURE |
| 1444 | M: Chanho Min <chanho.min@lge.com> |
| 1445 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1446 | S: Maintained |
| 1447 | F: arch/arm64/boot/dts/lg/ |
| 1448 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1449 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1450 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1451 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1452 | S: Maintained |
| 1453 | |
Joachim Eastwood | 3143875 | 2015-05-19 20:59:21 +0200 | [diff] [blame] | 1454 | ARM/LPC18XX ARCHITECTURE |
| 1455 | M: Joachim Eastwood <manabian@gmail.com> |
| 1456 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1457 | S: Maintained |
Joachim Eastwood | 19c1c32 | 2015-10-11 22:40:42 +0200 | [diff] [blame] | 1458 | F: arch/arm/boot/dts/lpc43* |
| 1459 | F: drivers/clk/nxp/clk-lpc18xx* |
| 1460 | F: drivers/clocksource/time-lpc32xx.c |
| 1461 | F: drivers/i2c/busses/i2c-lpc2k.c |
| 1462 | F: drivers/memory/pl172.c |
| 1463 | F: drivers/mtd/spi-nor/nxp-spifi.c |
| 1464 | F: drivers/rtc/rtc-lpc24xx.c |
Joachim Eastwood | 3143875 | 2015-05-19 20:59:21 +0200 | [diff] [blame] | 1465 | N: lpc18xx |
| 1466 | |
Vladimir Zapolskiy | 15e4f7d | 2016-04-27 02:55:17 +0300 | [diff] [blame] | 1467 | ARM/LPC32XX SOC SUPPORT |
Vladimir Zapolskiy | 8d5a6b4 | 2016-04-27 02:55:18 +0300 | [diff] [blame] | 1468 | M: Vladimir Zapolskiy <vz@mleia.com> |
| 1469 | M: Sylvain Lemieux <slemieux.tyco@gmail.com> |
Vladimir Zapolskiy | 15e4f7d | 2016-04-27 02:55:17 +0300 | [diff] [blame] | 1470 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Vladimir Zapolskiy | 8d5a6b4 | 2016-04-27 02:55:18 +0300 | [diff] [blame] | 1471 | T: git git://github.com/vzapolskiy/linux-lpc32xx.git |
Vladimir Zapolskiy | 15e4f7d | 2016-04-27 02:55:17 +0300 | [diff] [blame] | 1472 | S: Maintained |
Vladimir Zapolskiy | 2377f9f | 2016-04-27 02:55:19 +0300 | [diff] [blame] | 1473 | F: arch/arm/boot/dts/lpc32* |
Vladimir Zapolskiy | 15e4f7d | 2016-04-27 02:55:17 +0300 | [diff] [blame] | 1474 | F: arch/arm/mach-lpc32xx/ |
Vladimir Zapolskiy | 2377f9f | 2016-04-27 02:55:19 +0300 | [diff] [blame] | 1475 | F: drivers/i2c/busses/i2c-pnx.c |
| 1476 | F: drivers/net/ethernet/nxp/lpc_eth.c |
| 1477 | F: drivers/usb/host/ohci-nxp.c |
| 1478 | F: drivers/watchdog/pnx4008_wdt.c |
| 1479 | N: lpc32xx |
Vladimir Zapolskiy | 15e4f7d | 2016-04-27 02:55:17 +0300 | [diff] [blame] | 1480 | |
Philipp Zabel | 3b886171 | 2008-07-09 21:27:15 +0100 | [diff] [blame] | 1481 | ARM/MAGICIAN MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1482 | M: Philipp Zabel <philipp.zabel@gmail.com> |
Philipp Zabel | 3b886171 | 2008-07-09 21:27:15 +0100 | [diff] [blame] | 1483 | S: Maintained |
| 1484 | |
Thomas Petazzoni | 1f664ab | 2016-04-26 09:58:39 +0200 | [diff] [blame] | 1485 | ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support |
Thomas Petazzoni | 75f4127 | 2012-06-01 18:50:52 +0200 | [diff] [blame] | 1486 | M: Jason Cooper <jason@lakedaemon.net> |
| 1487 | M: Andrew Lunn <andrew@lunn.ch> |
| 1488 | M: Gregory Clement <gregory.clement@free-electrons.com> |
Jason Cooper | dcb7150 | 2013-10-14 18:32:21 +0000 | [diff] [blame] | 1489 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
Thomas Petazzoni | 75f4127 | 2012-06-01 18:50:52 +0200 | [diff] [blame] | 1490 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1491 | S: Maintained |
| 1492 | F: arch/arm/mach-mvebu/ |
Joe Perches | 59ec967 | 2015-03-25 15:55:17 -0700 | [diff] [blame] | 1493 | F: drivers/rtc/rtc-armada38x.c |
Gregory CLEMENT | 31c17ac | 2015-05-15 14:25:43 +0200 | [diff] [blame] | 1494 | F: arch/arm/boot/dts/armada* |
| 1495 | F: arch/arm/boot/dts/kirkwood* |
Gregory CLEMENT | dcc3068a7 | 2016-02-02 18:14:16 +0100 | [diff] [blame] | 1496 | F: arch/arm64/boot/dts/marvell/armada* |
Viresh Kumar | 9f123de | 2016-04-27 08:52:27 +0530 | [diff] [blame] | 1497 | F: drivers/cpufreq/mvebu-cpufreq.c |
Thomas Petazzoni | e269777 | 2016-03-29 18:17:40 +0200 | [diff] [blame] | 1498 | F: arch/arm/configs/mvebu_*_defconfig |
Thomas Petazzoni | 75f4127 | 2012-06-01 18:50:52 +0200 | [diff] [blame] | 1499 | |
Sebastian Hesselbarth | 40f4978 | 2013-10-08 12:52:30 +0200 | [diff] [blame] | 1500 | ARM/Marvell Berlin SoC support |
Jisheng Zhang | 70e1a28 | 2016-09-29 18:51:20 +0800 | [diff] [blame] | 1501 | M: Jisheng Zhang <jszhang@marvell.com> |
Sebastian Hesselbarth | 40f4978 | 2013-10-08 12:52:30 +0200 | [diff] [blame] | 1502 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
| 1503 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1504 | S: Maintained |
| 1505 | F: arch/arm/mach-berlin/ |
Gregory CLEMENT | 31c17ac | 2015-05-15 14:25:43 +0200 | [diff] [blame] | 1506 | F: arch/arm/boot/dts/berlin* |
Rob Herring | e68d7c1 | 2015-12-10 17:38:23 -0600 | [diff] [blame] | 1507 | F: arch/arm64/boot/dts/marvell/berlin* |
Gregory CLEMENT | 31c17ac | 2015-05-15 14:25:43 +0200 | [diff] [blame] | 1508 | |
Sebastian Hesselbarth | 40f4978 | 2013-10-08 12:52:30 +0200 | [diff] [blame] | 1509 | |
Andrew Lunn | 4cfab57 | 2014-07-16 22:32:51 +0200 | [diff] [blame] | 1510 | ARM/Marvell Dove/MV78xx0/Orion SOC support |
Nicolas Pitre | 4f1312b | 2012-04-30 13:44:48 -0400 | [diff] [blame] | 1511 | M: Jason Cooper <jason@lakedaemon.net> |
| 1512 | M: Andrew Lunn <andrew@lunn.ch> |
Jason Cooper | dcb7150 | 2013-10-14 18:32:21 +0000 | [diff] [blame] | 1513 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
Gregory CLEMENT | bfda403 | 2015-03-13 14:41:45 +0100 | [diff] [blame] | 1514 | M: Gregory Clement <gregory.clement@free-electrons.com> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1515 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Nicolas Pitre | 4f1312b | 2012-04-30 13:44:48 -0400 | [diff] [blame] | 1516 | S: Maintained |
Geert Uytterhoeven | ab7090f | 2017-03-12 14:16:49 +0100 | [diff] [blame] | 1517 | F: Documentation/devicetree/bindings/soc/dove/ |
Nicolas Pitre | 4f1312b | 2012-04-30 13:44:48 -0400 | [diff] [blame] | 1518 | F: arch/arm/mach-dove/ |
Nicolas Pitre | 54a246f | 2009-08-11 23:28:51 -0400 | [diff] [blame] | 1519 | F: arch/arm/mach-mv78xx0/ |
| 1520 | F: arch/arm/mach-orion5x/ |
| 1521 | F: arch/arm/plat-orion/ |
Gregory CLEMENT | 31c17ac | 2015-05-15 14:25:43 +0200 | [diff] [blame] | 1522 | F: arch/arm/boot/dts/dove* |
| 1523 | F: arch/arm/boot/dts/orion5x* |
| 1524 | |
Nicolas Pitre | 54a246f | 2009-08-11 23:28:51 -0400 | [diff] [blame] | 1525 | |
Alexander Clouter | d69ac13 | 2011-04-14 15:22:02 -0700 | [diff] [blame] | 1526 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
| 1527 | M: Alexander Clouter <alex@digriz.org.uk> |
| 1528 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1529 | W: http://www.digriz.org.uk/ts78xx/kernel |
| 1530 | S: Maintained |
| 1531 | F: arch/arm/mach-orion5x/ts78xx-* |
| 1532 | |
Neil Armstrong | e557959 | 2016-04-01 14:56:16 +0200 | [diff] [blame] | 1533 | ARM/OXNAS platform support |
| 1534 | M: Neil Armstrong <narmstrong@baylibre.com> |
| 1535 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Neil Armstrong | d6fbd37 | 2016-09-16 10:09:17 +0200 | [diff] [blame] | 1536 | L: linux-oxnas@lists.tuxfamily.org (moderated for non-subscribers) |
Neil Armstrong | e557959 | 2016-04-01 14:56:16 +0200 | [diff] [blame] | 1537 | S: Maintained |
| 1538 | F: arch/arm/mach-oxnas/ |
Neil Armstrong | 52c468f | 2016-10-17 14:30:17 +0200 | [diff] [blame] | 1539 | F: arch/arm/boot/dts/ox8*.dtsi |
Neil Armstrong | e557959 | 2016-04-01 14:56:16 +0200 | [diff] [blame] | 1540 | F: arch/arm/boot/dts/wd-mbwe.dts |
Neil Armstrong | 52c468f | 2016-10-17 14:30:17 +0200 | [diff] [blame] | 1541 | F: arch/arm/boot/dts/cloudengines-pogoplug-series-3.dts |
Neil Armstrong | e557959 | 2016-04-01 14:56:16 +0200 | [diff] [blame] | 1542 | N: oxnas |
| 1543 | |
Eddie Huang | 607b8fc | 2015-05-06 15:23:42 +0800 | [diff] [blame] | 1544 | ARM/Mediatek RTC DRIVER |
| 1545 | M: Eddie Huang <eddie.huang@mediatek.com> |
| 1546 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1547 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) |
| 1548 | S: Maintained |
| 1549 | F: drivers/rtc/rtc-mt6397.c |
| 1550 | |
Matthias Brugger | e54951c | 2014-09-26 11:45:55 +0200 | [diff] [blame] | 1551 | ARM/Mediatek SoC support |
| 1552 | M: Matthias Brugger <matthias.bgg@gmail.com> |
| 1553 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Matthias Brugger | 17b199d | 2015-04-16 12:49:21 -0700 | [diff] [blame] | 1554 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) |
Matthias Brugger | e54951c | 2014-09-26 11:45:55 +0200 | [diff] [blame] | 1555 | S: Maintained |
| 1556 | F: arch/arm/boot/dts/mt6* |
Andreas Färber | 44e4e5f | 2017-01-26 15:20:28 +0100 | [diff] [blame] | 1557 | F: arch/arm/boot/dts/mt7* |
Matthias Brugger | e54951c | 2014-09-26 11:45:55 +0200 | [diff] [blame] | 1558 | F: arch/arm/boot/dts/mt8* |
| 1559 | F: arch/arm/mach-mediatek/ |
Andreas Färber | 44e4e5f | 2017-01-26 15:20:28 +0100 | [diff] [blame] | 1560 | F: arch/arm64/boot/dts/mediatek/ |
Matthias Brugger | e54951c | 2014-09-26 11:45:55 +0200 | [diff] [blame] | 1561 | N: mtk |
| 1562 | K: mediatek |
| 1563 | |
Chunfeng Yun | 0f8669e | 2015-10-12 10:41:57 +0800 | [diff] [blame] | 1564 | ARM/Mediatek USB3 PHY DRIVER |
| 1565 | M: Chunfeng Yun <chunfeng.yun@mediatek.com> |
| 1566 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1567 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) |
| 1568 | S: Maintained |
| 1569 | F: drivers/phy/phy-mt65xx-usb3.c |
| 1570 | |
Arnd Bergmann | adcb079 | 2012-09-07 12:21:56 +0000 | [diff] [blame] | 1571 | ARM/MICREL KS8695 ARCHITECTURE |
| 1572 | M: Greg Ungerer <gerg@uclinux.org> |
| 1573 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 1574 | F: arch/arm/mach-ks8695/ |
Arnd Bergmann | adcb079 | 2012-09-07 12:21:56 +0000 | [diff] [blame] | 1575 | S: Odd Fixes |
| 1576 | |
Robert Jarzmik | d78ff0a | 2009-06-16 07:51:05 +0200 | [diff] [blame] | 1577 | ARM/MIOA701 MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1578 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1579 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Robert Jarzmik | d78ff0a | 2009-06-16 07:51:05 +0200 | [diff] [blame] | 1580 | F: arch/arm/mach-pxa/mioa701.c |
| 1581 | S: Maintained |
| 1582 | |
Kristoffer Ericson | 9624dfe | 2008-10-09 16:50:46 +0100 | [diff] [blame] | 1583 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1584 | M: Michael Petchkovsky <mkpetch@internode.on.net> |
Kristoffer Ericson | 9624dfe | 2008-10-09 16:50:46 +0100 | [diff] [blame] | 1585 | S: Maintained |
| 1586 | |
Alessandro Rubini | e0ee985 | 2009-12-02 14:01:03 +0100 | [diff] [blame] | 1587 | ARM/NOMADIK ARCHITECTURE |
Joe Perches | 28b8e8d | 2010-03-23 13:35:20 -0700 | [diff] [blame] | 1588 | M: Alessandro Rubini <rubini@unipv.it> |
Linus Walleij | e4651a9 | 2012-08-06 09:52:52 +0200 | [diff] [blame] | 1589 | M: Linus Walleij <linus.walleij@linaro.org> |
Joe Perches | 28b8e8d | 2010-03-23 13:35:20 -0700 | [diff] [blame] | 1590 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1591 | S: Maintained |
| 1592 | F: arch/arm/mach-nomadik/ |
Joe Perches | ecc265f | 2014-08-08 14:26:20 -0700 | [diff] [blame] | 1593 | F: drivers/pinctrl/nomadik/ |
Linus Walleij | 8757288 | 2010-12-22 09:18:29 +0100 | [diff] [blame] | 1594 | F: drivers/i2c/busses/i2c-nomadik.c |
Linus Walleij | e4651a9 | 2012-08-06 09:52:52 +0200 | [diff] [blame] | 1595 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
Alessandro Rubini | e0ee985 | 2009-12-02 14:01:03 +0100 | [diff] [blame] | 1596 | |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 1597 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1598 | M: Nelson Castillo <arhuaco@freaks-unidos.net> |
Andy Green | 9d76295 | 2009-05-19 06:41:42 -0300 | [diff] [blame] | 1599 | L: openmoko-kernel@lists.openmoko.org (subscribers-only) |
| 1600 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner |
| 1601 | S: Supported |
| 1602 | |
Dirk Opfer | 8459c15 | 2005-11-06 14:27:52 +0000 | [diff] [blame] | 1603 | ARM/TOSA MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1604 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
| 1605 | M: Dirk Opfer <dirk@opfer-online.de> |
Dirk Opfer | 8459c15 | 2005-11-06 14:27:52 +0000 | [diff] [blame] | 1606 | S: Maintained |
| 1607 | |
Marek Vasut | 5d783a2 | 2009-07-16 13:26:48 +0200 | [diff] [blame] | 1608 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
Joe Perches | 933d35f | 2009-10-01 15:43:59 -0700 | [diff] [blame] | 1609 | M: Marek Vasut <marek.vasut@gmail.com> |
Marek Vasut | 7528078 | 2009-08-22 00:49:53 +0200 | [diff] [blame] | 1610 | L: linux-arm-kernel@lists.infradead.org |
Marek Vašut | b5e4ad5 | 2008-07-07 17:25:46 +0100 | [diff] [blame] | 1611 | W: http://hackndev.com |
| 1612 | S: Maintained |
Joe Perches | 933d35f | 2009-10-01 15:43:59 -0700 | [diff] [blame] | 1613 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
| 1614 | F: arch/arm/mach-pxa/palmtx.c |
| 1615 | F: arch/arm/mach-pxa/include/mach/palmt5.h |
| 1616 | F: arch/arm/mach-pxa/palmt5.c |
| 1617 | F: arch/arm/mach-pxa/include/mach/palmld.h |
| 1618 | F: arch/arm/mach-pxa/palmld.c |
| 1619 | F: arch/arm/mach-pxa/include/mach/palmte2.h |
| 1620 | F: arch/arm/mach-pxa/palmte2.c |
| 1621 | F: arch/arm/mach-pxa/include/mach/palmtc.h |
| 1622 | F: arch/arm/mach-pxa/palmtc.c |
Marek Vašut | b5e4ad5 | 2008-07-07 17:25:46 +0100 | [diff] [blame] | 1623 | |
Joe Perches | b57fe92 | 2009-12-14 18:00:52 -0800 | [diff] [blame] | 1624 | ARM/PALM TREO SUPPORT |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 1625 | M: Tomas Cech <sleep_walker@suse.com> |
Marek Vasut | 7528078 | 2009-08-22 00:49:53 +0200 | [diff] [blame] | 1626 | L: linux-arm-kernel@lists.infradead.org |
Tomas 'Sleep_Walker' Cech | 90af581 | 2009-05-22 16:05:58 +0200 | [diff] [blame] | 1627 | W: http://hackndev.com |
| 1628 | S: Maintained |
Joe Perches | b57fe92 | 2009-12-14 18:00:52 -0800 | [diff] [blame] | 1629 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
| 1630 | F: arch/arm/mach-pxa/palmtreo.c |
Tomas 'Sleep_Walker' Cech | 90af581 | 2009-05-22 16:05:58 +0200 | [diff] [blame] | 1631 | |
Sergey Lapin | c49e1e6 | 2008-08-29 15:47:52 +0100 | [diff] [blame] | 1632 | ARM/PALMZ72 SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1633 | M: Sergey Lapin <slapin@ossfans.org> |
Marek Vasut | 7528078 | 2009-08-22 00:49:53 +0200 | [diff] [blame] | 1634 | L: linux-arm-kernel@lists.infradead.org |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1635 | W: http://hackndev.com |
| 1636 | S: Maintained |
Joe Perches | 933d35f | 2009-10-01 15:43:59 -0700 | [diff] [blame] | 1637 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
| 1638 | F: arch/arm/mach-pxa/palmz72.c |
Sergey Lapin | c49e1e6 | 2008-08-29 15:47:52 +0100 | [diff] [blame] | 1639 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1640 | ARM/PLEB SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1641 | M: Peter Chubb <pleb@gelato.unsw.edu.au> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
| 1643 | S: Maintained |
| 1644 | |
| 1645 | ARM/PT DIGITAL BOARD PORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1646 | M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1647 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 1648 | W: http://www.armlinux.org.uk/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1649 | S: Maintained |
| 1650 | |
Kumar Gala | 8fc1b0f | 2014-01-21 17:14:10 -0600 | [diff] [blame] | 1651 | ARM/QUALCOMM SUPPORT |
Andy Gross | bbeaa59 | 2015-12-10 21:07:03 -0600 | [diff] [blame] | 1652 | M: Andy Gross <andy.gross@linaro.org> |
| 1653 | M: David Brown <david.brown@linaro.org> |
Kumar Gala | 8fc1b0f | 2014-01-21 17:14:10 -0600 | [diff] [blame] | 1654 | L: linux-arm-msm@vger.kernel.org |
Andy Gross | f5d3af9 | 2015-01-21 22:39:24 -0600 | [diff] [blame] | 1655 | L: linux-soc@vger.kernel.org |
Kumar Gala | 8fc1b0f | 2014-01-21 17:14:10 -0600 | [diff] [blame] | 1656 | S: Maintained |
Geert Uytterhoeven | 0ff50d6 | 2016-05-22 11:05:41 +0200 | [diff] [blame] | 1657 | F: Documentation/devicetree/bindings/soc/qcom/ |
Bjorn Andersson | 0c4cbf9 | 2015-11-23 21:55:03 -0800 | [diff] [blame] | 1658 | F: arch/arm/boot/dts/qcom-*.dts |
| 1659 | F: arch/arm/boot/dts/qcom-*.dtsi |
Kumar Gala | 8fc1b0f | 2014-01-21 17:14:10 -0600 | [diff] [blame] | 1660 | F: arch/arm/mach-qcom/ |
Rob Herring | e68d7c1 | 2015-12-10 17:38:23 -0600 | [diff] [blame] | 1661 | F: arch/arm64/boot/dts/qcom/* |
Srinivas Kandagatla | 5482cef | 2016-01-21 18:35:13 +0000 | [diff] [blame] | 1662 | F: drivers/i2c/busses/i2c-qup.c |
Srinivas Kandagatla | 39a3366 | 2016-02-22 11:55:26 +0000 | [diff] [blame] | 1663 | F: drivers/clk/qcom/ |
Michael Scott | 4fb1a42 | 2016-10-21 16:02:52 -0700 | [diff] [blame] | 1664 | F: drivers/pinctrl/qcom/ |
Pramod Gurav | 472cef3 | 2016-05-04 14:12:03 +0530 | [diff] [blame] | 1665 | F: drivers/dma/qcom/ |
Andy Gross | f5d3af9 | 2015-01-21 22:39:24 -0600 | [diff] [blame] | 1666 | F: drivers/soc/qcom/ |
Srinivas Kandagatla | 5482cef | 2016-01-21 18:35:13 +0000 | [diff] [blame] | 1667 | F: drivers/spi/spi-qup.c |
Stephen Boyd | c0c89fa | 2015-03-13 11:09:34 -0700 | [diff] [blame] | 1668 | F: drivers/tty/serial/msm_serial.h |
| 1669 | F: drivers/tty/serial/msm_serial.c |
| 1670 | F: drivers/*/pm8???-* |
| 1671 | F: drivers/mfd/ssbi.c |
Kumar Gala | 916f743 | 2015-02-26 15:49:09 -0600 | [diff] [blame] | 1672 | F: drivers/firmware/qcom_scm.c |
Andy Gross | bbeaa59 | 2015-12-10 21:07:03 -0600 | [diff] [blame] | 1673 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git |
Kumar Gala | 8fc1b0f | 2014-01-21 17:14:10 -0600 | [diff] [blame] | 1674 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1675 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1676 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1677 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1678 | S: Maintained |
| 1679 | |
Simon Horman | b138e11 | 2015-10-02 15:42:21 +0900 | [diff] [blame] | 1680 | ARM/RENESAS ARM64 ARCHITECTURE |
| 1681 | M: Simon Horman <horms@verge.net.au> |
| 1682 | M: Magnus Damm <magnus.damm@gmail.com> |
Simon Horman | 1926e54 | 2016-02-15 10:49:47 +0900 | [diff] [blame] | 1683 | L: linux-renesas-soc@vger.kernel.org |
| 1684 | Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/ |
Simon Horman | b138e11 | 2015-10-02 15:42:21 +0900 | [diff] [blame] | 1685 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
| 1686 | S: Supported |
| 1687 | F: arch/arm64/boot/dts/renesas/ |
Geert Uytterhoeven | be32bcb | 2016-04-20 14:02:36 +0200 | [diff] [blame] | 1688 | F: drivers/soc/renesas/ |
| 1689 | F: include/linux/soc/renesas/ |
Simon Horman | b138e11 | 2015-10-02 15:42:21 +0900 | [diff] [blame] | 1690 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1691 | ARM/RISCPC ARCHITECTURE |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 1692 | M: Russell King <linux@armlinux.org.uk> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1693 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 1694 | W: http://www.armlinux.org.uk/ |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1695 | S: Maintained |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1696 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
| 1697 | F: arch/arm/include/asm/hardware/ioc.h |
| 1698 | F: arch/arm/include/asm/hardware/iomd.h |
| 1699 | F: arch/arm/include/asm/hardware/memc.h |
| 1700 | F: arch/arm/mach-rpc/ |
Jeff Kirsher | 1a6422f | 2011-11-04 12:58:41 +0000 | [diff] [blame] | 1701 | F: drivers/net/ethernet/8390/etherh.c |
Jeff Kirsher | 9e13fbf | 2011-07-15 03:18:21 -0700 | [diff] [blame] | 1702 | F: drivers/net/ethernet/i825xx/ether1* |
| 1703 | F: drivers/net/ethernet/seeq/ether3* |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1704 | F: drivers/scsi/arm/ |
| 1705 | |
Heiko Stuebner | 08ddbb0 | 2013-10-14 23:19:58 +0200 | [diff] [blame] | 1706 | ARM/Rockchip SoC support |
| 1707 | M: Heiko Stuebner <heiko@sntech.de> |
| 1708 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Heiko Stuebner | 00250b5 | 2014-08-20 12:31:03 +0200 | [diff] [blame] | 1709 | L: linux-rockchip@lists.infradead.org |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 1710 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git |
Heiko Stuebner | 08ddbb0 | 2013-10-14 23:19:58 +0200 | [diff] [blame] | 1711 | S: Maintained |
Heiko Stübner | 541555e | 2014-08-27 00:05:50 +0200 | [diff] [blame] | 1712 | F: arch/arm/boot/dts/rk3* |
Heiko Stuebner | 08ddbb0 | 2013-10-14 23:19:58 +0200 | [diff] [blame] | 1713 | F: arch/arm/mach-rockchip/ |
Heiko Stübner | 541555e | 2014-08-27 00:05:50 +0200 | [diff] [blame] | 1714 | F: drivers/clk/rockchip/ |
| 1715 | F: drivers/i2c/busses/i2c-rk3x.c |
Heiko Stuebner | 08ddbb0 | 2013-10-14 23:19:58 +0200 | [diff] [blame] | 1716 | F: drivers/*/*rockchip* |
Heiko Stübner | 541555e | 2014-08-27 00:05:50 +0200 | [diff] [blame] | 1717 | F: drivers/*/*/*rockchip* |
| 1718 | F: sound/soc/rockchip/ |
Heiko Stuebner | b4331b4 | 2015-03-14 19:32:06 +0100 | [diff] [blame] | 1719 | N: rockchip |
Heiko Stuebner | 08ddbb0 | 2013-10-14 23:19:58 +0200 | [diff] [blame] | 1720 | |
Kukjin Kim | 5bfb937 | 2014-11-14 16:54:57 +0900 | [diff] [blame] | 1721 | ARM/SAMSUNG EXYNOS ARM ARCHITECTURES |
| 1722 | M: Kukjin Kim <kgene@kernel.org> |
Krzysztof Kozlowski | 326dce0 | 2016-08-16 18:50:42 +0200 | [diff] [blame] | 1723 | M: Krzysztof Kozlowski <krzk@kernel.org> |
Javier Martinez Canillas | 29617e1 | 2016-08-25 10:56:48 -0400 | [diff] [blame] | 1724 | R: Javier Martinez Canillas <javier@osg.samsung.com> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1725 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Mark Brown | 7a549d7 | 2011-12-02 13:52:12 +0900 | [diff] [blame] | 1726 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
Krzysztof Kozlowski | 6f96d63 | 2016-12-07 19:18:35 +0200 | [diff] [blame] | 1727 | Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/ |
Ben Dooks | b21477f | 2009-06-13 10:46:34 +0100 | [diff] [blame] | 1728 | S: Maintained |
Mark Brown | 6f0589c | 2013-10-08 07:18:21 +0900 | [diff] [blame] | 1729 | F: arch/arm/boot/dts/s3c* |
Rob Herring | e68d7c1 | 2015-12-10 17:38:23 -0600 | [diff] [blame] | 1730 | F: arch/arm/boot/dts/s5p* |
| 1731 | F: arch/arm/boot/dts/samsung* |
Mark Brown | 6f0589c | 2013-10-08 07:18:21 +0900 | [diff] [blame] | 1732 | F: arch/arm/boot/dts/exynos* |
Krzysztof Kozlowski | d97236e | 2015-06-06 19:02:19 +0900 | [diff] [blame] | 1733 | F: arch/arm64/boot/dts/exynos/ |
Kukjin Kim | 482ce51 | 2010-06-29 15:05:26 -0700 | [diff] [blame] | 1734 | F: arch/arm/plat-samsung/ |
Heiko Stuebner | 769bbb6 | 2011-12-02 13:51:56 +0900 | [diff] [blame] | 1735 | F: arch/arm/mach-s3c24*/ |
| 1736 | F: arch/arm/mach-s3c64xx/ |
Kukjin Kim | 5bfb937 | 2014-11-14 16:54:57 +0900 | [diff] [blame] | 1737 | F: arch/arm/mach-s5p*/ |
| 1738 | F: arch/arm/mach-exynos*/ |
Krzysztof Kozlowski | 1c03274 | 2016-06-22 14:16:45 +0200 | [diff] [blame] | 1739 | F: drivers/*/*s3c24* |
| 1740 | F: drivers/*/*/*s3c24* |
| 1741 | F: drivers/*/*s3c64xx* |
| 1742 | F: drivers/*/*s5pv210* |
Pankaj Dubey | ffd5197 | 2016-04-11 13:12:25 +0530 | [diff] [blame] | 1743 | F: drivers/memory/samsung/* |
Pankaj Dubey | bf50ddc | 2015-12-12 13:14:01 +0530 | [diff] [blame] | 1744 | F: drivers/soc/samsung/* |
Krzysztof Kozlowski | d6b9aea | 2015-10-24 05:07:19 +0900 | [diff] [blame] | 1745 | F: Documentation/arm/Samsung/ |
| 1746 | F: Documentation/devicetree/bindings/arm/samsung/ |
| 1747 | F: Documentation/devicetree/bindings/sram/samsung-sram.txt |
| 1748 | F: Documentation/devicetree/bindings/power/pd-samsung.txt |
Doug Anderson | 33d43cd | 2013-06-18 07:02:23 +0900 | [diff] [blame] | 1749 | N: exynos |
Kukjin Kim | f556cb07 | 2010-09-30 15:15:35 -0700 | [diff] [blame] | 1750 | |
Kyungmin Park | 10ffa96 | 2011-03-04 17:36:26 -0800 | [diff] [blame] | 1751 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
| 1752 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 1753 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1754 | S: Maintained |
Christian Kujau | 004bbd3 | 2014-10-13 15:51:17 -0700 | [diff] [blame] | 1755 | F: arch/arm/mach-s5pv210/ |
Kyungmin Park | 10ffa96 | 2011-03-04 17:36:26 -0800 | [diff] [blame] | 1756 | |
Kamil Debski | 3ce4ccb | 2012-11-28 06:14:22 -0300 | [diff] [blame] | 1757 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
| 1758 | M: Kyungmin Park <kyungmin.park@samsung.com> |
Kamil Debski | 774e036 | 2016-08-03 13:46:18 -0700 | [diff] [blame] | 1759 | M: Kamil Debski <kamil@wypas.org> |
| 1760 | M: Andrzej Hajda <a.hajda@samsung.com> |
Kamil Debski | 3ce4ccb | 2012-11-28 06:14:22 -0300 | [diff] [blame] | 1761 | L: linux-arm-kernel@lists.infradead.org |
| 1762 | L: linux-media@vger.kernel.org |
| 1763 | S: Maintained |
| 1764 | F: drivers/media/platform/s5p-g2d/ |
| 1765 | |
Marek Szyprowski | e6a476f | 2011-08-10 06:32:29 -0300 | [diff] [blame] | 1766 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
| 1767 | M: Kyungmin Park <kyungmin.park@samsung.com> |
Kamil Debski | 774e036 | 2016-08-03 13:46:18 -0700 | [diff] [blame] | 1768 | M: Kamil Debski <kamil@wypas.org> |
Joe Perches | 6305902 | 2012-06-07 14:21:10 -0700 | [diff] [blame] | 1769 | M: Jeongtae Park <jtp.park@samsung.com> |
Kamil Debski | 774e036 | 2016-08-03 13:46:18 -0700 | [diff] [blame] | 1770 | M: Andrzej Hajda <a.hajda@samsung.com> |
Marek Szyprowski | e6a476f | 2011-08-10 06:32:29 -0300 | [diff] [blame] | 1771 | L: linux-arm-kernel@lists.infradead.org |
| 1772 | L: linux-media@vger.kernel.org |
| 1773 | S: Maintained |
Cesar Eduardo Barros | 934455d | 2013-01-04 15:35:17 -0800 | [diff] [blame] | 1774 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 1775 | F: drivers/media/platform/s5p-mfc/ |
Marek Szyprowski | e6a476f | 2011-08-10 06:32:29 -0300 | [diff] [blame] | 1776 | |
Kamil Debski | 1bcbf6f | 2015-09-07 08:15:27 -0300 | [diff] [blame] | 1777 | ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT |
| 1778 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 1779 | L: linux-arm-kernel@lists.infradead.org |
| 1780 | L: linux-media@vger.kernel.org |
| 1781 | S: Maintained |
Mauro Carvalho Chehab | 78fc853 | 2016-06-28 11:36:02 -0300 | [diff] [blame] | 1782 | F: drivers/staging/media/platform/s5p-cec/ |
Kamil Debski | 1bcbf6f | 2015-09-07 08:15:27 -0300 | [diff] [blame] | 1783 | |
Andrzej Pietrasiewicz | 7d9f9bf | 2015-09-18 11:20:59 -0300 | [diff] [blame] | 1784 | ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT |
| 1785 | M: Andrzej Pietrasiewicz <andrzej.p@samsung.com> |
Jacek Anaszewski | 305335b | 2016-12-22 18:03:25 +0100 | [diff] [blame] | 1786 | M: Jacek Anaszewski <jacek.anaszewski@gmail.com> |
Andrzej Pietrasiewicz | 7d9f9bf | 2015-09-18 11:20:59 -0300 | [diff] [blame] | 1787 | L: linux-arm-kernel@lists.infradead.org |
| 1788 | L: linux-media@vger.kernel.org |
| 1789 | S: Maintained |
| 1790 | F: drivers/media/platform/s5p-jpeg/ |
| 1791 | |
Paul Mundt | d48d38e | 2010-02-08 12:50:24 +0900 | [diff] [blame] | 1792 | ARM/SHMOBILE ARM ARCHITECTURE |
Simon Horman | 5e21259 | 2012-11-27 11:41:49 +0900 | [diff] [blame] | 1793 | M: Simon Horman <horms@verge.net.au> |
Paul Mundt | d48d38e | 2010-02-08 12:50:24 +0900 | [diff] [blame] | 1794 | M: Magnus Damm <magnus.damm@gmail.com> |
Simon Horman | 4a12109 | 2016-01-18 10:04:33 +0900 | [diff] [blame] | 1795 | L: linux-renesas-soc@vger.kernel.org |
Simon Horman | 4a12109 | 2016-01-18 10:04:33 +0900 | [diff] [blame] | 1796 | Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/ |
Simon Horman | 5e21259 | 2012-11-27 11:41:49 +0900 | [diff] [blame] | 1797 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
Paul Mundt | d48d38e | 2010-02-08 12:50:24 +0900 | [diff] [blame] | 1798 | S: Supported |
Simon Horman | 0b514fd | 2014-05-15 08:48:21 +0900 | [diff] [blame] | 1799 | F: arch/arm/boot/dts/emev2* |
| 1800 | F: arch/arm/boot/dts/r7s* |
| 1801 | F: arch/arm/boot/dts/r8a* |
| 1802 | F: arch/arm/boot/dts/sh* |
Simon Horman | 0b514fd | 2014-05-15 08:48:21 +0900 | [diff] [blame] | 1803 | F: arch/arm/configs/shmobile_defconfig |
Geert Uytterhoeven | 7a2071c | 2014-11-14 16:49:47 +0100 | [diff] [blame] | 1804 | F: arch/arm/include/debug/renesas-scif.S |
Paul Mundt | d48d38e | 2010-02-08 12:50:24 +0900 | [diff] [blame] | 1805 | F: arch/arm/mach-shmobile/ |
Geert Uytterhoeven | be32bcb | 2016-04-20 14:02:36 +0200 | [diff] [blame] | 1806 | F: drivers/soc/renesas/ |
| 1807 | F: include/linux/soc/renesas/ |
Paul Mundt | d48d38e | 2010-02-08 12:50:24 +0900 | [diff] [blame] | 1808 | |
Dinh Nguyen | 6631422 | 2012-07-18 16:07:18 -0600 | [diff] [blame] | 1809 | ARM/SOCFPGA ARCHITECTURE |
Dinh Nguyen | 08b3b33 | 2017-02-03 09:29:07 -0600 | [diff] [blame] | 1810 | M: Dinh Nguyen <dinguyen@kernel.org> |
Dinh Nguyen | 6631422 | 2012-07-18 16:07:18 -0600 | [diff] [blame] | 1811 | S: Maintained |
| 1812 | F: arch/arm/mach-socfpga/ |
Dinh Nguyen | efadb75 | 2015-04-20 14:13:12 -0500 | [diff] [blame] | 1813 | F: arch/arm/boot/dts/socfpga* |
| 1814 | F: arch/arm/configs/socfpga_defconfig |
Rob Herring | e68d7c1 | 2015-12-10 17:38:23 -0600 | [diff] [blame] | 1815 | F: arch/arm64/boot/dts/altera/ |
Dinh Nguyen | ba2b7d0 | 2014-08-06 16:31:27 -0500 | [diff] [blame] | 1816 | W: http://www.rocketboards.org |
Dinh Nguyen | efadb75 | 2015-04-20 14:13:12 -0500 | [diff] [blame] | 1817 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git |
Dinh Nguyen | 6631422 | 2012-07-18 16:07:18 -0600 | [diff] [blame] | 1818 | |
| 1819 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT |
Dinh Nguyen | 08b3b33 | 2017-02-03 09:29:07 -0600 | [diff] [blame] | 1820 | M: Dinh Nguyen <dinguyen@kernel.org> |
Dinh Nguyen | 6631422 | 2012-07-18 16:07:18 -0600 | [diff] [blame] | 1821 | S: Maintained |
| 1822 | F: drivers/clk/socfpga/ |
| 1823 | |
Thor Thayer | 71bcada | 2014-09-03 10:27:54 -0500 | [diff] [blame] | 1824 | ARM/SOCFPGA EDAC SUPPORT |
Thor Thayer | 06c177c | 2017-02-13 13:30:41 -0600 | [diff] [blame] | 1825 | M: Thor Thayer <thor.thayer@linux.intel.com> |
Thor Thayer | 71bcada | 2014-09-03 10:27:54 -0500 | [diff] [blame] | 1826 | S: Maintained |
| 1827 | F: drivers/edac/altera_edac. |
| 1828 | |
Srinivas Kandagatla | 65ebcc1 | 2013-06-25 12:15:10 +0100 | [diff] [blame] | 1829 | ARM/STI ARCHITECTURE |
Srinivas Kandagatla | a92177e | 2014-03-03 11:28:59 +0000 | [diff] [blame] | 1830 | M: Patrice Chotard <patrice.chotard@st.com> |
Srinivas Kandagatla | 65ebcc1 | 2013-06-25 12:15:10 +0100 | [diff] [blame] | 1831 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1832 | L: kernel@stlinux.com |
| 1833 | W: http://www.stlinux.com |
| 1834 | S: Maintained |
| 1835 | F: arch/arm/mach-sti/ |
Srinivas Kandagatla | a92177e | 2014-03-03 11:28:59 +0000 | [diff] [blame] | 1836 | F: arch/arm/boot/dts/sti* |
Lee Jones | b8e31bf | 2015-09-17 14:45:57 +0100 | [diff] [blame] | 1837 | F: drivers/char/hw_random/st-rng.c |
Srinivas Kandagatla | a92177e | 2014-03-03 11:28:59 +0000 | [diff] [blame] | 1838 | F: drivers/clocksource/arm_global_timer.c |
Lee Jones | 82805d1 | 2015-05-12 13:58:17 +0100 | [diff] [blame] | 1839 | F: drivers/clocksource/clksrc_st_lpc.c |
Lee Jones | 1d4b42b | 2015-12-02 16:18:50 +0000 | [diff] [blame] | 1840 | F: drivers/cpufreq/sti-cpufreq.c |
Peter Griffin | 6da0f21 | 2016-10-18 10:39:12 +0100 | [diff] [blame] | 1841 | F: drivers/dma/st_fdma* |
Srinivas Kandagatla | a92177e | 2014-03-03 11:28:59 +0000 | [diff] [blame] | 1842 | F: drivers/i2c/busses/i2c-st.c |
Greg Kroah-Hartman | 346e2e4 | 2014-09-25 13:11:52 +0200 | [diff] [blame] | 1843 | F: drivers/media/rc/st_rc.c |
Peter Griffin | 95d66b1 | 2015-07-30 14:09:01 -0300 | [diff] [blame] | 1844 | F: drivers/media/platform/sti/c8sectpfe/ |
Peter Griffin | f53b2bf | 2014-06-04 17:30:24 +0100 | [diff] [blame] | 1845 | F: drivers/mmc/host/sdhci-st.c |
Peter Griffin | e95cf39 | 2015-04-01 07:42:41 +0100 | [diff] [blame] | 1846 | F: drivers/phy/phy-miphy28lp.c |
Peter Griffin | 6da969a | 2014-09-11 18:02:46 +0100 | [diff] [blame] | 1847 | F: drivers/phy/phy-stih407-usb.c |
Greg Kroah-Hartman | 346e2e4 | 2014-09-25 13:11:52 +0200 | [diff] [blame] | 1848 | F: drivers/pinctrl/pinctrl-st.c |
Lee Jones | aac2252 | 2015-09-02 13:31:31 +0100 | [diff] [blame] | 1849 | F: drivers/remoteproc/st_remoteproc.c |
Peter Griffin | c9d7cc3 | 2016-10-18 10:39:07 +0100 | [diff] [blame] | 1850 | F: drivers/remoteproc/st_slim_rproc.c |
Greg Kroah-Hartman | 346e2e4 | 2014-09-25 13:11:52 +0200 | [diff] [blame] | 1851 | F: drivers/reset/sti/ |
Lee Jones | db4112e | 2015-04-09 15:47:34 +0100 | [diff] [blame] | 1852 | F: drivers/rtc/rtc-st-lpc.c |
Greg Kroah-Hartman | 346e2e4 | 2014-09-25 13:11:52 +0200 | [diff] [blame] | 1853 | F: drivers/tty/serial/st-asc.c |
Peter Griffin | eb11ada | 2014-09-05 16:36:32 +0100 | [diff] [blame] | 1854 | F: drivers/usb/dwc3/dwc3-st.c |
Peter Griffin | 62f6f08 | 2014-09-08 13:04:48 +0100 | [diff] [blame] | 1855 | F: drivers/usb/host/ehci-st.c |
| 1856 | F: drivers/usb/host/ohci-st.c |
Lee Jones | db4112e | 2015-04-09 15:47:34 +0100 | [diff] [blame] | 1857 | F: drivers/watchdog/st_lpc_wdt.c |
Peter Griffin | daac6f8 | 2014-11-19 08:44:54 +0000 | [diff] [blame] | 1858 | F: drivers/ata/ahci_st.c |
Peter Griffin | c9d7cc3 | 2016-10-18 10:39:07 +0100 | [diff] [blame] | 1859 | F: include/linux/remoteproc/st_slim_rproc.h |
Srinivas Kandagatla | 65ebcc1 | 2013-06-25 12:15:10 +0100 | [diff] [blame] | 1860 | |
Maxime Coquelin | ee6e787 | 2015-05-09 09:53:58 +0200 | [diff] [blame] | 1861 | ARM/STM32 ARCHITECTURE |
| 1862 | M: Maxime Coquelin <mcoquelin.stm32@gmail.com> |
Maxime Coquelin | 8ca2cf2c | 2016-06-22 15:56:58 +0200 | [diff] [blame] | 1863 | M: Alexandre Torgue <alexandre.torgue@st.com> |
Maxime Coquelin | ee6e787 | 2015-05-09 09:53:58 +0200 | [diff] [blame] | 1864 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1865 | S: Maintained |
| 1866 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git |
| 1867 | N: stm32 |
| 1868 | F: drivers/clocksource/armv7m_systick.c |
| 1869 | |
Marc Gonzalez | d6de5b0 | 2015-12-15 10:41:13 +0100 | [diff] [blame] | 1870 | ARM/TANGO ARCHITECTURE |
| 1871 | M: Marc Gonzalez <marc_gonzalez@sigmadesigns.com> |
| 1872 | L: linux-arm-kernel@lists.infradead.org |
| 1873 | S: Maintained |
Marc Gonzalez | e2bd0d3 | 2016-06-28 14:01:28 +0200 | [diff] [blame] | 1874 | N: tango |
Marc Gonzalez | d6de5b0 | 2015-12-15 10:41:13 +0100 | [diff] [blame] | 1875 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1876 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1877 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1878 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1879 | S: Maintained |
| 1880 | |
Mark F. Brown | 1bbd708 | 2010-09-12 23:51:34 -0400 | [diff] [blame] | 1881 | ARM/TETON BGA MACHINE SUPPORT |
Joe Perches | 706e69d | 2011-03-22 16:34:26 -0700 | [diff] [blame] | 1882 | M: "Mark F. Brown" <mark.brown314@gmail.com> |
Mark F. Brown | 1bbd708 | 2010-09-12 23:51:34 -0400 | [diff] [blame] | 1883 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1884 | S: Maintained |
| 1885 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1886 | ARM/THECUS N2100 MACHINE SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1887 | M: Lennert Buytenhek <kernel@wantstofly.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1888 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 1889 | S: Maintained |
| 1890 | |
wanzongshun | 98ad6e3 | 2009-02-13 06:04:32 +0100 | [diff] [blame] | 1891 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 1892 | M: Wan ZongShun <mcuos.com@gmail.com> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1893 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 1894 | W: http://www.mcuos.com |
| 1895 | S: Maintained |
Wan ZongShun | 4e89e8f | 2010-05-25 23:43:04 -0700 | [diff] [blame] | 1896 | F: arch/arm/mach-w90x900/ |
Wan ZongShun | 4e89e8f | 2010-05-25 23:43:04 -0700 | [diff] [blame] | 1897 | F: drivers/input/keyboard/w90p910_keypad.c |
| 1898 | F: drivers/input/touchscreen/w90p910_ts.c |
| 1899 | F: drivers/watchdog/nuc900_wdt.c |
Jeff Kirsher | 679ec0e | 2011-07-17 00:20:45 -0700 | [diff] [blame] | 1900 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
Joe Perches | 5351684 | 2010-08-09 17:20:37 -0700 | [diff] [blame] | 1901 | F: drivers/mtd/nand/nuc900_nand.c |
Wan ZongShun | 4e89e8f | 2010-05-25 23:43:04 -0700 | [diff] [blame] | 1902 | F: drivers/rtc/rtc-nuc900.c |
Joe Perches | 9df92e6 | 2012-01-10 15:09:06 -0800 | [diff] [blame] | 1903 | F: drivers/spi/spi-nuc900.c |
Wan ZongShun | 4e89e8f | 2010-05-25 23:43:04 -0700 | [diff] [blame] | 1904 | F: drivers/usb/host/ehci-w90x900.c |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 1905 | F: drivers/video/fbdev/nuc900fb.c |
wanzongshun | 98ad6e3 | 2009-02-13 06:04:32 +0100 | [diff] [blame] | 1906 | |
Linus Walleij | 54274d7 | 2010-04-04 10:58:03 +0100 | [diff] [blame] | 1907 | ARM/U300 MACHINE SUPPORT |
Linus Walleij | e4651a9 | 2012-08-06 09:52:52 +0200 | [diff] [blame] | 1908 | M: Linus Walleij <linus.walleij@linaro.org> |
Linus Walleij | 54274d7 | 2010-04-04 10:58:03 +0100 | [diff] [blame] | 1909 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1910 | S: Supported |
| 1911 | F: arch/arm/mach-u300/ |
Linus Walleij | 9affbd2 | 2014-01-21 15:04:14 +0100 | [diff] [blame] | 1912 | F: drivers/clocksource/timer-u300.c |
Linus Walleij | 54274d7 | 2010-04-04 10:58:03 +0100 | [diff] [blame] | 1913 | F: drivers/i2c/busses/i2c-stu300.c |
| 1914 | F: drivers/rtc/rtc-coh901331.c |
| 1915 | F: drivers/watchdog/coh901327_wdt.c |
| 1916 | F: drivers/dma/coh901318* |
Linus Walleij | 8757288 | 2010-12-22 09:18:29 +0100 | [diff] [blame] | 1917 | F: drivers/mfd/ab3100* |
| 1918 | F: drivers/rtc/rtc-ab3100.c |
| 1919 | F: drivers/rtc/rtc-coh901331.c |
| 1920 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
Linus Walleij | 54274d7 | 2010-04-04 10:58:03 +0100 | [diff] [blame] | 1921 | |
Masahiro Yamada | 3d00d04 | 2015-05-08 13:07:14 +0900 | [diff] [blame] | 1922 | ARM/UNIPHIER ARCHITECTURE |
| 1923 | M: Masahiro Yamada <yamada.masahiro@socionext.com> |
| 1924 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Masahiro Yamada | becc8d3 | 2016-08-18 03:08:22 +0900 | [diff] [blame] | 1925 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git |
Masahiro Yamada | 3d00d04 | 2015-05-08 13:07:14 +0900 | [diff] [blame] | 1926 | S: Maintained |
Masahiro Yamada | a3ff83d | 2015-07-25 16:23:24 +0900 | [diff] [blame] | 1927 | F: arch/arm/boot/dts/uniphier* |
Masahiro Yamada | e7ecbc0 | 2015-10-02 13:42:19 +0900 | [diff] [blame] | 1928 | F: arch/arm/include/asm/hardware/cache-uniphier.h |
Masahiro Yamada | 3d00d04 | 2015-05-08 13:07:14 +0900 | [diff] [blame] | 1929 | F: arch/arm/mach-uniphier/ |
Masahiro Yamada | e7ecbc0 | 2015-10-02 13:42:19 +0900 | [diff] [blame] | 1930 | F: arch/arm/mm/cache-uniphier.c |
Masahiro Yamada | e1a0ebc | 2015-11-28 02:22:31 +0900 | [diff] [blame] | 1931 | F: arch/arm64/boot/dts/socionext/ |
Masahiro Yamada | 4b7f48d | 2015-12-09 15:52:59 +0900 | [diff] [blame] | 1932 | F: drivers/bus/uniphier-system-bus.c |
Masahiro Yamada | 734d82f | 2016-09-16 16:40:03 +0900 | [diff] [blame] | 1933 | F: drivers/clk/uniphier/ |
Masahiro Yamada | dd6fd4a | 2015-10-23 19:51:59 +0900 | [diff] [blame] | 1934 | F: drivers/i2c/busses/i2c-uniphier* |
Masahiro Yamada | a3ff83d | 2015-07-25 16:23:24 +0900 | [diff] [blame] | 1935 | F: drivers/pinctrl/uniphier/ |
Masahiro Yamada | 54e991b | 2016-08-02 13:18:29 +0900 | [diff] [blame] | 1936 | F: drivers/reset/reset-uniphier.c |
Masahiro Yamada | a3ff83d | 2015-07-25 16:23:24 +0900 | [diff] [blame] | 1937 | F: drivers/tty/serial/8250/8250_uniphier.c |
Masahiro Yamada | 3d00d04 | 2015-05-08 13:07:14 +0900 | [diff] [blame] | 1938 | N: uniphier |
| 1939 | |
Linus Walleij | 8757288 | 2010-12-22 09:18:29 +0100 | [diff] [blame] | 1940 | ARM/Ux500 ARM ARCHITECTURE |
Linus Walleij | e4651a9 | 2012-08-06 09:52:52 +0200 | [diff] [blame] | 1941 | M: Linus Walleij <linus.walleij@linaro.org> |
Srinidhi Kasagar | 870725d | 2009-12-01 13:41:24 +0100 | [diff] [blame] | 1942 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1943 | S: Maintained |
| 1944 | F: arch/arm/mach-ux500/ |
Linus Walleij | e4651a9 | 2012-08-06 09:52:52 +0200 | [diff] [blame] | 1945 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
Linus Walleij | 8757288 | 2010-12-22 09:18:29 +0100 | [diff] [blame] | 1946 | F: drivers/dma/ste_dma40* |
Linus Walleij | e4651a9 | 2012-08-06 09:52:52 +0200 | [diff] [blame] | 1947 | F: drivers/hwspinlock/u8500_hsem.c |
Linus Walleij | 8757288 | 2010-12-22 09:18:29 +0100 | [diff] [blame] | 1948 | F: drivers/mfd/abx500* |
| 1949 | F: drivers/mfd/ab8500* |
Linus Walleij | e4651a9 | 2012-08-06 09:52:52 +0200 | [diff] [blame] | 1950 | F: drivers/mfd/dbx500* |
| 1951 | F: drivers/mfd/db8500* |
Joe Perches | ecc265f | 2014-08-08 14:26:20 -0700 | [diff] [blame] | 1952 | F: drivers/pinctrl/nomadik/pinctrl-ab* |
| 1953 | F: drivers/pinctrl/nomadik/pinctrl-nomadik* |
Linus Walleij | 8757288 | 2010-12-22 09:18:29 +0100 | [diff] [blame] | 1954 | F: drivers/rtc/rtc-ab8500.c |
Linus Walleij | e4651a9 | 2012-08-06 09:52:52 +0200 | [diff] [blame] | 1955 | F: drivers/rtc/rtc-pl031.c |
Linus Walleij | 8757288 | 2010-12-22 09:18:29 +0100 | [diff] [blame] | 1956 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
Srinidhi Kasagar | 870725d | 2009-12-01 13:41:24 +0100 | [diff] [blame] | 1957 | |
Ulf Hansson | e93fde2 | 2013-11-12 11:41:12 +0100 | [diff] [blame] | 1958 | ARM/Ux500 CLOCK FRAMEWORK SUPPORT |
| 1959 | M: Ulf Hansson <ulf.hansson@linaro.org> |
| 1960 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1961 | T: git git://git.linaro.org/people/ulfh/clk.git |
| 1962 | S: Maintained |
| 1963 | F: drivers/clk/ux500/ |
Ulf Hansson | e93fde2 | 2013-11-12 11:41:12 +0100 | [diff] [blame] | 1964 | |
Pawel Moll | 740d93b | 2014-11-26 12:13:05 +0000 | [diff] [blame] | 1965 | ARM/VERSATILE EXPRESS PLATFORM |
| 1966 | M: Liviu Dudau <liviu.dudau@arm.com> |
| 1967 | M: Sudeep Holla <sudeep.holla@arm.com> |
| 1968 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
| 1969 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1970 | S: Maintained |
| 1971 | F: arch/arm/boot/dts/vexpress* |
Rob Herring | e68d7c1 | 2015-12-10 17:38:23 -0600 | [diff] [blame] | 1972 | F: arch/arm64/boot/dts/arm/ |
Pawel Moll | 740d93b | 2014-11-26 12:13:05 +0000 | [diff] [blame] | 1973 | F: arch/arm/mach-vexpress/ |
| 1974 | F: */*/vexpress* |
Pawel Moll | 7e8f403 | 2014-12-01 14:16:33 +0000 | [diff] [blame] | 1975 | F: */*/*/vexpress* |
Pawel Moll | 740d93b | 2014-11-26 12:13:05 +0000 | [diff] [blame] | 1976 | F: drivers/clk/versatile/clk-vexpress-osc.c |
| 1977 | F: drivers/clocksource/versatile.c |
Vladimir Murzin | 46a600e | 2016-04-25 09:49:17 +0100 | [diff] [blame] | 1978 | N: mps2 |
Pawel Moll | 740d93b | 2014-11-26 12:13:05 +0000 | [diff] [blame] | 1979 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1980 | ARM/VFP SUPPORT |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 1981 | M: Russell King <linux@armlinux.org.uk> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 1982 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 1983 | W: http://www.armlinux.org.uk/ |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 1984 | S: Maintained |
| 1985 | F: arch/arm/vfp/ |
| 1986 | |
Marek Vasut | e66b6d8 | 2010-03-26 06:51:32 +0100 | [diff] [blame] | 1987 | ARM/VOIPAC PXA270 SUPPORT |
| 1988 | M: Marek Vasut <marek.vasut@gmail.com> |
| 1989 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1990 | S: Maintained |
| 1991 | F: arch/arm/mach-pxa/vpac270.c |
Joe Perches | e0cca11 | 2010-08-09 17:20:38 -0700 | [diff] [blame] | 1992 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
Marek Vasut | e66b6d8 | 2010-03-26 06:51:32 +0100 | [diff] [blame] | 1993 | |
Tony Prisk | 04529fe | 2012-07-24 04:19:37 +1200 | [diff] [blame] | 1994 | ARM/VT8500 ARM ARCHITECTURE |
| 1995 | M: Tony Prisk <linux@prisktech.co.nz> |
| 1996 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1997 | S: Maintained |
| 1998 | F: arch/arm/mach-vt8500/ |
Tony Prisk | 41fd91b | 2013-02-08 18:18:03 +1300 | [diff] [blame] | 1999 | F: drivers/clocksource/vt8500_timer.c |
Tony Prisk | 560746e | 2013-06-15 09:52:16 +1200 | [diff] [blame] | 2000 | F: drivers/i2c/busses/i2c-wmt.c |
Tony Prisk | 41fd91b | 2013-02-08 18:18:03 +1300 | [diff] [blame] | 2001 | F: drivers/mmc/host/wmt-sdmmc.c |
| 2002 | F: drivers/pwm/pwm-vt8500.c |
| 2003 | F: drivers/rtc/rtc-vt8500.c |
| 2004 | F: drivers/tty/serial/vt8500_serial.c |
Joe Perches | 4f31102 | 2013-09-11 14:23:46 -0700 | [diff] [blame] | 2005 | F: drivers/usb/host/ehci-platform.c |
Tony Prisk | 41fd91b | 2013-02-08 18:18:03 +1300 | [diff] [blame] | 2006 | F: drivers/usb/host/uhci-platform.c |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 2007 | F: drivers/video/fbdev/vt8500lcdfb.* |
| 2008 | F: drivers/video/fbdev/wm8505fb* |
| 2009 | F: drivers/video/fbdev/wmt_ge_rops.* |
Tony Prisk | 04529fe | 2012-07-24 04:19:37 +1200 | [diff] [blame] | 2010 | |
Marek Vasut | e66b6d8 | 2010-03-26 06:51:32 +0100 | [diff] [blame] | 2011 | ARM/ZIPIT Z2 SUPPORT |
| 2012 | M: Marek Vasut <marek.vasut@gmail.com> |
| 2013 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 2014 | S: Maintained |
| 2015 | F: arch/arm/mach-pxa/z2.c |
Joe Perches | 6ab2a85 | 2010-08-09 17:20:38 -0700 | [diff] [blame] | 2016 | F: arch/arm/mach-pxa/include/mach/z2.h |
Marek Vasut | e66b6d8 | 2010-03-26 06:51:32 +0100 | [diff] [blame] | 2017 | |
Jun Nie | 5ecc4b5 | 2015-04-28 17:18:06 +0800 | [diff] [blame] | 2018 | ARM/ZTE ARCHITECTURE |
| 2019 | M: Jun Nie <jun.nie@linaro.org> |
Baoyou Xie | 15e2dcd | 2017-01-06 17:16:01 +0800 | [diff] [blame] | 2020 | M: Baoyou Xie <baoyou.xie@linaro.org> |
Jun Nie | 5ecc4b5 | 2015-04-28 17:18:06 +0800 | [diff] [blame] | 2021 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 2022 | S: Maintained |
| 2023 | F: arch/arm/mach-zx/ |
| 2024 | F: drivers/clk/zte/ |
Baoyou Xie | 8041311 | 2017-01-17 11:22:56 +0800 | [diff] [blame] | 2025 | F: drivers/reset/reset-zx2967.c |
Baoyou Xie | 15e2dcd | 2017-01-06 17:16:01 +0800 | [diff] [blame] | 2026 | F: drivers/soc/zte/ |
Jun Nie | 5ecc4b5 | 2015-04-28 17:18:06 +0800 | [diff] [blame] | 2027 | F: Documentation/devicetree/bindings/arm/zte.txt |
| 2028 | F: Documentation/devicetree/bindings/clock/zx296702-clk.txt |
Baoyou Xie | 8041311 | 2017-01-17 11:22:56 +0800 | [diff] [blame] | 2029 | F: Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt |
Baoyou Xie | 15e2dcd | 2017-01-06 17:16:01 +0800 | [diff] [blame] | 2030 | F: Documentation/devicetree/bindings/soc/zte/ |
| 2031 | F: include/dt-bindings/soc/zx*.h |
Jun Nie | 5ecc4b5 | 2015-04-28 17:18:06 +0800 | [diff] [blame] | 2032 | |
Michal Simek | 51f29d4 | 2013-01-21 17:41:46 +0100 | [diff] [blame] | 2033 | ARM/ZYNQ ARCHITECTURE |
| 2034 | M: Michal Simek <michal.simek@xilinx.com> |
Soren Brinkmann | f0fd9ad | 2014-10-23 09:29:22 -0700 | [diff] [blame] | 2035 | R: Sören Brinkmann <soren.brinkmann@xilinx.com> |
Michal Simek | 51f29d4 | 2013-01-21 17:41:46 +0100 | [diff] [blame] | 2036 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 2037 | W: http://wiki.xilinx.com |
Soren Brinkmann | d6448b7 | 2015-06-26 09:04:32 -0700 | [diff] [blame] | 2038 | T: git https://github.com/Xilinx/linux-xlnx.git |
Michal Simek | 51f29d4 | 2013-01-21 17:41:46 +0100 | [diff] [blame] | 2039 | S: Supported |
| 2040 | F: arch/arm/mach-zynq/ |
Michal Simek | bd2a337 | 2013-06-04 07:17:39 +0000 | [diff] [blame] | 2041 | F: drivers/cpuidle/cpuidle-zynq.c |
Michal Simek | fb9d495 | 2014-10-13 15:51:15 -0700 | [diff] [blame] | 2042 | F: drivers/block/xsysace.c |
Michal Simek | c2fd4e3 | 2014-01-02 12:58:50 -0800 | [diff] [blame] | 2043 | N: zynq |
| 2044 | N: xilinx |
| 2045 | F: drivers/clocksource/cadence_ttc_timer.c |
Soren Brinkmann | df8eb56 | 2014-04-04 14:27:55 -0700 | [diff] [blame] | 2046 | F: drivers/i2c/busses/i2c-cadence.c |
Soren Brinkmann | e3ec3a3 | 2013-12-02 10:02:36 -0800 | [diff] [blame] | 2047 | F: drivers/mmc/host/sdhci-of-arasan.c |
Punnaiah Choudary Kalluri | ae9b56e | 2015-01-06 23:13:47 +0530 | [diff] [blame] | 2048 | F: drivers/edac/synopsys_edac.c |
Michal Simek | 51f29d4 | 2013-01-21 17:41:46 +0100 | [diff] [blame] | 2049 | |
Will Deacon | 48ec83b | 2015-05-27 17:25:59 +0100 | [diff] [blame] | 2050 | ARM SMMU DRIVERS |
Will Deacon | b8f9879 | 2013-06-24 18:31:26 +0100 | [diff] [blame] | 2051 | M: Will Deacon <will.deacon@arm.com> |
Will Deacon | c8bff3a | 2016-02-17 14:18:00 +0000 | [diff] [blame] | 2052 | R: Robin Murphy <robin.murphy@arm.com> |
Will Deacon | b8f9879 | 2013-06-24 18:31:26 +0100 | [diff] [blame] | 2053 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 2054 | S: Maintained |
| 2055 | F: drivers/iommu/arm-smmu.c |
Will Deacon | 48ec83b | 2015-05-27 17:25:59 +0100 | [diff] [blame] | 2056 | F: drivers/iommu/arm-smmu-v3.c |
Will Deacon | e1d3c0f | 2014-11-14 17:18:23 +0000 | [diff] [blame] | 2057 | F: drivers/iommu/io-pgtable-arm.c |
Will Deacon | c8bff3a | 2016-02-17 14:18:00 +0000 | [diff] [blame] | 2058 | F: drivers/iommu/io-pgtable-arm-v7s.c |
Will Deacon | b8f9879 | 2013-06-24 18:31:26 +0100 | [diff] [blame] | 2059 | |
Catalin Marinas | 3807422 | 2012-03-05 11:49:34 +0000 | [diff] [blame] | 2060 | ARM64 PORT (AARCH64 ARCHITECTURE) |
| 2061 | M: Catalin Marinas <catalin.marinas@arm.com> |
Catalin Marinas | d19766e | 2012-12-11 13:58:05 +0000 | [diff] [blame] | 2062 | M: Will Deacon <will.deacon@arm.com> |
Catalin Marinas | 3807422 | 2012-03-05 11:49:34 +0000 | [diff] [blame] | 2063 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 2064 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git |
Catalin Marinas | 3807422 | 2012-03-05 11:49:34 +0000 | [diff] [blame] | 2065 | S: Maintained |
| 2066 | F: arch/arm64/ |
Catalin Marinas | d19766e | 2012-12-11 13:58:05 +0000 | [diff] [blame] | 2067 | F: Documentation/arm64/ |
Catalin Marinas | 3807422 | 2012-03-05 11:49:34 +0000 | [diff] [blame] | 2068 | |
Laurent Pinchart | 9d7005f9 | 2012-12-10 20:38:24 -0300 | [diff] [blame] | 2069 | AS3645A LED FLASH CONTROLLER DRIVER |
| 2070 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 2071 | L: linux-media@vger.kernel.org |
| 2072 | T: git git://linuxtv.org/media_tree.git |
| 2073 | S: Maintained |
| 2074 | F: drivers/media/i2c/as3645a.c |
Mauro Carvalho Chehab | b5dcee2 | 2015-11-10 12:01:44 -0200 | [diff] [blame] | 2075 | F: include/media/i2c/as3645a.h |
Laurent Pinchart | 9d7005f9 | 2012-12-10 20:38:24 -0300 | [diff] [blame] | 2076 | |
Linus Walleij | 7c94a8b | 2016-07-25 15:54:55 +0200 | [diff] [blame] | 2077 | ASAHI KASEI AK8974 DRIVER |
| 2078 | M: Linus Walleij <linus.walleij@linaro.org> |
| 2079 | L: linux-iio@vger.kernel.org |
| 2080 | W: http://www.akm.com/ |
| 2081 | S: Supported |
| 2082 | F: drivers/iio/magnetometer/ak8974.c |
| 2083 | |
George Joseph | d58de03 | 2010-03-05 22:17:25 +0100 | [diff] [blame] | 2084 | ASC7621 HARDWARE MONITOR DRIVER |
| 2085 | M: George Joseph <george.joseph@fairview5.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 2086 | L: linux-hwmon@vger.kernel.org |
George Joseph | d58de03 | 2010-03-05 22:17:25 +0100 | [diff] [blame] | 2087 | S: Maintained |
| 2088 | F: Documentation/hwmon/asc7621 |
| 2089 | F: drivers/hwmon/asc7621.c |
| 2090 | |
Corentin Chary | b229ece | 2011-02-26 10:20:40 +0100 | [diff] [blame] | 2091 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
Corentin Chary | 5909c65 | 2012-12-17 16:00:05 -0800 | [diff] [blame] | 2092 | M: Corentin Chary <corentin.chary@gmail.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2093 | L: acpi4asus-user@lists.sourceforge.net |
Matthew Garrett | d0944853 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 2094 | L: platform-driver-x86@vger.kernel.org |
Corentin Chary | 76593d6 | 2009-06-16 19:28:47 +0000 | [diff] [blame] | 2095 | W: http://acpi4asus.sf.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2096 | S: Maintained |
Corentin Chary | b229ece | 2011-02-26 10:20:40 +0100 | [diff] [blame] | 2097 | F: drivers/platform/x86/asus*.c |
| 2098 | F: drivers/platform/x86/eeepc*.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2099 | |
João Paulo Rechi Vita | f6a6bba | 2016-01-05 11:16:53 -0500 | [diff] [blame] | 2100 | ASUS WIRELESS RADIO CONTROL DRIVER |
| 2101 | M: João Paulo Rechi Vita <jprvita@gmail.com> |
| 2102 | L: platform-driver-x86@vger.kernel.org |
| 2103 | S: Maintained |
| 2104 | F: drivers/platform/x86/asus-wireless.c |
| 2105 | |
David Howells | 75aeddd | 2016-05-11 14:36:14 +0100 | [diff] [blame] | 2106 | ASYMMETRIC KEYS |
| 2107 | M: David Howells <dhowells@redhat.com> |
| 2108 | L: keyrings@vger.kernel.org |
| 2109 | S: Maintained |
| 2110 | F: Documentation/crypto/asymmetric-keys.txt |
| 2111 | F: include/linux/verification.h |
| 2112 | F: include/crypto/public_key.h |
| 2113 | F: include/crypto/pkcs7.h |
| 2114 | F: crypto/asymmetric_keys/ |
| 2115 | |
Andrew Morton | 953a647 | 2008-11-06 12:53:28 -0800 | [diff] [blame] | 2116 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
Dan Williams | 08223d8 | 2014-08-19 06:07:56 -0700 | [diff] [blame] | 2117 | R: Dan Williams <dan.j.williams@intel.com> |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 2118 | W: http://sourceforge.net/projects/xscaleiop |
Dan Williams | 08223d8 | 2014-08-19 06:07:56 -0700 | [diff] [blame] | 2119 | S: Odd fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2120 | F: Documentation/crypto/async-tx-api.txt |
| 2121 | F: crypto/async_tx/ |
| 2122 | F: drivers/dma/ |
| 2123 | F: include/linux/dmaengine.h |
| 2124 | F: include/linux/async_tx.h |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 2125 | |
Wolfram Sang | a1867d3 | 2009-09-18 22:45:51 +0200 | [diff] [blame] | 2126 | AT24 EEPROM DRIVER |
Wolfram Sang | 14d77c4 | 2013-02-08 20:54:40 +0100 | [diff] [blame] | 2127 | M: Wolfram Sang <wsa@the-dreams.de> |
Wolfram Sang | a1867d3 | 2009-09-18 22:45:51 +0200 | [diff] [blame] | 2128 | L: linux-i2c@vger.kernel.org |
| 2129 | S: Maintained |
| 2130 | F: drivers/misc/eeprom/at24.c |
Vivien Didelot | 25f73ed | 2013-09-27 15:06:28 -0400 | [diff] [blame] | 2131 | F: include/linux/platform_data/at24.h |
Wolfram Sang | a1867d3 | 2009-09-18 22:45:51 +0200 | [diff] [blame] | 2132 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 2133 | ATA OVER ETHERNET (AOE) DRIVER |
Ed Cashin | fb90381 | 2015-03-25 15:55:06 -0700 | [diff] [blame] | 2134 | M: "Ed L. Cashin" <ed.cashin@acm.org> |
| 2135 | W: http://www.openaoe.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2136 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2137 | F: Documentation/aoe/ |
| 2138 | F: drivers/block/aoe/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2139 | |
Alban Bedel | aad7a21 | 2015-10-30 11:36:29 +0100 | [diff] [blame] | 2140 | ATHEROS 71XX/9XXX GPIO DRIVER |
| 2141 | M: Alban Bedel <albeu@free.fr> |
| 2142 | W: https://github.com/AlbanBedel/linux |
| 2143 | T: git git://github.com/AlbanBedel/linux |
| 2144 | S: Maintained |
| 2145 | F: drivers/gpio/gpio-ath79.c |
| 2146 | F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt |
| 2147 | |
Joe Perches | 9a10a87 | 2010-12-01 09:37:55 -0800 | [diff] [blame] | 2148 | ATHEROS ATH GENERIC UTILITIES |
Luis R. Rodriguez | f726ee6 | 2013-12-14 20:11:39 +0100 | [diff] [blame] | 2149 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
Joe Perches | 9a10a87 | 2010-12-01 09:37:55 -0800 | [diff] [blame] | 2150 | L: linux-wireless@vger.kernel.org |
| 2151 | S: Supported |
| 2152 | F: drivers/net/wireless/ath/* |
| 2153 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2154 | ATHEROS ATH5K WIRELESS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2155 | M: Jiri Slaby <jirislaby@gmail.com> |
| 2156 | M: Nick Kossifidis <mickflemm@gmail.com> |
Luis R. Rodriguez | f726ee6 | 2013-12-14 20:11:39 +0100 | [diff] [blame] | 2157 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2158 | L: linux-wireless@vger.kernel.org |
Joe Perches | 72c706b | 2009-09-07 11:34:30 -0700 | [diff] [blame] | 2159 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2160 | S: Maintained |
Joe Perches | fa45175 | 2009-06-18 16:49:22 -0700 | [diff] [blame] | 2161 | F: drivers/net/wireless/ath/ath5k/ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2162 | |
Kalle Valo | 12e62d6 | 2011-09-13 10:21:25 +0300 | [diff] [blame] | 2163 | ATHEROS ATH6KL WIRELESS DRIVER |
| 2164 | M: Kalle Valo <kvalo@qca.qualcomm.com> |
| 2165 | L: linux-wireless@vger.kernel.org |
| 2166 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 2167 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git |
Kalle Valo | 12e62d6 | 2011-09-13 10:21:25 +0300 | [diff] [blame] | 2168 | S: Supported |
| 2169 | F: drivers/net/wireless/ath/ath6kl/ |
| 2170 | |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 2171 | WILOCITY WIL6210 WIRELESS DRIVER |
Vladimir Kondratiev | 23ba8a6 | 2015-11-08 14:03:17 +0200 | [diff] [blame] | 2172 | M: Maya Erez <qca_merez@qca.qualcomm.com> |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 2173 | L: linux-wireless@vger.kernel.org |
| 2174 | L: wil6210@qca.qualcomm.com |
| 2175 | S: Supported |
| 2176 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 |
| 2177 | F: drivers/net/wireless/ath/wil6210/ |
Vladimir Kondratiev | dba4b74 | 2014-10-01 15:05:25 +0300 | [diff] [blame] | 2178 | F: include/uapi/linux/wil6210_uapi.h |
Vladimir Kondratiev | 2be7d22 | 2012-12-20 13:13:19 -0800 | [diff] [blame] | 2179 | |
Christian Lamparter | 1d7e1e6 | 2010-09-06 01:10:25 +0200 | [diff] [blame] | 2180 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
| 2181 | M: Christian Lamparter <chunkeey@googlemail.com> |
| 2182 | L: linux-wireless@vger.kernel.org |
| 2183 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 |
| 2184 | S: Maintained |
| 2185 | F: drivers/net/wireless/ath/carl9170/ |
| 2186 | |
Luca Tettamanti | 2c2a617 | 2009-09-15 17:18:10 +0200 | [diff] [blame] | 2187 | ATK0110 HWMON DRIVER |
| 2188 | M: Luca Tettamanti <kronos.it@gmail.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 2189 | L: linux-hwmon@vger.kernel.org |
Luca Tettamanti | 2c2a617 | 2009-09-15 17:18:10 +0200 | [diff] [blame] | 2190 | S: Maintained |
| 2191 | F: drivers/hwmon/asus_atk0110.c |
| 2192 | |
Ville Syrjala | 6f69a6d | 2008-04-21 22:21:10 +0000 | [diff] [blame] | 2193 | ATI_REMOTE2 DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2194 | M: Ville Syrjala <syrjala@sci.fi> |
Ville Syrjala | 6f69a6d | 2008-04-21 22:21:10 +0000 | [diff] [blame] | 2195 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2196 | F: drivers/input/misc/ati_remote2.c |
Ville Syrjala | 6f69a6d | 2008-04-21 22:21:10 +0000 | [diff] [blame] | 2197 | |
Chris Snook | 7ae115b | 2008-09-09 03:26:57 -0400 | [diff] [blame] | 2198 | ATLX ETHERNET DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2199 | M: Jay Cliburn <jcliburn@gmail.com> |
Chris Snook | cb2f33e | 2009-08-06 12:19:31 +0000 | [diff] [blame] | 2200 | M: Chris Snook <chris.snook@gmail.com> |
Chris Snook | e443e38 | 2010-09-16 22:00:28 -0700 | [diff] [blame] | 2201 | L: netdev@vger.kernel.org |
Jay Cliburn | 8d5ca6e | 2007-02-03 20:25:10 -0600 | [diff] [blame] | 2202 | W: http://sourceforge.net/projects/atl1 |
| 2203 | W: http://atl1.sourceforge.net |
| 2204 | S: Maintained |
Jeff Kirsher | 2b133ad | 2011-05-20 06:55:16 -0700 | [diff] [blame] | 2205 | F: drivers/net/ethernet/atheros/ |
Jay Cliburn | 8d5ca6e | 2007-02-03 20:25:10 -0600 | [diff] [blame] | 2206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2207 | ATM |
chas williams - CONTRACTOR | 366c1bd | 2015-03-11 16:18:01 -0400 | [diff] [blame] | 2208 | M: Chas Williams <3chas3@gmail.com> |
Joe Perches | 476604d | 2009-10-26 16:49:41 -0700 | [diff] [blame] | 2209 | L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers) |
Jiri Slaby | 44ae98b | 2008-11-30 23:27:11 -0800 | [diff] [blame] | 2210 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | W: http://linux-atm.sourceforge.net |
| 2212 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2213 | F: drivers/atm/ |
| 2214 | F: include/linux/atm* |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 2215 | F: include/uapi/linux/atm* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2216 | |
Nicolas Ferre | 04ac2f4 | 2009-06-16 13:05:50 +0200 | [diff] [blame] | 2217 | ATMEL AT91 / AT32 MCI DRIVER |
Ludovic Desroches | 420a387 | 2017-01-27 14:33:44 +0100 | [diff] [blame] | 2218 | M: Ludovic Desroches <ludovic.desroches@microchip.com> |
Nicolas Ferre | 04ac2f4 | 2009-06-16 13:05:50 +0200 | [diff] [blame] | 2219 | S: Maintained |
| 2220 | F: drivers/mmc/host/atmel-mci.c |
Nicolas Ferre | 04ac2f4 | 2009-06-16 13:05:50 +0200 | [diff] [blame] | 2221 | |
Nicolas Ferre | f80cb48 | 2016-03-16 14:19:50 +0100 | [diff] [blame] | 2222 | ATMEL AT91 SAMA5D2-Compatible Shutdown Controller |
Nicolas Ferre | e085b9d | 2017-01-27 15:43:42 +0100 | [diff] [blame] | 2223 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
Nicolas Ferre | f80cb48 | 2016-03-16 14:19:50 +0100 | [diff] [blame] | 2224 | S: Supported |
| 2225 | F: drivers/power/reset/at91-sama5d2_shdwc.c |
| 2226 | |
Ludovic Desroches | b9cd7a2 | 2016-01-15 09:54:18 +0100 | [diff] [blame] | 2227 | ATMEL SAMA5D2 ADC DRIVER |
Ludovic Desroches | 420a387 | 2017-01-27 14:33:44 +0100 | [diff] [blame] | 2228 | M: Ludovic Desroches <ludovic.desroches@microchip.com> |
Ludovic Desroches | b9cd7a2 | 2016-01-15 09:54:18 +0100 | [diff] [blame] | 2229 | L: linux-iio@vger.kernel.org |
| 2230 | S: Supported |
| 2231 | F: drivers/iio/adc/at91-sama5d2_adc.c |
| 2232 | |
Bo Shen | dfae90e | 2014-09-28 09:57:19 +0800 | [diff] [blame] | 2233 | ATMEL Audio ALSA driver |
Nicolas Ferre | e085b9d | 2017-01-27 15:43:42 +0100 | [diff] [blame] | 2234 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
Bo Shen | dfae90e | 2014-09-28 09:57:19 +0800 | [diff] [blame] | 2235 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 2236 | S: Supported |
| 2237 | F: sound/soc/atmel |
| 2238 | |
Ludovic Desroches | 6bd0f43 | 2014-10-22 17:22:20 +0200 | [diff] [blame] | 2239 | ATMEL XDMA DRIVER |
Ludovic Desroches | 420a387 | 2017-01-27 14:33:44 +0100 | [diff] [blame] | 2240 | M: Ludovic Desroches <ludovic.desroches@microchip.com> |
Ludovic Desroches | 6bd0f43 | 2014-10-22 17:22:20 +0200 | [diff] [blame] | 2241 | L: linux-arm-kernel@lists.infradead.org |
| 2242 | L: dmaengine@vger.kernel.org |
| 2243 | S: Supported |
| 2244 | F: drivers/dma/at_xdmac.c |
| 2245 | |
Ludovic Desroches | 888f280 | 2013-03-15 05:32:57 +0000 | [diff] [blame] | 2246 | ATMEL I2C DRIVER |
Ludovic Desroches | 420a387 | 2017-01-27 14:33:44 +0100 | [diff] [blame] | 2247 | M: Ludovic Desroches <ludovic.desroches@microchip.com> |
Ludovic Desroches | 888f280 | 2013-03-15 05:32:57 +0000 | [diff] [blame] | 2248 | L: linux-i2c@vger.kernel.org |
| 2249 | S: Supported |
| 2250 | F: drivers/i2c/busses/i2c-at91.c |
| 2251 | |
Josh Wu | 1551554 | 2012-03-23 17:56:29 +0800 | [diff] [blame] | 2252 | ATMEL ISI DRIVER |
Ludovic Desroches | 420a387 | 2017-01-27 14:33:44 +0100 | [diff] [blame] | 2253 | M: Ludovic Desroches <ludovic.desroches@microchip.com> |
Josh Wu | 1551554 | 2012-03-23 17:56:29 +0800 | [diff] [blame] | 2254 | L: linux-media@vger.kernel.org |
| 2255 | S: Supported |
Hans Verkuil | 0538bee | 2017-04-03 11:50:53 -0300 | [diff] [blame] | 2256 | F: drivers/media/platform/atmel/atmel-isi.c |
Josh Wu | 1551554 | 2012-03-23 17:56:29 +0800 | [diff] [blame] | 2257 | F: include/media/atmel-isi.h |
| 2258 | |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 2259 | ATMEL LCDFB DRIVER |
Nicolas Ferre | e085b9d | 2017-01-27 15:43:42 +0100 | [diff] [blame] | 2260 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 2261 | L: linux-fbdev@vger.kernel.org |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 2262 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 2263 | F: drivers/video/fbdev/atmel_lcdfb.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2264 | F: include/video/atmel_lcdc.h |
Nicolas Ferre | 8f4c79c | 2008-01-14 00:55:13 -0800 | [diff] [blame] | 2265 | |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 2266 | ATMEL MACB ETHERNET DRIVER |
Nicolas Ferre | e085b9d | 2017-01-27 15:43:42 +0100 | [diff] [blame] | 2267 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 2268 | S: Supported |
Jeff Kirsher | 9f2f381 | 2011-06-18 01:52:36 -0700 | [diff] [blame] | 2269 | F: drivers/net/ethernet/cadence/ |
Haavard Skinnemoen | 89e5785 | 2006-11-09 14:51:17 +0100 | [diff] [blame] | 2270 | |
Josh Wu | 5cbac98 | 2014-10-13 15:51:24 -0700 | [diff] [blame] | 2271 | ATMEL NAND DRIVER |
Nicolas Ferre | 50cb2ef | 2015-11-17 11:14:28 +0100 | [diff] [blame] | 2272 | M: Wenyou Yang <wenyou.yang@atmel.com> |
| 2273 | M: Josh Wu <rainyfeeling@outlook.com> |
Josh Wu | 5cbac98 | 2014-10-13 15:51:24 -0700 | [diff] [blame] | 2274 | L: linux-mtd@lists.infradead.org |
| 2275 | S: Supported |
Boris Brezillon | f88fc12 | 2017-03-16 09:02:40 +0100 | [diff] [blame] | 2276 | F: drivers/mtd/nand/atmel/* |
Josh Wu | 5cbac98 | 2014-10-13 15:51:24 -0700 | [diff] [blame] | 2277 | |
ludovic.desroches@atmel.com | 05c441e | 2015-07-29 16:22:48 +0200 | [diff] [blame] | 2278 | ATMEL SDMMC DRIVER |
Ludovic Desroches | 420a387 | 2017-01-27 14:33:44 +0100 | [diff] [blame] | 2279 | M: Ludovic Desroches <ludovic.desroches@microchip.com> |
ludovic.desroches@atmel.com | 05c441e | 2015-07-29 16:22:48 +0200 | [diff] [blame] | 2280 | L: linux-mmc@vger.kernel.org |
| 2281 | S: Supported |
| 2282 | F: drivers/mmc/host/sdhci-of-at91.c |
| 2283 | |
Haavard Skinnemoen | 754ce4f | 2007-02-14 00:33:09 -0800 | [diff] [blame] | 2284 | ATMEL SPI DRIVER |
Nicolas Ferre | e085b9d | 2017-01-27 15:43:42 +0100 | [diff] [blame] | 2285 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
Haavard Skinnemoen | 754ce4f | 2007-02-14 00:33:09 -0800 | [diff] [blame] | 2286 | S: Supported |
Joe Perches | 9df92e6 | 2012-01-10 15:09:06 -0800 | [diff] [blame] | 2287 | F: drivers/spi/spi-atmel.* |
Haavard Skinnemoen | 754ce4f | 2007-02-14 00:33:09 -0800 | [diff] [blame] | 2288 | |
Bo Shen | 0ef0901 | 2014-09-28 09:57:18 +0800 | [diff] [blame] | 2289 | ATMEL SSC DRIVER |
Nicolas Ferre | e085b9d | 2017-01-27 15:43:42 +0100 | [diff] [blame] | 2290 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
Bo Shen | 0ef0901 | 2014-09-28 09:57:18 +0800 | [diff] [blame] | 2291 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 2292 | S: Supported |
| 2293 | F: drivers/misc/atmel-ssc.c |
| 2294 | F: include/linux/atmel-ssc.h |
| 2295 | |
Nicolas Ferre | e9cb1c5 | 2012-03-26 15:59:32 +0200 | [diff] [blame] | 2296 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
Nicolas Ferre | e085b9d | 2017-01-27 15:43:42 +0100 | [diff] [blame] | 2297 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
Nicolas Ferre | e9cb1c5 | 2012-03-26 15:59:32 +0200 | [diff] [blame] | 2298 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 2299 | S: Supported |
| 2300 | F: drivers/misc/atmel_tclib.c |
| 2301 | F: drivers/clocksource/tcb_clksrc.c |
| 2302 | |
Haavard Skinnemoen | 914a3f3 | 2007-10-10 02:29:43 -0700 | [diff] [blame] | 2303 | ATMEL USBA UDC DRIVER |
Nicolas Ferre | e085b9d | 2017-01-27 15:43:42 +0100 | [diff] [blame] | 2304 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
Nicolas Ferre | a02875a | 2010-06-29 15:05:33 -0700 | [diff] [blame] | 2305 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Haavard Skinnemoen | 914a3f3 | 2007-10-10 02:29:43 -0700 | [diff] [blame] | 2306 | S: Supported |
Joe Perches | faf2e1d | 2014-08-08 14:26:18 -0700 | [diff] [blame] | 2307 | F: drivers/usb/gadget/udc/atmel_usba_udc.* |
Haavard Skinnemoen | 914a3f3 | 2007-10-10 02:29:43 -0700 | [diff] [blame] | 2308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2309 | ATMEL WIRELESS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2310 | M: Simon Kelley <simon@thekelleys.org.uk> |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 2311 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2312 | W: http://www.thekelleys.org.uk/atmel |
| 2313 | W: http://atmelwlandriver.sourceforge.net/ |
| 2314 | S: Maintained |
Kalle Valo | 30fe0f9 | 2015-11-17 19:49:20 +0200 | [diff] [blame] | 2315 | F: drivers/net/wireless/atmel/atmel* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2316 | |
Nick Dyer | a14c0f8 | 2015-08-04 16:22:54 -0700 | [diff] [blame] | 2317 | ATMEL MAXTOUCH DRIVER |
Nick Dyer | aaf578e | 2016-07-18 18:10:29 -0300 | [diff] [blame] | 2318 | M: Nick Dyer <nick@shmanahar.org> |
| 2319 | T: git git://github.com/ndyer/linux.git |
| 2320 | S: Maintained |
Nick Dyer | a14c0f8 | 2015-08-04 16:22:54 -0700 | [diff] [blame] | 2321 | F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt |
| 2322 | F: drivers/input/touchscreen/atmel_mxt_ts.c |
| 2323 | F: include/linux/platform_data/atmel_mxt_ts.h |
| 2324 | |
Bradley Grove | 26780d9 | 2013-08-23 10:35:45 -0400 | [diff] [blame] | 2325 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 2326 | M: Bradley Grove <linuxdrivers@attotech.com> |
| 2327 | L: linux-scsi@vger.kernel.org |
| 2328 | W: http://www.attotech.com |
| 2329 | S: Supported |
| 2330 | F: drivers/scsi/esas2r |
Bradley Grove | 26780d9 | 2013-08-23 10:35:45 -0400 | [diff] [blame] | 2331 | |
Stefan Schmidt | bc6e17b | 2015-05-29 10:51:28 +0200 | [diff] [blame] | 2332 | ATUSB IEEE 802.15.4 RADIO DRIVER |
| 2333 | M: Stefan Schmidt <stefan@osg.samsung.com> |
| 2334 | L: linux-wpan@vger.kernel.org |
| 2335 | S: Maintained |
| 2336 | F: drivers/net/ieee802154/atusb.c |
| 2337 | F: drivers/net/ieee802154/atusb.h |
| 2338 | F: drivers/net/ieee802154/at86rf230.h |
| 2339 | |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 2340 | AUDIT SUBSYSTEM |
Paul Moore | 915f389 | 2014-10-20 11:59:43 -0400 | [diff] [blame] | 2341 | M: Paul Moore <paul@paul-moore.com> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2342 | M: Eric Paris <eparis@redhat.com> |
Paul Moore | 915f389 | 2014-10-20 11:59:43 -0400 | [diff] [blame] | 2343 | L: linux-audit@redhat.com (moderated for non-subscribers) |
David Woodhouse | ad3f9a2 | 2005-07-13 15:28:29 +0100 | [diff] [blame] | 2344 | W: http://people.redhat.com/sgrubb/audit/ |
Paul Moore | 915f389 | 2014-10-20 11:59:43 -0400 | [diff] [blame] | 2345 | T: git git://git.infradead.org/users/pcmoore/audit |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 2346 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2347 | F: include/linux/audit.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 2348 | F: include/uapi/linux/audit.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2349 | F: kernel/audit* |
Chris Wright | a92b7b8 | 2005-07-07 18:12:23 -0700 | [diff] [blame] | 2350 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 2351 | AUXILIARY DISPLAY DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2352 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 2353 | W: http://miguelojeda.es/auxdisplay.htm |
| 2354 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 2355 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2356 | F: drivers/auxdisplay/ |
| 2357 | F: include/linux/cfag12864b.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 2358 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2359 | AX.25 NETWORK LAYER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2360 | M: Ralf Baechle <ralf@linux-mips.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2361 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 2362 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2363 | S: Maintained |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 2364 | F: include/uapi/linux/ax25.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2365 | F: include/net/ax25.h |
| 2366 | F: net/ax25/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2367 | |
Peter Rosin | c821d30 | 2016-11-15 19:38:14 +0100 | [diff] [blame] | 2368 | AXENTIA ASOC DRIVERS |
| 2369 | M: Peter Rosin <peda@axentia.se> |
| 2370 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 2371 | S: Maintained |
| 2372 | F: Documentation/devicetree/bindings/sound/axentia,* |
Peter Rosin | aa43112 | 2016-11-15 19:38:15 +0100 | [diff] [blame] | 2373 | F: sound/soc/atmel/tse850-pcm5142.c |
Peter Rosin | c821d30 | 2016-11-15 19:38:14 +0100 | [diff] [blame] | 2374 | |
Peter Rosin | 21dd0ec | 2017-01-10 14:18:33 +0100 | [diff] [blame] | 2375 | AXENTIA ARM DEVICES |
| 2376 | M: Peter Rosin <peda@axentia.se> |
| 2377 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 2378 | S: Maintained |
| 2379 | F: Documentation/devicetree/bindings/arm/axentia.txt |
| 2380 | F: arch/arm/boot/dts/at91-linea.dtsi |
| 2381 | F: arch/arm/boot/dts/at91-tse850-3.dts |
| 2382 | |
Mauro Carvalho Chehab | d526939 | 2012-11-02 12:00:30 -0200 | [diff] [blame] | 2383 | AZ6007 DVB DRIVER |
Mauro Carvalho Chehab | 5dc8a86 | 2016-06-14 15:17:40 -0300 | [diff] [blame] | 2384 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
| 2385 | M: Mauro Carvalho Chehab <mchehab@kernel.org> |
Mauro Carvalho Chehab | d526939 | 2012-11-02 12:00:30 -0200 | [diff] [blame] | 2386 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 2387 | W: https://linuxtv.org |
Mauro Carvalho Chehab | d526939 | 2012-11-02 12:00:30 -0200 | [diff] [blame] | 2388 | T: git git://linuxtv.org/media_tree.git |
| 2389 | S: Maintained |
| 2390 | F: drivers/media/usb/dvb-usb-v2/az6007.c |
| 2391 | |
Hans Verkuil | 6777376 | 2012-11-23 07:09:23 -0300 | [diff] [blame] | 2392 | AZTECH FM RADIO RECEIVER DRIVER |
| 2393 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 2394 | L: linux-media@vger.kernel.org |
| 2395 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 2396 | W: https://linuxtv.org |
Hans Verkuil | 6777376 | 2012-11-23 07:09:23 -0300 | [diff] [blame] | 2397 | S: Maintained |
| 2398 | F: drivers/media/radio/radio-aztech* |
| 2399 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2400 | B43 WIRELESS DRIVER |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2401 | L: linux-wireless@vger.kernel.org |
Rafał Miłecki | ed072f9 | 2012-01-29 11:59:42 +0100 | [diff] [blame] | 2402 | L: b43-dev@lists.infradead.org |
Johannes Berg | 491b26b | 2012-06-05 14:21:14 +0200 | [diff] [blame] | 2403 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
Joe Perches | 8a72ed6 | 2015-04-15 16:17:39 -0700 | [diff] [blame] | 2404 | S: Odd Fixes |
Kalle Valo | 58619b1 | 2015-11-17 19:49:23 +0200 | [diff] [blame] | 2405 | F: drivers/net/wireless/broadcom/b43/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2406 | |
| 2407 | B43LEGACY WIRELESS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2408 | M: Larry Finger <Larry.Finger@lwfinger.net> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2409 | L: linux-wireless@vger.kernel.org |
Rafał Miłecki | ed072f9 | 2012-01-29 11:59:42 +0100 | [diff] [blame] | 2410 | L: b43-dev@lists.infradead.org |
Johannes Berg | 491b26b | 2012-06-05 14:21:14 +0200 | [diff] [blame] | 2411 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2412 | S: Maintained |
Kalle Valo | 423e3ce | 2015-11-17 19:49:26 +0200 | [diff] [blame] | 2413 | F: drivers/net/wireless/broadcom/b43legacy/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2414 | |
Richard Purdie | 300abeb | 2007-02-07 22:21:07 +0000 | [diff] [blame] | 2415 | BACKLIGHT CLASS/SUBSYSTEM |
Jingoo Han | 70d14fc | 2014-04-03 14:48:46 -0700 | [diff] [blame] | 2416 | M: Lee Jones <lee.jones@linaro.org> |
Lee Jones | 80e5d45 | 2017-02-08 12:27:30 +0000 | [diff] [blame] | 2417 | M: Daniel Thompson <daniel.thompson@linaro.org> |
| 2418 | M: Jingoo Han <jingoohan1@gmail.com> |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 2419 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git |
Richard Purdie | 300abeb | 2007-02-07 22:21:07 +0000 | [diff] [blame] | 2420 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2421 | F: drivers/video/backlight/ |
| 2422 | F: include/linux/backlight.h |
Lee Jones | 80e5d45 | 2017-02-08 12:27:30 +0000 | [diff] [blame] | 2423 | F: include/linux/pwm_backlight.h |
| 2424 | F: Documentation/devicetree/bindings/leds/backlight |
Richard Purdie | 300abeb | 2007-02-07 22:21:07 +0000 | [diff] [blame] | 2425 | |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 2426 | BATMAN ADVANCED |
Antonio Quartulli | 207df49 | 2013-09-21 13:46:56 +0200 | [diff] [blame] | 2427 | M: Marek Lindner <mareklindner@neomailbox.ch> |
Simon Wunderlich | c679ff8 | 2013-10-10 23:59:10 +0200 | [diff] [blame] | 2428 | M: Simon Wunderlich <sw@simonwunderlich.de> |
Antonio Quartulli | ca8e940 | 2015-11-07 19:20:34 +0100 | [diff] [blame] | 2429 | M: Antonio Quartulli <a@unstable.cc> |
Sven Eckelmann | 1584f41 | 2016-04-01 15:17:35 +0200 | [diff] [blame] | 2430 | L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers) |
Sven Eckelmann | 7b5e739 | 2015-12-06 16:15:07 +0100 | [diff] [blame] | 2431 | W: https://www.open-mesh.org/ |
Sven Eckelmann | 8b82317 | 2016-02-21 16:40:55 +0100 | [diff] [blame] | 2432 | Q: https://patchwork.open-mesh.org/project/batman/list/ |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 2433 | S: Maintained |
Sven Eckelmann | 286ddfb | 2016-04-01 15:17:36 +0200 | [diff] [blame] | 2434 | F: Documentation/ABI/testing/sysfs-class-net-batman-adv |
| 2435 | F: Documentation/ABI/testing/sysfs-class-net-mesh |
| 2436 | F: Documentation/networking/batman-adv.txt |
Matthias Schiffer | 09748a2 | 2016-05-09 18:41:08 +0200 | [diff] [blame] | 2437 | F: include/uapi/linux/batman_adv.h |
Sven Eckelmann | c6c8fea | 2010-12-13 11:19:28 +0000 | [diff] [blame] | 2438 | F: net/batman-adv/ |
| 2439 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2440 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2441 | M: Thomas Sailer <t.sailer@alumni.ethz.ch> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2442 | L: linux-hams@vger.kernel.org |
| 2443 | W: http://www.baycom.org/~tom/ham/ham.html |
| 2444 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2445 | F: drivers/net/hamradio/baycom* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2446 | |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 2447 | BCACHE (BLOCK LAYER CACHE) |
Joe Perches | d1aa1ab | 2015-06-30 14:59:54 -0700 | [diff] [blame] | 2448 | M: Kent Overstreet <kent.overstreet@gmail.com> |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 2449 | L: linux-bcache@vger.kernel.org |
| 2450 | W: http://bcache.evilpiepirate.org |
Jiri Kosina | 4d1034e | 2016-05-24 16:38:50 +0200 | [diff] [blame] | 2451 | S: Orphan |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 2452 | F: drivers/md/bcache/ |
| 2453 | |
Hans Verkuil | 04bd844 | 2015-06-08 09:26:20 -0300 | [diff] [blame] | 2454 | BDISP ST MEDIA DRIVER |
| 2455 | M: Fabien Dessenne <fabien.dessenne@st.com> |
| 2456 | L: linux-media@vger.kernel.org |
| 2457 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 2458 | W: https://linuxtv.org |
Hans Verkuil | 04bd844 | 2015-06-08 09:26:20 -0300 | [diff] [blame] | 2459 | S: Supported |
| 2460 | F: drivers/media/platform/sti/bdisp |
| 2461 | |
Hugues Fruchet | f34b87e | 2017-02-02 12:59:47 -0200 | [diff] [blame] | 2462 | DELTA ST MEDIA DRIVER |
| 2463 | M: Hugues Fruchet <hugues.fruchet@st.com> |
| 2464 | L: linux-media@vger.kernel.org |
| 2465 | T: git git://linuxtv.org/media_tree.git |
| 2466 | W: https://linuxtv.org |
| 2467 | S: Supported |
| 2468 | F: drivers/media/platform/sti/delta |
| 2469 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2470 | BEFS FILE SYSTEM |
Luis de Bethencourt | db4ad03 | 2016-08-02 14:03:16 -0700 | [diff] [blame] | 2471 | M: Luis de Bethencourt <luisbg@osg.samsung.com> |
| 2472 | M: Salah Triki <salah.triki@gmail.com> |
| 2473 | S: Maintained |
| 2474 | T: git git://github.com/luisbg/linux-befs.git |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2475 | F: Documentation/filesystems/befs.txt |
| 2476 | F: fs/befs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2477 | |
Dariusz Marcinkiewicz | 564ee36 | 2014-08-15 17:50:47 +0200 | [diff] [blame] | 2478 | BECKHOFF CX5020 ETHERCAT MASTER DRIVER |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 2479 | M: Dariusz Marcinkiewicz <reksio@newterm.pl> |
| 2480 | L: netdev@vger.kernel.org |
| 2481 | S: Maintained |
| 2482 | F: drivers/net/ethernet/ec_bhf.c |
Dariusz Marcinkiewicz | 564ee36 | 2014-08-15 17:50:47 +0200 | [diff] [blame] | 2483 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2484 | BFS FILE SYSTEM |
Andrew Morton | cea5822 | 2017-05-12 15:46:44 -0700 | [diff] [blame] | 2485 | M: "Tigran A. Aivazian" <aivazian.tigran@gmail.com> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2486 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2487 | F: Documentation/filesystems/bfs.txt |
| 2488 | F: fs/bfs/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 2489 | F: include/uapi/linux/bfs_fs.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 2490 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 2491 | BLACKFIN ARCHITECTURE |
Sonic Zhang | a4edbc1 | 2014-01-29 14:05:55 -0800 | [diff] [blame] | 2492 | M: Steven Miao <realmz6@gmail.com> |
Richard Weinberger | b3fe92b | 2014-06-06 14:38:29 -0700 | [diff] [blame] | 2493 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
Michael Opdenacker | 1443176 | 2014-03-10 15:49:49 -0700 | [diff] [blame] | 2494 | T: git git://git.code.sf.net/p/adi-linux/code |
Bryan Wu | e3b2d3f | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 2495 | W: http://blackfin.uclinux.org |
| 2496 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2497 | F: arch/blackfin/ |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 2498 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 2499 | BLACKFIN EMAC DRIVER |
Richard Weinberger | b3fe92b | 2014-06-06 14:38:29 -0700 | [diff] [blame] | 2500 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 2501 | W: http://blackfin.uclinux.org |
| 2502 | S: Supported |
Jeff Kirsher | 7b35f03 | 2011-06-18 00:01:26 -0700 | [diff] [blame] | 2503 | F: drivers/net/ethernet/adi/ |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 2504 | |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 2505 | BLACKFIN RTC DRIVER |
Richard Weinberger | b3fe92b | 2014-06-06 14:38:29 -0700 | [diff] [blame] | 2506 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 2507 | W: http://blackfin.uclinux.org |
| 2508 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2509 | F: drivers/rtc/rtc-bfin.c |
Mike Frysinger | 566da5b | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 2510 | |
Mike Frysinger | 936ed49 | 2010-03-10 15:20:38 -0800 | [diff] [blame] | 2511 | BLACKFIN SDH DRIVER |
Sonic Zhang | 109ec8c | 2012-08-08 12:16:08 +0800 | [diff] [blame] | 2512 | M: Sonic Zhang <sonic.zhang@analog.com> |
Richard Weinberger | b3fe92b | 2014-06-06 14:38:29 -0700 | [diff] [blame] | 2513 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
Mike Frysinger | 936ed49 | 2010-03-10 15:20:38 -0800 | [diff] [blame] | 2514 | W: http://blackfin.uclinux.org |
| 2515 | S: Supported |
| 2516 | F: drivers/mmc/host/bfin_sdh.c |
| 2517 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 2518 | BLACKFIN SERIAL DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2519 | M: Sonic Zhang <sonic.zhang@analog.com> |
Richard Weinberger | b3fe92b | 2014-06-06 14:38:29 -0700 | [diff] [blame] | 2520 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
Bryan Wu | e3b2d3f | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 2521 | W: http://blackfin.uclinux.org |
| 2522 | S: Supported |
Joe Perches | 8460241 | 2012-01-10 15:09:04 -0800 | [diff] [blame] | 2523 | F: drivers/tty/serial/bfin_uart.c |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 2524 | |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 2525 | BLACKFIN WATCHDOG DRIVER |
Richard Weinberger | b3fe92b | 2014-06-06 14:38:29 -0700 | [diff] [blame] | 2526 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 2527 | W: http://blackfin.uclinux.org |
| 2528 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2529 | F: drivers/watchdog/bfin_wdt.c |
Bryan Wu | 1e6d320 | 2007-07-15 02:50:02 +0800 | [diff] [blame] | 2530 | |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 2531 | BLACKFIN I2C TWI DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2532 | M: Sonic Zhang <sonic.zhang@analog.com> |
Richard Weinberger | b3fe92b | 2014-06-06 14:38:29 -0700 | [diff] [blame] | 2533 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 2534 | W: http://blackfin.uclinux.org/ |
| 2535 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2536 | F: drivers/i2c/busses/i2c-bfin-twi.c |
Bryan Wu | d24ecfc | 2007-05-01 23:26:32 +0200 | [diff] [blame] | 2537 | |
Scott Jiang | 1e20437 | 2013-01-18 17:09:47 -0300 | [diff] [blame] | 2538 | BLACKFIN MEDIA DRIVER |
| 2539 | M: Scott Jiang <scott.jiang.linux@gmail.com> |
Richard Weinberger | b3fe92b | 2014-06-06 14:38:29 -0700 | [diff] [blame] | 2540 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
Scott Jiang | 1e20437 | 2013-01-18 17:09:47 -0300 | [diff] [blame] | 2541 | W: http://blackfin.uclinux.org/ |
| 2542 | S: Supported |
| 2543 | F: drivers/media/platform/blackfin/ |
| 2544 | F: drivers/media/i2c/adv7183* |
| 2545 | F: drivers/media/i2c/vs6624* |
| 2546 | |
Jan-Simon Möller | b54cf35 | 2012-07-20 16:49:06 +0800 | [diff] [blame] | 2547 | BLINKM RGB LED DRIVER |
| 2548 | M: Jan-Simon Moeller <jansimon.moeller@gmx.de> |
| 2549 | S: Maintained |
| 2550 | F: drivers/leds/leds-blinkm.c |
| 2551 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2552 | BLOCK LAYER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2553 | M: Jens Axboe <axboe@kernel.dk> |
Jens Axboe | 82c426e | 2015-11-05 13:29:25 -0700 | [diff] [blame] | 2554 | L: linux-block@vger.kernel.org |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 2555 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2556 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2557 | F: block/ |
Steven Rostedt | ae11f7e | 2015-06-09 17:30:11 -0400 | [diff] [blame] | 2558 | F: kernel/trace/blktrace.c |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 2559 | F: lib/sbitmap.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2560 | |
Ulf Hansson | bf290f8 | 2017-04-28 12:10:36 +0200 | [diff] [blame] | 2561 | BFQ I/O SCHEDULER |
| 2562 | M: Paolo Valente <paolo.valente@linaro.org> |
| 2563 | M: Jens Axboe <axboe@kernel.dk> |
| 2564 | L: linux-block@vger.kernel.org |
| 2565 | S: Maintained |
| 2566 | F: block/bfq-* |
| 2567 | F: Documentation/block/bfq-iosched.txt |
| 2568 | |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 2569 | BLOCK2MTD DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2570 | M: Joern Engel <joern@lazybastard.org> |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 2571 | L: linux-mtd@lists.infradead.org |
| 2572 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2573 | F: drivers/mtd/devices/block2mtd.c |
Joern Engel | 2b54aae | 2008-02-06 01:38:02 -0800 | [diff] [blame] | 2574 | |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 2575 | BLUETOOTH DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2576 | M: Marcel Holtmann <marcel@holtmann.org> |
Gustavo Padovan | 960d4d1 | 2012-03-15 15:17:10 -0700 | [diff] [blame] | 2577 | M: Gustavo Padovan <gustavo@padovan.org> |
Johan Hedberg | eb491ec | 2012-03-15 15:17:11 -0700 | [diff] [blame] | 2578 | M: Johan Hedberg <johan.hedberg@gmail.com> |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 2579 | L: linux-bluetooth@vger.kernel.org |
| 2580 | W: http://www.bluez.org/ |
Marcel Holtmann | 22e7a42 | 2012-03-27 18:21:00 +0200 | [diff] [blame] | 2581 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
| 2582 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 2583 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2584 | F: drivers/bluetooth/ |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 2585 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2586 | BLUETOOTH SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2587 | M: Marcel Holtmann <marcel@holtmann.org> |
Gustavo Padovan | 960d4d1 | 2012-03-15 15:17:10 -0700 | [diff] [blame] | 2588 | M: Gustavo Padovan <gustavo@padovan.org> |
Johan Hedberg | eb491ec | 2012-03-15 15:17:11 -0700 | [diff] [blame] | 2589 | M: Johan Hedberg <johan.hedberg@gmail.com> |
Pavel Machek | 781c284 | 2008-03-20 15:41:02 -0700 | [diff] [blame] | 2590 | L: linux-bluetooth@vger.kernel.org |
Marcel Holtmann | 63fbd24 | 2008-08-18 13:23:53 +0200 | [diff] [blame] | 2591 | W: http://www.bluez.org/ |
Marcel Holtmann | 22e7a42 | 2012-03-27 18:21:00 +0200 | [diff] [blame] | 2592 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
| 2593 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2594 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2595 | F: net/bluetooth/ |
| 2596 | F: include/net/bluetooth/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2597 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2598 | BONDING DRIVER |
Jay Vosburgh | 79b3075 | 2014-03-27 10:33:44 -0700 | [diff] [blame] | 2599 | M: Jay Vosburgh <j.vosburgh@gmail.com> |
Veaceslav Falico | 898602a | 2014-03-27 18:43:50 +0100 | [diff] [blame] | 2600 | M: Veaceslav Falico <vfalico@gmail.com> |
Andy Gospodarek | da29838 | 2016-08-29 16:51:30 -0400 | [diff] [blame] | 2601 | M: Andy Gospodarek <andy@greyhouse.net> |
Simon Horman | a6c36ee | 2010-11-21 09:58:04 -0800 | [diff] [blame] | 2602 | L: netdev@vger.kernel.org |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 2603 | W: http://sourceforge.net/projects/bonding/ |
| 2604 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2605 | F: drivers/net/bonding/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 2606 | F: include/uapi/linux/if_bonding.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2607 | |
Alexei Starovoitov | b5f4df3 | 2014-07-22 23:01:59 -0700 | [diff] [blame] | 2608 | BPF (Safe dynamic programs and tools) |
| 2609 | M: Alexei Starovoitov <ast@kernel.org> |
Daniel Borkmann | cdb9049 | 2017-04-20 17:27:58 +0200 | [diff] [blame] | 2610 | M: Daniel Borkmann <daniel@iogearbox.net> |
Alexei Starovoitov | b5f4df3 | 2014-07-22 23:01:59 -0700 | [diff] [blame] | 2611 | L: netdev@vger.kernel.org |
| 2612 | L: linux-kernel@vger.kernel.org |
| 2613 | S: Supported |
Daniel Borkmann | cdb9049 | 2017-04-20 17:27:58 +0200 | [diff] [blame] | 2614 | F: arch/x86/net/bpf_jit* |
| 2615 | F: Documentation/networking/filter.txt |
| 2616 | F: include/linux/bpf* |
| 2617 | F: include/linux/filter.h |
| 2618 | F: include/uapi/linux/bpf* |
| 2619 | F: include/uapi/linux/filter.h |
Alexei Starovoitov | b5f4df3 | 2014-07-22 23:01:59 -0700 | [diff] [blame] | 2620 | F: kernel/bpf/ |
Daniel Borkmann | cdb9049 | 2017-04-20 17:27:58 +0200 | [diff] [blame] | 2621 | F: kernel/trace/bpf_trace.c |
Daniel Borkmann | 5aa5bd1 | 2016-10-17 14:28:36 +0200 | [diff] [blame] | 2622 | F: lib/test_bpf.c |
Daniel Borkmann | cdb9049 | 2017-04-20 17:27:58 +0200 | [diff] [blame] | 2623 | F: net/bpf/ |
| 2624 | F: net/core/filter.c |
| 2625 | F: net/sched/act_bpf.c |
| 2626 | F: net/sched/cls_bpf.c |
| 2627 | F: samples/bpf/ |
| 2628 | F: tools/net/bpf* |
| 2629 | F: tools/testing/selftests/bpf/ |
Alexei Starovoitov | b5f4df3 | 2014-07-22 23:01:59 -0700 | [diff] [blame] | 2630 | |
Gary Zambrano | 3910589 | 2006-06-22 17:26:20 -0700 | [diff] [blame] | 2631 | BROADCOM B44 10/100 ETHERNET DRIVER |
Michael Chan | 75c9510 | 2016-09-20 23:33:15 -0400 | [diff] [blame] | 2632 | M: Michael Chan <michael.chan@broadcom.com> |
Gary Zambrano | 3910589 | 2006-06-22 17:26:20 -0700 | [diff] [blame] | 2633 | L: netdev@vger.kernel.org |
| 2634 | S: Supported |
Jeff Kirsher | adfc521 | 2011-04-07 06:03:04 -0700 | [diff] [blame] | 2635 | F: drivers/net/ethernet/broadcom/b44.* |
Gary Zambrano | 3910589 | 2006-06-22 17:26:20 -0700 | [diff] [blame] | 2636 | |
Florian Fainelli | 967dd82 | 2016-06-09 18:23:53 -0700 | [diff] [blame] | 2637 | BROADCOM B53 ETHERNET SWITCH DRIVER |
| 2638 | M: Florian Fainelli <f.fainelli@gmail.com> |
| 2639 | L: netdev@vger.kernel.org |
| 2640 | L: openwrt-devel@lists.openwrt.org (subscribers-only) |
| 2641 | S: Supported |
| 2642 | F: drivers/net/dsa/b53/* |
| 2643 | F: include/linux/platform_data/b53.h |
| 2644 | |
Florian Fainelli | 32ec90d | 2014-02-13 16:08:51 -0800 | [diff] [blame] | 2645 | BROADCOM GENET ETHERNET DRIVER |
| 2646 | M: Florian Fainelli <f.fainelli@gmail.com> |
| 2647 | L: netdev@vger.kernel.org |
| 2648 | S: Supported |
| 2649 | F: drivers/net/ethernet/broadcom/genet/ |
| 2650 | |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 2651 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
Mintz, Yuval | 67f0160 | 2016-10-24 08:48:09 +0300 | [diff] [blame] | 2652 | M: Rasesh Mody <rasesh.mody@cavium.com> |
| 2653 | M: Harish Patil <harish.patil@cavium.com> |
| 2654 | M: Dept-GELinuxNICDev@cavium.com |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 2655 | L: netdev@vger.kernel.org |
| 2656 | S: Supported |
Jeff Kirsher | adfc521 | 2011-04-07 06:03:04 -0700 | [diff] [blame] | 2657 | F: drivers/net/ethernet/broadcom/bnx2.* |
| 2658 | F: drivers/net/ethernet/broadcom/bnx2_* |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 2659 | |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 2660 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
Mintz, Yuval | 67f0160 | 2016-10-24 08:48:09 +0300 | [diff] [blame] | 2661 | M: Yuval Mintz <Yuval.Mintz@cavium.com> |
| 2662 | M: Ariel Elior <ariel.elior@cavium.com> |
| 2663 | M: everest-linux-l2@cavium.com |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 2664 | L: netdev@vger.kernel.org |
| 2665 | S: Supported |
Jeff Kirsher | adfc521 | 2011-04-07 06:03:04 -0700 | [diff] [blame] | 2666 | F: drivers/net/ethernet/broadcom/bnx2x/ |
Eliezer Tamir | 4d9d2cb | 2008-02-28 11:59:10 -0800 | [diff] [blame] | 2667 | |
Michael Chan | 3f0d80b | 2016-12-29 12:13:44 -0500 | [diff] [blame] | 2668 | BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER |
| 2669 | M: Michael Chan <michael.chan@broadcom.com> |
| 2670 | L: netdev@vger.kernel.org |
| 2671 | S: Supported |
| 2672 | F: drivers/net/ethernet/broadcom/bnxt/ |
| 2673 | |
Matt Porter | 90f4c59 | 2014-05-06 12:09:45 -0400 | [diff] [blame] | 2674 | BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE |
Florian Fainelli | f18cf05 | 2014-09-19 11:17:12 -0700 | [diff] [blame] | 2675 | M: Florian Fainelli <f.fainelli@gmail.com> |
Florian Fainelli | d3cc2e8 | 2015-04-10 11:49:44 -0700 | [diff] [blame] | 2676 | M: Ray Jui <rjui@broadcom.com> |
| 2677 | M: Scott Branden <sbranden@broadcom.com> |
Florian Fainelli | 086f4704 | 2016-07-05 16:16:19 -0700 | [diff] [blame] | 2678 | M: bcm-kernel-feedback-list@broadcom.com |
Matt Porter | 90f4c59 | 2014-05-06 12:09:45 -0400 | [diff] [blame] | 2679 | T: git git://github.com/broadcom/mach-bcm |
Christian Daudt | af4b8e3 | 2013-09-11 14:23:49 -0700 | [diff] [blame] | 2680 | S: Maintained |
Jon Mason | ccf62f5 | 2016-06-20 17:07:37 -0400 | [diff] [blame] | 2681 | N: bcm281* |
| 2682 | N: bcm113* |
| 2683 | N: bcm216* |
| 2684 | N: kona |
Christian Daudt | af4b8e3 | 2013-09-11 14:23:49 -0700 | [diff] [blame] | 2685 | F: arch/arm/mach-bcm/ |
Christian Daudt | af4b8e3 | 2013-09-11 14:23:49 -0700 | [diff] [blame] | 2686 | |
Scott Branden | 9209bec | 2014-10-16 21:57:16 -0600 | [diff] [blame] | 2687 | BROADCOM BCM2835 ARM ARCHITECTURE |
Stephen Warren | 8bcdd92 | 2014-11-04 20:27:17 -0700 | [diff] [blame] | 2688 | M: Lee Jones <lee@kernel.org> |
Eric Anholt | 10b9e88 | 2015-07-22 12:55:36 -0700 | [diff] [blame] | 2689 | M: Eric Anholt <eric@anholt.net> |
Eric Anholt | 346ab44 | 2017-02-23 10:15:27 -0800 | [diff] [blame] | 2690 | M: Stefan Wahren <stefan.wahren@i2se.com> |
Stephen Warren | f680f25 | 2012-09-15 00:18:54 -0600 | [diff] [blame] | 2691 | L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers) |
Eric Anholt | 8248112 | 2015-07-22 12:55:37 -0700 | [diff] [blame] | 2692 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Eric Anholt | 902dcd1 | 2017-01-31 11:48:01 -0800 | [diff] [blame] | 2693 | T: git git://github.com/anholt/linux |
Stephen Warren | f680f25 | 2012-09-15 00:18:54 -0600 | [diff] [blame] | 2694 | S: Maintained |
Scott Branden | 9209bec | 2014-10-16 21:57:16 -0600 | [diff] [blame] | 2695 | N: bcm2835 |
Eric Anholt | 4a5a7a6 | 2016-10-17 12:44:06 -0700 | [diff] [blame] | 2696 | F: drivers/staging/vc04_services |
Stephen Warren | f680f25 | 2012-09-15 00:18:54 -0600 | [diff] [blame] | 2697 | |
Rafał Miłecki | 5564f09 | 2015-05-29 07:39:26 +0200 | [diff] [blame] | 2698 | BROADCOM BCM47XX MIPS ARCHITECTURE |
| 2699 | M: Hauke Mehrtens <hauke@hauke-m.de> |
| 2700 | M: Rafał Miłecki <zajec5@gmail.com> |
| 2701 | L: linux-mips@linux-mips.org |
| 2702 | S: Maintained |
Geert Uytterhoeven | 7ad2410 | 2016-05-22 11:05:45 +0200 | [diff] [blame] | 2703 | F: Documentation/devicetree/bindings/mips/brcm/ |
Rafał Miłecki | 5564f09 | 2015-05-29 07:39:26 +0200 | [diff] [blame] | 2704 | F: arch/mips/bcm47xx/* |
| 2705 | F: arch/mips/include/asm/mach-bcm47xx/* |
| 2706 | |
Scott Branden | 9209bec | 2014-10-16 21:57:16 -0600 | [diff] [blame] | 2707 | BROADCOM BCM5301X ARM ARCHITECTURE |
Hauke Mehrtens | 5b293eb | 2014-02-04 00:01:43 +0100 | [diff] [blame] | 2708 | M: Hauke Mehrtens <hauke@hauke-m.de> |
Rafał Miłecki | 1a50cd8 | 2016-06-01 22:00:54 +0200 | [diff] [blame] | 2709 | M: Rafał Miłecki <zajec5@gmail.com> |
Jon Mason | d722bc9 | 2017-02-08 18:43:23 -0500 | [diff] [blame] | 2710 | M: Jon Mason <jonmason@broadcom.com> |
Rafał Miłecki | 1a50cd8 | 2016-06-01 22:00:54 +0200 | [diff] [blame] | 2711 | M: bcm-kernel-feedback-list@broadcom.com |
Hauke Mehrtens | 5b293eb | 2014-02-04 00:01:43 +0100 | [diff] [blame] | 2712 | L: linux-arm-kernel@lists.infradead.org |
| 2713 | S: Maintained |
| 2714 | F: arch/arm/mach-bcm/bcm_5301x.c |
Rafał Miłecki | 1a50cd8 | 2016-06-01 22:00:54 +0200 | [diff] [blame] | 2715 | F: arch/arm/boot/dts/bcm5301x*.dtsi |
Hauke Mehrtens | 5b293eb | 2014-02-04 00:01:43 +0100 | [diff] [blame] | 2716 | F: arch/arm/boot/dts/bcm470* |
Jon Mason | d722bc9 | 2017-02-08 18:43:23 -0500 | [diff] [blame] | 2717 | F: arch/arm/boot/dts/bcm953012* |
Hauke Mehrtens | 5b293eb | 2014-02-04 00:01:43 +0100 | [diff] [blame] | 2718 | |
Rafał Miłecki | 4ebd504 | 2016-08-21 19:01:38 +0200 | [diff] [blame] | 2719 | BROADCOM BCM53573 ARM ARCHITECTURE |
| 2720 | M: Rafał Miłecki <rafal@milecki.pl> |
| 2721 | L: linux-arm-kernel@lists.infradead.org |
| 2722 | S: Maintained |
| 2723 | F: arch/arm/boot/dts/bcm53573* |
| 2724 | F: arch/arm/boot/dts/bcm47189* |
| 2725 | |
Florian Fainelli | e076e96 | 2014-03-04 18:14:58 -0800 | [diff] [blame] | 2726 | BROADCOM BCM63XX ARM ARCHITECTURE |
| 2727 | M: Florian Fainelli <f.fainelli@gmail.com> |
Florian Fainelli | 086f4704 | 2016-07-05 16:16:19 -0700 | [diff] [blame] | 2728 | M: bcm-kernel-feedback-list@broadcom.com |
Florian Fainelli | 20de823 | 2016-01-31 17:41:13 -0800 | [diff] [blame] | 2729 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Florian Fainelli | 20de823 | 2016-01-31 17:41:13 -0800 | [diff] [blame] | 2730 | T: git git://github.com/broadcom/stblinux.git |
Florian Fainelli | e076e96 | 2014-03-04 18:14:58 -0800 | [diff] [blame] | 2731 | S: Maintained |
Jon Mason | d6f4e76 | 2016-06-20 17:07:36 -0400 | [diff] [blame] | 2732 | N: bcm63xx |
Florian Fainelli | e076e96 | 2014-03-04 18:14:58 -0800 | [diff] [blame] | 2733 | |
Kevin Cernekee | 7110e227 | 2014-10-20 21:28:07 -0700 | [diff] [blame] | 2734 | BROADCOM BCM63XX/BCM33XX UDC DRIVER |
| 2735 | M: Kevin Cernekee <cernekee@gmail.com> |
| 2736 | L: linux-usb@vger.kernel.org |
| 2737 | S: Maintained |
| 2738 | F: drivers/usb/gadget/udc/bcm63xx_udc.* |
| 2739 | |
Brian Norris | 2df94fd | 2014-07-14 18:06:03 -0700 | [diff] [blame] | 2740 | BROADCOM BCM7XXX ARM ARCHITECTURE |
Brian Norris | 2df94fd | 2014-07-14 18:06:03 -0700 | [diff] [blame] | 2741 | M: Brian Norris <computersforpeace@gmail.com> |
Florian Fainelli | 3b4b6fe | 2014-11-14 12:53:43 -0800 | [diff] [blame] | 2742 | M: Gregory Fong <gregory.0xf0@gmail.com> |
| 2743 | M: Florian Fainelli <f.fainelli@gmail.com> |
Florian Fainelli | 086f4704 | 2016-07-05 16:16:19 -0700 | [diff] [blame] | 2744 | M: bcm-kernel-feedback-list@broadcom.com |
Brian Norris | 2df94fd | 2014-07-14 18:06:03 -0700 | [diff] [blame] | 2745 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Florian Fainelli | eb6725d | 2015-01-29 15:21:56 -0800 | [diff] [blame] | 2746 | T: git git://github.com/broadcom/stblinux.git |
Brian Norris | 2df94fd | 2014-07-14 18:06:03 -0700 | [diff] [blame] | 2747 | S: Maintained |
| 2748 | F: arch/arm/mach-bcm/*brcmstb* |
| 2749 | F: arch/arm/boot/dts/bcm7*.dts* |
Florian Fainelli | e36661e | 2014-11-14 12:53:44 -0800 | [diff] [blame] | 2750 | F: drivers/bus/brcmstb_gisb.c |
Brian Norris | 5009a28 | 2015-03-18 18:09:05 -0700 | [diff] [blame] | 2751 | N: brcmstb |
Brian Norris | 2df94fd | 2014-07-14 18:06:03 -0700 | [diff] [blame] | 2752 | |
Kevin Cernekee | 70371ce | 2014-11-15 16:17:45 -0800 | [diff] [blame] | 2753 | BROADCOM BMIPS MIPS ARCHITECTURE |
| 2754 | M: Kevin Cernekee <cernekee@gmail.com> |
| 2755 | M: Florian Fainelli <f.fainelli@gmail.com> |
| 2756 | L: linux-mips@linux-mips.org |
Florian Fainelli | eb6725d | 2015-01-29 15:21:56 -0800 | [diff] [blame] | 2757 | T: git git://github.com/broadcom/stblinux.git |
Kevin Cernekee | 70371ce | 2014-11-15 16:17:45 -0800 | [diff] [blame] | 2758 | S: Maintained |
| 2759 | F: arch/mips/bmips/* |
| 2760 | F: arch/mips/include/asm/mach-bmips/* |
| 2761 | F: arch/mips/kernel/*bmips* |
Joe Perches | 338808d | 2015-06-30 14:59:42 -0700 | [diff] [blame] | 2762 | F: arch/mips/boot/dts/brcm/bcm*.dts* |
Simon Arlott | c7c42ec | 2015-11-22 14:30:14 +0000 | [diff] [blame] | 2763 | F: drivers/irqchip/irq-bcm63* |
Kevin Cernekee | 70371ce | 2014-11-15 16:17:45 -0800 | [diff] [blame] | 2764 | F: drivers/irqchip/irq-bcm7* |
| 2765 | F: drivers/irqchip/irq-brcmstb* |
Simon Arlott | 3271e61 | 2015-12-13 22:45:30 +0000 | [diff] [blame] | 2766 | F: include/linux/bcm963xx_nvram.h |
Simon Arlott | 8fce60b | 2015-12-13 22:46:59 +0000 | [diff] [blame] | 2767 | F: include/linux/bcm963xx_tag.h |
Kevin Cernekee | 70371ce | 2014-11-15 16:17:45 -0800 | [diff] [blame] | 2768 | |
Markus Mayer | 20bb550 | 2017-02-17 12:27:03 -0800 | [diff] [blame] | 2769 | BROADCOM BMIPS CPUFREQ DRIVER |
| 2770 | M: Markus Mayer <mmayer@broadcom.com> |
| 2771 | M: bcm-kernel-feedback-list@broadcom.com |
| 2772 | L: linux-pm@vger.kernel.org |
| 2773 | S: Maintained |
| 2774 | F: drivers/cpufreq/bmips-cpufreq.c |
| 2775 | |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 2776 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
Siva Reddy Kallam | ccad099 | 2016-02-04 15:20:47 +0530 | [diff] [blame] | 2777 | M: Siva Reddy Kallam <siva.kallam@broadcom.com> |
Prashant Sreedharan | 2362947 | 2014-06-27 16:21:50 -0700 | [diff] [blame] | 2778 | M: Prashant Sreedharan <prashant@broadcom.com> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2779 | M: Michael Chan <mchan@broadcom.com> |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 2780 | L: netdev@vger.kernel.org |
| 2781 | S: Supported |
Jeff Kirsher | adfc521 | 2011-04-07 06:03:04 -0700 | [diff] [blame] | 2782 | F: drivers/net/ethernet/broadcom/tg3.* |
Michael Chan | 948c51e | 2006-06-04 02:51:39 -0700 | [diff] [blame] | 2783 | |
Henry Ptasinski | a9533e7 | 2010-09-08 21:04:42 -0700 | [diff] [blame] | 2784 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
Arend van Spriel | 2a73445 | 2016-06-03 23:31:12 +0200 | [diff] [blame] | 2785 | M: Arend van Spriel <arend.vanspriel@broadcom.com> |
| 2786 | M: Franky Lin <franky.lin@broadcom.com> |
| 2787 | M: Hante Meuleman <hante.meuleman@broadcom.com> |
Henry Ptasinski | a9533e7 | 2010-09-08 21:04:42 -0700 | [diff] [blame] | 2788 | L: linux-wireless@vger.kernel.org |
Arend van Spriel | 2a73445 | 2016-06-03 23:31:12 +0200 | [diff] [blame] | 2789 | L: brcm80211-dev-list.pdl@broadcom.com |
Henry Ptasinski | a9533e7 | 2010-09-08 21:04:42 -0700 | [diff] [blame] | 2790 | S: Supported |
Kalle Valo | 05491d2 | 2015-11-17 19:52:05 +0200 | [diff] [blame] | 2791 | F: drivers/net/wireless/broadcom/brcm80211/ |
Henry Ptasinski | a9533e7 | 2010-09-08 21:04:42 -0700 | [diff] [blame] | 2792 | |
Bhanu Prakash Gollapudi | 9958d6f | 2011-05-27 11:48:10 -0700 | [diff] [blame] | 2793 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
Vikas Chaudhary | 3b7f040 | 2014-07-03 08:18:29 -0400 | [diff] [blame] | 2794 | M: QLogic-Storage-Upstream@qlogic.com |
Bhanu Prakash Gollapudi | 9958d6f | 2011-05-27 11:48:10 -0700 | [diff] [blame] | 2795 | L: linux-scsi@vger.kernel.org |
| 2796 | S: Supported |
| 2797 | F: drivers/scsi/bnx2fc/ |
| 2798 | |
Eddie Wai | 6a6b5ad0 | 2013-07-11 17:15:56 -0700 | [diff] [blame] | 2799 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
Vikas Chaudhary | 3b7f040 | 2014-07-03 08:18:29 -0400 | [diff] [blame] | 2800 | M: QLogic-Storage-Upstream@qlogic.com |
Eddie Wai | 6a6b5ad0 | 2013-07-11 17:15:56 -0700 | [diff] [blame] | 2801 | L: linux-scsi@vger.kernel.org |
| 2802 | S: Supported |
| 2803 | F: drivers/scsi/bnx2i/ |
| 2804 | |
Jon Mason | 63f37dd | 2015-08-26 18:35:30 -0400 | [diff] [blame] | 2805 | BROADCOM IPROC ARM ARCHITECTURE |
Scott Branden | 36c0237 | 2014-09-12 16:50:56 -0700 | [diff] [blame] | 2806 | M: Ray Jui <rjui@broadcom.com> |
| 2807 | M: Scott Branden <sbranden@broadcom.com> |
Jon Mason | 63f37dd | 2015-08-26 18:35:30 -0400 | [diff] [blame] | 2808 | M: Jon Mason <jonmason@broadcom.com> |
Florian Fainelli | 086f4704 | 2016-07-05 16:16:19 -0700 | [diff] [blame] | 2809 | M: bcm-kernel-feedback-list@broadcom.com |
Scott Branden | 36c0237 | 2014-09-12 16:50:56 -0700 | [diff] [blame] | 2810 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Florian Fainelli | eb6725d | 2015-01-29 15:21:56 -0800 | [diff] [blame] | 2811 | T: git git://github.com/broadcom/cygnus-linux.git |
Scott Branden | 36c0237 | 2014-09-12 16:50:56 -0700 | [diff] [blame] | 2812 | S: Maintained |
| 2813 | N: iproc |
| 2814 | N: cygnus |
Jon Mason | 5c16124 | 2016-06-20 17:07:34 -0400 | [diff] [blame] | 2815 | N: bcm[-_]nsp |
Scott Branden | 36c0237 | 2014-09-12 16:50:56 -0700 | [diff] [blame] | 2816 | N: bcm9113* |
| 2817 | N: bcm9583* |
Jon Mason | 63f37dd | 2015-08-26 18:35:30 -0400 | [diff] [blame] | 2818 | N: bcm9585* |
| 2819 | N: bcm9586* |
| 2820 | N: bcm988312 |
Scott Branden | 36c0237 | 2014-09-12 16:50:56 -0700 | [diff] [blame] | 2821 | N: bcm113* |
Jon Mason | 63f37dd | 2015-08-26 18:35:30 -0400 | [diff] [blame] | 2822 | N: bcm583* |
| 2823 | N: bcm585* |
| 2824 | N: bcm586* |
| 2825 | N: bcm88312 |
Jon Mason | d76e21b | 2016-06-20 17:07:35 -0400 | [diff] [blame] | 2826 | F: arch/arm64/boot/dts/broadcom/ns2* |
Jon Mason | 5c16124 | 2016-06-20 17:07:34 -0400 | [diff] [blame] | 2827 | F: drivers/clk/bcm/clk-ns* |
| 2828 | F: drivers/pinctrl/bcm/pinctrl-ns* |
Scott Branden | 36c0237 | 2014-09-12 16:50:56 -0700 | [diff] [blame] | 2829 | |
Gregory Fong | 3b0213d | 2015-05-28 19:14:05 -0700 | [diff] [blame] | 2830 | BROADCOM BRCMSTB GPIO DRIVER |
| 2831 | M: Gregory Fong <gregory.0xf0@gmail.com> |
Florian Fainelli | 9c2abe2 | 2015-11-18 15:22:13 -0800 | [diff] [blame] | 2832 | L: bcm-kernel-feedback-list@broadcom.com |
Gregory Fong | 3b0213d | 2015-05-28 19:14:05 -0700 | [diff] [blame] | 2833 | S: Supported |
| 2834 | F: drivers/gpio/gpio-brcmstb.c |
| 2835 | F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt |
| 2836 | |
Markus Mayer | 7b7f588 | 2014-02-12 15:42:27 -0800 | [diff] [blame] | 2837 | BROADCOM KONA GPIO DRIVER |
Markus Mayer | 5e16390 | 2014-07-29 11:10:07 -0700 | [diff] [blame] | 2838 | M: Ray Jui <rjui@broadcom.com> |
Markus Mayer | 7b7f588 | 2014-02-12 15:42:27 -0800 | [diff] [blame] | 2839 | L: bcm-kernel-feedback-list@broadcom.com |
| 2840 | S: Supported |
| 2841 | F: drivers/gpio/gpio-bcm-kona.c |
Joe Perches | 1db12cd | 2015-06-30 14:59:45 -0700 | [diff] [blame] | 2842 | F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt |
Markus Mayer | 7b7f588 | 2014-02-12 15:42:27 -0800 | [diff] [blame] | 2843 | |
Rafał Miłecki | f6e734a | 2015-06-10 23:05:08 +0200 | [diff] [blame] | 2844 | BROADCOM NVRAM DRIVER |
| 2845 | M: Rafał Miłecki <zajec5@gmail.com> |
| 2846 | L: linux-mips@linux-mips.org |
| 2847 | S: Maintained |
| 2848 | F: drivers/firmware/broadcom/* |
| 2849 | |
Brian Norris | 02787da | 2015-05-12 17:16:50 -0700 | [diff] [blame] | 2850 | BROADCOM STB NAND FLASH DRIVER |
| 2851 | M: Brian Norris <computersforpeace@gmail.com> |
Kamal Dasu | 1ddaa02 | 2015-11-17 13:50:08 -0500 | [diff] [blame] | 2852 | M: Kamal Dasu <kdasu.kdev@gmail.com> |
Brian Norris | 02787da | 2015-05-12 17:16:50 -0700 | [diff] [blame] | 2853 | L: linux-mtd@lists.infradead.org |
Florian Fainelli | 1285734 | 2015-11-16 15:34:15 -0800 | [diff] [blame] | 2854 | L: bcm-kernel-feedback-list@broadcom.com |
Brian Norris | 02787da | 2015-05-12 17:16:50 -0700 | [diff] [blame] | 2855 | S: Maintained |
| 2856 | F: drivers/mtd/nand/brcmnand/ |
| 2857 | |
Markus Mayer | bb446b5 | 2016-10-27 14:05:34 -0700 | [diff] [blame] | 2858 | BROADCOM STB AVS CPUFREQ DRIVER |
| 2859 | M: Markus Mayer <mmayer@broadcom.com> |
| 2860 | M: bcm-kernel-feedback-list@broadcom.com |
| 2861 | L: linux-pm@vger.kernel.org |
| 2862 | S: Maintained |
| 2863 | F: Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt |
Markus Mayer | de322e0 | 2016-10-27 14:05:35 -0700 | [diff] [blame] | 2864 | F: drivers/cpufreq/brcmstb* |
Markus Mayer | bb446b5 | 2016-10-27 14:05:34 -0700 | [diff] [blame] | 2865 | |
Rafał Miłecki | c9678d8 | 2012-01-13 22:55:05 +0100 | [diff] [blame] | 2866 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
| 2867 | M: Rafał Miłecki <zajec5@gmail.com> |
| 2868 | L: linux-wireless@vger.kernel.org |
| 2869 | S: Maintained |
| 2870 | F: drivers/bcma/ |
| 2871 | F: include/linux/bcma/ |
| 2872 | |
Florian Fainelli | b830220 | 2014-04-24 18:09:00 -0700 | [diff] [blame] | 2873 | BROADCOM SYSTEMPORT ETHERNET DRIVER |
| 2874 | M: Florian Fainelli <f.fainelli@gmail.com> |
| 2875 | L: netdev@vger.kernel.org |
| 2876 | S: Supported |
| 2877 | F: drivers/net/ethernet/broadcom/bcmsysport.* |
| 2878 | |
Selvin Xavier | 592e8b3 | 2017-02-10 03:19:53 -0800 | [diff] [blame] | 2879 | BROADCOM NETXTREME-E ROCE DRIVER |
| 2880 | M: Selvin Xavier <selvin.xavier@broadcom.com> |
| 2881 | M: Devesh Sharma <devesh.sharma@broadcom.com> |
| 2882 | M: Somnath Kotur <somnath.kotur@broadcom.com> |
| 2883 | M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com> |
| 2884 | L: linux-rdma@vger.kernel.org |
| 2885 | W: http://www.broadcom.com |
| 2886 | S: Supported |
| 2887 | F: drivers/infiniband/hw/bnxt_re/ |
| 2888 | F: include/uapi/rdma/bnxt_re-abi.h |
| 2889 | |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 2890 | BROCADE BFA FC SCSI DRIVER |
Anil Gurumurthy | aa80337 | 2014-02-26 06:08:42 -0500 | [diff] [blame] | 2891 | M: Anil Gurumurthy <anil.gurumurthy@qlogic.com> |
| 2892 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> |
Joe Perches | 455518e | 2009-11-11 14:26:10 -0800 | [diff] [blame] | 2893 | L: linux-scsi@vger.kernel.org |
| 2894 | S: Supported |
| 2895 | F: drivers/scsi/bfa/ |
Jing Huang | 7725ccf | 2009-09-23 17:46:15 -0700 | [diff] [blame] | 2896 | |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2897 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
Mintz, Yuval | 67f0160 | 2016-10-24 08:48:09 +0300 | [diff] [blame] | 2898 | M: Rasesh Mody <rasesh.mody@cavium.com> |
| 2899 | M: Sudarsana Kalluru <sudarsana.kalluru@cavium.com> |
| 2900 | M: Dept-GELinuxNICDev@cavium.com |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2901 | L: netdev@vger.kernel.org |
| 2902 | S: Supported |
Jeff Kirsher | f844a0e | 2011-05-13 01:00:03 -0700 | [diff] [blame] | 2903 | F: drivers/net/ethernet/brocade/bna/ |
Rasesh Mody | 8b230ed | 2010-08-23 20:24:12 -0700 | [diff] [blame] | 2904 | |
Jens Axboe | 5cdf7f7 | 2007-07-17 08:58:06 +0200 | [diff] [blame] | 2905 | BSG (block layer generic sg v4 driver) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2906 | M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> |
Jens Axboe | 5cdf7f7 | 2007-07-17 08:58:06 +0200 | [diff] [blame] | 2907 | L: linux-scsi@vger.kernel.org |
| 2908 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2909 | F: block/bsg.c |
| 2910 | F: include/linux/bsg.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 2911 | F: include/uapi/linux/bsg.h |
Jens Axboe | 5cdf7f7 | 2007-07-17 08:58:06 +0200 | [diff] [blame] | 2912 | |
Clemens Ladisch | af39917 | 2011-01-10 16:32:54 +0100 | [diff] [blame] | 2913 | BT87X AUDIO DRIVER |
| 2914 | M: Clemens Ladisch <clemens@ladisch.de> |
| 2915 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 2916 | T: git git://git.alsa-project.org/alsa-kernel.git |
| 2917 | S: Maintained |
| 2918 | F: Documentation/sound/alsa/Bt87x.txt |
| 2919 | F: sound/pci/bt87x.c |
| 2920 | |
Michael Buesch | ff1d5c2 | 2008-07-25 01:46:10 -0700 | [diff] [blame] | 2921 | BT8XXGPIO DRIVER |
Michael Büsch | eb032b9 | 2011-07-04 20:50:05 +0200 | [diff] [blame] | 2922 | M: Michael Buesch <m@bues.ch> |
Michael Buesch | ff1d5c2 | 2008-07-25 01:46:10 -0700 | [diff] [blame] | 2923 | W: http://bu3sch.de/btgpio.php |
| 2924 | S: Maintained |
Joe Perches | 72dbb70 | 2012-01-10 15:08:46 -0800 | [diff] [blame] | 2925 | F: drivers/gpio/gpio-bt8xx.c |
Michael Buesch | ff1d5c2 | 2008-07-25 01:46:10 -0700 | [diff] [blame] | 2926 | |
Joe Perches | eb1eb04 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 2927 | BTRFS FILE SYSTEM |
Chris Mason | c0778e2 | 2013-12-03 20:16:03 -0500 | [diff] [blame] | 2928 | M: Chris Mason <clm@fb.com> |
| 2929 | M: Josef Bacik <jbacik@fb.com> |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 2930 | M: David Sterba <dsterba@suse.com> |
Joe Perches | eb1eb04 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 2931 | L: linux-btrfs@vger.kernel.org |
| 2932 | W: http://btrfs.wiki.kernel.org/ |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 2933 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
Liu Bo | 9c10640 | 2012-06-14 02:23:25 -0600 | [diff] [blame] | 2934 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
Joe Perches | eb1eb04 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 2935 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 2936 | F: Documentation/filesystems/btrfs.txt |
| 2937 | F: fs/btrfs/ |
Dmitry V. Levin | aeea4c1 | 2017-03-02 22:42:38 +0300 | [diff] [blame] | 2938 | F: include/linux/btrfs* |
| 2939 | F: include/uapi/linux/btrfs* |
Joe Perches | eb1eb04 | 2009-01-21 10:49:16 -0500 | [diff] [blame] | 2940 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2941 | BTTV VIDEO4LINUX DRIVER |
Mauro Carvalho Chehab | 5dc8a86 | 2016-06-14 15:17:40 -0300 | [diff] [blame] | 2942 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
| 2943 | M: Mauro Carvalho Chehab <mchehab@kernel.org> |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2944 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 2945 | W: https://linuxtv.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 2946 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | f96236e | 2012-11-02 11:14:18 -0200 | [diff] [blame] | 2947 | S: Odd fixes |
Mauro Carvalho Chehab | 618cd93 | 2016-09-12 12:48:54 -0300 | [diff] [blame] | 2948 | F: Documentation/media/v4l-drivers/bttv* |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 2949 | F: drivers/media/pci/bt8xx/bttv* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2950 | |
Khalid Aziz | 1f34923 | 2013-06-25 09:57:27 -0600 | [diff] [blame] | 2951 | BUSLOGIC SCSI DRIVER |
| 2952 | M: Khalid Aziz <khalid@gonehiking.org> |
| 2953 | L: linux-scsi@vger.kernel.org |
| 2954 | S: Maintained |
| 2955 | F: drivers/scsi/BusLogic.* |
| 2956 | F: drivers/scsi/FlashPoint.* |
| 2957 | |
Clemens Ladisch | af39917 | 2011-01-10 16:32:54 +0100 | [diff] [blame] | 2958 | C-MEDIA CMI8788 DRIVER |
| 2959 | M: Clemens Ladisch <clemens@ladisch.de> |
| 2960 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 2961 | T: git git://git.alsa-project.org/alsa-kernel.git |
| 2962 | S: Maintained |
| 2963 | F: sound/pci/oxygen/ |
| 2964 | |
Mark Salter | 2141355 | 2011-10-04 11:21:42 -0400 | [diff] [blame] | 2965 | C6X ARCHITECTURE |
| 2966 | M: Mark Salter <msalter@redhat.com> |
| 2967 | M: Aurelien Jacquiot <a-jacquiot@ti.com> |
| 2968 | L: linux-c6x-dev@linux-c6x.org |
| 2969 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page |
| 2970 | S: Maintained |
| 2971 | F: arch/c6x/ |
| 2972 | |
Harry Morris | 8b1cfcb | 2017-03-28 13:09:00 +0100 | [diff] [blame] | 2973 | CA8210 IEEE-802.15.4 RADIO DRIVER |
| 2974 | M: Harry Morris <h.morris@cascoda.com> |
| 2975 | M: linuxdev@cascoda.com |
| 2976 | L: linux-wpan@vger.kernel.org |
| 2977 | W: https://github.com/Cascoda/ca8210-linux.git |
| 2978 | S: Maintained |
| 2979 | F: drivers/net/ieee802154/ca8210.c |
| 2980 | F: Documentation/devicetree/bindings/net/ieee802154/ca8210.txt |
| 2981 | |
David Howells | a5432f5 | 2009-04-20 15:46:45 +0100 | [diff] [blame] | 2982 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2983 | M: David Howells <dhowells@redhat.com> |
Geert Uytterhoeven | e62d6e2 | 2015-11-12 11:46:33 +0000 | [diff] [blame] | 2984 | L: linux-cachefs@redhat.com (moderated for non-subscribers) |
David Howells | a5432f5 | 2009-04-20 15:46:45 +0100 | [diff] [blame] | 2985 | S: Supported |
| 2986 | F: Documentation/filesystems/caching/cachefiles.txt |
| 2987 | F: fs/cachefiles/ |
| 2988 | |
Hans Verkuil | c815ca3 | 2012-11-23 07:05:54 -0300 | [diff] [blame] | 2989 | CADET FM/AM RADIO RECEIVER DRIVER |
| 2990 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 2991 | L: linux-media@vger.kernel.org |
| 2992 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 2993 | W: https://linuxtv.org |
Hans Verkuil | c815ca3 | 2012-11-23 07:05:54 -0300 | [diff] [blame] | 2994 | S: Maintained |
| 2995 | F: drivers/media/radio/radio-cadet* |
| 2996 | |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 2997 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 2998 | M: Jonathan Corbet <corbet@lwn.net> |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 2999 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 3000 | T: git git://linuxtv.org/media_tree.git |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 3001 | S: Maintained |
Mauro Carvalho Chehab | 618cd93 | 2016-09-12 12:48:54 -0300 | [diff] [blame] | 3002 | F: Documentation/media/v4l-drivers/cafe_ccic* |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 3003 | F: drivers/media/platform/marvell-ccic/ |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 3004 | |
Joe Perches | 201b6ba | 2010-09-07 20:33:24 +0000 | [diff] [blame] | 3005 | CAIF NETWORK LAYER |
sjur.brandeland@stericsson.com | 5c574f5 | 2013-04-22 23:57:00 +0000 | [diff] [blame] | 3006 | M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no> |
Joe Perches | 201b6ba | 2010-09-07 20:33:24 +0000 | [diff] [blame] | 3007 | L: netdev@vger.kernel.org |
| 3008 | S: Supported |
| 3009 | F: Documentation/networking/caif/ |
| 3010 | F: drivers/net/caif/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 3011 | F: include/uapi/linux/caif/ |
Joe Perches | 201b6ba | 2010-09-07 20:33:24 +0000 | [diff] [blame] | 3012 | F: include/net/caif/ |
| 3013 | F: net/caif/ |
| 3014 | |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 3015 | CALGARY x86-64 IOMMU |
Jon Mason | a6921c2 | 2016-06-24 14:49:31 -0700 | [diff] [blame] | 3016 | M: Muli Ben-Yehuda <mulix@mulix.org> |
| 3017 | M: Jon Mason <jdmason@kudzu.us> |
| 3018 | L: iommu@lists.linux-foundation.org |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 3019 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3020 | F: arch/x86/kernel/pci-calgary_64.c |
| 3021 | F: arch/x86/kernel/tce_64.c |
| 3022 | F: arch/x86/include/asm/calgary.h |
| 3023 | F: arch/x86/include/asm/tce.h |
Muli Ben-Yehuda | 77dac90 | 2006-07-10 17:06:12 +0200 | [diff] [blame] | 3024 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3025 | CAN NETWORK LAYER |
Oliver Hartkopp | 8d15d38 | 2010-03-06 08:31:50 +0000 | [diff] [blame] | 3026 | M: Oliver Hartkopp <socketcan@hartkopp.net> |
Marc Kleine-Budde | f7214cf | 2015-03-06 09:00:38 +0100 | [diff] [blame] | 3027 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
Marc Kleine-Budde | 1caa60b | 2011-10-17 09:31:59 +0000 | [diff] [blame] | 3028 | L: linux-can@vger.kernel.org |
Marc Kleine-Budde | 84b0d71 | 2015-03-06 08:58:33 +0100 | [diff] [blame] | 3029 | W: https://github.com/linux-can |
Marc Kleine-Budde | 870482a | 2015-01-15 16:56:26 +0100 | [diff] [blame] | 3030 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
| 3031 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3032 | S: Maintained |
John Whitmore | f35f6c8 | 2013-12-06 12:49:08 +0000 | [diff] [blame] | 3033 | F: Documentation/networking/can.txt |
Oliver Hartkopp | 8d15d38 | 2010-03-06 08:31:50 +0000 | [diff] [blame] | 3034 | F: net/can/ |
Oliver Hartkopp | 8d15d38 | 2010-03-06 08:31:50 +0000 | [diff] [blame] | 3035 | F: include/linux/can/core.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 3036 | F: include/uapi/linux/can.h |
| 3037 | F: include/uapi/linux/can/bcm.h |
| 3038 | F: include/uapi/linux/can/raw.h |
| 3039 | F: include/uapi/linux/can/gw.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3040 | |
Wolfgang Grandegger | 4261a20 | 2009-05-15 23:39:28 +0000 | [diff] [blame] | 3041 | CAN NETWORK DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3042 | M: Wolfgang Grandegger <wg@grandegger.com> |
Oliver Hartkopp | ec78213 | 2012-01-03 08:40:28 +0000 | [diff] [blame] | 3043 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
Marc Kleine-Budde | 1caa60b | 2011-10-17 09:31:59 +0000 | [diff] [blame] | 3044 | L: linux-can@vger.kernel.org |
Marc Kleine-Budde | 84b0d71 | 2015-03-06 08:58:33 +0100 | [diff] [blame] | 3045 | W: https://github.com/linux-can |
Marc Kleine-Budde | 870482a | 2015-01-15 16:56:26 +0100 | [diff] [blame] | 3046 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
| 3047 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git |
Wolfgang Grandegger | 4261a20 | 2009-05-15 23:39:28 +0000 | [diff] [blame] | 3048 | S: Maintained |
Geert Uytterhoeven | 3636876 | 2016-05-22 11:05:46 +0200 | [diff] [blame] | 3049 | F: Documentation/devicetree/bindings/net/can/ |
Oliver Hartkopp | 8d15d38 | 2010-03-06 08:31:50 +0000 | [diff] [blame] | 3050 | F: drivers/net/can/ |
| 3051 | F: include/linux/can/dev.h |
Oliver Hartkopp | 8d15d38 | 2010-03-06 08:31:50 +0000 | [diff] [blame] | 3052 | F: include/linux/can/platform/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 3053 | F: include/uapi/linux/can/error.h |
| 3054 | F: include/uapi/linux/can/netlink.h |
Wolfgang Grandegger | 4261a20 | 2009-05-15 23:39:28 +0000 | [diff] [blame] | 3055 | |
James Morris | 95d16c7 | 2012-03-16 12:05:48 +1100 | [diff] [blame] | 3056 | CAPABILITIES |
Serge E. Hallyn | 39baa7e | 2016-05-27 14:23:39 -0500 | [diff] [blame] | 3057 | M: Serge Hallyn <serge@hallyn.com> |
James Morris | 95d16c7 | 2012-03-16 12:05:48 +1100 | [diff] [blame] | 3058 | L: linux-security-module@vger.kernel.org |
Joe Perches | 6305902 | 2012-06-07 14:21:10 -0700 | [diff] [blame] | 3059 | S: Supported |
James Morris | 95d16c7 | 2012-03-16 12:05:48 +1100 | [diff] [blame] | 3060 | F: include/linux/capability.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 3061 | F: include/uapi/linux/capability.h |
Joe Perches | 6305902 | 2012-06-07 14:21:10 -0700 | [diff] [blame] | 3062 | F: security/commoncap.c |
James Morris | 38a9411 | 2012-04-09 11:03:36 +1000 | [diff] [blame] | 3063 | F: kernel/capability.c |
James Morris | 95d16c7 | 2012-03-16 12:05:48 +1100 | [diff] [blame] | 3064 | |
Kevin Tsai | b84894c | 2015-01-15 17:41:04 -0800 | [diff] [blame] | 3065 | CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER |
| 3066 | M: Kevin Tsai <ktsai@capellamicro.com> |
| 3067 | S: Maintained |
| 3068 | F: drivers/iio/light/cm* |
Kevin Tsai | b84894c | 2015-01-15 17:41:04 -0800 | [diff] [blame] | 3069 | |
Jayachandran C | 971d33c | 2017-02-05 00:57:03 +0000 | [diff] [blame] | 3070 | CAVIUM THUNDERX2 ARM64 SOC |
| 3071 | M: Jayachandran C <jnair@caviumnetworks.com> |
| 3072 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 3073 | S: Maintained |
Jayachandran C | 0563ff3 | 2017-03-15 20:11:02 +0000 | [diff] [blame] | 3074 | F: arch/arm64/boot/dts/cavium/thunder2-99xx* |
Jayachandran C | 971d33c | 2017-02-05 00:57:03 +0000 | [diff] [blame] | 3075 | F: Documentation/devicetree/bindings/arm/cavium-thunder2.txt |
| 3076 | |
Jan Glauber | f948485 | 2016-08-24 23:25:49 +0200 | [diff] [blame] | 3077 | CAVIUM I2C DRIVER |
| 3078 | M: Jan Glauber <jglauber@cavium.com> |
| 3079 | M: David Daney <david.daney@cavium.com> |
| 3080 | W: http://www.cavium.com |
| 3081 | S: Supported |
| 3082 | F: drivers/i2c/busses/i2c-octeon* |
| 3083 | F: drivers/i2c/busses/i2c-thunderx* |
| 3084 | |
Jan Glauber | 25fc846 | 2017-03-30 17:31:28 +0200 | [diff] [blame] | 3085 | CAVIUM MMC DRIVER |
| 3086 | M: Jan Glauber <jglauber@cavium.com> |
| 3087 | M: David Daney <david.daney@cavium.com> |
| 3088 | M: Steven J. Hill <Steven.Hill@cavium.com> |
| 3089 | W: http://www.cavium.com |
| 3090 | S: Supported |
| 3091 | F: drivers/mmc/host/cavium* |
| 3092 | |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 3093 | CAVIUM LIQUIDIO NETWORK DRIVER |
| 3094 | M: Derek Chickles <derek.chickles@caviumnetworks.com> |
| 3095 | M: Satanand Burla <satananda.burla@caviumnetworks.com> |
| 3096 | M: Felix Manlunas <felix.manlunas@caviumnetworks.com> |
| 3097 | M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com> |
| 3098 | L: netdev@vger.kernel.org |
| 3099 | W: http://www.cavium.com |
| 3100 | S: Supported |
Raghu Vatsavayi | f21fb3e | 2015-06-09 18:15:23 -0700 | [diff] [blame] | 3101 | F: drivers/net/ethernet/cavium/liquidio/ |
| 3102 | |
George Cherian | 62ad8b5 | 2017-02-07 14:51:15 +0000 | [diff] [blame] | 3103 | CAVIUM OCTEON-TX CRYPTO DRIVER |
| 3104 | M: George Cherian <george.cherian@cavium.com> |
| 3105 | L: linux-crypto@vger.kernel.org |
| 3106 | W: http://www.cavium.com |
| 3107 | S: Supported |
| 3108 | F: drivers/crypto/cavium/cpt/ |
| 3109 | |
Varka Bhadram | ef0bbac | 2014-10-29 16:15:22 +0530 | [diff] [blame] | 3110 | CC2520 IEEE-802.15.4 RADIO DRIVER |
| 3111 | M: Varka Bhadram <varkabhadram@gmail.com> |
| 3112 | L: linux-wpan@vger.kernel.org |
| 3113 | S: Maintained |
| 3114 | F: drivers/net/ieee802154/cc2520.c |
| 3115 | F: include/linux/spi/cc2520.h |
| 3116 | F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt |
| 3117 | |
Gilad Ben-Yossef | 84817ef | 2017-05-07 16:18:27 +0300 | [diff] [blame] | 3118 | CCREE ARM TRUSTZONE CRYPTOCELL 700 REE DRIVER |
| 3119 | M: Gilad Ben-Yossef <gilad@benyossef.com> |
| 3120 | L: linux-crypto@vger.kernel.org |
| 3121 | L: driverdev-devel@linuxdriverproject.org |
| 3122 | S: Supported |
| 3123 | F: drivers/staging/ccree/ |
| 3124 | W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family |
| 3125 | |
Hans Verkuil | 6917a7b | 2016-11-14 11:55:20 -0200 | [diff] [blame] | 3126 | CEC FRAMEWORK |
Hans Verkuil | ca68438 | 2016-06-25 09:44:43 -0300 | [diff] [blame] | 3127 | M: Hans Verkuil <hans.verkuil@cisco.com> |
| 3128 | L: linux-media@vger.kernel.org |
| 3129 | T: git git://linuxtv.org/media_tree.git |
| 3130 | W: http://linuxtv.org |
| 3131 | S: Supported |
Hans Verkuil | 104eda6 | 2016-11-02 08:47:16 -0200 | [diff] [blame] | 3132 | F: Documentation/media/kapi/cec-core.rst |
Mauro Carvalho Chehab | 618cd93 | 2016-09-12 12:48:54 -0300 | [diff] [blame] | 3133 | F: Documentation/media/uapi/cec |
Hans Verkuil | 104eda6 | 2016-11-02 08:47:16 -0200 | [diff] [blame] | 3134 | F: drivers/media/cec/ |
Hans Verkuil | ca68438 | 2016-06-25 09:44:43 -0300 | [diff] [blame] | 3135 | F: drivers/media/rc/keymaps/rc-cec.c |
| 3136 | F: include/media/cec.h |
Hans Verkuil | 6917a7b | 2016-11-14 11:55:20 -0200 | [diff] [blame] | 3137 | F: include/media/cec-notifier.h |
Hans Verkuil | 104eda6 | 2016-11-02 08:47:16 -0200 | [diff] [blame] | 3138 | F: include/uapi/linux/cec.h |
| 3139 | F: include/uapi/linux/cec-funcs.h |
Hans Verkuil | ca68438 | 2016-06-25 09:44:43 -0300 | [diff] [blame] | 3140 | |
Arnd Bergmann | b815454 | 2008-05-16 11:10:59 +0200 | [diff] [blame] | 3141 | CELL BROADBAND ENGINE ARCHITECTURE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3142 | M: Arnd Bergmann <arnd@arndb.de> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 3143 | L: linuxppc-dev@lists.ozlabs.org |
Arnd Bergmann | b815454 | 2008-05-16 11:10:59 +0200 | [diff] [blame] | 3144 | W: http://www.ibm.com/developerworks/power/cell/ |
| 3145 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3146 | F: arch/powerpc/include/asm/cell*.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3147 | F: arch/powerpc/include/asm/spu*.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 3148 | F: arch/powerpc/include/uapi/asm/spu*.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3149 | F: arch/powerpc/oprofile/*cell* |
| 3150 | F: arch/powerpc/platforms/cell/ |
Arnd Bergmann | b815454 | 2008-05-16 11:10:59 +0200 | [diff] [blame] | 3151 | |
Sage Weil | 398ecff5 | 2015-07-09 11:46:14 -0400 | [diff] [blame] | 3152 | CEPH COMMON CODE (LIBCEPH) |
| 3153 | M: Ilya Dryomov <idryomov@gmail.com> |
Joe Perches | e43cdb5 | 2015-06-25 15:02:03 -0700 | [diff] [blame] | 3154 | M: "Yan, Zheng" <zyan@redhat.com> |
Sage Weil | 0f5417c | 2015-02-19 10:10:40 -0800 | [diff] [blame] | 3155 | M: Sage Weil <sage@redhat.com> |
Sage Weil | 82593f8 | 2010-03-29 09:53:23 -0700 | [diff] [blame] | 3156 | L: ceph-devel@vger.kernel.org |
Sage Weil | 09d9032 | 2012-07-30 16:27:48 -0700 | [diff] [blame] | 3157 | W: http://ceph.com/ |
Sage Weil | fb99f88 | 2009-12-03 15:04:08 -0800 | [diff] [blame] | 3158 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
Sage Weil | 6e67b7a | 2015-07-09 11:47:37 -0400 | [diff] [blame] | 3159 | T: git git://github.com/ceph/ceph-client.git |
Sage Weil | 9030aaf | 2009-10-06 11:31:15 -0700 | [diff] [blame] | 3160 | S: Supported |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 3161 | F: net/ceph/ |
| 3162 | F: include/linux/ceph/ |
| 3163 | F: include/linux/crush/ |
Sage Weil | 9030aaf | 2009-10-06 11:31:15 -0700 | [diff] [blame] | 3164 | |
Sage Weil | 398ecff5 | 2015-07-09 11:46:14 -0400 | [diff] [blame] | 3165 | CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH) |
| 3166 | M: "Yan, Zheng" <zyan@redhat.com> |
| 3167 | M: Sage Weil <sage@redhat.com> |
| 3168 | M: Ilya Dryomov <idryomov@gmail.com> |
| 3169 | L: ceph-devel@vger.kernel.org |
| 3170 | W: http://ceph.com/ |
| 3171 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
Sage Weil | 6e67b7a | 2015-07-09 11:47:37 -0400 | [diff] [blame] | 3172 | T: git git://github.com/ceph/ceph-client.git |
Sage Weil | 398ecff5 | 2015-07-09 11:46:14 -0400 | [diff] [blame] | 3173 | S: Supported |
| 3174 | F: Documentation/filesystems/ceph.txt |
| 3175 | F: fs/ceph/ |
| 3176 | |
David Howells | cfc411e | 2015-08-14 15:20:41 +0100 | [diff] [blame] | 3177 | CERTIFICATE HANDLING: |
| 3178 | M: David Howells <dhowells@redhat.com> |
| 3179 | M: David Woodhouse <dwmw2@infradead.org> |
David Howells | d8d8038 | 2016-01-14 15:50:20 +0000 | [diff] [blame] | 3180 | L: keyrings@vger.kernel.org |
David Howells | cfc411e | 2015-08-14 15:20:41 +0100 | [diff] [blame] | 3181 | S: Maintained |
| 3182 | F: Documentation/module-signing.txt |
| 3183 | F: certs/ |
David Howells | d8d8038 | 2016-01-14 15:50:20 +0000 | [diff] [blame] | 3184 | F: scripts/sign-file.c |
David Howells | cfc411e | 2015-08-14 15:20:41 +0100 | [diff] [blame] | 3185 | F: scripts/extract-cert.c |
| 3186 | |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 3187 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 3188 | L: linux-usb@vger.kernel.org |
David Vrabel | 10c6c9c | 2010-10-25 14:05:36 +0100 | [diff] [blame] | 3189 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3190 | F: Documentation/usb/WUSB-Design-overview.txt |
| 3191 | F: Documentation/usb/wusb-cbaf |
David Vrabel | 355ffe69 | 2009-12-22 13:13:28 +0000 | [diff] [blame] | 3192 | F: drivers/usb/host/hwa-hc.c |
| 3193 | F: drivers/usb/host/whci/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3194 | F: drivers/usb/wusbcore/ |
| 3195 | F: include/linux/usb/wusb* |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 3196 | |
Robin van der Gracht | c4d7e51 | 2016-11-07 10:56:36 +0100 | [diff] [blame] | 3197 | HT16K33 LED CONTROLLER DRIVER |
| 3198 | M: Robin van der Gracht <robin@protonic.nl> |
| 3199 | S: Maintained |
| 3200 | F: drivers/auxdisplay/ht16k33.c |
| 3201 | F: Documentation/devicetree/bindings/display/ht16k33.txt |
| 3202 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3203 | CFAG12864B LCD DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3204 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 3205 | W: http://miguelojeda.es/auxdisplay.htm |
| 3206 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3207 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3208 | F: drivers/auxdisplay/cfag12864b.c |
| 3209 | F: include/linux/cfag12864b.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3210 | |
| 3211 | CFAG12864BFB LCD FRAMEBUFFER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3212 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 3213 | W: http://miguelojeda.es/auxdisplay.htm |
| 3214 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3215 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3216 | F: drivers/auxdisplay/cfag12864bfb.c |
| 3217 | F: include/linux/cfag12864b.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 3218 | |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 3219 | CFG80211 and NL80211 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3220 | M: Johannes Berg <johannes@sipsolutions.net> |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 3221 | L: linux-wireless@vger.kernel.org |
Johannes Berg | ce46657 | 2012-06-05 15:42:55 +0200 | [diff] [blame] | 3222 | W: http://wireless.kernel.org/ |
| 3223 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
| 3224 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 3225 | S: Maintained |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 3226 | F: include/uapi/linux/nl80211.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3227 | F: include/net/cfg80211.h |
| 3228 | F: net/wireless/* |
| 3229 | X: net/wireless/wext* |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 3230 | |
Greg Kroah-Hartman | 46e6426 | 2011-10-30 07:34:04 -0700 | [diff] [blame] | 3231 | CHAR and MISC DRIVERS |
| 3232 | M: Arnd Bergmann <arnd@arndb.de> |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 3233 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
Greg Kroah-Hartman | 46e6426 | 2011-10-30 07:34:04 -0700 | [diff] [blame] | 3234 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 3235 | S: Supported |
Greg Kroah-Hartman | 46e6426 | 2011-10-30 07:34:04 -0700 | [diff] [blame] | 3236 | F: drivers/char/* |
| 3237 | F: drivers/misc/* |
Robert P. J. Day | 471322a | 2014-05-16 04:41:09 -0400 | [diff] [blame] | 3238 | F: include/linux/miscdevice.h |
Greg Kroah-Hartman | 46e6426 | 2011-10-30 07:34:04 -0700 | [diff] [blame] | 3239 | |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 3240 | CHECKPATCH |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3241 | M: Andy Whitcroft <apw@canonical.com> |
Joe Perches | 10d83f0 | 2013-02-21 16:44:15 -0800 | [diff] [blame] | 3242 | M: Joe Perches <joe@perches.com> |
| 3243 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3244 | F: scripts/checkpatch.pl |
Andy Whitcroft | 0a920b5 | 2007-06-01 00:46:48 -0700 | [diff] [blame] | 3245 | |
Harry Wei | f8407f26 | 2011-02-25 14:44:15 -0800 | [diff] [blame] | 3246 | CHINESE DOCUMENTATION |
| 3247 | M: Harry Wei <harryxiyou@gmail.com> |
Joe Perches | 9740153 | 2012-12-17 16:00:00 -0800 | [diff] [blame] | 3248 | L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only) |
Harry Wei | f8407f26 | 2011-02-25 14:44:15 -0800 | [diff] [blame] | 3249 | L: linux-kernel@zh-kernel.org (moderated for non-subscribers) |
| 3250 | S: Maintained |
Jonathan Corbet | f5ff9b6 | 2016-11-13 12:24:59 -0700 | [diff] [blame] | 3251 | F: Documentation/translations/zh_CN/ |
Harry Wei | f8407f26 | 2011-02-25 14:44:15 -0800 | [diff] [blame] | 3252 | |
Alexander Shishkin | 2721ea2 | 2012-05-11 17:25:59 +0300 | [diff] [blame] | 3253 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
Peter Chen | 60d77b3d | 2015-12-25 15:54:32 +0800 | [diff] [blame] | 3254 | M: Peter Chen <Peter.Chen@nxp.com> |
Peter Chen | 8373856 | 2015-03-23 19:57:36 +0800 | [diff] [blame] | 3255 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
Alexander Shishkin | 2721ea2 | 2012-05-11 17:25:59 +0300 | [diff] [blame] | 3256 | L: linux-usb@vger.kernel.org |
| 3257 | S: Maintained |
| 3258 | F: drivers/usb/chipidea/ |
| 3259 | |
Hans de Goede | a93ad65 | 2015-03-21 20:40:45 -0700 | [diff] [blame] | 3260 | CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER |
| 3261 | M: Hans de Goede <hdegoede@redhat.com> |
| 3262 | L: linux-input@vger.kernel.org |
| 3263 | S: Maintained |
| 3264 | F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt |
| 3265 | F: drivers/input/touchscreen/chipone_icn8318.c |
| 3266 | |
Olof Johansson | ab04310 | 2013-11-07 14:25:45 -0800 | [diff] [blame] | 3267 | CHROME HARDWARE PLATFORM SUPPORT |
| 3268 | M: Olof Johansson <olof@lixom.net> |
| 3269 | S: Maintained |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 3270 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git |
Olof Johansson | ab04310 | 2013-11-07 14:25:45 -0800 | [diff] [blame] | 3271 | F: drivers/platform/chrome/ |
| 3272 | |
Vasanthy Kolluri | 641cb85 | 2010-03-18 16:20:04 +0000 | [diff] [blame] | 3273 | CISCO VIC ETHERNET NIC DRIVER |
Vasanthy Kolluri | 2360d2e | 2011-02-04 16:17:26 +0000 | [diff] [blame] | 3274 | M: Christian Benvenuti <benve@cisco.com> |
Govindarajulu Varadarajan | c327e8f | 2014-05-20 03:14:32 +0530 | [diff] [blame] | 3275 | M: Govindarajulu Varadarajan <_govind@gmx.com> |
Neel Patel | 5c6652f | 2012-02-03 08:25:25 +0000 | [diff] [blame] | 3276 | M: Neel Patel <neepatel@cisco.com> |
Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 3277 | S: Supported |
Jeff Kirsher | a6a5580 | 2011-05-13 22:20:35 -0700 | [diff] [blame] | 3278 | F: drivers/net/ethernet/cisco/enic/ |
Joel Becker | 7063fbf | 2005-12-15 14:29:43 -0800 | [diff] [blame] | 3279 | |
Upinder Malhi | e3cf00d | 2013-09-10 03:38:16 +0000 | [diff] [blame] | 3280 | CISCO VIC LOW LATENCY NIC DRIVER |
Dave Goodell \(dgoodell\) | 35ef4a9 | 2015-10-15 20:01:29 -0700 | [diff] [blame] | 3281 | M: Christian Benvenuti <benve@cisco.com> |
| 3282 | M: Dave Goodell <dgoodell@cisco.com> |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 3283 | S: Supported |
Dave Goodell \(dgoodell\) | 35ef4a9 | 2015-10-15 20:01:29 -0700 | [diff] [blame] | 3284 | F: drivers/infiniband/hw/usnic/ |
Upinder Malhi | e3cf00d | 2013-09-10 03:38:16 +0000 | [diff] [blame] | 3285 | |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 3286 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
H Hartley Sweeten | 5587912 | 2011-06-09 15:00:21 -0700 | [diff] [blame] | 3287 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 3288 | L: netdev@vger.kernel.org |
| 3289 | S: Maintained |
Jeff Kirsher | 57d0b7a | 2011-07-16 23:50:52 -0700 | [diff] [blame] | 3290 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
Lennert Buytenhek | 2b7a52a | 2006-12-29 16:49:30 -0800 | [diff] [blame] | 3291 | |
Mark Brown | 3d4cfdc | 2014-02-04 20:28:12 +0000 | [diff] [blame] | 3292 | CIRRUS LOGIC AUDIO CODEC DRIVERS |
| 3293 | M: Brian Austin <brian.austin@cirrus.com> |
| 3294 | M: Paul Handrigan <Paul.Handrigan@cirrus.com> |
| 3295 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 3296 | S: Maintained |
| 3297 | F: sound/soc/codecs/cs* |
| 3298 | |
Konrad Rzeszutek Wilk | 94574d9 | 2012-03-19 11:47:18 -0400 | [diff] [blame] | 3299 | CLEANCACHE API |
| 3300 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
| 3301 | L: linux-kernel@vger.kernel.org |
| 3302 | S: Maintained |
| 3303 | F: mm/cleancache.c |
| 3304 | F: include/linux/cleancache.h |
| 3305 | |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 3306 | CLK API |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 3307 | M: Russell King <linux@armlinux.org.uk> |
Paul Walmsley | aa571b1 | 2015-03-25 18:32:59 +0000 | [diff] [blame] | 3308 | L: linux-clk@vger.kernel.org |
Joe Perches | 3741704 | 2012-03-23 15:01:58 -0700 | [diff] [blame] | 3309 | S: Maintained |
Russell King | d427535 | 2009-04-16 14:05:27 +0100 | [diff] [blame] | 3310 | F: include/linux/clk.h |
| 3311 | |
John Stultz | 9222d24 | 2013-07-16 16:45:31 +0200 | [diff] [blame] | 3312 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
| 3313 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
| 3314 | M: Thomas Gleixner <tglx@linutronix.de> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 3315 | L: linux-kernel@vger.kernel.org |
John Stultz | 9222d24 | 2013-07-16 16:45:31 +0200 | [diff] [blame] | 3316 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
| 3317 | S: Supported |
| 3318 | F: drivers/clocksource |
| 3319 | |
Abhijeet Joglekar | 5df6d73 | 2009-04-17 18:33:26 -0700 | [diff] [blame] | 3320 | CISCO FCOE HBA DRIVER |
Satish Kharat | 6593ccd | 2016-11-15 12:39:29 -0800 | [diff] [blame] | 3321 | M: Satish Kharat <satishkh@cisco.com> |
| 3322 | M: Sesidhar Baddela <sebaddel@cisco.com> |
| 3323 | M: Karan Tilak Kumar <kartilak@cisco.com> |
Abhijeet Joglekar | 5df6d73 | 2009-04-17 18:33:26 -0700 | [diff] [blame] | 3324 | L: linux-scsi@vger.kernel.org |
| 3325 | S: Supported |
Joe Perches | 2a99921 | 2009-06-16 15:34:09 -0700 | [diff] [blame] | 3326 | F: drivers/scsi/fnic/ |
Abhijeet Joglekar | 5df6d73 | 2009-04-17 18:33:26 -0700 | [diff] [blame] | 3327 | |
Narsimhulu Musini | c8806b6 | 2015-05-29 01:04:01 -0700 | [diff] [blame] | 3328 | CISCO SCSI HBA DRIVER |
Satish Kharat | 6593ccd | 2016-11-15 12:39:29 -0800 | [diff] [blame] | 3329 | M: Karan Tilak Kumar <kartilak@cisco.com> |
Narsimhulu Musini | c8806b6 | 2015-05-29 01:04:01 -0700 | [diff] [blame] | 3330 | M: Sesidhar Baddela <sebaddel@cisco.com> |
| 3331 | L: linux-scsi@vger.kernel.org |
| 3332 | S: Supported |
| 3333 | F: drivers/scsi/snic/ |
| 3334 | |
Thadeu Lima de Souza Cascardo | 529aa8c | 2009-12-21 16:20:01 -0800 | [diff] [blame] | 3335 | CMPC ACPI DRIVER |
| 3336 | M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> |
| 3337 | M: Daniel Oliveira Nascimento <don@syst.com.br> |
Matthew Garrett | d0944853 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 3338 | L: platform-driver-x86@vger.kernel.org |
Thadeu Lima de Souza Cascardo | 529aa8c | 2009-12-21 16:20:01 -0800 | [diff] [blame] | 3339 | S: Supported |
| 3340 | F: drivers/platform/x86/classmate-laptop.c |
| 3341 | |
Hans Verkuil | 85756a0 | 2015-05-12 08:52:21 -0300 | [diff] [blame] | 3342 | COBALT MEDIA DRIVER |
| 3343 | M: Hans Verkuil <hans.verkuil@cisco.com> |
| 3344 | L: linux-media@vger.kernel.org |
| 3345 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 3346 | W: https://linuxtv.org |
Hans Verkuil | 85756a0 | 2015-05-12 08:52:21 -0300 | [diff] [blame] | 3347 | S: Supported |
| 3348 | F: drivers/media/pci/cobalt/ |
| 3349 | |
Nicolas Palix | 74425ee | 2010-06-06 17:15:01 +0200 | [diff] [blame] | 3350 | COCCINELLE/Semantic Patches (SmPL) |
Nicolas Palix | 26de9c2 | 2012-09-20 22:52:42 +0200 | [diff] [blame] | 3351 | M: Julia Lawall <Julia.Lawall@lip6.fr> |
Nicolas Palix | 74425ee | 2010-06-06 17:15:01 +0200 | [diff] [blame] | 3352 | M: Gilles Muller <Gilles.Muller@lip6.fr> |
Nicolas Palix | 26de9c2 | 2012-09-20 22:52:42 +0200 | [diff] [blame] | 3353 | M: Nicolas Palix <nicolas.palix@imag.fr> |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 3354 | M: Michal Marek <mmarek@suse.com> |
Nicolas Palix | 26de9c2 | 2012-09-20 22:52:42 +0200 | [diff] [blame] | 3355 | L: cocci@systeme.lip6.fr (moderated for non-subscribers) |
Nicolas Palix | c00b511 | 2013-06-06 23:39:53 +0200 | [diff] [blame] | 3356 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
Nicolas Palix | 74425ee | 2010-06-06 17:15:01 +0200 | [diff] [blame] | 3357 | W: http://coccinelle.lip6.fr/ |
| 3358 | S: Supported |
Jonathan Corbet | 4b9033a | 2016-08-08 16:03:14 -0600 | [diff] [blame] | 3359 | F: Documentation/dev-tools/coccinelle.rst |
Nicolas Palix | 74425ee | 2010-06-06 17:15:01 +0200 | [diff] [blame] | 3360 | F: scripts/coccinelle/ |
| 3361 | F: scripts/coccicheck |
| 3362 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3363 | CODA FILE SYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3364 | M: Jan Harkes <jaharkes@cs.cmu.edu> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3365 | M: coda@cs.cmu.edu |
| 3366 | L: codalist@coda.cs.cmu.edu |
| 3367 | W: http://www.coda.cs.cmu.edu/ |
| 3368 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3369 | F: Documentation/filesystems/coda.txt |
| 3370 | F: fs/coda/ |
| 3371 | F: include/linux/coda*.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 3372 | F: include/uapi/linux/coda*.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3373 | |
Philipp Zabel | 0b14261 | 2014-11-04 07:26:35 -0300 | [diff] [blame] | 3374 | CODA V4L2 MEM2MEM DRIVER |
| 3375 | M: Philipp Zabel <p.zabel@pengutronix.de> |
| 3376 | L: linux-media@vger.kernel.org |
| 3377 | S: Maintained |
| 3378 | F: Documentation/devicetree/bindings/media/coda.txt |
| 3379 | F: drivers/media/platform/coda/ |
| 3380 | |
Mike Turquette | 7704add | 2012-05-02 18:37:45 -0700 | [diff] [blame] | 3381 | COMMON CLK FRAMEWORK |
Michael Turquette | a85fa00 | 2015-06-17 13:41:04 -0700 | [diff] [blame] | 3382 | M: Michael Turquette <mturquette@baylibre.com> |
Michael Turquette | f956165 | 2014-11-12 16:43:47 -0800 | [diff] [blame] | 3383 | M: Stephen Boyd <sboyd@codeaurora.org> |
Paul Walmsley | aa571b1 | 2015-03-25 18:32:59 +0000 | [diff] [blame] | 3384 | L: linux-clk@vger.kernel.org |
Stephen Boyd | 22d61ac | 2016-08-10 15:32:53 -0700 | [diff] [blame] | 3385 | Q: http://patchwork.kernel.org/project/linux-clk/list/ |
Michael Turquette | baeb0d9 | 2014-11-13 17:18:20 -0800 | [diff] [blame] | 3386 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git |
Mike Turquette | 7704add | 2012-05-02 18:37:45 -0700 | [diff] [blame] | 3387 | S: Maintained |
Geert Uytterhoeven | ae4185c | 2016-05-22 11:05:48 +0200 | [diff] [blame] | 3388 | F: Documentation/devicetree/bindings/clock/ |
Stephen Warren | 60bea3b | 2013-06-05 09:50:30 -0600 | [diff] [blame] | 3389 | F: drivers/clk/ |
| 3390 | X: drivers/clk/clkdev.c |
Mike Turquette | 7704add | 2012-05-02 18:37:45 -0700 | [diff] [blame] | 3391 | F: include/linux/clk-pr* |
Stephen Warren | 60bea3b | 2013-06-05 09:50:30 -0600 | [diff] [blame] | 3392 | F: include/linux/clk/ |
Mike Turquette | 7704add | 2012-05-02 18:37:45 -0700 | [diff] [blame] | 3393 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3394 | COMMON INTERNET FILE SYSTEM (CIFS) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3395 | M: Steve French <sfrench@samba.org> |
Jeff Layton | 51223df | 2010-06-06 08:05:58 -0400 | [diff] [blame] | 3396 | L: linux-cifs@vger.kernel.org |
KOSAKI Motohiro | d1f2895 | 2009-12-14 18:00:52 -0800 | [diff] [blame] | 3397 | L: samba-technical@lists.samba.org (moderated for non-subscribers) |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3398 | W: http://linux-cifs.samba.org/ |
Kevin Cernekee | bb1d5dd | 2014-11-10 13:09:24 -0800 | [diff] [blame] | 3399 | T: git git://git.samba.org/sfrench/cifs-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3400 | S: Supported |
Joe Perches | ec421a7 | 2014-08-08 14:24:59 -0700 | [diff] [blame] | 3401 | F: Documentation/filesystems/cifs/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3402 | F: fs/cifs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3403 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3404 | COMPACTPCI HOTPLUG CORE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3405 | M: Scott Murray <scott@spiteful.org> |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 3406 | L: linux-pci@vger.kernel.org |
Joe Perches | 82c4dfc | 2009-07-29 15:04:27 -0700 | [diff] [blame] | 3407 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3408 | F: drivers/pci/hotplug/cpci_hotplug* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3409 | |
| 3410 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3411 | M: Scott Murray <scott@spiteful.org> |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 3412 | L: linux-pci@vger.kernel.org |
Joe Perches | 82c4dfc | 2009-07-29 15:04:27 -0700 | [diff] [blame] | 3413 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3414 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3415 | |
| 3416 | COMPACTPCI HOTPLUG GENERIC DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3417 | M: Scott Murray <scott@spiteful.org> |
Jesse Barnes | 64dab20 | 2008-06-10 14:20:03 -0700 | [diff] [blame] | 3418 | L: linux-pci@vger.kernel.org |
Joe Perches | 82c4dfc | 2009-07-29 15:04:27 -0700 | [diff] [blame] | 3419 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3420 | F: drivers/pci/hotplug/cpcihp_generic.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3421 | |
Cezary Jackiewicz | 5411552 | 2008-06-09 16:22:22 -0700 | [diff] [blame] | 3422 | COMPAL LAPTOP SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3423 | M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> |
Matthew Garrett | d0944853 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 3424 | L: platform-driver-x86@vger.kernel.org |
Cezary Jackiewicz | 5411552 | 2008-06-09 16:22:22 -0700 | [diff] [blame] | 3425 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3426 | F: drivers/platform/x86/compal-laptop.c |
Cezary Jackiewicz | 5411552 | 2008-06-09 16:22:22 -0700 | [diff] [blame] | 3427 | |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 3428 | CONEXANT ACCESSRUNNER USB DRIVER |
Simon Arlott | 9ae5e3b | 2007-05-09 08:38:10 +0200 | [diff] [blame] | 3429 | L: accessrunner-general@lists.sourceforge.net |
| 3430 | W: http://accessrunner.sourceforge.net/ |
Simon Arlott | 44243ef | 2015-11-15 17:12:08 +0000 | [diff] [blame] | 3431 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3432 | F: drivers/usb/atm/cxacru.c |
Simon Arlott | 949be0f | 2007-03-06 02:47:46 -0800 | [diff] [blame] | 3433 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3434 | CONFIGFS |
Joel Becker | d6351db | 2011-01-07 18:10:32 -0800 | [diff] [blame] | 3435 | M: Joel Becker <jlbec@evilplan.org> |
Christoph Hellwig | 1609bac | 2016-01-04 12:33:13 +0100 | [diff] [blame] | 3436 | M: Christoph Hellwig <hch@lst.de> |
| 3437 | T: git git://git.infradead.org/users/hch/configfs.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3438 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3439 | F: fs/configfs/ |
| 3440 | F: include/linux/configfs.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3441 | |
Evgeniy Polyakov | acb9c1b | 2009-07-21 12:43:51 -0700 | [diff] [blame] | 3442 | CONNECTOR |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3443 | M: Evgeniy Polyakov <zbr@ioremap.net> |
Evgeniy Polyakov | acb9c1b | 2009-07-21 12:43:51 -0700 | [diff] [blame] | 3444 | L: netdev@vger.kernel.org |
| 3445 | S: Maintained |
| 3446 | F: drivers/connector/ |
| 3447 | |
Tejun Heo | a3e3354 | 2014-05-13 15:49:58 -0400 | [diff] [blame] | 3448 | CONTROL GROUP (CGROUP) |
Paul Menage | 860ca0e | 2011-11-18 14:22:09 -0800 | [diff] [blame] | 3449 | M: Tejun Heo <tj@kernel.org> |
Li Zefan | ad50c15 | 2012-03-29 08:53:30 -0700 | [diff] [blame] | 3450 | M: Li Zefan <lizefan@huawei.com> |
Tejun Heo | 4d20567 | 2015-06-12 17:15:23 -0500 | [diff] [blame] | 3451 | M: Johannes Weiner <hannes@cmpxchg.org> |
KAMEZAWA Hiroyuki | 1234031 | 2011-11-15 14:35:59 -0800 | [diff] [blame] | 3452 | L: cgroups@vger.kernel.org |
Paul Menage | 860ca0e | 2011-11-18 14:22:09 -0800 | [diff] [blame] | 3453 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
Paul Menage | fb3a0fb | 2008-03-04 14:28:28 -0800 | [diff] [blame] | 3454 | S: Maintained |
seokhoon.yoon | 4b16b0c | 2016-08-04 15:31:57 -0700 | [diff] [blame] | 3455 | F: Documentation/cgroup* |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3456 | F: include/linux/cgroup* |
| 3457 | F: kernel/cgroup* |
Tejun Heo | a3e3354 | 2014-05-13 15:49:58 -0400 | [diff] [blame] | 3458 | |
| 3459 | CONTROL GROUP - CPUSET |
| 3460 | M: Li Zefan <lizefan@huawei.com> |
| 3461 | L: cgroups@vger.kernel.org |
| 3462 | W: http://www.bullopensource.org/cpuset/ |
| 3463 | W: http://oss.sgi.com/projects/cpusets/ |
| 3464 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
| 3465 | S: Maintained |
seokhoon.yoon | 4b16b0c | 2016-08-04 15:31:57 -0700 | [diff] [blame] | 3466 | F: Documentation/cgroup-v1/cpusets.txt |
Tejun Heo | a3e3354 | 2014-05-13 15:49:58 -0400 | [diff] [blame] | 3467 | F: include/linux/cpuset.h |
| 3468 | F: kernel/cpuset.c |
| 3469 | |
| 3470 | CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG) |
| 3471 | M: Johannes Weiner <hannes@cmpxchg.org> |
Michal Hocko | fbd7dc7 | 2015-07-17 16:23:26 -0700 | [diff] [blame] | 3472 | M: Michal Hocko <mhocko@kernel.org> |
Vladimir Davydov | c4e2973 | 2016-09-01 16:15:09 -0700 | [diff] [blame] | 3473 | M: Vladimir Davydov <vdavydov.dev@gmail.com> |
Tejun Heo | a3e3354 | 2014-05-13 15:49:58 -0400 | [diff] [blame] | 3474 | L: cgroups@vger.kernel.org |
| 3475 | L: linux-mm@kvack.org |
| 3476 | S: Maintained |
| 3477 | F: mm/memcontrol.c |
Johannes Weiner | 5d1ea48 | 2014-12-10 15:44:55 -0800 | [diff] [blame] | 3478 | F: mm/swap_cgroup.c |
Paul Menage | fb3a0fb | 2008-03-04 14:28:28 -0800 | [diff] [blame] | 3479 | |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 3480 | CORETEMP HARDWARE MONITORING DRIVER |
Fenghua Yu | 9685912 | 2010-08-25 15:42:14 +0200 | [diff] [blame] | 3481 | M: Fenghua Yu <fenghua.yu@intel.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 3482 | L: linux-hwmon@vger.kernel.org |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 3483 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3484 | F: Documentation/hwmon/coretemp |
| 3485 | F: drivers/hwmon/coretemp.c |
Rudolf Marek | bebe467 | 2007-05-08 17:22:02 +0200 | [diff] [blame] | 3486 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3487 | COSA/SRP SYNC SERIAL DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3488 | M: Jan "Yenya" Kasprzak <kas@fi.muni.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3489 | W: http://www.fi.muni.cz/~kas/cosa/ |
| 3490 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3491 | F: drivers/net/wan/cosa* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3492 | |
Florian Fainelli | 4371ee3 | 2009-06-01 02:43:17 -0700 | [diff] [blame] | 3493 | CPMAC ETHERNET DRIVER |
Florian Fainelli | 9dd4aaef | 2016-09-06 20:22:21 -0700 | [diff] [blame] | 3494 | M: Florian Fainelli <f.fainelli@gmail.com> |
Florian Fainelli | 4371ee3 | 2009-06-01 02:43:17 -0700 | [diff] [blame] | 3495 | L: netdev@vger.kernel.org |
| 3496 | S: Maintained |
Jeff Kirsher | b544dba | 2011-06-14 12:56:50 -0700 | [diff] [blame] | 3497 | F: drivers/net/ethernet/ti/cpmac.c |
Florian Fainelli | 4371ee3 | 2009-06-01 02:43:17 -0700 | [diff] [blame] | 3498 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3499 | CPU FREQUENCY DRIVERS |
Joe Perches | 9c3646d | 2015-06-25 15:02:00 -0700 | [diff] [blame] | 3500 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
viresh kumar | 45c009a | 2013-04-26 12:53:16 +0000 | [diff] [blame] | 3501 | M: Viresh Kumar <viresh.kumar@linaro.org> |
Rafael J. Wysocki | a6c072c | 2012-05-11 21:35:45 +0200 | [diff] [blame] | 3502 | L: linux-pm@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3503 | S: Maintained |
Viresh Kumar | 27209d9 | 2013-05-29 12:23:14 +0530 | [diff] [blame] | 3504 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
| 3505 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) |
Rafael J. Wysocki | 993e548 | 2016-11-30 02:31:02 +0100 | [diff] [blame] | 3506 | B: https://bugzilla.kernel.org |
Jean Delvare | dabe73c | 2016-09-09 13:05:24 +0200 | [diff] [blame] | 3507 | F: Documentation/cpu-freq/ |
Geert Uytterhoeven | 6f19363 | 2017-03-12 14:16:47 +0100 | [diff] [blame] | 3508 | F: Documentation/devicetree/bindings/cpufreq/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3509 | F: drivers/cpufreq/ |
| 3510 | F: include/linux/cpufreq.h |
Viresh Kumar | 0a7d2cd | 2017-01-20 11:10:33 +0530 | [diff] [blame] | 3511 | F: tools/testing/selftests/cpufreq/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3512 | |
Viresh Kumar | 8a67f0e | 2013-04-01 12:57:49 +0000 | [diff] [blame] | 3513 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
| 3514 | M: Viresh Kumar <viresh.kumar@linaro.org> |
Sudeep Holla | 171d0ba | 2014-02-11 11:42:32 +0000 | [diff] [blame] | 3515 | M: Sudeep Holla <sudeep.holla@arm.com> |
Viresh Kumar | 8a67f0e | 2013-04-01 12:57:49 +0000 | [diff] [blame] | 3516 | L: linux-pm@vger.kernel.org |
| 3517 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php |
| 3518 | S: Maintained |
| 3519 | F: drivers/cpufreq/arm_big_little.h |
| 3520 | F: drivers/cpufreq/arm_big_little.c |
| 3521 | F: drivers/cpufreq/arm_big_little_dt.c |
| 3522 | |
Lorenzo Pieralisi | 14d2c34 | 2013-06-12 17:40:01 +0200 | [diff] [blame] | 3523 | CPUIDLE DRIVER - ARM BIG LITTLE |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 3524 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
| 3525 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
| 3526 | L: linux-pm@vger.kernel.org |
| 3527 | L: linux-arm-kernel@lists.infradead.org |
Joe Perches | cea8321 | 2014-03-03 15:38:38 -0800 | [diff] [blame] | 3528 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 3529 | S: Maintained |
| 3530 | F: drivers/cpuidle/cpuidle-big_little.c |
Lorenzo Pieralisi | 14d2c34 | 2013-06-12 17:40:01 +0200 | [diff] [blame] | 3531 | |
Bartlomiej Zolnierkiewicz | 0c570c1 | 2014-12-02 16:41:35 +0100 | [diff] [blame] | 3532 | CPUIDLE DRIVER - ARM EXYNOS |
| 3533 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
| 3534 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
| 3535 | M: Kukjin Kim <kgene@kernel.org> |
| 3536 | L: linux-pm@vger.kernel.org |
| 3537 | L: linux-samsung-soc@vger.kernel.org |
| 3538 | S: Supported |
| 3539 | F: drivers/cpuidle/cpuidle-exynos.c |
| 3540 | F: arch/arm/mach-exynos/pm.c |
| 3541 | |
Daniel Lezcano | a8e39c3 | 2013-04-26 11:05:44 +0000 | [diff] [blame] | 3542 | CPUIDLE DRIVERS |
Joe Perches | 9c3646d | 2015-06-25 15:02:00 -0700 | [diff] [blame] | 3543 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
Daniel Lezcano | a8e39c3 | 2013-04-26 11:05:44 +0000 | [diff] [blame] | 3544 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
| 3545 | L: linux-pm@vger.kernel.org |
| 3546 | S: Maintained |
Joe Perches | cea8321 | 2014-03-03 15:38:38 -0800 | [diff] [blame] | 3547 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
Rafael J. Wysocki | 2ed38cb | 2016-11-30 02:32:17 +0100 | [diff] [blame] | 3548 | B: https://bugzilla.kernel.org |
Daniel Lezcano | a8e39c3 | 2013-04-26 11:05:44 +0000 | [diff] [blame] | 3549 | F: drivers/cpuidle/* |
| 3550 | F: include/linux/cpuidle.h |
| 3551 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3552 | CPUID/MSR DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3553 | M: "H. Peter Anvin" <hpa@zytor.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3554 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3555 | F: arch/x86/kernel/cpuid.c |
| 3556 | F: arch/x86/kernel/msr.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3557 | |
Dominik Brodowski | 7fe2f63 | 2011-03-30 16:30:11 +0200 | [diff] [blame] | 3558 | CPU POWER MONITORING SUBSYSTEM |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 3559 | M: Thomas Renninger <trenn@suse.com> |
Thomas Renninger | 103f179 | 2014-07-22 16:06:01 +0200 | [diff] [blame] | 3560 | L: linux-pm@vger.kernel.org |
Dominik Brodowski | 7fe2f63 | 2011-03-30 16:30:11 +0200 | [diff] [blame] | 3561 | S: Maintained |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 3562 | F: tools/power/cpupower/ |
Dominik Brodowski | 7fe2f63 | 2011-03-30 16:30:11 +0200 | [diff] [blame] | 3563 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3564 | CRAMFS FILESYSTEM |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 3565 | W: http://sourceforge.net/projects/cramfs/ |
Michael Opdenacker | 54886a7 | 2013-11-12 15:08:35 -0800 | [diff] [blame] | 3566 | S: Orphan / Obsolete |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3567 | F: Documentation/filesystems/cramfs.txt |
| 3568 | F: fs/cramfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3569 | |
| 3570 | CRIS PORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3571 | M: Mikael Starvik <starvik@axis.com> |
| 3572 | M: Jesper Nilsson <jesper.nilsson@axis.com> |
Jesper Nilsson | 9937ac0 | 2009-06-24 09:33:19 +0200 | [diff] [blame] | 3573 | L: linux-cris-kernel@axis.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3574 | W: http://developer.axis.com |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 3575 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3576 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3577 | F: arch/cris/ |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 3578 | F: drivers/tty/serial/crisv10.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3579 | |
| 3580 | CRYPTO API |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3581 | M: Herbert Xu <herbert@gondor.apana.org.au> |
| 3582 | M: "David S. Miller" <davem@davemloft.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3583 | L: linux-crypto@vger.kernel.org |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 3584 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 3585 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3586 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3587 | F: Documentation/crypto/ |
Geert Uytterhoeven | fe1c445 | 2016-05-22 11:05:51 +0200 | [diff] [blame] | 3588 | F: Documentation/devicetree/bindings/crypto/ |
Stephan Mueller | 2ca87a1 | 2015-03-06 21:36:21 +0100 | [diff] [blame] | 3589 | F: Documentation/DocBook/crypto-API.tmpl |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3590 | F: arch/*/crypto/ |
| 3591 | F: crypto/ |
| 3592 | F: drivers/crypto/ |
| 3593 | F: include/crypto/ |
Baruch Siach | ff330f7 | 2016-11-30 15:16:11 +0200 | [diff] [blame] | 3594 | F: include/linux/crypto* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3595 | |
Neil Horman | 5b07bd5 | 2009-02-05 16:03:04 +1100 | [diff] [blame] | 3596 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3597 | M: Neil Horman <nhorman@tuxdriver.com> |
Neil Horman | 5b07bd5 | 2009-02-05 16:03:04 +1100 | [diff] [blame] | 3598 | L: linux-crypto@vger.kernel.org |
| 3599 | S: Maintained |
Joe Perches | 51a2228 | 2010-08-09 17:20:45 -0700 | [diff] [blame] | 3600 | F: crypto/ansi_cprng.c |
| 3601 | F: crypto/rng.c |
Neil Horman | 5b07bd5 | 2009-02-05 16:03:04 +1100 | [diff] [blame] | 3602 | |
Hans Verkuil | fc279cc | 2015-11-30 18:05:54 -0200 | [diff] [blame] | 3603 | CS3308 MEDIA DRIVER |
| 3604 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 3605 | L: linux-media@vger.kernel.org |
| 3606 | T: git git://linuxtv.org/media_tree.git |
| 3607 | W: http://linuxtv.org |
| 3608 | S: Odd Fixes |
| 3609 | F: drivers/media/i2c/cs3308.c |
| 3610 | F: drivers/media/i2c/cs3308.h |
| 3611 | |
Jaya Kumar | 9b4ffa4 | 2005-11-17 10:12:23 +0100 | [diff] [blame] | 3612 | CS5535 Audio ALSA driver |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3613 | M: Jaya Kumar <jayakumar.alsa@gmail.com> |
Jaya Kumar | 9b4ffa4 | 2005-11-17 10:12:23 +0100 | [diff] [blame] | 3614 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3615 | F: sound/pci/cs5535audio/ |
Jaya Kumar | 9b4ffa4 | 2005-11-17 10:12:23 +0100 | [diff] [blame] | 3616 | |
Solomon Peachy | a910e4a | 2013-05-24 20:04:38 -0400 | [diff] [blame] | 3617 | CW1200 WLAN driver |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 3618 | M: Solomon Peachy <pizza@shaftnet.org> |
| 3619 | S: Maintained |
Kalle Valo | 560424e | 2015-11-17 20:09:02 +0200 | [diff] [blame] | 3620 | F: drivers/net/wireless/st/cw1200/ |
Solomon Peachy | a910e4a | 2013-05-24 20:04:38 -0400 | [diff] [blame] | 3621 | |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 3622 | CX18 VIDEO4LINUX DRIVER |
Andy Walls | 6afdeaf | 2010-05-23 18:53:35 -0300 | [diff] [blame] | 3623 | M: Andy Walls <awalls@md.metrocast.net> |
Joe Perches | 7b212ed | 2014-12-10 15:51:24 -0800 | [diff] [blame] | 3624 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 3625 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 3626 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 3627 | W: https://linuxtv.org |
Joe Perches | 30e1099 | 2009-07-29 15:04:21 -0700 | [diff] [blame] | 3628 | W: http://www.ivtvdriver.org/index.php/Cx18 |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 3629 | S: Maintained |
Mauro Carvalho Chehab | 618cd93 | 2016-09-12 12:48:54 -0300 | [diff] [blame] | 3630 | F: Documentation/media/v4l-drivers/cx18* |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 3631 | F: drivers/media/pci/cx18/ |
Mauro Carvalho Chehab | 6c0f035 | 2012-11-02 11:56:03 -0200 | [diff] [blame] | 3632 | F: include/uapi/linux/ivtv* |
Hans Verkuil | 6d8425b | 2008-05-05 18:25:22 -0300 | [diff] [blame] | 3633 | |
Hans Verkuil | 3f101d9 | 2012-11-23 07:00:02 -0300 | [diff] [blame] | 3634 | CX2341X MPEG ENCODER HELPER MODULE |
| 3635 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 3636 | L: linux-media@vger.kernel.org |
| 3637 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 3638 | W: https://linuxtv.org |
Hans Verkuil | 3f101d9 | 2012-11-23 07:00:02 -0300 | [diff] [blame] | 3639 | S: Maintained |
Cesar Eduardo Barros | c368360b | 2013-03-02 21:53:42 -0300 | [diff] [blame] | 3640 | F: drivers/media/common/cx2341x* |
Hans Verkuil | 3f101d9 | 2012-11-23 07:00:02 -0300 | [diff] [blame] | 3641 | F: include/media/cx2341x* |
| 3642 | |
Patrick Boettcher | b8fe6e2 | 2015-04-28 02:53:13 -0300 | [diff] [blame] | 3643 | CX24120 MEDIA DRIVER |
| 3644 | M: Jemma Denson <jdenson@gmail.com> |
| 3645 | M: Patrick Boettcher <patrick.boettcher@posteo.de> |
| 3646 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 3647 | W: https://linuxtv.org |
Patrick Boettcher | b8fe6e2 | 2015-04-28 02:53:13 -0300 | [diff] [blame] | 3648 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3649 | S: Maintained |
| 3650 | F: drivers/media/dvb-frontends/cx24120* |
| 3651 | |
Mauro Carvalho Chehab | 2035757 | 2012-11-02 11:33:44 -0200 | [diff] [blame] | 3652 | CX88 VIDEO4LINUX DRIVER |
Mauro Carvalho Chehab | 5dc8a86 | 2016-06-14 15:17:40 -0300 | [diff] [blame] | 3653 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
| 3654 | M: Mauro Carvalho Chehab <mchehab@kernel.org> |
Mauro Carvalho Chehab | 2035757 | 2012-11-02 11:33:44 -0200 | [diff] [blame] | 3655 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 3656 | W: https://linuxtv.org |
Mauro Carvalho Chehab | 2035757 | 2012-11-02 11:33:44 -0200 | [diff] [blame] | 3657 | T: git git://linuxtv.org/media_tree.git |
| 3658 | S: Odd fixes |
Mauro Carvalho Chehab | 618cd93 | 2016-09-12 12:48:54 -0300 | [diff] [blame] | 3659 | F: Documentation/media/v4l-drivers/cx88* |
Mauro Carvalho Chehab | 2035757 | 2012-11-02 11:33:44 -0200 | [diff] [blame] | 3660 | F: drivers/media/pci/cx88/ |
Knut Petersen | 9fa68ea | 2005-09-09 13:04:56 -0700 | [diff] [blame] | 3661 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 3662 | CXD2820R MEDIA DRIVER |
| 3663 | M: Antti Palosaari <crope@iki.fi> |
| 3664 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 3665 | W: https://linuxtv.org |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 3666 | W: http://palosaari.fi/linux/ |
| 3667 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3668 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3669 | S: Maintained |
| 3670 | F: drivers/media/dvb-frontends/cxd2820r* |
Knut Petersen | 9fa68ea | 2005-09-09 13:04:56 -0700 | [diff] [blame] | 3671 | |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 3672 | CXGB3 ETHERNET DRIVER (CXGB3) |
Divy Le Ray | cdc9923 | 2013-11-11 15:01:39 -0800 | [diff] [blame] | 3673 | M: Santosh Raspatur <santosh@chelsio.com> |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 3674 | L: netdev@vger.kernel.org |
| 3675 | W: http://www.chelsio.com |
| 3676 | S: Supported |
Jeff Kirsher | f7917c0 | 2011-04-07 06:57:17 -0700 | [diff] [blame] | 3677 | F: drivers/net/ethernet/chelsio/cxgb3/ |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 3678 | |
Anish Bhatt | d8ae3c3 | 2014-11-04 15:19:22 -0800 | [diff] [blame] | 3679 | CXGB3 ISCSI DRIVER (CXGB3I) |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 3680 | M: Karen Xie <kxie@chelsio.com> |
| 3681 | L: linux-scsi@vger.kernel.org |
| 3682 | W: http://www.chelsio.com |
| 3683 | S: Supported |
| 3684 | F: drivers/scsi/cxgbi/cxgb3i |
Anish Bhatt | d8ae3c3 | 2014-11-04 15:19:22 -0800 | [diff] [blame] | 3685 | |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 3686 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3687 | M: Steve Wise <swise@chelsio.com> |
Roland Dreier | e6cc0fd | 2009-09-07 21:54:38 -0700 | [diff] [blame] | 3688 | L: linux-rdma@vger.kernel.org |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 3689 | W: http://www.openfabrics.org |
| 3690 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3691 | F: drivers/infiniband/hw/cxgb3/ |
Leon Romanovsky | a85fb33 | 2016-09-22 17:31:12 +0300 | [diff] [blame] | 3692 | F: include/uapi/rdma/cxgb3-abi.h |
Steve Wise | e5ec378 | 2008-05-20 14:06:33 -0700 | [diff] [blame] | 3693 | |
Roland Dreier | be4c9ba | 2010-05-05 14:45:40 -0700 | [diff] [blame] | 3694 | CXGB4 ETHERNET DRIVER (CXGB4) |
Hariprasad Shenai | 59cfa78 | 2017-01-19 11:50:32 +0530 | [diff] [blame] | 3695 | M: Ganesh Goudar <ganeshgr@chelsio.com> |
Roland Dreier | be4c9ba | 2010-05-05 14:45:40 -0700 | [diff] [blame] | 3696 | L: netdev@vger.kernel.org |
| 3697 | W: http://www.chelsio.com |
| 3698 | S: Supported |
Jeff Kirsher | f7917c0 | 2011-04-07 06:57:17 -0700 | [diff] [blame] | 3699 | F: drivers/net/ethernet/chelsio/cxgb4/ |
Roland Dreier | be4c9ba | 2010-05-05 14:45:40 -0700 | [diff] [blame] | 3700 | |
Anish Bhatt | d8ae3c3 | 2014-11-04 15:19:22 -0800 | [diff] [blame] | 3701 | CXGB4 ISCSI DRIVER (CXGB4I) |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 3702 | M: Karen Xie <kxie@chelsio.com> |
| 3703 | L: linux-scsi@vger.kernel.org |
| 3704 | W: http://www.chelsio.com |
| 3705 | S: Supported |
| 3706 | F: drivers/scsi/cxgbi/cxgb4i |
Anish Bhatt | d8ae3c3 | 2014-11-04 15:19:22 -0800 | [diff] [blame] | 3707 | |
Roland Dreier | be4c9ba | 2010-05-05 14:45:40 -0700 | [diff] [blame] | 3708 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) |
| 3709 | M: Steve Wise <swise@chelsio.com> |
| 3710 | L: linux-rdma@vger.kernel.org |
| 3711 | W: http://www.openfabrics.org |
| 3712 | S: Supported |
| 3713 | F: drivers/infiniband/hw/cxgb4/ |
Leon Romanovsky | e44ee2f | 2016-09-22 17:31:13 +0300 | [diff] [blame] | 3714 | F: include/uapi/rdma/cxgb4-abi.h |
Roland Dreier | be4c9ba | 2010-05-05 14:45:40 -0700 | [diff] [blame] | 3715 | |
Casey Leedom | 5c20a5c | 2010-07-19 17:55:33 -0700 | [diff] [blame] | 3716 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
| 3717 | M: Casey Leedom <leedom@chelsio.com> |
| 3718 | L: netdev@vger.kernel.org |
| 3719 | W: http://www.chelsio.com |
| 3720 | S: Supported |
Jeff Kirsher | f7917c0 | 2011-04-07 06:57:17 -0700 | [diff] [blame] | 3721 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
Casey Leedom | 5c20a5c | 2010-07-19 17:55:33 -0700 | [diff] [blame] | 3722 | |
Ian Munsie | a9282d0 | 2014-10-08 19:55:05 +1100 | [diff] [blame] | 3723 | CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER |
| 3724 | M: Ian Munsie <imunsie@au1.ibm.com> |
Michael Neuling | 9d82fd2 | 2016-09-16 14:28:44 +1000 | [diff] [blame] | 3725 | M: Frederic Barrat <fbarrat@linux.vnet.ibm.com> |
Ian Munsie | a9282d0 | 2014-10-08 19:55:05 +1100 | [diff] [blame] | 3726 | L: linuxppc-dev@lists.ozlabs.org |
| 3727 | S: Supported |
Michael Neuling | 9d82fd2 | 2016-09-16 14:28:44 +1000 | [diff] [blame] | 3728 | F: arch/powerpc/platforms/powernv/pci-cxl.c |
Ian Munsie | a9282d0 | 2014-10-08 19:55:05 +1100 | [diff] [blame] | 3729 | F: drivers/misc/cxl/ |
Michael Neuling | ec249dd | 2015-05-27 16:07:16 +1000 | [diff] [blame] | 3730 | F: include/misc/cxl* |
Ian Munsie | a9282d0 | 2014-10-08 19:55:05 +1100 | [diff] [blame] | 3731 | F: include/uapi/misc/cxl.h |
| 3732 | F: Documentation/powerpc/cxl.txt |
Ian Munsie | a9282d0 | 2014-10-08 19:55:05 +1100 | [diff] [blame] | 3733 | F: Documentation/ABI/testing/sysfs-class-cxl |
| 3734 | |
Matthew R. Ochs | 11f43ae | 2015-10-21 15:15:22 -0500 | [diff] [blame] | 3735 | CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER |
| 3736 | M: Manoj N. Kumar <manoj@linux.vnet.ibm.com> |
| 3737 | M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com> |
Uma Krishnan | b2c0627 | 2016-07-21 15:44:37 -0500 | [diff] [blame] | 3738 | M: Uma Krishnan <ukrishn@linux.vnet.ibm.com> |
Matthew R. Ochs | 11f43ae | 2015-10-21 15:15:22 -0500 | [diff] [blame] | 3739 | L: linux-scsi@vger.kernel.org |
| 3740 | S: Supported |
| 3741 | F: drivers/scsi/cxlflash/ |
| 3742 | F: include/uapi/scsi/cxlflash_ioctls.h |
| 3743 | F: Documentation/powerpc/cxlflash.txt |
| 3744 | |
Giuseppe Cavallaro | b52b97a | 2010-11-18 09:32:02 -0800 | [diff] [blame] | 3745 | STMMAC ETHERNET DRIVER |
| 3746 | M: Giuseppe Cavallaro <peppe.cavallaro@st.com> |
Alexandre TORGUE | 91979b9 | 2016-04-01 11:37:37 +0200 | [diff] [blame] | 3747 | M: Alexandre Torgue <alexandre.torgue@st.com> |
Giuseppe Cavallaro | b52b97a | 2010-11-18 09:32:02 -0800 | [diff] [blame] | 3748 | L: netdev@vger.kernel.org |
| 3749 | W: http://www.stlinux.com |
| 3750 | S: Supported |
Jeff Kirsher | 7ac6653 | 2011-05-16 00:05:19 -0700 | [diff] [blame] | 3751 | F: drivers/net/ethernet/stmicro/stmmac/ |
Giuseppe Cavallaro | b52b97a | 2010-11-18 09:32:02 -0800 | [diff] [blame] | 3752 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3753 | CYBERPRO FB DRIVER |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 3754 | M: Russell King <linux@armlinux.org.uk> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 3755 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 3756 | W: http://www.armlinux.org.uk/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3757 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 3758 | F: drivers/video/fbdev/cyber2000fb.* |
Knut Petersen | 9fa68ea | 2005-09-09 13:04:56 -0700 | [diff] [blame] | 3759 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3760 | CYCLADES ASYNC MUX DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3761 | W: http://www.cyclades.com/ |
Jiri Slaby | d459883 | 2007-02-12 00:51:53 -0800 | [diff] [blame] | 3762 | S: Orphan |
Joe Perches | c897401 | 2011-04-14 15:22:05 -0700 | [diff] [blame] | 3763 | F: drivers/tty/cyclades.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3764 | F: include/linux/cyclades.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 3765 | F: include/uapi/linux/cyclades.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3766 | |
| 3767 | CYCLADES PC300 DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3768 | W: http://www.cyclades.com/ |
Jiri Slaby | d459883 | 2007-02-12 00:51:53 -0800 | [diff] [blame] | 3769 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3770 | F: drivers/net/wan/pc300* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3771 | |
Antti Palosaari | 402f6ae | 2013-04-09 21:30:41 -0300 | [diff] [blame] | 3772 | CYPRESS_FIRMWARE MEDIA DRIVER |
| 3773 | M: Antti Palosaari <crope@iki.fi> |
| 3774 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 3775 | W: https://linuxtv.org |
Antti Palosaari | 402f6ae | 2013-04-09 21:30:41 -0300 | [diff] [blame] | 3776 | W: http://palosaari.fi/linux/ |
| 3777 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3778 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3779 | S: Maintained |
| 3780 | F: drivers/media/common/cypress_firmware* |
| 3781 | |
Javier Martinez Canillas | e3ae3525 | 2012-03-04 09:26:14 -0800 | [diff] [blame] | 3782 | CYTTSP TOUCHSCREEN DRIVER |
Javier Martinez Canillas | be9a6f4 | 2013-08-29 08:43:58 -0700 | [diff] [blame] | 3783 | M: Ferruh Yigit <fery@cypress.com> |
Joe Perches | 6305902 | 2012-06-07 14:21:10 -0700 | [diff] [blame] | 3784 | L: linux-input@vger.kernel.org |
Javier Martinez Canillas | be9a6f4 | 2013-08-29 08:43:58 -0700 | [diff] [blame] | 3785 | S: Supported |
Joe Perches | 6305902 | 2012-06-07 14:21:10 -0700 | [diff] [blame] | 3786 | F: drivers/input/touchscreen/cyttsp* |
| 3787 | F: include/linux/input/cyttsp.h |
Javier Martinez Canillas | e3ae3525 | 2012-03-04 09:26:14 -0800 | [diff] [blame] | 3788 | |
Joshua Kinard | aaaf5fb | 2015-02-16 16:00:26 -0800 | [diff] [blame] | 3789 | DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK |
| 3790 | M: Joshua Kinard <kumba@gentoo.org> |
| 3791 | S: Maintained |
| 3792 | F: drivers/rtc/rtc-ds1685.c |
| 3793 | F: include/linux/rtc/ds1685.h |
| 3794 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3795 | DAMA SLAVE for AX.25 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3796 | M: Joerg Reuter <jreuter@yaina.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3797 | W: http://yaina.de/jreuter/ |
| 3798 | W: http://www.qsl.net/dl1bke/ |
| 3799 | L: linux-hams@vger.kernel.org |
| 3800 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3801 | F: net/ax25/af_ax25.c |
| 3802 | F: net/ax25/ax25_dev.c |
| 3803 | F: net/ax25/ax25_ds_* |
| 3804 | F: net/ax25/ax25_in.c |
| 3805 | F: net/ax25/ax25_out.c |
| 3806 | F: net/ax25/ax25_timer.c |
| 3807 | F: net/ax25/sysctl_net_ax25.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3808 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3809 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3810 | L: netdev@vger.kernel.org |
Joe Perches | 5ff7742 | 2011-05-24 17:13:22 -0700 | [diff] [blame] | 3811 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3812 | F: Documentation/networking/dmfe.txt |
Joe Perches | 0f04e2a | 2012-01-10 15:08:56 -0800 | [diff] [blame] | 3813 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3814 | |
| 3815 | DC390/AM53C974 SCSI driver |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 3816 | M: Hannes Reinecke <hare@suse.com> |
Hannes Reinecke | 71bd849 | 2014-11-24 15:37:30 +0100 | [diff] [blame] | 3817 | L: linux-scsi@vger.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3818 | S: Maintained |
Hannes Reinecke | 71bd849 | 2014-11-24 15:37:30 +0100 | [diff] [blame] | 3819 | F: drivers/scsi/am53c974.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3820 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3821 | DC395x SCSI driver |
Oliver Neukum | 61eee9a | 2012-08-01 14:32:55 +0200 | [diff] [blame] | 3822 | M: Oliver Neukum <oliver@neukum.org> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3823 | M: Ali Akcaagac <aliakc@web.de> |
| 3824 | M: Jamie Lenehan <lenehan@twibble.org> |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 3825 | L: dc395x@twibble.org |
Joe Perches | cf015e9 | 2014-02-25 15:01:47 -0800 | [diff] [blame] | 3826 | W: http://twibble.org/dist/dc395x/ |
| 3827 | W: http://lists.twibble.org/mailman/listinfo/dc395x/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3828 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3829 | F: Documentation/scsi/dc395x.txt |
| 3830 | F: drivers/scsi/dc395x.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3831 | |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 3832 | DCCP PROTOCOL |
Arnaldo Carvalho de Melo | a89d030 | 2011-02-26 16:28:54 +0000 | [diff] [blame] | 3833 | M: Gerrit Renker <gerrit@erg.abdn.ac.uk> |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 3834 | L: dccp@vger.kernel.org |
Michael Witten | c996d8b | 2010-11-15 19:55:34 +0000 | [diff] [blame] | 3835 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 3836 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3837 | F: include/linux/dccp.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 3838 | F: include/uapi/linux/dccp.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3839 | F: include/linux/tfrc.h |
| 3840 | F: net/dccp/ |
Arnaldo Carvalho de Melo | eb8edb0 | 2005-09-17 00:42:26 -0700 | [diff] [blame] | 3841 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3842 | DECnet NETWORK LAYER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3843 | W: http://linux-decnet.sourceforge.net |
| 3844 | L: linux-decnet-user@lists.sourceforge.net |
Chrissie Caulfield | f546444 | 2010-02-18 01:33:13 +0000 | [diff] [blame] | 3845 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3846 | F: Documentation/networking/decnet.txt |
| 3847 | F: net/decnet/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3848 | |
Maciej W. Rozycki | ebff05b | 2014-04-06 23:04:00 +0100 | [diff] [blame] | 3849 | DECSTATION PLATFORM SUPPORT |
| 3850 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
| 3851 | L: linux-mips@linux-mips.org |
| 3852 | W: http://www.linux-mips.org/wiki/DECstation |
| 3853 | S: Maintained |
| 3854 | F: arch/mips/dec/ |
| 3855 | F: arch/mips/include/asm/dec/ |
| 3856 | F: arch/mips/include/asm/mach-dec/ |
| 3857 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3858 | DEFXX FDDI NETWORK DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3859 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3860 | S: Maintained |
Jeff Kirsher | 33f810b | 2011-07-31 00:06:29 -0700 | [diff] [blame] | 3861 | F: drivers/net/fddi/defxx.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3862 | |
Matthew Garrett | ad8f07c | 2009-01-07 18:08:56 -0800 | [diff] [blame] | 3863 | DELL LAPTOP DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3864 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
Pali Rohár | cdbff61 | 2015-03-29 15:38:50 +0200 | [diff] [blame] | 3865 | M: Pali Rohár <pali.rohar@gmail.com> |
Matthew Garrett | d0944853 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 3866 | L: platform-driver-x86@vger.kernel.org |
Matthew Garrett | ad8f07c | 2009-01-07 18:08:56 -0800 | [diff] [blame] | 3867 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3868 | F: drivers/platform/x86/dell-laptop.c |
Matthew Garrett | ad8f07c | 2009-01-07 18:08:56 -0800 | [diff] [blame] | 3869 | |
Pali Rohár | 817a5cd | 2015-06-06 10:23:28 +0200 | [diff] [blame] | 3870 | DELL LAPTOP RBTN DRIVER |
| 3871 | M: Pali Rohár <pali.rohar@gmail.com> |
| 3872 | S: Maintained |
| 3873 | F: drivers/platform/x86/dell-rbtn.* |
| 3874 | |
Pali Rohár | cdbff61 | 2015-03-29 15:38:50 +0200 | [diff] [blame] | 3875 | DELL LAPTOP FREEFALL DRIVER |
| 3876 | M: Pali Rohár <pali.rohar@gmail.com> |
| 3877 | S: Maintained |
| 3878 | F: drivers/platform/x86/dell-smo8800.c |
| 3879 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3880 | DELL LAPTOP SMM DRIVER |
Pali Rohár | a5afba1 | 2015-05-14 13:16:36 +0200 | [diff] [blame] | 3881 | M: Pali Rohár <pali.rohar@gmail.com> |
Guenter Roeck | ef3522f | 2014-12-21 20:54:37 +0100 | [diff] [blame] | 3882 | S: Maintained |
Pali Rohár | a5afba1 | 2015-05-14 13:16:36 +0200 | [diff] [blame] | 3883 | F: drivers/hwmon/dell-smm-hwmon.c |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 3884 | F: include/uapi/linux/i8k.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3885 | |
Doug Warzecha | 90563ec | 2005-09-06 15:17:15 -0700 | [diff] [blame] | 3886 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3887 | M: Doug Warzecha <Douglas_Warzecha@dell.com> |
Doug Warzecha | 90563ec | 2005-09-06 15:17:15 -0700 | [diff] [blame] | 3888 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3889 | F: Documentation/dcdbas.txt |
| 3890 | F: drivers/firmware/dcdbas.* |
Doug Warzecha | 90563ec | 2005-09-06 15:17:15 -0700 | [diff] [blame] | 3891 | |
Matthew Garrett | 0b3f610 | 2009-01-09 20:17:11 +0000 | [diff] [blame] | 3892 | DELL WMI EXTRAS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 3893 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
Pali Rohár | cdbff61 | 2015-03-29 15:38:50 +0200 | [diff] [blame] | 3894 | M: Pali Rohár <pali.rohar@gmail.com> |
Matthew Garrett | 0b3f610 | 2009-01-09 20:17:11 +0000 | [diff] [blame] | 3895 | S: Maintained |
Joe Perches | 36b3a96 | 2010-08-09 17:20:46 -0700 | [diff] [blame] | 3896 | F: drivers/platform/x86/dell-wmi.c |
Matthew Garrett | 0b3f610 | 2009-01-09 20:17:11 +0000 | [diff] [blame] | 3897 | |
Paul Zimmerman | 5efc75e | 2013-03-11 17:48:03 -0700 | [diff] [blame] | 3898 | DESIGNWARE USB2 DRD IP DRIVER |
Paul Zimmerman | 16272ae | 2015-01-15 20:14:10 +0000 | [diff] [blame] | 3899 | M: John Youn <johnyoun@synopsys.com> |
Paul Zimmerman | 5efc75e | 2013-03-11 17:48:03 -0700 | [diff] [blame] | 3900 | L: linux-usb@vger.kernel.org |
Paul Zimmerman | 18f340f | 2014-09-19 14:49:36 -0700 | [diff] [blame] | 3901 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
Paul Zimmerman | 5efc75e | 2013-03-11 17:48:03 -0700 | [diff] [blame] | 3902 | S: Maintained |
Paul Zimmerman | 197ba5f | 2014-01-13 13:50:09 -0800 | [diff] [blame] | 3903 | F: drivers/usb/dwc2/ |
Paul Zimmerman | 5efc75e | 2013-03-11 17:48:03 -0700 | [diff] [blame] | 3904 | |
Felipe Balbi | 94ab23d | 2011-08-19 18:10:59 +0300 | [diff] [blame] | 3905 | DESIGNWARE USB3 DRD IP DRIVER |
Felipe Balbi | a55f628 | 2016-02-03 20:23:01 +0200 | [diff] [blame] | 3906 | M: Felipe Balbi <balbi@kernel.org> |
Felipe Balbi | 94ab23d | 2011-08-19 18:10:59 +0300 | [diff] [blame] | 3907 | L: linux-usb@vger.kernel.org |
Felipe Balbi | 94ab23d | 2011-08-19 18:10:59 +0300 | [diff] [blame] | 3908 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
| 3909 | S: Maintained |
| 3910 | F: drivers/usb/dwc3/ |
| 3911 | |
Andreas Klinger | feda284 | 2017-01-31 19:03:45 +0100 | [diff] [blame] | 3912 | DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER |
| 3913 | M: Andreas Klinger <ak@it-klinger.de> |
| 3914 | L: linux-iio@vger.kernel.org |
| 3915 | S: Maintained |
| 3916 | F: drivers/iio/proximity/srf*.c |
| 3917 | |
Johannes Berg | 833c954 | 2014-09-12 09:01:56 +0200 | [diff] [blame] | 3918 | DEVICE COREDUMP (DEV_COREDUMP) |
| 3919 | M: Johannes Berg <johannes@sipsolutions.net> |
| 3920 | L: linux-kernel@vger.kernel.org |
| 3921 | S: Maintained |
| 3922 | F: drivers/base/devcoredump.c |
| 3923 | F: include/linux/devcoredump.h |
| 3924 | |
Kyungmin Park | 89d0776 | 2012-01-10 15:09:09 -0800 | [diff] [blame] | 3925 | DEVICE FREQUENCY (DEVFREQ) |
| 3926 | M: MyungJoo Ham <myungjoo.ham@samsung.com> |
| 3927 | M: Kyungmin Park <kyungmin.park@samsung.com> |
Chanwoo Choi | 9932ef3 | 2016-12-28 20:52:34 +0900 | [diff] [blame] | 3928 | R: Chanwoo Choi <cw00.choi@samsung.com> |
MyungJoo Ham | 88476d3 | 2013-03-14 17:28:24 +0900 | [diff] [blame] | 3929 | L: linux-pm@vger.kernel.org |
Chanwoo Choi | 6a3cd72 | 2015-11-05 13:30:17 +0900 | [diff] [blame] | 3930 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git |
Kyungmin Park | 89d0776 | 2012-01-10 15:09:09 -0800 | [diff] [blame] | 3931 | S: Maintained |
| 3932 | F: drivers/devfreq/ |
Chanwoo Choi | 6a3cd72 | 2015-11-05 13:30:17 +0900 | [diff] [blame] | 3933 | F: include/linux/devfreq.h |
| 3934 | F: Documentation/devicetree/bindings/devfreq/ |
Kyungmin Park | 89d0776 | 2012-01-10 15:09:09 -0800 | [diff] [blame] | 3935 | |
Chanwoo Choi | 7dbded0 | 2015-11-05 13:30:18 +0900 | [diff] [blame] | 3936 | DEVICE FREQUENCY EVENT (DEVFREQ-EVENT) |
| 3937 | M: Chanwoo Choi <cw00.choi@samsung.com> |
| 3938 | L: linux-pm@vger.kernel.org |
| 3939 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git |
| 3940 | S: Supported |
| 3941 | F: drivers/devfreq/event/ |
| 3942 | F: drivers/devfreq/devfreq-event.c |
| 3943 | F: include/linux/devfreq-event.h |
| 3944 | F: Documentation/devicetree/bindings/devfreq/event/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3945 | |
Chanwoo Choi | 490b864 | 2015-12-10 11:18:32 +0900 | [diff] [blame] | 3946 | BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS |
| 3947 | M: Chanwoo Choi <cw00.choi@samsung.com> |
| 3948 | L: linux-pm@vger.kernel.org |
| 3949 | L: linux-samsung-soc@vger.kernel.org |
| 3950 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git |
| 3951 | S: Maintained |
| 3952 | F: drivers/devfreq/exynos-bus.c |
| 3953 | F: Documentation/devicetree/bindings/devfreq/exynos-bus.txt |
| 3954 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3955 | DEVICE NUMBER REGISTRY |
| 3956 | M: Torben Mathiasen <device@lanana.org> |
| 3957 | W: http://lanana.org/docs/device-list/index.html |
| 3958 | S: Maintained |
| 3959 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3960 | DEVICE-MAPPER (LVM) |
Alasdair G Kergon | 854ecaa | 2012-03-28 18:41:23 +0100 | [diff] [blame] | 3961 | M: Alasdair Kergon <agk@redhat.com> |
Alasdair G Kergon | 8504eed | 2013-07-10 23:41:19 +0100 | [diff] [blame] | 3962 | M: Mike Snitzer <snitzer@redhat.com> |
Alasdair G Kergon | 854ecaa | 2012-03-28 18:41:23 +0100 | [diff] [blame] | 3963 | M: dm-devel@redhat.com |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3964 | L: dm-devel@redhat.com |
| 3965 | W: http://sources.redhat.com/dm |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 3966 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
Mike Snitzer | 41d35d2 | 2013-11-04 19:42:38 -0500 | [diff] [blame] | 3967 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git |
Alasdair G Kergon | 854ecaa | 2012-03-28 18:41:23 +0100 | [diff] [blame] | 3968 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3969 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3970 | F: Documentation/device-mapper/ |
| 3971 | F: drivers/md/dm* |
Alasdair G Kergon | 854ecaa | 2012-03-28 18:41:23 +0100 | [diff] [blame] | 3972 | F: drivers/md/persistent-data/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 3973 | F: include/linux/device-mapper.h |
| 3974 | F: include/linux/dm-*.h |
Alasdair G Kergon | 8504eed | 2013-07-10 23:41:19 +0100 | [diff] [blame] | 3975 | F: include/uapi/linux/dm-*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 3976 | |
Jiri Pirko | bfcd3a4 | 2016-02-26 17:32:23 +0100 | [diff] [blame] | 3977 | DEVLINK |
| 3978 | M: Jiri Pirko <jiri@mellanox.com> |
| 3979 | L: netdev@vger.kernel.org |
| 3980 | S: Supported |
| 3981 | F: net/core/devlink.c |
| 3982 | F: include/net/devlink.h |
| 3983 | F: include/uapi/linux/devlink.h |
| 3984 | |
Opensource [Steve Twiss] | c0d995a | 2014-04-03 14:48:51 -0700 | [diff] [blame] | 3985 | DIALOG SEMICONDUCTOR DRIVERS |
| 3986 | M: Support Opensource <support.opensource@diasemi.com> |
| 3987 | W: http://www.dialog-semiconductor.com/products |
| 3988 | S: Supported |
| 3989 | F: Documentation/hwmon/da90?? |
Steve Twiss | 047cfd0 | 2016-06-02 08:43:13 +0100 | [diff] [blame] | 3990 | F: Documentation/devicetree/bindings/mfd/da90*.txt |
Steve Twiss | 4eeb08b | 2016-05-24 08:53:46 +0100 | [diff] [blame] | 3991 | F: Documentation/devicetree/bindings/regulator/da92*.txt |
Adam Thomson | 7c93377 | 2015-09-29 16:44:12 +0100 | [diff] [blame] | 3992 | F: Documentation/devicetree/bindings/sound/da[79]*.txt |
Opensource [Steve Twiss] | c0d995a | 2014-04-03 14:48:51 -0700 | [diff] [blame] | 3993 | F: drivers/gpio/gpio-da90??.c |
| 3994 | F: drivers/hwmon/da90??-hwmon.c |
Adam Thomson | 7be72c2 | 2015-02-18 14:08:37 +0000 | [diff] [blame] | 3995 | F: drivers/iio/adc/da91??-*.c |
Opensource [Steve Twiss] | c0d995a | 2014-04-03 14:48:51 -0700 | [diff] [blame] | 3996 | F: drivers/input/misc/da90??_onkey.c |
| 3997 | F: drivers/input/touchscreen/da9052_tsi.c |
| 3998 | F: drivers/leds/leds-da90??.c |
| 3999 | F: drivers/mfd/da903x.c |
| 4000 | F: drivers/mfd/da90??-*.c |
Adam Thomson | 7be72c2 | 2015-02-18 14:08:37 +0000 | [diff] [blame] | 4001 | F: drivers/mfd/da91??-*.c |
Sebastian Reichel | 8c0984e | 2016-06-17 13:54:32 +0200 | [diff] [blame] | 4002 | F: drivers/power/supply/da9052-battery.c |
| 4003 | F: drivers/power/supply/da91??-*.c |
Opensource [Steve Twiss] | c0d995a | 2014-04-03 14:48:51 -0700 | [diff] [blame] | 4004 | F: drivers/regulator/da903x.c |
| 4005 | F: drivers/regulator/da9???-regulator.[ch] |
| 4006 | F: drivers/rtc/rtc-da90??.c |
| 4007 | F: drivers/video/backlight/da90??_bl.c |
| 4008 | F: drivers/watchdog/da90??_wdt.c |
| 4009 | F: include/linux/mfd/da903x.h |
| 4010 | F: include/linux/mfd/da9052/ |
| 4011 | F: include/linux/mfd/da9055/ |
Steve Twiss | 047cfd0 | 2016-06-02 08:43:13 +0100 | [diff] [blame] | 4012 | F: include/linux/mfd/da9062/ |
Opensource [Steve Twiss] | c0d995a | 2014-04-03 14:48:51 -0700 | [diff] [blame] | 4013 | F: include/linux/mfd/da9063/ |
Adam Thomson | 7be72c2 | 2015-02-18 14:08:37 +0000 | [diff] [blame] | 4014 | F: include/linux/mfd/da9150/ |
Steve Twiss | 4eeb08b | 2016-05-24 08:53:46 +0100 | [diff] [blame] | 4015 | F: include/linux/regulator/da9211.h |
Opensource [Steve Twiss] | c0d995a | 2014-04-03 14:48:51 -0700 | [diff] [blame] | 4016 | F: include/sound/da[79]*.h |
| 4017 | F: sound/soc/codecs/da[79]*.[ch] |
| 4018 | |
William Breathitt Gray | 6ea5dcd | 2016-08-02 09:57:47 -0400 | [diff] [blame] | 4019 | DIAMOND SYSTEMS GPIO-MM GPIO DRIVER |
| 4020 | M: William Breathitt Gray <vilhelm.gray@gmail.com> |
| 4021 | L: linux-gpio@vger.kernel.org |
| 4022 | S: Maintained |
| 4023 | F: drivers/gpio/gpio-gpio-mm.c |
| 4024 | |
Lidza Louina | 599aa69 | 2013-09-23 16:13:15 -0400 | [diff] [blame] | 4025 | DIGI NEO AND CLASSIC PCI PRODUCTS |
| 4026 | M: Lidza Louina <lidza.louina@gmail.com> |
Mark Hounschell | 542f3d5 | 2014-04-25 14:32:15 -0400 | [diff] [blame] | 4027 | M: Mark Hounschell <markh@compro.net> |
Lidza Louina | 599aa69 | 2013-09-23 16:13:15 -0400 | [diff] [blame] | 4028 | L: driverdev-devel@linuxdriverproject.org |
| 4029 | S: Maintained |
| 4030 | F: drivers/staging/dgnc/ |
| 4031 | |
Guenter Roeck | 335d7c5 | 2011-01-26 11:45:49 -0800 | [diff] [blame] | 4032 | DIOLAN U2C-12 I2C DRIVER |
Guenter Roeck | ca46208 | 2012-06-01 23:28:23 -0700 | [diff] [blame] | 4033 | M: Guenter Roeck <linux@roeck-us.net> |
Guenter Roeck | 335d7c5 | 2011-01-26 11:45:49 -0800 | [diff] [blame] | 4034 | L: linux-i2c@vger.kernel.org |
| 4035 | S: Maintained |
| 4036 | F: drivers/i2c/busses/i2c-diolan-u2c.c |
| 4037 | |
Matthew Wilcox | d475c63 | 2015-02-16 15:58:56 -0800 | [diff] [blame] | 4038 | DIRECT ACCESS (DAX) |
Ross Zwisler | e057541 | 2017-02-22 15:39:54 -0800 | [diff] [blame] | 4039 | M: Matthew Wilcox <mawilcox@microsoft.com> |
| 4040 | M: Ross Zwisler <ross.zwisler@linux.intel.com> |
Matthew Wilcox | d475c63 | 2015-02-16 15:58:56 -0800 | [diff] [blame] | 4041 | L: linux-fsdevel@vger.kernel.org |
| 4042 | S: Supported |
| 4043 | F: fs/dax.c |
Ross Zwisler | e057541 | 2017-02-22 15:39:54 -0800 | [diff] [blame] | 4044 | F: include/linux/dax.h |
| 4045 | F: include/trace/events/fs_dax.h |
Matthew Wilcox | d475c63 | 2015-02-16 15:58:56 -0800 | [diff] [blame] | 4046 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 4047 | DIRECTORY NOTIFICATION (DNOTIFY) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4048 | M: Eric Paris <eparis@parisplace.org> |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 4049 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4050 | F: Documentation/filesystems/dnotify.txt |
| 4051 | F: fs/notify/dnotify/ |
| 4052 | F: include/linux/dnotify.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4053 | |
| 4054 | DISK GEOMETRY AND PARTITION HANDLING |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4055 | M: Andries Brouwer <aeb@cwi.nl> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4056 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
| 4057 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html |
| 4058 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html |
| 4059 | S: Maintained |
| 4060 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 4061 | DISKQUOTA |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 4062 | M: Jan Kara <jack@suse.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4063 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4064 | F: Documentation/filesystems/quota.txt |
| 4065 | F: fs/quota/ |
| 4066 | F: include/linux/quota*.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 4067 | F: include/uapi/linux/quota*.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4068 | |
Bernie Thompson | 702686a | 2012-03-01 13:52:13 -0800 | [diff] [blame] | 4069 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
| 4070 | M: Bernie Thompson <bernie@plugable.com> |
| 4071 | L: linux-fbdev@vger.kernel.org |
| 4072 | S: Maintained |
| 4073 | W: http://plugable.com/category/projects/udlfb/ |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 4074 | F: drivers/video/fbdev/udlfb.c |
Bernie Thompson | 702686a | 2012-03-01 13:52:13 -0800 | [diff] [blame] | 4075 | F: include/video/udlfb.h |
| 4076 | F: Documentation/fb/udlfb.txt |
| 4077 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 4078 | DISTRIBUTED LOCK MANAGER (DLM) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4079 | M: Christine Caulfield <ccaulfie@redhat.com> |
| 4080 | M: David Teigland <teigland@redhat.com> |
David Teigland | a464418 | 2006-06-22 15:29:57 -0400 | [diff] [blame] | 4081 | L: cluster-devel@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 4082 | W: http://sources.redhat.com/cluster/ |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 4083 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 4084 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4085 | F: fs/dlm/ |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 4086 | |
Sumit Semwal | 53b6b3e | 2012-01-20 15:04:25 +0530 | [diff] [blame] | 4087 | DMA BUFFER SHARING FRAMEWORK |
| 4088 | M: Sumit Semwal <sumit.semwal@linaro.org> |
| 4089 | S: Maintained |
| 4090 | L: linux-media@vger.kernel.org |
| 4091 | L: dri-devel@lists.freedesktop.org |
Randy Dunlap | 8ada6d2 | 2014-10-13 15:51:19 -0700 | [diff] [blame] | 4092 | L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers) |
Maarten Lankhorst | 35fac7e | 2014-07-01 12:57:08 +0200 | [diff] [blame] | 4093 | F: drivers/dma-buf/ |
Joe Perches | e46d12c | 2014-08-08 14:26:16 -0700 | [diff] [blame] | 4094 | F: include/linux/dma-buf* |
| 4095 | F: include/linux/reservation.h |
| 4096 | F: include/linux/*fence.h |
Daniel Vetter | e7e21c7 | 2016-12-09 22:50:55 +0100 | [diff] [blame] | 4097 | F: Documentation/driver-api/dma-buf.rst |
Daniel Vetter | 0b46fcd | 2016-11-16 15:08:18 +0100 | [diff] [blame] | 4098 | T: git git://anongit.freedesktop.org/drm/drm-misc |
Sumit Semwal | 53b6b3e | 2012-01-20 15:04:25 +0530 | [diff] [blame] | 4099 | |
Gustavo Padovan | c483e06 | 2016-05-31 11:33:15 -0300 | [diff] [blame] | 4100 | SYNC FILE FRAMEWORK |
| 4101 | M: Sumit Semwal <sumit.semwal@linaro.org> |
| 4102 | R: Gustavo Padovan <gustavo@padovan.org> |
| 4103 | S: Maintained |
| 4104 | L: linux-media@vger.kernel.org |
| 4105 | L: dri-devel@lists.freedesktop.org |
Gustavo Padovan | c5ec903 | 2016-10-26 19:04:22 -0200 | [diff] [blame] | 4106 | F: drivers/dma-buf/sync_* |
Gustavo Padovan | 376e5f5 | 2017-01-27 15:54:44 -0200 | [diff] [blame] | 4107 | F: drivers/dma-buf/dma-fence* |
Gustavo Padovan | c5ec903 | 2016-10-26 19:04:22 -0200 | [diff] [blame] | 4108 | F: drivers/dma-buf/sw_sync.c |
Gustavo Padovan | c483e06 | 2016-05-31 11:33:15 -0300 | [diff] [blame] | 4109 | F: include/linux/sync_file.h |
Gustavo Padovan | c5ec903 | 2016-10-26 19:04:22 -0200 | [diff] [blame] | 4110 | F: include/uapi/linux/sync_file.h |
Gustavo Padovan | c483e06 | 2016-05-31 11:33:15 -0300 | [diff] [blame] | 4111 | F: Documentation/sync_file.txt |
Daniel Vetter | 0b46fcd | 2016-11-16 15:08:18 +0100 | [diff] [blame] | 4112 | T: git git://anongit.freedesktop.org/drm/drm-misc |
Gustavo Padovan | c483e06 | 2016-05-31 11:33:15 -0300 | [diff] [blame] | 4113 | |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 4114 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
Dan Williams | 4abed0a | 2011-02-14 00:42:08 -0800 | [diff] [blame] | 4115 | M: Vinod Koul <vinod.koul@intel.com> |
Vinod Koul | 17b5956 | 2013-10-22 12:58:56 +0530 | [diff] [blame] | 4116 | L: dmaengine@vger.kernel.org |
| 4117 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ |
Dan Williams | 08223d8 | 2014-08-19 06:07:56 -0700 | [diff] [blame] | 4118 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4119 | F: drivers/dma/ |
Vinod Koul | 0ce3c06 | 2014-12-22 20:57:13 +0530 | [diff] [blame] | 4120 | F: include/linux/dmaengine.h |
Geert Uytterhoeven | c56d329 | 2016-05-22 11:05:52 +0200 | [diff] [blame] | 4121 | F: Documentation/devicetree/bindings/dma/ |
Vinod Koul | 979a281e | 2014-11-06 11:21:17 +0530 | [diff] [blame] | 4122 | F: Documentation/dmaengine/ |
| 4123 | T: git git://git.infradead.org/users/vkoul/slave-dma.git |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 4124 | |
Juerg Haefliger | b825037 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 4125 | DME1737 HARDWARE MONITOR DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4126 | M: Juerg Haefliger <juergh@gmail.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 4127 | L: linux-hwmon@vger.kernel.org |
Juerg Haefliger | b825037 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 4128 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4129 | F: Documentation/hwmon/dme1737 |
| 4130 | F: drivers/hwmon/dme1737.c |
Juerg Haefliger | b825037 | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 4131 | |
Jean Delvare | 1f31e1b | 2015-03-25 15:55:31 -0700 | [diff] [blame] | 4132 | DMI/SMBIOS SUPPORT |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 4133 | M: Jean Delvare <jdelvare@suse.com> |
Jean Delvare | 1f31e1b | 2015-03-25 15:55:31 -0700 | [diff] [blame] | 4134 | S: Maintained |
Jean Delvare | d4aeef93 | 2015-06-25 09:06:56 +0200 | [diff] [blame] | 4135 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/ |
Ivan Khoronzhuk | d7f96f97 | 2015-06-25 09:06:56 +0200 | [diff] [blame] | 4136 | F: Documentation/ABI/testing/sysfs-firmware-dmi-tables |
Jean Delvare | 1f31e1b | 2015-03-25 15:55:31 -0700 | [diff] [blame] | 4137 | F: drivers/firmware/dmi-id.c |
| 4138 | F: drivers/firmware/dmi_scan.c |
| 4139 | F: include/linux/dmi.h |
| 4140 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 4141 | DOCUMENTATION |
Jonathan Corbet | ad3118b | 2014-10-17 08:59:26 -0400 | [diff] [blame] | 4142 | M: Jonathan Corbet <corbet@lwn.net> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 4143 | L: linux-doc@vger.kernel.org |
| 4144 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4145 | F: Documentation/ |
Jonathan Corbet | 42f41ec | 2015-09-11 13:23:36 -0600 | [diff] [blame] | 4146 | F: scripts/docproc.c |
| 4147 | F: scripts/kernel-doc* |
Randy Dunlap | 97be078 | 2014-06-27 18:28:56 -0700 | [diff] [blame] | 4148 | X: Documentation/ABI/ |
| 4149 | X: Documentation/devicetree/ |
Jonathan Corbet | 933a46b | 2015-03-26 10:25:17 -0600 | [diff] [blame] | 4150 | X: Documentation/acpi |
| 4151 | X: Documentation/power |
| 4152 | X: Documentation/spi |
Mauro Carvalho Chehab | 618cd93 | 2016-09-12 12:48:54 -0300 | [diff] [blame] | 4153 | X: Documentation/media |
Jonathan Corbet | c51edfb | 2015-09-24 16:05:28 -0600 | [diff] [blame] | 4154 | T: git git://git.lwn.net/linux.git docs-next |
Randy Dunlap | abbaeff | 2008-07-04 09:59:57 -0700 | [diff] [blame] | 4155 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4156 | DOUBLETALK DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4157 | M: "James R. Van Zandt" <jrv@vanzandt.mv.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4158 | L: blinux-list@redhat.com |
| 4159 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4160 | F: drivers/char/dtlk.c |
| 4161 | F: include/linux/dtlk.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4162 | |
Roy Pledge | 9836a88 | 2017-03-13 15:02:04 -0400 | [diff] [blame] | 4163 | DPAA2 DATAPATH I/O (DPIO) DRIVER |
| 4164 | M: Roy Pledge <Roy.Pledge@nxp.com> |
| 4165 | L: linux-kernel@vger.kernel.org |
| 4166 | S: Maintained |
| 4167 | F: drivers/staging/fsl-mc/bus/dpio |
| 4168 | |
Ioana Radulescu | 92ac903 | 2017-04-28 04:50:34 -0500 | [diff] [blame] | 4169 | DPAA2 ETHERNET DRIVER |
| 4170 | M: Ioana Radulescu <ruxandra.radulescu@nxp.com> |
| 4171 | L: linux-kernel@vger.kernel.org |
| 4172 | S: Maintained |
| 4173 | F: drivers/staging/fsl-dpaa2/ethernet |
| 4174 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4175 | DPT_I2O SCSI RAID DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4176 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4177 | L: linux-scsi@vger.kernel.org |
| 4178 | W: http://www.adaptec.com/ |
| 4179 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4180 | F: drivers/scsi/dpt* |
| 4181 | F: drivers/scsi/dpt/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 4182 | |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 4183 | DRBD DRIVER |
Roland Kammerer | bc2c049 | 2015-07-07 16:37:10 +0200 | [diff] [blame] | 4184 | M: Philipp Reisner <philipp.reisner@linbit.com> |
| 4185 | M: Lars Ellenberg <lars.ellenberg@linbit.com> |
| 4186 | L: drbd-dev@lists.linbit.com |
Joe Perches | 28b8e8d | 2010-03-23 13:35:20 -0700 | [diff] [blame] | 4187 | W: http://www.drbd.org |
Roland Kammerer | bc2c049 | 2015-07-07 16:37:10 +0200 | [diff] [blame] | 4188 | T: git git://git.linbit.com/linux-drbd.git |
| 4189 | T: git git://git.linbit.com/drbd-8.4.git |
Joe Perches | 28b8e8d | 2010-03-23 13:35:20 -0700 | [diff] [blame] | 4190 | S: Supported |
| 4191 | F: drivers/block/drbd/ |
| 4192 | F: lib/lru_cache.c |
| 4193 | F: Documentation/blockdev/drbd/ |
Philipp Reisner | b411b36 | 2009-09-25 16:07:19 -0700 | [diff] [blame] | 4194 | |
Tejun Heo | 27f395b | 2017-03-23 13:34:47 -0400 | [diff] [blame] | 4195 | DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 4196 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 4197 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4198 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4199 | F: Documentation/kobject.txt |
Joe Perches | 7cfc51b | 2009-04-08 10:04:18 -0700 | [diff] [blame] | 4200 | F: drivers/base/ |
Greg Kroah-Hartman | 8754465 | 2010-09-21 06:39:23 -0700 | [diff] [blame] | 4201 | F: fs/debugfs/ |
Wolfram Sang | dc7dfcd | 2015-04-23 17:20:54 +0200 | [diff] [blame] | 4202 | F: fs/sysfs/ |
Greg Kroah-Hartman | 8754465 | 2010-09-21 06:39:23 -0700 | [diff] [blame] | 4203 | F: include/linux/debugfs.h |
Wolfram Sang | dc7dfcd | 2015-04-23 17:20:54 +0200 | [diff] [blame] | 4204 | F: include/linux/kobj* |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4205 | F: lib/kobj* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4206 | |
| 4207 | DRM DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4208 | M: David Airlie <airlied@linux.ie> |
Valdis.Kletnieks@vt.edu | 4c6a399 | 2010-04-22 14:29:10 -0400 | [diff] [blame] | 4209 | L: dri-devel@lists.freedesktop.org |
Alex Deucher | b044788 | 2014-02-18 10:03:44 -0500 | [diff] [blame] | 4210 | T: git git://people.freedesktop.org/~airlied/linux |
Jani Nikula | 51b06f9 | 2016-12-12 16:46:05 -0800 | [diff] [blame] | 4211 | B: https://bugs.freedesktop.org/ |
Jani Nikula | 5fc41a7 | 2016-12-12 16:46:11 -0800 | [diff] [blame] | 4212 | C: irc://chat.freenode.net/dri-devel |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4213 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4214 | F: drivers/gpu/drm/ |
Daniel Vetter | 433e3b3 | 2014-05-26 23:44:42 +0200 | [diff] [blame] | 4215 | F: drivers/gpu/vga/ |
Geert Uytterhoeven | d28ab95 | 2016-05-22 11:05:53 +0200 | [diff] [blame] | 4216 | F: Documentation/devicetree/bindings/display/ |
| 4217 | F: Documentation/devicetree/bindings/gpu/ |
| 4218 | F: Documentation/devicetree/bindings/video/ |
Jani Nikula | 621c547 | 2016-06-21 14:48:59 +0300 | [diff] [blame] | 4219 | F: Documentation/gpu/ |
Joe Perches | 850e941 | 2010-08-09 17:20:45 -0700 | [diff] [blame] | 4220 | F: include/drm/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 4221 | F: include/uapi/drm/ |
Lukas Wunner | 8ccd1e5 | 2017-03-27 18:48:24 +0200 | [diff] [blame] | 4222 | F: include/linux/vga* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4223 | |
Daniel Vetter | d52ea7e | 2016-11-16 15:08:17 +0100 | [diff] [blame] | 4224 | DRM DRIVERS AND MISC GPU PATCHES |
| 4225 | M: Daniel Vetter <daniel.vetter@intel.com> |
| 4226 | M: Jani Nikula <jani.nikula@linux.intel.com> |
| 4227 | M: Sean Paul <seanpaul@chromium.org> |
Daniel Vetter | b7a2a23 | 2016-11-23 15:31:32 +0100 | [diff] [blame] | 4228 | W: https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html |
Daniel Vetter | d52ea7e | 2016-11-16 15:08:17 +0100 | [diff] [blame] | 4229 | S: Maintained |
| 4230 | T: git git://anongit.freedesktop.org/drm/drm-misc |
| 4231 | F: Documentation/gpu/ |
| 4232 | F: drivers/gpu/vga/ |
| 4233 | F: drivers/gpu/drm/* |
| 4234 | F: include/drm/drm* |
| 4235 | F: include/uapi/drm/drm* |
Lukas Wunner | 8ccd1e5 | 2017-03-27 18:48:24 +0200 | [diff] [blame] | 4236 | F: include/linux/vga* |
Daniel Vetter | d52ea7e | 2016-11-16 15:08:17 +0100 | [diff] [blame] | 4237 | |
Emil Velikov | c842b69 | 2016-04-22 00:04:01 +0100 | [diff] [blame] | 4238 | DRM DRIVER FOR AST SERVER GRAPHICS CHIPS |
| 4239 | M: Dave Airlie <airlied@redhat.com> |
| 4240 | S: Odd Fixes |
| 4241 | F: drivers/gpu/drm/ast/ |
| 4242 | |
Daniel Vetter | 5620f47 | 2016-11-16 15:08:19 +0100 | [diff] [blame] | 4243 | DRM DRIVERS FOR BRIDGE CHIPS |
| 4244 | M: Archit Taneja <architt@codeaurora.org> |
| 4245 | S: Maintained |
| 4246 | T: git git://anongit.freedesktop.org/drm/drm-misc |
| 4247 | F: drivers/gpu/drm/bridge/ |
| 4248 | |
Emil Velikov | c842b69 | 2016-04-22 00:04:01 +0100 | [diff] [blame] | 4249 | DRM DRIVER FOR BOCHS VIRTUAL GPU |
| 4250 | M: Gerd Hoffmann <kraxel@redhat.com> |
Gerd Hoffmann | 0c19f97 | 2016-11-21 19:00:30 +0100 | [diff] [blame] | 4251 | L: virtualization@lists.linux-foundation.org |
Daniel Vetter | 0f44548 | 2017-02-28 20:36:57 +0100 | [diff] [blame] | 4252 | T: git git://anongit.freedesktop.org/drm/drm-misc |
Gerd Hoffmann | 0c19f97 | 2016-11-21 19:00:30 +0100 | [diff] [blame] | 4253 | S: Maintained |
Emil Velikov | c842b69 | 2016-04-22 00:04:01 +0100 | [diff] [blame] | 4254 | F: drivers/gpu/drm/bochs/ |
| 4255 | |
| 4256 | DRM DRIVER FOR QEMU'S CIRRUS DEVICE |
| 4257 | M: Dave Airlie <airlied@redhat.com> |
Gerd Hoffmann | 0c19f97 | 2016-11-21 19:00:30 +0100 | [diff] [blame] | 4258 | M: Gerd Hoffmann <kraxel@redhat.com> |
| 4259 | L: virtualization@lists.linux-foundation.org |
Daniel Vetter | 0f44548 | 2017-02-28 20:36:57 +0100 | [diff] [blame] | 4260 | T: git git://anongit.freedesktop.org/drm/drm-misc |
Gerd Hoffmann | af3076e | 2016-11-21 19:32:06 +0100 | [diff] [blame] | 4261 | S: Obsolete |
| 4262 | W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/ |
Emil Velikov | c842b69 | 2016-04-22 00:04:01 +0100 | [diff] [blame] | 4263 | F: drivers/gpu/drm/cirrus/ |
| 4264 | |
Alex Deucher | c26a401 | 2016-03-03 11:49:34 -0500 | [diff] [blame] | 4265 | RADEON and AMDGPU DRM DRIVERS |
Alex Deucher | 566f593 | 2014-02-18 10:03:43 -0500 | [diff] [blame] | 4266 | M: Alex Deucher <alexander.deucher@amd.com> |
| 4267 | M: Christian König <christian.koenig@amd.com> |
Alex Deucher | 7f4c4f8 | 2016-12-19 13:30:13 -0500 | [diff] [blame] | 4268 | L: amd-gfx@lists.freedesktop.org |
Alex Deucher | 566f593 | 2014-02-18 10:03:43 -0500 | [diff] [blame] | 4269 | T: git git://people.freedesktop.org/~agd5f/linux |
| 4270 | S: Supported |
| 4271 | F: drivers/gpu/drm/radeon/ |
Emil Velikov | 74c9737 | 2016-04-22 00:03:49 +0100 | [diff] [blame] | 4272 | F: include/uapi/drm/radeon_drm.h |
Alex Deucher | c26a401 | 2016-03-03 11:49:34 -0500 | [diff] [blame] | 4273 | F: drivers/gpu/drm/amd/ |
Emil Velikov | 74c9737 | 2016-04-22 00:03:49 +0100 | [diff] [blame] | 4274 | F: include/uapi/drm/amdgpu_drm.h |
Alex Deucher | 566f593 | 2014-02-18 10:03:43 -0500 | [diff] [blame] | 4275 | |
Thierry Reding | 03e255b | 2014-04-04 08:59:18 +0200 | [diff] [blame] | 4276 | DRM PANEL DRIVERS |
| 4277 | M: Thierry Reding <thierry.reding@gmail.com> |
| 4278 | L: dri-devel@lists.freedesktop.org |
| 4279 | T: git git://anongit.freedesktop.org/tegra/linux.git |
| 4280 | S: Maintained |
| 4281 | F: drivers/gpu/drm/drm_panel.c |
| 4282 | F: drivers/gpu/drm/panel/ |
| 4283 | F: include/drm/drm_panel.h |
Rob Herring | 2d799dd | 2015-11-05 13:40:40 -0600 | [diff] [blame] | 4284 | F: Documentation/devicetree/bindings/display/panel/ |
Thierry Reding | 03e255b | 2014-04-04 08:59:18 +0200 | [diff] [blame] | 4285 | |
Chris Wilson | 8daf747 | 2010-09-28 14:07:26 +0100 | [diff] [blame] | 4286 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
Daniel Vetter | cbce710 | 2014-08-28 12:17:42 +0200 | [diff] [blame] | 4287 | M: Daniel Vetter <daniel.vetter@intel.com> |
Daniel Vetter | 47f9564 | 2014-01-07 09:24:31 +0100 | [diff] [blame] | 4288 | M: Jani Nikula <jani.nikula@linux.intel.com> |
Daniel Vetter | 362132d | 2013-03-13 22:28:46 +0100 | [diff] [blame] | 4289 | L: intel-gfx@lists.freedesktop.org |
Jani Nikula | 7564fde | 2015-10-13 11:16:48 +0300 | [diff] [blame] | 4290 | W: https://01.org/linuxgraphics/ |
Jani Nikula | 51b06f9 | 2016-12-12 16:46:05 -0800 | [diff] [blame] | 4291 | B: https://01.org/linuxgraphics/documentation/how-report-bugs |
Jani Nikula | 5fc41a7 | 2016-12-12 16:46:11 -0800 | [diff] [blame] | 4292 | C: irc://chat.freenode.net/intel-gfx |
Daniel Vetter | 47f9564 | 2014-01-07 09:24:31 +0100 | [diff] [blame] | 4293 | Q: http://patchwork.freedesktop.org/project/intel-gfx/ |
Daniel Vetter | 89258a9 | 2014-02-04 19:57:38 +0100 | [diff] [blame] | 4294 | T: git git://anongit.freedesktop.org/drm-intel |
Chris Wilson | 8daf747 | 2010-09-28 14:07:26 +0100 | [diff] [blame] | 4295 | S: Supported |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 4296 | F: drivers/gpu/drm/i915/ |
Chris Wilson | 8daf747 | 2010-09-28 14:07:26 +0100 | [diff] [blame] | 4297 | F: include/drm/i915* |
Emil Velikov | baceac3 | 2016-04-22 00:03:50 +0100 | [diff] [blame] | 4298 | F: include/uapi/drm/i915_drm.h |
Jani Nikula | 621c547 | 2016-06-21 14:48:59 +0300 | [diff] [blame] | 4299 | F: Documentation/gpu/i915.rst |
Chris Wilson | 8daf747 | 2010-09-28 14:07:26 +0100 | [diff] [blame] | 4300 | |
Zhenyu Wang | 66a46e9 | 2016-10-19 11:38:33 +0800 | [diff] [blame] | 4301 | INTEL GVT-g DRIVERS (Intel GPU Virtualization) |
| 4302 | M: Zhenyu Wang <zhenyuw@linux.intel.com> |
| 4303 | M: Zhi Wang <zhi.a.wang@intel.com> |
Zhenyu Wang | ba7addc | 2017-01-25 10:30:02 +0800 | [diff] [blame] | 4304 | L: intel-gvt-dev@lists.freedesktop.org |
Zhenyu Wang | 66a46e9 | 2016-10-19 11:38:33 +0800 | [diff] [blame] | 4305 | L: intel-gfx@lists.freedesktop.org |
| 4306 | W: https://01.org/igvt-g |
| 4307 | T: git https://github.com/01org/gvt-linux.git |
| 4308 | S: Supported |
| 4309 | F: drivers/gpu/drm/i915/gvt/ |
| 4310 | |
Boris BREZILLON | 99763bb | 2015-10-13 11:55:42 +0200 | [diff] [blame] | 4311 | DRM DRIVERS FOR ATMEL HLCDC |
| 4312 | M: Boris Brezillon <boris.brezillon@free-electrons.com> |
| 4313 | L: dri-devel@lists.freedesktop.org |
| 4314 | S: Supported |
| 4315 | F: drivers/gpu/drm/atmel-hlcdc/ |
| 4316 | F: Documentation/devicetree/bindings/drm/atmel/ |
Daniel Vetter | 0f44548 | 2017-02-28 20:36:57 +0100 | [diff] [blame] | 4317 | T: git git://anongit.freedesktop.org/drm/drm-misc |
Boris BREZILLON | 99763bb | 2015-10-13 11:55:42 +0200 | [diff] [blame] | 4318 | |
Maxime Ripard | bf1139d | 2016-04-28 10:12:33 +0200 | [diff] [blame] | 4319 | DRM DRIVERS FOR ALLWINNER A10 |
| 4320 | M: Maxime Ripard <maxime.ripard@free-electrons.com> |
| 4321 | L: dri-devel@lists.freedesktop.org |
| 4322 | S: Supported |
| 4323 | F: drivers/gpu/drm/sun4i/ |
| 4324 | F: Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt |
Maxime Ripard | 2da042a | 2017-03-31 09:40:52 +0200 | [diff] [blame] | 4325 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mripard/linux.git |
Maxime Ripard | bf1139d | 2016-04-28 10:12:33 +0200 | [diff] [blame] | 4326 | |
Neil Armstrong | 1de7ac6 | 2016-11-28 10:39:45 +0100 | [diff] [blame] | 4327 | DRM DRIVERS FOR AMLOGIC SOCS |
| 4328 | M: Neil Armstrong <narmstrong@baylibre.com> |
| 4329 | L: dri-devel@lists.freedesktop.org |
| 4330 | L: linux-amlogic@lists.infradead.org |
| 4331 | W: http://linux-meson.com/ |
| 4332 | S: Supported |
| 4333 | F: drivers/gpu/drm/meson/ |
| 4334 | F: Documentation/devicetree/bindings/display/amlogic,meson-vpu.txt |
Neil Armstrong | b40af4d | 2017-04-04 14:15:31 +0200 | [diff] [blame] | 4335 | F: Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt |
| 4336 | F: Documentation/gpu/meson.rst |
Neil Armstrong | 75bb485 | 2017-03-01 10:20:18 +0100 | [diff] [blame] | 4337 | T: git git://anongit.freedesktop.org/drm/drm-misc |
Neil Armstrong | 1de7ac6 | 2016-11-28 10:39:45 +0100 | [diff] [blame] | 4338 | |
Kyungmin Park | 398a6d4 | 2011-11-02 11:33:16 +0900 | [diff] [blame] | 4339 | DRM DRIVERS FOR EXYNOS |
| 4340 | M: Inki Dae <inki.dae@samsung.com> |
Inki Dae | f150130 | 2012-01-17 14:08:55 +0900 | [diff] [blame] | 4341 | M: Joonyoung Shim <jy0922.shim@samsung.com> |
| 4342 | M: Seung-Woo Kim <sw0312.kim@samsung.com> |
| 4343 | M: Kyungmin Park <kyungmin.park@samsung.com> |
Kyungmin Park | 398a6d4 | 2011-11-02 11:33:16 +0900 | [diff] [blame] | 4344 | L: dri-devel@lists.freedesktop.org |
Inki Dae | 25a5803 | 2012-10-30 16:08:05 +0900 | [diff] [blame] | 4345 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
Kyungmin Park | 398a6d4 | 2011-11-02 11:33:16 +0900 | [diff] [blame] | 4346 | S: Supported |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 4347 | F: drivers/gpu/drm/exynos/ |
Emil Velikov | 8fb9b15 | 2016-04-22 00:03:51 +0100 | [diff] [blame] | 4348 | F: include/uapi/drm/exynos_drm.h |
| 4349 | F: Documentation/devicetree/bindings/display/exynos/ |
Kyungmin Park | 398a6d4 | 2011-11-02 11:33:16 +0900 | [diff] [blame] | 4350 | |
Jianwei Wang | b55a1b9 | 2015-08-19 22:26:33 -0400 | [diff] [blame] | 4351 | DRM DRIVERS FOR FREESCALE DCU |
Stefan Agner | bc66757 | 2016-01-06 22:02:46 -0800 | [diff] [blame] | 4352 | M: Stefan Agner <stefan@agner.ch> |
Jianwei Wang | b55a1b9 | 2015-08-19 22:26:33 -0400 | [diff] [blame] | 4353 | M: Alison Wang <alison.wang@freescale.com> |
| 4354 | L: dri-devel@lists.freedesktop.org |
| 4355 | S: Supported |
| 4356 | F: drivers/gpu/drm/fsl-dcu/ |
Rob Herring | 2d799dd | 2015-11-05 13:40:40 -0600 | [diff] [blame] | 4357 | F: Documentation/devicetree/bindings/display/fsl,dcu.txt |
Stefan Agner | fb127b7 | 2015-12-02 14:39:40 -0800 | [diff] [blame] | 4358 | F: Documentation/devicetree/bindings/display/fsl,tcon.txt |
Rob Herring | 2d799dd | 2015-11-05 13:40:40 -0600 | [diff] [blame] | 4359 | F: Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt |
Jianwei Wang | b55a1b9 | 2015-08-19 22:26:33 -0400 | [diff] [blame] | 4360 | |
Philipp Zabel | 0a3d775 | 2014-11-24 16:33:35 +0100 | [diff] [blame] | 4361 | DRM DRIVERS FOR FREESCALE IMX |
| 4362 | M: Philipp Zabel <p.zabel@pengutronix.de> |
| 4363 | L: dri-devel@lists.freedesktop.org |
| 4364 | S: Maintained |
| 4365 | F: drivers/gpu/drm/imx/ |
Philipp Zabel | ef739aa | 2015-06-19 16:22:38 +0200 | [diff] [blame] | 4366 | F: drivers/gpu/ipu-v3/ |
Rob Herring | 2d799dd | 2015-11-05 13:40:40 -0600 | [diff] [blame] | 4367 | F: Documentation/devicetree/bindings/display/imx/ |
Philipp Zabel | 0a3d775 | 2014-11-24 16:33:35 +0100 | [diff] [blame] | 4368 | |
Patrik Jakobsson | ba2199a | 2015-10-12 23:14:44 +0200 | [diff] [blame] | 4369 | DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets) |
| 4370 | M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com> |
| 4371 | L: dri-devel@lists.freedesktop.org |
| 4372 | T: git git://github.com/patjak/drm-gma500 |
| 4373 | S: Maintained |
Emil Velikov | 5ff18e4 | 2016-04-22 00:03:52 +0100 | [diff] [blame] | 4374 | F: drivers/gpu/drm/gma500/ |
Patrik Jakobsson | ba2199a | 2015-10-12 23:14:44 +0200 | [diff] [blame] | 4375 | |
Xinliang Liu | c84ffde | 2016-01-30 14:42:36 +0800 | [diff] [blame] | 4376 | DRM DRIVERS FOR HISILICON |
| 4377 | M: Xinliang Liu <z.liuxinliang@hisilicon.com> |
Rongrong Zou | 4b4b40a | 2016-11-16 20:58:51 +0800 | [diff] [blame] | 4378 | M: Rongrong Zou <zourongrong@gmail.com> |
Xinliang Liu | c84ffde | 2016-01-30 14:42:36 +0800 | [diff] [blame] | 4379 | R: Xinwei Kong <kong.kongxinwei@hisilicon.com> |
| 4380 | R: Chen Feng <puck.chen@hisilicon.com> |
| 4381 | L: dri-devel@lists.freedesktop.org |
| 4382 | T: git git://github.com/xin3liang/linux.git |
| 4383 | S: Maintained |
| 4384 | F: drivers/gpu/drm/hisilicon/ |
| 4385 | F: Documentation/devicetree/bindings/display/hisilicon/ |
| 4386 | |
Emil Velikov | 399516a | 2016-04-22 00:04:02 +0100 | [diff] [blame] | 4387 | DRM DRIVER FOR INTEL I810 VIDEO CARDS |
| 4388 | S: Orphan / Obsolete |
| 4389 | F: drivers/gpu/drm/i810/ |
| 4390 | F: include/uapi/drm/i810_drm.h |
| 4391 | |
CK Hu | 37b2a21 | 2016-07-15 13:52:04 +0800 | [diff] [blame] | 4392 | DRM DRIVERS FOR MEDIATEK |
| 4393 | M: CK Hu <ck.hu@mediatek.com> |
| 4394 | M: Philipp Zabel <p.zabel@pengutronix.de> |
| 4395 | L: dri-devel@lists.freedesktop.org |
| 4396 | S: Supported |
| 4397 | F: drivers/gpu/drm/mediatek/ |
| 4398 | F: Documentation/devicetree/bindings/display/mediatek/ |
| 4399 | |
Noralf Trønnes | 1f47e6c | 2017-01-22 15:23:48 +0100 | [diff] [blame] | 4400 | DRM DRIVER FOR MI0283QT |
| 4401 | M: Noralf Trønnes <noralf@tronnes.org> |
| 4402 | S: Maintained |
| 4403 | F: drivers/gpu/drm/tinydrm/mi0283qt.c |
| 4404 | F: Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt |
| 4405 | |
Emil Velikov | 0634645 | 2016-05-03 00:14:48 +0100 | [diff] [blame] | 4406 | DRM DRIVER FOR MSM ADRENO GPU |
| 4407 | M: Rob Clark <robdclark@gmail.com> |
| 4408 | L: linux-arm-msm@vger.kernel.org |
| 4409 | L: dri-devel@lists.freedesktop.org |
| 4410 | L: freedreno@lists.freedesktop.org |
| 4411 | T: git git://people.freedesktop.org/~robclark/linux |
| 4412 | S: Maintained |
| 4413 | F: drivers/gpu/drm/msm/ |
| 4414 | F: include/uapi/drm/msm_drm.h |
| 4415 | F: Documentation/devicetree/bindings/display/msm/ |
| 4416 | |
Emil Velikov | fad89bb | 2016-04-22 00:03:58 +0100 | [diff] [blame] | 4417 | DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS |
| 4418 | M: Ben Skeggs <bskeggs@redhat.com> |
| 4419 | L: dri-devel@lists.freedesktop.org |
| 4420 | L: nouveau@lists.freedesktop.org |
| 4421 | T: git git://github.com/skeggsb/linux |
| 4422 | S: Supported |
| 4423 | F: drivers/gpu/drm/nouveau/ |
| 4424 | F: include/uapi/drm/nouveau_drm.h |
Thierry Reding | dee8268 | 2013-10-09 10:32:49 +0200 | [diff] [blame] | 4425 | |
Thierry Reding | a5ad7a6 | 2013-05-19 14:19:21 +0200 | [diff] [blame] | 4426 | DRM DRIVERS FOR NVIDIA TEGRA |
Thierry Reding | e1e9064 | 2013-09-24 13:59:01 +0200 | [diff] [blame] | 4427 | M: Thierry Reding <thierry.reding@gmail.com> |
Thierry Reding | bd3b49f | 2012-11-28 20:45:28 +0100 | [diff] [blame] | 4428 | L: dri-devel@lists.freedesktop.org |
| 4429 | L: linux-tegra@vger.kernel.org |
| 4430 | T: git git://anongit.freedesktop.org/tegra/linux.git |
| 4431 | S: Supported |
Thierry Reding | a5ad7a6 | 2013-05-19 14:19:21 +0200 | [diff] [blame] | 4432 | F: drivers/gpu/drm/tegra/ |
| 4433 | F: drivers/gpu/host1x/ |
Thierry Reding | bd3b49f | 2012-11-28 20:45:28 +0100 | [diff] [blame] | 4434 | F: include/linux/host1x.h |
| 4435 | F: include/uapi/drm/tegra_drm.h |
Rob Herring | 2d799dd | 2015-11-05 13:40:40 -0600 | [diff] [blame] | 4436 | F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 4437 | |
Emil Velikov | 399516a | 2016-04-22 00:04:02 +0100 | [diff] [blame] | 4438 | DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS |
| 4439 | S: Orphan / Obsolete |
| 4440 | F: drivers/gpu/drm/mga/ |
| 4441 | F: include/uapi/drm/mga_drm.h |
| 4442 | |
Emil Velikov | c842b69 | 2016-04-22 00:04:01 +0100 | [diff] [blame] | 4443 | DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS |
| 4444 | M: Dave Airlie <airlied@redhat.com> |
| 4445 | S: Odd Fixes |
| 4446 | F: drivers/gpu/drm/mgag200/ |
| 4447 | |
Emil Velikov | 399516a | 2016-04-22 00:04:02 +0100 | [diff] [blame] | 4448 | DRM DRIVER FOR RAGE 128 VIDEO CARDS |
| 4449 | S: Orphan / Obsolete |
| 4450 | F: drivers/gpu/drm/r128/ |
| 4451 | F: include/uapi/drm/r128_drm.h |
| 4452 | |
Laurent Pinchart | a284e9d | 2014-08-19 23:04:31 +0200 | [diff] [blame] | 4453 | DRM DRIVERS FOR RENESAS |
| 4454 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 4455 | L: dri-devel@lists.freedesktop.org |
Simon Horman | 4a12109 | 2016-01-18 10:04:33 +0900 | [diff] [blame] | 4456 | L: linux-renesas-soc@vger.kernel.org |
Emil Velikov | 2392ccd | 2016-04-22 00:03:57 +0100 | [diff] [blame] | 4457 | T: git git://linuxtv.org/pinchartl/fbdev |
Laurent Pinchart | a284e9d | 2014-08-19 23:04:31 +0200 | [diff] [blame] | 4458 | S: Supported |
| 4459 | F: drivers/gpu/drm/rcar-du/ |
| 4460 | F: drivers/gpu/drm/shmobile/ |
Laurent Pinchart | a284e9d | 2014-08-19 23:04:31 +0200 | [diff] [blame] | 4461 | F: include/linux/platform_data/shmob_drm.h |
Laurent Pinchart | 907c1bb | 2016-12-02 01:02:53 +0200 | [diff] [blame] | 4462 | F: Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt |
Emil Velikov | 33be436 | 2016-04-22 00:03:56 +0100 | [diff] [blame] | 4463 | F: Documentation/devicetree/bindings/display/renesas,du.txt |
Laurent Pinchart | a284e9d | 2014-08-19 23:04:31 +0200 | [diff] [blame] | 4464 | |
Emil Velikov | c842b69 | 2016-04-22 00:04:01 +0100 | [diff] [blame] | 4465 | DRM DRIVER FOR QXL VIRTUAL GPU |
| 4466 | M: Dave Airlie <airlied@redhat.com> |
Gerd Hoffmann | 0c19f97 | 2016-11-21 19:00:30 +0100 | [diff] [blame] | 4467 | M: Gerd Hoffmann <kraxel@redhat.com> |
| 4468 | L: virtualization@lists.linux-foundation.org |
Daniel Vetter | 0f44548 | 2017-02-28 20:36:57 +0100 | [diff] [blame] | 4469 | T: git git://anongit.freedesktop.org/drm/drm-misc |
Gerd Hoffmann | 0c19f97 | 2016-11-21 19:00:30 +0100 | [diff] [blame] | 4470 | S: Maintained |
Emil Velikov | c842b69 | 2016-04-22 00:04:01 +0100 | [diff] [blame] | 4471 | F: drivers/gpu/drm/qxl/ |
| 4472 | F: include/uapi/drm/qxl_drm.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4473 | |
Heiko Stuebner | 625e034 | 2015-04-20 00:59:50 +0200 | [diff] [blame] | 4474 | DRM DRIVERS FOR ROCKCHIP |
| 4475 | M: Mark Yao <mark.yao@rock-chips.com> |
| 4476 | L: dri-devel@lists.freedesktop.org |
| 4477 | S: Maintained |
| 4478 | F: drivers/gpu/drm/rockchip/ |
Emil Velikov | f253f7e | 2016-04-22 00:03:53 +0100 | [diff] [blame] | 4479 | F: Documentation/devicetree/bindings/display/rockchip/ |
Daniel Vetter | 0f44548 | 2017-02-28 20:36:57 +0100 | [diff] [blame] | 4480 | T: git git://anongit.freedesktop.org/drm/drm-misc |
Heiko Stuebner | 625e034 | 2015-04-20 00:59:50 +0200 | [diff] [blame] | 4481 | |
Emil Velikov | 399516a | 2016-04-22 00:04:02 +0100 | [diff] [blame] | 4482 | DRM DRIVER FOR SAVAGE VIDEO CARDS |
| 4483 | S: Orphan / Obsolete |
| 4484 | F: drivers/gpu/drm/savage/ |
| 4485 | F: include/uapi/drm/savage_drm.h |
| 4486 | |
| 4487 | DRM DRIVER FOR SIS VIDEO CARDS |
| 4488 | S: Orphan / Obsolete |
| 4489 | F: drivers/gpu/drm/sis/ |
| 4490 | F: include/uapi/drm/sis_drm.h |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 4491 | |
Benjamin Gaignard | 7f11c47 | 2015-08-14 15:35:24 -0700 | [diff] [blame] | 4492 | DRM DRIVERS FOR STI |
| 4493 | M: Benjamin Gaignard <benjamin.gaignard@linaro.org> |
| 4494 | M: Vincent Abriou <vincent.abriou@st.com> |
| 4495 | L: dri-devel@lists.freedesktop.org |
Vincent Abriou | db8b159 | 2017-04-10 16:52:38 +0200 | [diff] [blame] | 4496 | T: git git://anongit.freedesktop.org/drm/drm-misc |
Benjamin Gaignard | 7f11c47 | 2015-08-14 15:35:24 -0700 | [diff] [blame] | 4497 | S: Maintained |
| 4498 | F: drivers/gpu/drm/sti |
Rob Herring | 2d799dd | 2015-11-05 13:40:40 -0600 | [diff] [blame] | 4499 | F: Documentation/devicetree/bindings/display/st,stih4xx.txt |
Benjamin Gaignard | 7f11c47 | 2015-08-14 15:35:24 -0700 | [diff] [blame] | 4500 | |
Emil Velikov | 399516a | 2016-04-22 00:04:02 +0100 | [diff] [blame] | 4501 | DRM DRIVER FOR TDFX VIDEO CARDS |
| 4502 | S: Orphan / Obsolete |
| 4503 | F: drivers/gpu/drm/tdfx/ |
| 4504 | |
Emil Velikov | c842b69 | 2016-04-22 00:04:01 +0100 | [diff] [blame] | 4505 | DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS |
| 4506 | M: Dave Airlie <airlied@redhat.com> |
| 4507 | S: Odd Fixes |
| 4508 | F: drivers/gpu/drm/udl/ |
| 4509 | |
Lucas Stach | 8bb0bce | 2015-12-03 17:12:07 +0100 | [diff] [blame] | 4510 | DRM DRIVERS FOR VIVANTE GPU IP |
| 4511 | M: Lucas Stach <l.stach@pengutronix.de> |
Russell King | 54176cc | 2016-05-05 17:12:54 +0100 | [diff] [blame] | 4512 | R: Russell King <linux+etnaviv@armlinux.org.uk> |
Lucas Stach | 8bb0bce | 2015-12-03 17:12:07 +0100 | [diff] [blame] | 4513 | R: Christian Gmeiner <christian.gmeiner@gmail.com> |
Lucas Stach | c4ae94a | 2016-12-02 13:04:01 +0100 | [diff] [blame] | 4514 | L: etnaviv@lists.freedesktop.org |
Lucas Stach | 8bb0bce | 2015-12-03 17:12:07 +0100 | [diff] [blame] | 4515 | L: dri-devel@lists.freedesktop.org |
| 4516 | S: Maintained |
Emil Velikov | 8a9257a | 2016-04-22 00:03:54 +0100 | [diff] [blame] | 4517 | F: drivers/gpu/drm/etnaviv/ |
| 4518 | F: include/uapi/drm/etnaviv_drm.h |
| 4519 | F: Documentation/devicetree/bindings/display/etnaviv/ |
Lucas Stach | 8bb0bce | 2015-12-03 17:12:07 +0100 | [diff] [blame] | 4520 | |
Emil Velikov | c429170 | 2016-05-03 00:15:39 +0100 | [diff] [blame] | 4521 | DRM DRIVER FOR VMWARE VIRTUAL GPU |
| 4522 | M: "VMware Graphics" <linux-graphics-maintainer@vmware.com> |
| 4523 | M: Sinclair Yeh <syeh@vmware.com> |
| 4524 | M: Thomas Hellstrom <thellstrom@vmware.com> |
| 4525 | L: dri-devel@lists.freedesktop.org |
| 4526 | T: git git://people.freedesktop.org/~syeh/repos_linux |
| 4527 | T: git git://people.freedesktop.org/~thomash/linux |
| 4528 | S: Supported |
| 4529 | F: drivers/gpu/drm/vmwgfx/ |
| 4530 | F: include/uapi/drm/vmwgfx_drm.h |
| 4531 | |
Eric Anholt | 8636d45 | 2016-05-03 14:54:19 +0100 | [diff] [blame] | 4532 | DRM DRIVERS FOR VC4 |
| 4533 | M: Eric Anholt <eric@anholt.net> |
| 4534 | T: git git://github.com/anholt/linux |
| 4535 | S: Supported |
| 4536 | F: drivers/gpu/drm/vc4/ |
| 4537 | F: include/uapi/drm/vc4_drm.h |
| 4538 | F: Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt |
Daniel Vetter | 0f44548 | 2017-02-28 20:36:57 +0100 | [diff] [blame] | 4539 | T: git git://anongit.freedesktop.org/drm/drm-misc |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4540 | |
Tomi Valkeinen | 5ef330a | 2016-03-17 14:07:23 +0200 | [diff] [blame] | 4541 | DRM DRIVERS FOR TI OMAP |
| 4542 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
| 4543 | L: dri-devel@lists.freedesktop.org |
| 4544 | S: Maintained |
| 4545 | F: drivers/gpu/drm/omapdrm/ |
| 4546 | F: Documentation/devicetree/bindings/display/ti/ |
| 4547 | |
Tomi Valkeinen | adb314e | 2016-03-17 14:07:27 +0200 | [diff] [blame] | 4548 | DRM DRIVERS FOR TI LCDC |
| 4549 | M: Jyri Sarha <jsarha@ti.com> |
| 4550 | R: Tomi Valkeinen <tomi.valkeinen@ti.com> |
| 4551 | L: dri-devel@lists.freedesktop.org |
| 4552 | S: Maintained |
| 4553 | F: drivers/gpu/drm/tilcdc/ |
| 4554 | F: Documentation/devicetree/bindings/display/tilcdc/ |
| 4555 | |
Shawn Guo | dbb0103 | 2016-10-09 16:44:52 +0800 | [diff] [blame] | 4556 | DRM DRIVERS FOR ZTE ZX |
| 4557 | M: Shawn Guo <shawnguo@kernel.org> |
| 4558 | L: dri-devel@lists.freedesktop.org |
| 4559 | S: Maintained |
| 4560 | F: drivers/gpu/drm/zte/ |
| 4561 | F: Documentation/devicetree/bindings/display/zte,vou.txt |
Daniel Vetter | 0f44548 | 2017-02-28 20:36:57 +0100 | [diff] [blame] | 4562 | T: git git://anongit.freedesktop.org/drm/drm-misc |
Shawn Guo | dbb0103 | 2016-10-09 16:44:52 +0800 | [diff] [blame] | 4563 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4564 | DSBR100 USB FM RADIO DRIVER |
| 4565 | M: Alexey Klimov <klimov.linux@gmail.com> |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4566 | L: linux-media@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4567 | T: git git://linuxtv.org/media_tree.git |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 4568 | S: Maintained |
| 4569 | F: drivers/media/radio/dsbr100.c |
| 4570 | |
| 4571 | DSCC4 DRIVER |
| 4572 | M: Francois Romieu <romieu@fr.zoreil.com> |
| 4573 | L: netdev@vger.kernel.org |
| 4574 | S: Maintained |
| 4575 | F: drivers/net/wan/dscc4.c |
| 4576 | |
Hans Verkuil | cc11b14 | 2015-04-25 12:36:18 -0300 | [diff] [blame] | 4577 | DT3155 MEDIA DRIVER |
| 4578 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 4579 | L: linux-media@vger.kernel.org |
| 4580 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 4581 | W: https://linuxtv.org |
Hans Verkuil | cc11b14 | 2015-04-25 12:36:18 -0300 | [diff] [blame] | 4582 | S: Odd Fixes |
| 4583 | F: drivers/media/pci/dt3155/ |
| 4584 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 4585 | DVB_USB_AF9015 MEDIA DRIVER |
| 4586 | M: Antti Palosaari <crope@iki.fi> |
| 4587 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 4588 | W: https://linuxtv.org |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 4589 | W: http://palosaari.fi/linux/ |
| 4590 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 4591 | T: git git://linuxtv.org/anttip/media_tree.git |
| 4592 | S: Maintained |
| 4593 | F: drivers/media/usb/dvb-usb-v2/af9015* |
| 4594 | |
| 4595 | DVB_USB_AF9035 MEDIA DRIVER |
| 4596 | M: Antti Palosaari <crope@iki.fi> |
| 4597 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 4598 | W: https://linuxtv.org |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 4599 | W: http://palosaari.fi/linux/ |
| 4600 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 4601 | T: git git://linuxtv.org/anttip/media_tree.git |
| 4602 | S: Maintained |
| 4603 | F: drivers/media/usb/dvb-usb-v2/af9035* |
| 4604 | |
| 4605 | DVB_USB_ANYSEE MEDIA DRIVER |
| 4606 | M: Antti Palosaari <crope@iki.fi> |
| 4607 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 4608 | W: https://linuxtv.org |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 4609 | W: http://palosaari.fi/linux/ |
| 4610 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 4611 | T: git git://linuxtv.org/anttip/media_tree.git |
| 4612 | S: Maintained |
| 4613 | F: drivers/media/usb/dvb-usb-v2/anysee* |
| 4614 | |
| 4615 | DVB_USB_AU6610 MEDIA DRIVER |
| 4616 | M: Antti Palosaari <crope@iki.fi> |
| 4617 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 4618 | W: https://linuxtv.org |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 4619 | W: http://palosaari.fi/linux/ |
| 4620 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 4621 | T: git git://linuxtv.org/anttip/media_tree.git |
| 4622 | S: Maintained |
| 4623 | F: drivers/media/usb/dvb-usb-v2/au6610* |
| 4624 | |
| 4625 | DVB_USB_CE6230 MEDIA DRIVER |
| 4626 | M: Antti Palosaari <crope@iki.fi> |
| 4627 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 4628 | W: https://linuxtv.org |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 4629 | W: http://palosaari.fi/linux/ |
| 4630 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 4631 | T: git git://linuxtv.org/anttip/media_tree.git |
| 4632 | S: Maintained |
| 4633 | F: drivers/media/usb/dvb-usb-v2/ce6230* |
| 4634 | |
Michael Krufky | d099dea | 2012-10-02 00:56:20 -0300 | [diff] [blame] | 4635 | DVB_USB_CXUSB MEDIA DRIVER |
| 4636 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 4637 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 4638 | W: https://linuxtv.org |
Michael Krufky | d099dea | 2012-10-02 00:56:20 -0300 | [diff] [blame] | 4639 | W: http://github.com/mkrufky |
| 4640 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 4641 | T: git git://linuxtv.org/media_tree.git |
| 4642 | S: Maintained |
Cesar Eduardo Barros | 9819da6 | 2013-01-04 15:35:25 -0800 | [diff] [blame] | 4643 | F: drivers/media/usb/dvb-usb/cxusb* |
Michael Krufky | d099dea | 2012-10-02 00:56:20 -0300 | [diff] [blame] | 4644 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 4645 | DVB_USB_EC168 MEDIA DRIVER |
| 4646 | M: Antti Palosaari <crope@iki.fi> |
| 4647 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 4648 | W: https://linuxtv.org |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 4649 | W: http://palosaari.fi/linux/ |
| 4650 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 4651 | T: git git://linuxtv.org/anttip/media_tree.git |
| 4652 | S: Maintained |
| 4653 | F: drivers/media/usb/dvb-usb-v2/ec168* |
| 4654 | |
Antti Palosaari | 5560983 | 2013-04-09 20:30:42 -0300 | [diff] [blame] | 4655 | DVB_USB_GL861 MEDIA DRIVER |
| 4656 | M: Antti Palosaari <crope@iki.fi> |
| 4657 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 4658 | W: https://linuxtv.org |
Antti Palosaari | 5560983 | 2013-04-09 20:30:42 -0300 | [diff] [blame] | 4659 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 4660 | T: git git://linuxtv.org/anttip/media_tree.git |
| 4661 | S: Maintained |
| 4662 | F: drivers/media/usb/dvb-usb-v2/gl861* |
| 4663 | |
Michael Krufky | 8856f5f | 2012-10-02 00:55:50 -0300 | [diff] [blame] | 4664 | DVB_USB_MXL111SF MEDIA DRIVER |
| 4665 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 4666 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 4667 | W: https://linuxtv.org |
Michael Krufky | 8856f5f | 2012-10-02 00:55:50 -0300 | [diff] [blame] | 4668 | W: http://github.com/mkrufky |
| 4669 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 4670 | T: git git://linuxtv.org/mkrufky/mxl111sf.git |
| 4671 | S: Maintained |
| 4672 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* |
| 4673 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 4674 | DVB_USB_RTL28XXU MEDIA DRIVER |
| 4675 | M: Antti Palosaari <crope@iki.fi> |
| 4676 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 4677 | W: https://linuxtv.org |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 4678 | W: http://palosaari.fi/linux/ |
| 4679 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 4680 | T: git git://linuxtv.org/anttip/media_tree.git |
| 4681 | S: Maintained |
| 4682 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* |
| 4683 | |
| 4684 | DVB_USB_V2 MEDIA DRIVER |
| 4685 | M: Antti Palosaari <crope@iki.fi> |
| 4686 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 4687 | W: https://linuxtv.org |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 4688 | W: http://palosaari.fi/linux/ |
| 4689 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 4690 | T: git git://linuxtv.org/anttip/media_tree.git |
| 4691 | S: Maintained |
| 4692 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* |
| 4693 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c |
| 4694 | |
Jason Baron | ac0ac38 | 2011-08-11 14:36:43 -0400 | [diff] [blame] | 4695 | DYNAMIC DEBUG |
Joe Perches | 5c4a97d | 2013-07-31 13:53:32 -0700 | [diff] [blame] | 4696 | M: Jason Baron <jbaron@akamai.com> |
Jason Baron | ac0ac38 | 2011-08-11 14:36:43 -0400 | [diff] [blame] | 4697 | S: Maintained |
| 4698 | F: lib/dynamic_debug.c |
| 4699 | F: include/linux/dynamic_debug.h |
| 4700 | |
Maciej W. Rozycki | 789c704 | 2008-02-07 00:15:13 -0800 | [diff] [blame] | 4701 | DZ DECSTATION DZ11 SERIAL DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4702 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
Maciej W. Rozycki | 789c704 | 2008-02-07 00:15:13 -0800 | [diff] [blame] | 4703 | S: Maintained |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 4704 | F: drivers/tty/serial/dz.* |
Maciej W. Rozycki | 789c704 | 2008-02-07 00:15:13 -0800 | [diff] [blame] | 4705 | |
Moritz Fischer | f17effb | 2015-01-10 14:10:59 -0800 | [diff] [blame] | 4706 | E3X0 POWER BUTTON DRIVER |
| 4707 | M: Moritz Fischer <moritz.fischer@ettus.com> |
| 4708 | L: usrp-users@lists.ettus.com |
| 4709 | W: http://www.ettus.com |
| 4710 | S: Supported |
| 4711 | F: drivers/input/misc/e3x0-button.c |
| 4712 | F: Documentation/devicetree/bindings/input/e3x0-button.txt |
| 4713 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 4714 | E4000 MEDIA DRIVER |
| 4715 | M: Antti Palosaari <crope@iki.fi> |
| 4716 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 4717 | W: https://linuxtv.org |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 4718 | W: http://palosaari.fi/linux/ |
| 4719 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 4720 | T: git git://linuxtv.org/anttip/media_tree.git |
| 4721 | S: Maintained |
| 4722 | F: drivers/media/tuners/e4000* |
| 4723 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4724 | EATA ISA/EISA/PCI SCSI DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4725 | M: Dario Ballabio <ballabio_dario@emc.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4726 | L: linux-scsi@vger.kernel.org |
| 4727 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4728 | F: drivers/scsi/eata.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4729 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 4730 | EC100 MEDIA DRIVER |
| 4731 | M: Antti Palosaari <crope@iki.fi> |
| 4732 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 4733 | W: https://linuxtv.org |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 4734 | W: http://palosaari.fi/linux/ |
| 4735 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 4736 | T: git git://linuxtv.org/anttip/media_tree.git |
| 4737 | S: Maintained |
| 4738 | F: drivers/media/dvb-frontends/ec100* |
| 4739 | |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 4740 | ECRYPT FILE SYSTEM |
Tyler Hicks | 0de9adf | 2011-11-05 09:04:47 -0400 | [diff] [blame] | 4741 | M: Tyler Hicks <tyhicks@canonical.com> |
Tyler Hicks | a058bfb | 2011-05-27 11:47:59 -0500 | [diff] [blame] | 4742 | L: ecryptfs@vger.kernel.org |
Dustin Kirkland | 24a923e | 2013-05-31 10:41:43 -0500 | [diff] [blame] | 4743 | W: http://ecryptfs.org |
Michael Halcrow | 6dc7516 | 2008-12-15 13:54:17 -0800 | [diff] [blame] | 4744 | W: https://launchpad.net/ecryptfs |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 4745 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 4746 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4747 | F: Documentation/filesystems/ecryptfs.txt |
| 4748 | F: fs/ecryptfs/ |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 4749 | |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 4750 | EDAC-CORE |
Borislav Petkov | aa15aa0 | 2014-03-03 15:38:17 -0800 | [diff] [blame] | 4751 | M: Borislav Petkov <bp@alien8.de> |
Mauro Carvalho Chehab | 5dc8a86 | 2016-06-14 15:17:40 -0300 | [diff] [blame] | 4752 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
| 4753 | M: Mauro Carvalho Chehab <mchehab@kernel.org> |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 4754 | L: linux-edac@vger.kernel.org |
Fengguang Wu | 07cd6bf | 2015-12-18 15:51:36 +0800 | [diff] [blame] | 4755 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next |
| 4756 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next |
Doug Thompson | 8c2a6a4 | 2006-06-30 01:56:09 -0700 | [diff] [blame] | 4757 | S: Supported |
Mauro Carvalho Chehab | b73bbad | 2016-10-27 06:35:16 -0200 | [diff] [blame] | 4758 | F: Documentation/admin-guide/ras.rst |
| 4759 | F: Documentation/driver-api/edac.rst |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 4760 | F: drivers/edac/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4761 | F: include/linux/edac.h |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 4762 | |
Borislav Petkov | c476c23 | 2009-05-20 20:31:58 +0200 | [diff] [blame] | 4763 | EDAC-AMD64 |
Borislav Petkov | 487ba8e | 2012-10-29 18:40:10 +0100 | [diff] [blame] | 4764 | M: Borislav Petkov <bp@alien8.de> |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 4765 | L: linux-edac@vger.kernel.org |
Borislav Petkov | 487ba8e | 2012-10-29 18:40:10 +0100 | [diff] [blame] | 4766 | S: Maintained |
Borislav Petkov | c476c23 | 2009-05-20 20:31:58 +0200 | [diff] [blame] | 4767 | F: drivers/edac/amd64_edac* |
| 4768 | |
Robert Richter | 836dae5 | 2013-10-18 09:24:52 +0200 | [diff] [blame] | 4769 | EDAC-CALXEDA |
Robert Richter | 836dae5 | 2013-10-18 09:24:52 +0200 | [diff] [blame] | 4770 | M: Robert Richter <rric@kernel.org> |
| 4771 | L: linux-edac@vger.kernel.org |
Robert Richter | 836dae5 | 2013-10-18 09:24:52 +0200 | [diff] [blame] | 4772 | S: Maintained |
| 4773 | F: drivers/edac/highbank* |
| 4774 | |
Ralf Baechle | f65aad4 | 2012-10-17 00:39:09 +0200 | [diff] [blame] | 4775 | EDAC-CAVIUM |
| 4776 | M: Ralf Baechle <ralf@linux-mips.org> |
| 4777 | M: David Daney <david.daney@cavium.com> |
| 4778 | L: linux-edac@vger.kernel.org |
| 4779 | L: linux-mips@linux-mips.org |
Ralf Baechle | f65aad4 | 2012-10-17 00:39:09 +0200 | [diff] [blame] | 4780 | S: Supported |
| 4781 | F: drivers/edac/octeon_edac* |
Sergey Temerkhanov | 4100339 | 2017-03-24 22:28:37 +0000 | [diff] [blame] | 4782 | F: drivers/edac/thunderx_edac* |
Ralf Baechle | f65aad4 | 2012-10-17 00:39:09 +0200 | [diff] [blame] | 4783 | |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 4784 | EDAC-E752X |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4785 | M: Mark Gross <mark.gross@intel.com> |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 4786 | L: linux-edac@vger.kernel.org |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 4787 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4788 | F: drivers/edac/e752x_edac.c |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 4789 | |
| 4790 | EDAC-E7XXX |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 4791 | L: linux-edac@vger.kernel.org |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 4792 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4793 | F: drivers/edac/e7xxx_edac.c |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 4794 | |
Borislav Petkov | 7d13673 | 2016-09-08 19:13:29 +0200 | [diff] [blame] | 4795 | EDAC-FSL_DDR |
| 4796 | M: York Sun <york.sun@nxp.com> |
| 4797 | L: linux-edac@vger.kernel.org |
| 4798 | S: Maintained |
| 4799 | F: drivers/edac/fsl_ddr_edac.* |
| 4800 | |
Mauro Carvalho Chehab | 77c5f5d | 2013-02-15 06:11:57 -0300 | [diff] [blame] | 4801 | EDAC-GHES |
Mauro Carvalho Chehab | 5dc8a86 | 2016-06-14 15:17:40 -0300 | [diff] [blame] | 4802 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
| 4803 | M: Mauro Carvalho Chehab <mchehab@kernel.org> |
Mauro Carvalho Chehab | 77c5f5d | 2013-02-15 06:11:57 -0300 | [diff] [blame] | 4804 | L: linux-edac@vger.kernel.org |
Mauro Carvalho Chehab | 77c5f5d | 2013-02-15 06:11:57 -0300 | [diff] [blame] | 4805 | S: Maintained |
Joe Perches | 2caa67a | 2013-09-11 14:23:40 -0700 | [diff] [blame] | 4806 | F: drivers/edac/ghes_edac.c |
Mauro Carvalho Chehab | 77c5f5d | 2013-02-15 06:11:57 -0300 | [diff] [blame] | 4807 | |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 4808 | EDAC-I82443BXGX |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4809 | M: Tim Small <tim@buttersideup.com> |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 4810 | L: linux-edac@vger.kernel.org |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 4811 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4812 | F: drivers/edac/i82443bxgx_edac.c |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 4813 | |
| 4814 | EDAC-I3000 |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 4815 | L: linux-edac@vger.kernel.org |
Borislav Petkov | c91d907 | 2016-09-01 14:55:45 +0200 | [diff] [blame] | 4816 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4817 | F: drivers/edac/i3000_edac.c |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 4818 | |
| 4819 | EDAC-I5000 |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 4820 | L: linux-edac@vger.kernel.org |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 4821 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4822 | F: drivers/edac/i5000_edac.c |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 4823 | |
Mauro Carvalho Chehab | 44c12cb | 2009-01-15 13:50:49 -0800 | [diff] [blame] | 4824 | EDAC-I5400 |
Mauro Carvalho Chehab | 5dc8a86 | 2016-06-14 15:17:40 -0300 | [diff] [blame] | 4825 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
| 4826 | M: Mauro Carvalho Chehab <mchehab@kernel.org> |
Mauro Carvalho Chehab | 67c8931 | 2010-06-30 01:45:28 -0300 | [diff] [blame] | 4827 | L: linux-edac@vger.kernel.org |
Mauro Carvalho Chehab | 44c12cb | 2009-01-15 13:50:49 -0800 | [diff] [blame] | 4828 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4829 | F: drivers/edac/i5400_edac.c |
Mauro Carvalho Chehab | 44c12cb | 2009-01-15 13:50:49 -0800 | [diff] [blame] | 4830 | |
Mauro Carvalho Chehab | 3c9c92b | 2010-09-22 09:36:54 -0300 | [diff] [blame] | 4831 | EDAC-I7300 |
Mauro Carvalho Chehab | 5dc8a86 | 2016-06-14 15:17:40 -0300 | [diff] [blame] | 4832 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
| 4833 | M: Mauro Carvalho Chehab <mchehab@kernel.org> |
Mauro Carvalho Chehab | 3c9c92b | 2010-09-22 09:36:54 -0300 | [diff] [blame] | 4834 | L: linux-edac@vger.kernel.org |
Mauro Carvalho Chehab | 3c9c92b | 2010-09-22 09:36:54 -0300 | [diff] [blame] | 4835 | S: Maintained |
| 4836 | F: drivers/edac/i7300_edac.c |
| 4837 | |
Mauro Carvalho Chehab | 67c8931 | 2010-06-30 01:45:28 -0300 | [diff] [blame] | 4838 | EDAC-I7CORE |
Mauro Carvalho Chehab | 5dc8a86 | 2016-06-14 15:17:40 -0300 | [diff] [blame] | 4839 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
| 4840 | M: Mauro Carvalho Chehab <mchehab@kernel.org> |
Mauro Carvalho Chehab | 67c8931 | 2010-06-30 01:45:28 -0300 | [diff] [blame] | 4841 | L: linux-edac@vger.kernel.org |
Mauro Carvalho Chehab | 67c8931 | 2010-06-30 01:45:28 -0300 | [diff] [blame] | 4842 | S: Maintained |
Joe Perches | 70aff0c | 2010-07-12 17:45:49 -0300 | [diff] [blame] | 4843 | F: drivers/edac/i7core_edac.c |
Mauro Carvalho Chehab | 67c8931 | 2010-06-30 01:45:28 -0300 | [diff] [blame] | 4844 | |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 4845 | EDAC-I82975X |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4846 | M: Ranganathan Desikan <ravi@jetztechnologies.com> |
Arvind R | 2552788 | 2011-01-21 23:13:37 +0530 | [diff] [blame] | 4847 | M: "Arvind R." <arvino55@gmail.com> |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 4848 | L: linux-edac@vger.kernel.org |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 4849 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4850 | F: drivers/edac/i82975x_edac.c |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 4851 | |
Jason Baron | 791b470 | 2014-07-09 21:13:11 +0000 | [diff] [blame] | 4852 | EDAC-IE31200 |
| 4853 | M: Jason Baron <jbaron@akamai.com> |
| 4854 | L: linux-edac@vger.kernel.org |
Jason Baron | 791b470 | 2014-07-09 21:13:11 +0000 | [diff] [blame] | 4855 | S: Maintained |
| 4856 | F: drivers/edac/ie31200_edac.c |
| 4857 | |
Johannes Thumshirn | ccdfb97 | 2013-11-17 19:25:12 +0100 | [diff] [blame] | 4858 | EDAC-MPC85XX |
Johannes Thumshirn | 30c7469 | 2015-05-07 10:21:24 +0200 | [diff] [blame] | 4859 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
Johannes Thumshirn | ccdfb97 | 2013-11-17 19:25:12 +0100 | [diff] [blame] | 4860 | L: linux-edac@vger.kernel.org |
Johannes Thumshirn | ccdfb97 | 2013-11-17 19:25:12 +0100 | [diff] [blame] | 4861 | S: Maintained |
| 4862 | F: drivers/edac/mpc85xx_edac.[ch] |
| 4863 | |
Tony Luck | 5c71ad1 | 2017-03-09 01:45:39 +0800 | [diff] [blame] | 4864 | EDAC-PND2 |
| 4865 | M: Tony Luck <tony.luck@intel.com> |
| 4866 | L: linux-edac@vger.kernel.org |
| 4867 | S: Maintained |
| 4868 | F: drivers/edac/pnd2_edac.[ch] |
| 4869 | |
Douglas Thompson | ba9a591 | 2007-07-19 01:50:32 -0700 | [diff] [blame] | 4870 | EDAC-PASEMI |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4871 | M: Egor Martovetsky <egor@pasemi.com> |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 4872 | L: linux-edac@vger.kernel.org |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 4873 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4874 | F: drivers/edac/pasemi_edac.c |
Douglas Thompson | 6bc7840 | 2007-07-19 01:50:12 -0700 | [diff] [blame] | 4875 | |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 4876 | EDAC-R82600 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4877 | M: Tim Small <tim@buttersideup.com> |
Chris Metcalf | 91445c7 | 2012-03-31 09:46:03 -0400 | [diff] [blame] | 4878 | L: linux-edac@vger.kernel.org |
Dave Peterson | 0e438e3 | 2006-03-26 01:38:55 -0800 | [diff] [blame] | 4879 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4880 | F: drivers/edac/r82600_edac.c |
Alan Cox | da9bb1d | 2006-01-18 17:44:13 -0800 | [diff] [blame] | 4881 | |
Mauro Carvalho Chehab | 4d096ca | 2011-11-01 10:03:24 -0200 | [diff] [blame] | 4882 | EDAC-SBRIDGE |
Mauro Carvalho Chehab | 5dc8a86 | 2016-06-14 15:17:40 -0300 | [diff] [blame] | 4883 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
| 4884 | M: Mauro Carvalho Chehab <mchehab@kernel.org> |
Mauro Carvalho Chehab | 4d096ca | 2011-11-01 10:03:24 -0200 | [diff] [blame] | 4885 | L: linux-edac@vger.kernel.org |
Mauro Carvalho Chehab | 4d096ca | 2011-11-01 10:03:24 -0200 | [diff] [blame] | 4886 | S: Maintained |
| 4887 | F: drivers/edac/sb_edac.c |
| 4888 | |
Tony Luck | 4ec656b | 2016-08-20 16:27:58 -0700 | [diff] [blame] | 4889 | EDAC-SKYLAKE |
| 4890 | M: Tony Luck <tony.luck@intel.com> |
| 4891 | L: linux-edac@vger.kernel.org |
| 4892 | S: Maintained |
| 4893 | F: drivers/edac/skx_edac.c |
| 4894 | |
Loc Ho | 995e1de | 2015-05-22 17:32:57 -0600 | [diff] [blame] | 4895 | EDAC-XGENE |
| 4896 | APPLIED MICRO (APM) X-GENE SOC EDAC |
| 4897 | M: Loc Ho <lho@apm.com> |
| 4898 | S: Supported |
| 4899 | F: drivers/edac/xgene_edac.c |
| 4900 | F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt |
| 4901 | |
Clemens Ladisch | af39917 | 2011-01-10 16:32:54 +0100 | [diff] [blame] | 4902 | EDIROL UA-101/UA-1000 DRIVER |
| 4903 | M: Clemens Ladisch <clemens@ladisch.de> |
| 4904 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 4905 | T: git git://git.alsa-project.org/alsa-kernel.git |
| 4906 | S: Maintained |
| 4907 | F: sound/usb/misc/ua101.c |
| 4908 | |
Matt Fleming | 1f7df95 | 2012-10-03 10:04:02 +0100 | [diff] [blame] | 4909 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
Matt Fleming | 825fcfc | 2015-10-10 17:22:16 +0100 | [diff] [blame] | 4910 | M: Matt Fleming <matt@codeblueprint.co.uk> |
Ard Biesheuvel | 6026ed2 | 2016-10-18 15:33:11 +0100 | [diff] [blame] | 4911 | M: Ard Biesheuvel <ard.biesheuvel@linaro.org> |
Matt Fleming | 1f7df95 | 2012-10-03 10:04:02 +0100 | [diff] [blame] | 4912 | L: linux-efi@vger.kernel.org |
Ard Biesheuvel | 6026ed2 | 2016-10-18 15:33:11 +0100 | [diff] [blame] | 4913 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git |
Matt Fleming | 1f7df95 | 2012-10-03 10:04:02 +0100 | [diff] [blame] | 4914 | S: Maintained |
Joe Perches | fb2efb5 | 2014-08-08 14:25:01 -0700 | [diff] [blame] | 4915 | F: Documentation/efi-stub.txt |
Ard Biesheuvel | f135a17 | 2016-11-12 21:32:30 +0000 | [diff] [blame] | 4916 | F: arch/*/kernel/efi.c |
Matt Fleming | 1f7df95 | 2012-10-03 10:04:02 +0100 | [diff] [blame] | 4917 | F: arch/x86/boot/compressed/eboot.[ch] |
Ard Biesheuvel | f135a17 | 2016-11-12 21:32:30 +0000 | [diff] [blame] | 4918 | F: arch/*/include/asm/efi.h |
Matt Fleming | e8dfe6d | 2016-05-03 20:29:39 +0100 | [diff] [blame] | 4919 | F: arch/x86/platform/efi/ |
| 4920 | F: drivers/firmware/efi/ |
Matt Fleming | 1f7df95 | 2012-10-03 10:04:02 +0100 | [diff] [blame] | 4921 | F: include/linux/efi*.h |
Ard Biesheuvel | f135a17 | 2016-11-12 21:32:30 +0000 | [diff] [blame] | 4922 | F: arch/arm/boot/compressed/efi-header.S |
| 4923 | F: arch/arm64/kernel/efi-entry.S |
Matt Fleming | 1f7df95 | 2012-10-03 10:04:02 +0100 | [diff] [blame] | 4924 | |
Matt Fleming | d68772b | 2013-02-08 16:27:24 +0000 | [diff] [blame] | 4925 | EFI VARIABLE FILESYSTEM |
| 4926 | M: Matthew Garrett <matthew.garrett@nebula.com> |
| 4927 | M: Jeremy Kerr <jk@ozlabs.org> |
Matt Fleming | 825fcfc | 2015-10-10 17:22:16 +0100 | [diff] [blame] | 4928 | M: Matt Fleming <matt@codeblueprint.co.uk> |
Matt Fleming | d68772b | 2013-02-08 16:27:24 +0000 | [diff] [blame] | 4929 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
| 4930 | L: linux-efi@vger.kernel.org |
| 4931 | S: Maintained |
| 4932 | F: fs/efivarfs/ |
| 4933 | |
Peter Jones | 85a00d9 | 2010-09-22 13:05:04 -0700 | [diff] [blame] | 4934 | EFIFB FRAMEBUFFER DRIVER |
| 4935 | L: linux-fbdev@vger.kernel.org |
| 4936 | M: Peter Jones <pjones@redhat.com> |
| 4937 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 4938 | F: drivers/video/fbdev/efifb.c |
Peter Jones | 85a00d9 | 2010-09-22 13:05:04 -0700 | [diff] [blame] | 4939 | |
Ivan Hu | ff6301d | 2016-08-25 11:15:31 +0800 | [diff] [blame] | 4940 | EFI TEST DRIVER |
| 4941 | L: linux-efi@vger.kernel.org |
| 4942 | M: Ivan Hu <ivan.hu@canonical.com> |
| 4943 | M: Matt Fleming <matt@codeblueprint.co.uk> |
| 4944 | S: Maintained |
| 4945 | F: drivers/firmware/efi/test/ |
| 4946 | |
Josh Triplett | 0bee8d2 | 2006-07-30 03:03:58 -0700 | [diff] [blame] | 4947 | EFS FILESYSTEM |
| 4948 | W: http://aeschi.ch.eu.org/efs/ |
| 4949 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4950 | F: fs/efs/ |
Josh Triplett | 0bee8d2 | 2006-07-30 03:03:58 -0700 | [diff] [blame] | 4951 | |
Breno Leitao | aa8a9e2 | 2010-09-01 13:10:53 -0700 | [diff] [blame] | 4952 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
Douglas Miller | 97b0419 | 2016-07-18 12:28:45 -0500 | [diff] [blame] | 4953 | M: Douglas Miller <dougmill@linux.vnet.ibm.com> |
Breno Leitao | aa8a9e2 | 2010-09-01 13:10:53 -0700 | [diff] [blame] | 4954 | L: netdev@vger.kernel.org |
| 4955 | S: Maintained |
Jeff Kirsher | 9aa3283 | 2011-05-13 14:29:12 -0700 | [diff] [blame] | 4956 | F: drivers/net/ethernet/ibm/ehea/ |
Breno Leitao | aa8a9e2 | 2010-09-01 13:10:53 -0700 | [diff] [blame] | 4957 | |
Mauro Carvalho Chehab | f0319ef | 2012-11-02 11:38:23 -0200 | [diff] [blame] | 4958 | EM28XX VIDEO4LINUX DRIVER |
Mauro Carvalho Chehab | 5dc8a86 | 2016-06-14 15:17:40 -0300 | [diff] [blame] | 4959 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
| 4960 | M: Mauro Carvalho Chehab <mchehab@kernel.org> |
Mauro Carvalho Chehab | f0319ef | 2012-11-02 11:38:23 -0200 | [diff] [blame] | 4961 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 4962 | W: https://linuxtv.org |
Mauro Carvalho Chehab | f0319ef | 2012-11-02 11:38:23 -0200 | [diff] [blame] | 4963 | T: git git://linuxtv.org/media_tree.git |
| 4964 | S: Maintained |
| 4965 | F: drivers/media/usb/em28xx/ |
Mauro Carvalho Chehab | 618cd93 | 2016-09-12 12:48:54 -0300 | [diff] [blame] | 4966 | F: Documentation/media/v4l-drivers/em28xx* |
Mauro Carvalho Chehab | f0319ef | 2012-11-02 11:38:23 -0200 | [diff] [blame] | 4967 | |
David Woodhouse | 3e3a7d6 | 2008-05-01 04:34:46 -0700 | [diff] [blame] | 4968 | EMBEDDED LINUX |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4969 | M: Paul Gortmaker <paul.gortmaker@windriver.com> |
| 4970 | M: Matt Mackall <mpm@selenic.com> |
| 4971 | M: David Woodhouse <dwmw2@infradead.org> |
David Woodhouse | 3e3a7d6 | 2008-05-01 04:34:46 -0700 | [diff] [blame] | 4972 | L: linux-embedded@vger.kernel.org |
| 4973 | S: Maintained |
| 4974 | |
James Smart | b8aca0c | 2016-10-24 09:05:06 -0700 | [diff] [blame] | 4975 | EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER |
| 4976 | M: James Smart <james.smart@broadcom.com> |
| 4977 | M: Dick Kennedy <dick.kennedy@broadcom.com> |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4978 | L: linux-scsi@vger.kernel.org |
James Smart | b8aca0c | 2016-10-24 09:05:06 -0700 | [diff] [blame] | 4979 | W: http://www.broadcom.com |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 4980 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 4981 | F: drivers/scsi/lpfc/ |
James.Smart@Emulex.Com | 3a1c1d4 | 2005-08-11 13:42:35 -0400 | [diff] [blame] | 4982 | |
Michał Mirosław | 5f5bac8 | 2009-05-22 20:33:59 +0200 | [diff] [blame] | 4983 | ENE CB710 FLASH CARD READER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4984 | M: Michał Mirosław <mirq-linux@rere.qmqm.pl> |
Michał Mirosław | 5f5bac8 | 2009-05-22 20:33:59 +0200 | [diff] [blame] | 4985 | S: Maintained |
| 4986 | F: drivers/misc/cb710/ |
| 4987 | F: drivers/mmc/host/cb710-mmc.* |
| 4988 | F: include/linux/cb710.h |
| 4989 | |
Maxim Levitsky | 931e39a | 2010-07-31 11:59:26 -0300 | [diff] [blame] | 4990 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
| 4991 | M: Maxim Levitsky <maximlevitsky@gmail.com> |
| 4992 | S: Maintained |
Joe Perches | 2a83744 | 2011-03-22 16:34:32 -0700 | [diff] [blame] | 4993 | F: drivers/media/rc/ene_ir.* |
Maxim Levitsky | 931e39a | 2010-07-31 11:59:26 -0300 | [diff] [blame] | 4994 | |
Kristoffer Ericson | d5ca900 | 2008-10-15 22:03:54 -0700 | [diff] [blame] | 4995 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 4996 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
Kristoffer Ericson | d5ca900 | 2008-10-15 22:03:54 -0700 | [diff] [blame] | 4997 | S: Maintained |
Kristoffer Ericson | 084bad9 | 2009-07-29 15:04:32 -0700 | [diff] [blame] | 4998 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 4999 | F: drivers/video/fbdev/s1d13xxxfb.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5000 | F: include/video/s1d13xxxfb.h |
Kristoffer Ericson | d5ca900 | 2008-10-15 22:03:54 -0700 | [diff] [blame] | 5001 | |
Mark Einon | 38df649 | 2014-09-30 22:29:46 +0100 | [diff] [blame] | 5002 | ET131X NETWORK DRIVER |
| 5003 | M: Mark Einon <mark.einon@gmail.com> |
| 5004 | S: Odd Fixes |
| 5005 | F: drivers/net/ethernet/agere/ |
| 5006 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5007 | ETHERNET BRIDGE |
Stephen Hemminger | adbbf69 | 2013-01-16 09:55:57 -0800 | [diff] [blame] | 5008 | M: Stephen Hemminger <stephen@networkplumber.org> |
stephen hemminger | 3430284 | 2016-04-05 13:43:53 -0700 | [diff] [blame] | 5009 | L: bridge@lists.linux-foundation.org (moderated for non-subscribers) |
David S. Miller | 4c32531 | 2010-03-04 00:42:30 -0800 | [diff] [blame] | 5010 | L: netdev@vger.kernel.org |
Michael Witten | c996d8b | 2010-11-15 19:55:34 +0000 | [diff] [blame] | 5011 | W: http://www.linuxfoundation.org/en/Net:Bridge |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5012 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5013 | F: include/linux/netfilter_bridge/ |
| 5014 | F: net/bridge/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5015 | |
Florian Fainelli | 22f08ad | 2014-02-18 09:47:49 -0800 | [diff] [blame] | 5016 | ETHERNET PHY LIBRARY |
Florian Fainelli | 248ccd5 | 2017-03-27 10:48:11 -0700 | [diff] [blame] | 5017 | M: Andrew Lunn <andrew@lunn.ch> |
Florian Fainelli | 22f08ad | 2014-02-18 09:47:49 -0800 | [diff] [blame] | 5018 | M: Florian Fainelli <f.fainelli@gmail.com> |
| 5019 | L: netdev@vger.kernel.org |
| 5020 | S: Maintained |
| 5021 | F: include/linux/phy.h |
| 5022 | F: include/linux/phy_fixed.h |
| 5023 | F: drivers/net/phy/ |
| 5024 | F: Documentation/networking/phy.txt |
| 5025 | F: drivers/of/of_mdio.c |
| 5026 | F: drivers/of/of_net.c |
| 5027 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5028 | EXT2 FILE SYSTEM |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 5029 | M: Jan Kara <jack@suse.com> |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 5030 | L: linux-ext4@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5031 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5032 | F: Documentation/filesystems/ext2.txt |
| 5033 | F: fs/ext2/ |
| 5034 | F: include/linux/ext2* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5035 | |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 5036 | EXT4 FILE SYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5037 | M: "Theodore Ts'o" <tytso@mit.edu> |
Andreas Dilger | 3c373a5 | 2010-07-19 14:55:38 +0200 | [diff] [blame] | 5038 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
Erik Mouw | 72be2cc | 2006-12-06 20:40:49 -0800 | [diff] [blame] | 5039 | L: linux-ext4@vger.kernel.org |
Theodore Ts'o | 08a225f | 2008-10-06 20:58:09 -0400 | [diff] [blame] | 5040 | W: http://ext4.wiki.kernel.org |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 5041 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 5042 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5043 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5044 | F: Documentation/filesystems/ext4.txt |
| 5045 | F: fs/ext4/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5046 | |
Mimi Zohar | c5532b0 | 2011-08-17 18:52:24 -0400 | [diff] [blame] | 5047 | Extended Verification Module (EVM) |
Mimi Zohar | 74dd744 | 2014-02-27 08:44:45 -0500 | [diff] [blame] | 5048 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
| 5049 | L: linux-ima-devel@lists.sourceforge.net |
| 5050 | L: linux-security-module@vger.kernel.org |
Mimi Zohar | c5532b0 | 2011-08-17 18:52:24 -0400 | [diff] [blame] | 5051 | S: Supported |
| 5052 | F: security/integrity/evm/ |
| 5053 | |
MyungJoo Ham | df6b3cf | 2012-06-25 16:33:36 +0900 | [diff] [blame] | 5054 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
| 5055 | M: MyungJoo Ham <myungjoo.ham@samsung.com> |
| 5056 | M: Chanwoo Choi <cw00.choi@samsung.com> |
| 5057 | L: linux-kernel@vger.kernel.org |
Chanwoo Choi | 81df63a | 2013-09-28 15:04:37 +0900 | [diff] [blame] | 5058 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git |
MyungJoo Ham | df6b3cf | 2012-06-25 16:33:36 +0900 | [diff] [blame] | 5059 | S: Maintained |
| 5060 | F: drivers/extcon/ |
Chanwoo Choi | cd2c3e7 | 2015-11-06 16:30:55 -0800 | [diff] [blame] | 5061 | F: include/linux/extcon/ |
| 5062 | F: include/linux/extcon.h |
MyungJoo Ham | df6b3cf | 2012-06-25 16:33:36 +0900 | [diff] [blame] | 5063 | F: Documentation/extcon/ |
Chanwoo Choi | cd2c3e7 | 2015-11-06 16:30:55 -0800 | [diff] [blame] | 5064 | F: Documentation/devicetree/bindings/extcon/ |
MyungJoo Ham | df6b3cf | 2012-06-25 16:33:36 +0900 | [diff] [blame] | 5065 | |
Jingoo Han | e2a75c4 | 2014-04-10 20:24:03 +0900 | [diff] [blame] | 5066 | EXYNOS DP DRIVER |
Jingoo Han | b770175 | 2015-05-14 15:17:07 -0700 | [diff] [blame] | 5067 | M: Jingoo Han <jingoohan1@gmail.com> |
Jingoo Han | e2a75c4 | 2014-04-10 20:24:03 +0900 | [diff] [blame] | 5068 | L: dri-devel@lists.freedesktop.org |
| 5069 | S: Maintained |
| 5070 | F: drivers/gpu/drm/exynos/exynos_dp* |
| 5071 | |
Marek Szyprowski | 9b93a40 | 2016-02-18 15:12:59 +0100 | [diff] [blame] | 5072 | EXYNOS SYSMMU (IOMMU) driver |
| 5073 | M: Marek Szyprowski <m.szyprowski@samsung.com> |
| 5074 | L: iommu@lists.linux-foundation.org |
| 5075 | S: Maintained |
| 5076 | F: drivers/iommu/exynos-iommu.c |
| 5077 | |
Noam Camus | 4a66d3f | 2012-08-19 11:54:33 +0300 | [diff] [blame] | 5078 | EZchip NPS platform support |
| 5079 | M: Noam Camus <noamc@ezchip.com> |
| 5080 | S: Supported |
| 5081 | F: arch/arc/plat-eznps |
| 5082 | F: arch/arc/boot/dts/eznps.dts |
| 5083 | |
Jean Delvare | e53004e | 2006-01-09 23:26:14 +0100 | [diff] [blame] | 5084 | F71805F HARDWARE MONITORING DRIVER |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 5085 | M: Jean Delvare <jdelvare@suse.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 5086 | L: linux-hwmon@vger.kernel.org |
Jean Delvare | e53004e | 2006-01-09 23:26:14 +0100 | [diff] [blame] | 5087 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5088 | F: Documentation/hwmon/f71805f |
| 5089 | F: drivers/hwmon/f71805f.c |
Jean Delvare | e53004e | 2006-01-09 23:26:14 +0100 | [diff] [blame] | 5090 | |
Michael Büsch | eea977e | 2012-04-02 12:14:32 -0300 | [diff] [blame] | 5091 | FC0011 TUNER DRIVER |
| 5092 | M: Michael Buesch <m@bues.ch> |
| 5093 | L: linux-media@vger.kernel.org |
| 5094 | S: Maintained |
Mauro Carvalho Chehab | ccae7af | 2012-06-14 16:35:59 -0300 | [diff] [blame] | 5095 | F: drivers/media/tuners/fc0011.h |
| 5096 | F: drivers/media/tuners/fc0011.c |
Michael Büsch | eea977e | 2012-04-02 12:14:32 -0300 | [diff] [blame] | 5097 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 5098 | FC2580 MEDIA DRIVER |
| 5099 | M: Antti Palosaari <crope@iki.fi> |
| 5100 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 5101 | W: https://linuxtv.org |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 5102 | W: http://palosaari.fi/linux/ |
| 5103 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 5104 | T: git git://linuxtv.org/anttip/media_tree.git |
| 5105 | S: Maintained |
| 5106 | F: drivers/media/tuners/fc2580* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5107 | |
Eric Paris | 88b2dbd | 2010-08-18 12:25:50 -0400 | [diff] [blame] | 5108 | FANOTIFY |
| 5109 | M: Eric Paris <eparis@redhat.com> |
| 5110 | S: Maintained |
| 5111 | F: fs/notify/fanotify/ |
| 5112 | F: include/linux/fanotify.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5113 | F: include/uapi/linux/fanotify.h |
Eric Paris | 88b2dbd | 2010-08-18 12:25:50 -0400 | [diff] [blame] | 5114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5115 | FARSYNC SYNCHRONOUS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5116 | M: Kevin Curtis <kevin.curtis@farsite.co.uk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5117 | W: http://www.farsite.co.uk/ |
| 5118 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5119 | F: drivers/net/wan/farsync.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5120 | |
Akinobu Mita | c5408b8 | 2007-04-23 14:41:20 -0700 | [diff] [blame] | 5121 | FAULT INJECTION SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5122 | M: Akinobu Mita <akinobu.mita@gmail.com> |
Akinobu Mita | c5408b8 | 2007-04-23 14:41:20 -0700 | [diff] [blame] | 5123 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5124 | F: Documentation/fault-injection/ |
| 5125 | F: lib/fault-inject.c |
Akinobu Mita | c5408b8 | 2007-04-23 14:41:20 -0700 | [diff] [blame] | 5126 | |
Noralf Trønnes | 053e514 | 2015-01-23 19:29:07 +0100 | [diff] [blame] | 5127 | FBTFT Framebuffer drivers |
| 5128 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> |
Noralf Trønnes | 053e514 | 2015-01-23 19:29:07 +0100 | [diff] [blame] | 5129 | S: Maintained |
| 5130 | F: drivers/staging/fbtft/ |
| 5131 | |
Robert Love | cae727d | 2010-02-16 12:16:00 -0800 | [diff] [blame] | 5132 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
Johannes Thumshirn | 49a7581 | 2016-06-23 10:22:28 +0200 | [diff] [blame] | 5133 | M: Johannes Thumshirn <jth@kernel.org> |
Neil Horman | f4aaea6 | 2013-05-03 19:38:10 +0000 | [diff] [blame] | 5134 | L: fcoe-devel@open-fcoe.org |
Robert Love | cae727d | 2010-02-16 12:16:00 -0800 | [diff] [blame] | 5135 | W: www.Open-FCoE.org |
| 5136 | S: Supported |
| 5137 | F: drivers/scsi/libfc/ |
| 5138 | F: drivers/scsi/fcoe/ |
| 5139 | F: include/scsi/fc/ |
| 5140 | F: include/scsi/libfc.h |
| 5141 | F: include/scsi/libfcoe.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5142 | F: include/uapi/scsi/fc/ |
Robert Love | cae727d | 2010-02-16 12:16:00 -0800 | [diff] [blame] | 5143 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5144 | FILE LOCKING (flock() and fcntl()/lockf()) |
Jeff Layton | 8c836fa | 2014-04-30 13:28:17 -0400 | [diff] [blame] | 5145 | M: Jeff Layton <jlayton@poochiereds.net> |
Joe Perches | 9c3646d | 2015-06-25 15:02:00 -0700 | [diff] [blame] | 5146 | M: "J. Bruce Fields" <bfields@fieldses.org> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5147 | L: linux-fsdevel@vger.kernel.org |
| 5148 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5149 | F: include/linux/fcntl.h |
| 5150 | F: include/linux/fs.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5151 | F: include/uapi/linux/fcntl.h |
| 5152 | F: include/uapi/linux/fs.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5153 | F: fs/fcntl.c |
| 5154 | F: fs/locks.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5155 | |
| 5156 | FILESYSTEMS (VFS and infrastructure) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5157 | M: Alexander Viro <viro@zeniv.linux.org.uk> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5158 | L: linux-fsdevel@vger.kernel.org |
| 5159 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5160 | F: fs/* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5161 | |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 5162 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
Jean Delvare | 05576a1 | 2009-10-09 20:35:19 +0200 | [diff] [blame] | 5163 | M: Riku Voipio <riku.voipio@iki.fi> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 5164 | L: linux-hwmon@vger.kernel.org |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 5165 | S: Maintained |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 5166 | F: drivers/hwmon/f75375s.c |
| 5167 | F: include/linux/f75375s.h |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 5168 | |
Clemens Ladisch | a331b0c | 2011-05-25 09:48:48 +0200 | [diff] [blame] | 5169 | FIREWIRE AUDIO DRIVERS |
| 5170 | M: Clemens Ladisch <clemens@ladisch.de> |
| 5171 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 5172 | T: git git://git.alsa-project.org/alsa-kernel.git |
| 5173 | S: Maintained |
| 5174 | F: sound/firewire/ |
| 5175 | |
Stefan Richter | eb86ec5 | 2012-11-03 09:25:20 +0100 | [diff] [blame] | 5176 | FIREWIRE MEDIA DRIVERS (firedtv) |
| 5177 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
| 5178 | L: linux-media@vger.kernel.org |
| 5179 | L: linux1394-devel@lists.sourceforge.net |
| 5180 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git |
| 5181 | S: Maintained |
| 5182 | F: drivers/media/firewire/ |
| 5183 | |
Chris Boot | a511ce3 | 2012-04-14 17:50:35 -0700 | [diff] [blame] | 5184 | FIREWIRE SBP-2 TARGET |
| 5185 | M: Chris Boot <bootc@bootc.net> |
| 5186 | L: linux-scsi@vger.kernel.org |
| 5187 | L: target-devel@vger.kernel.org |
| 5188 | L: linux1394-devel@lists.sourceforge.net |
| 5189 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master |
| 5190 | S: Maintained |
| 5191 | F: drivers/target/sbp/ |
| 5192 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 5193 | FIREWIRE SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5194 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5195 | L: linux1394-devel@lists.sourceforge.net |
Stefan Richter | 958a29c | 2009-12-26 01:36:12 +0100 | [diff] [blame] | 5196 | W: http://ieee1394.wiki.kernel.org/ |
Stefan Richter | 2ca526b | 2011-12-20 21:23:28 +0100 | [diff] [blame] | 5197 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5198 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5199 | F: drivers/firewire/ |
Stefan Richter | 8f06ce3 | 2012-12-17 16:00:07 -0800 | [diff] [blame] | 5200 | F: include/linux/firewire.h |
| 5201 | F: include/uapi/linux/firewire*.h |
Stefan Richter | 9f6d3c4 | 2010-07-22 11:58:05 +0200 | [diff] [blame] | 5202 | F: tools/firewire/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5203 | |
| 5204 | FIRMWARE LOADER (request_firmware) |
Luis R. Rodriguez | e760423 | 2016-09-06 17:42:06 -0700 | [diff] [blame] | 5205 | M: Luis R. Rodriguez <mcgrof@kernel.org> |
Ming Lei | 39e6808 | 2012-08-20 19:04:17 +0800 | [diff] [blame] | 5206 | L: linux-kernel@vger.kernel.org |
| 5207 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5208 | F: Documentation/firmware_class/ |
| 5209 | F: drivers/base/firmware*.c |
| 5210 | F: include/linux/firmware.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5211 | |
Philip J Kelleher | f730e3d | 2013-06-18 14:43:58 -0500 | [diff] [blame] | 5212 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
Philip J Kelleher | 9bb3c44 | 2013-02-27 09:24:59 -0600 | [diff] [blame] | 5213 | M: Joshua Morris <josh.h.morris@us.ibm.com> |
| 5214 | M: Philip Kelleher <pjk1939@linux.vnet.ibm.com> |
| 5215 | S: Maintained |
| 5216 | F: drivers/block/rsxx/ |
| 5217 | |
Jiri Kosina | 8206f66 | 2012-05-18 13:52:29 +0200 | [diff] [blame] | 5218 | FLOPPY DRIVER |
Jiri Kosina | e5f6450 | 2015-08-09 09:11:34 +0200 | [diff] [blame] | 5219 | M: Jiri Kosina <jikos@kernel.org> |
Jiri Kosina | 8206f66 | 2012-05-18 13:52:29 +0200 | [diff] [blame] | 5220 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git |
| 5221 | S: Odd fixes |
| 5222 | F: drivers/block/floppy.c |
| 5223 | |
Alessandro Rubini | 9c9f32e | 2013-06-12 09:13:25 +0200 | [diff] [blame] | 5224 | FMC SUBSYSTEM |
| 5225 | M: Alessandro Rubini <rubini@gnudd.com> |
| 5226 | W: http://www.ohwr.org/projects/fmc-bus |
| 5227 | S: Supported |
| 5228 | F: drivers/fmc/ |
| 5229 | F: include/linux/fmc*.h |
| 5230 | F: include/linux/ipmi-fru.h |
| 5231 | K: fmc_d.*register |
| 5232 | |
Alan Tull | 3c0ed7d | 2015-10-07 20:49:23 +0100 | [diff] [blame] | 5233 | FPGA MANAGER FRAMEWORK |
Alan Tull | deb0b9b | 2017-03-30 13:23:12 -0500 | [diff] [blame] | 5234 | M: Alan Tull <atull@kernel.org> |
Moritz Fischer | dd7d664 | 2015-11-20 15:56:51 -0800 | [diff] [blame] | 5235 | R: Moritz Fischer <moritz.fischer@ettus.com> |
Moritz Fischer | 7f1a5f0 | 2016-11-21 13:49:01 -0800 | [diff] [blame] | 5236 | L: linux-fpga@vger.kernel.org |
Alan Tull | 3c0ed7d | 2015-10-07 20:49:23 +0100 | [diff] [blame] | 5237 | S: Maintained |
Alan Tull | e499807 | 2016-11-29 15:15:45 -0600 | [diff] [blame] | 5238 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/atull/linux-fpga.git |
Alan Tull | deb0b9b | 2017-03-30 13:23:12 -0500 | [diff] [blame] | 5239 | F: Documentation/fpga/ |
Geert Uytterhoeven | 83ff2d5 | 2017-03-23 19:34:31 -0500 | [diff] [blame] | 5240 | F: Documentation/devicetree/bindings/fpga/ |
Alan Tull | 3c0ed7d | 2015-10-07 20:49:23 +0100 | [diff] [blame] | 5241 | F: drivers/fpga/ |
Alan Tull | deb0b9b | 2017-03-30 13:23:12 -0500 | [diff] [blame] | 5242 | F: include/linux/fpga/ |
Alan Tull | 3c0ed7d | 2015-10-07 20:49:23 +0100 | [diff] [blame] | 5243 | W: http://www.rocketboards.org |
| 5244 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5245 | FPU EMULATOR |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5246 | M: Bill Metzenthen <billm@melbpc.org.au> |
Joe Perches | e769980 | 2009-04-07 21:12:18 -0700 | [diff] [blame] | 5247 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5248 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5249 | F: arch/x86/math-emu/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5250 | |
| 5251 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5252 | L: netdev@vger.kernel.org |
Joe Perches | c173bfa | 2011-07-28 10:54:23 +0000 | [diff] [blame] | 5253 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5254 | F: drivers/net/wan/dlci.c |
| 5255 | F: drivers/net/wan/sdla.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5256 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5257 | FRAMEBUFFER LAYER |
Bartlomiej Zolnierkiewicz | 04f6152 | 2017-01-04 12:58:44 +0100 | [diff] [blame] | 5258 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 5259 | L: linux-fbdev@vger.kernel.org |
Bartlomiej Zolnierkiewicz | 04f6152 | 2017-01-04 12:58:44 +0100 | [diff] [blame] | 5260 | T: git git://github.com/bzolnier/linux.git |
Paul Mundt | b22fe37 | 2010-11-17 13:08:58 +0900 | [diff] [blame] | 5261 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
Bartlomiej Zolnierkiewicz | 04f6152 | 2017-01-04 12:58:44 +0100 | [diff] [blame] | 5262 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5263 | F: Documentation/fb/ |
Paul Mundt | b22fe37 | 2010-11-17 13:08:58 +0900 | [diff] [blame] | 5264 | F: drivers/video/ |
| 5265 | F: include/video/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5266 | F: include/linux/fb.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5267 | F: include/uapi/video/ |
| 5268 | F: include/uapi/linux/fb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5269 | |
Horia Geantă | 93aafb6 | 2016-11-22 15:44:12 +0200 | [diff] [blame] | 5270 | FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER |
| 5271 | M: Horia Geantă <horia.geanta@nxp.com> |
| 5272 | M: Dan Douglass <dan.douglass@nxp.com> |
| 5273 | L: linux-crypto@vger.kernel.org |
| 5274 | S: Maintained |
| 5275 | F: drivers/crypto/caam/ |
| 5276 | F: Documentation/devicetree/bindings/crypto/fsl-sec4.txt |
| 5277 | |
Timur Tabi | a57c188 | 2012-10-16 17:33:42 -0500 | [diff] [blame] | 5278 | FREESCALE DIU FRAMEBUFFER DRIVER |
Timur Tabi | c4ef9bc | 2013-01-15 14:19:45 -0600 | [diff] [blame] | 5279 | M: Timur Tabi <timur@tabi.org> |
Timur Tabi | a57c188 | 2012-10-16 17:33:42 -0500 | [diff] [blame] | 5280 | L: linux-fbdev@vger.kernel.org |
Timur Tabi | c4ef9bc | 2013-01-15 14:19:45 -0600 | [diff] [blame] | 5281 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 5282 | F: drivers/video/fbdev/fsl-diu-fb.* |
Timur Tabi | a57c188 | 2012-10-16 17:33:42 -0500 | [diff] [blame] | 5283 | |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 5284 | FREESCALE DMA DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5285 | M: Li Yang <leoli@freescale.com> |
| 5286 | M: Zhang Wei <zw@zh-kernel.org> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 5287 | L: linuxppc-dev@lists.ozlabs.org |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 5288 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5289 | F: drivers/dma/fsldma.* |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 5290 | |
Han Xu | 44248af | 2016-02-18 03:55:15 +0000 | [diff] [blame] | 5291 | FREESCALE GPMI NAND DRIVER |
| 5292 | M: Han Xu <han.xu@nxp.com> |
| 5293 | L: linux-mtd@lists.infradead.org |
| 5294 | S: Maintained |
| 5295 | F: drivers/mtd/nand/gpmi-nand/* |
| 5296 | |
Jochen Friedrich | 0d2b405 | 2008-07-14 22:38:28 +0200 | [diff] [blame] | 5297 | FREESCALE I2C CPM DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5298 | M: Jochen Friedrich <jochen@scram.de> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 5299 | L: linuxppc-dev@lists.ozlabs.org |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 5300 | L: linux-i2c@vger.kernel.org |
Jochen Friedrich | 0d2b405 | 2008-07-14 22:38:28 +0200 | [diff] [blame] | 5301 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5302 | F: drivers/i2c/busses/i2c-cpm.c |
Jochen Friedrich | 0d2b405 | 2008-07-14 22:38:28 +0200 | [diff] [blame] | 5303 | |
Sascha Hauer | 60e8c5a | 2008-12-16 11:44:06 +0100 | [diff] [blame] | 5304 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5305 | M: Sascha Hauer <kernel@pengutronix.de> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 5306 | L: linux-fbdev@vger.kernel.org |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 5307 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Sascha Hauer | 60e8c5a | 2008-12-16 11:44:06 +0100 | [diff] [blame] | 5308 | S: Maintained |
Cesar Eduardo Barros | bad985a | 2013-01-04 15:35:28 -0800 | [diff] [blame] | 5309 | F: include/linux/platform_data/video-imxfb.h |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 5310 | F: drivers/video/fbdev/imxfb.c |
Sascha Hauer | 60e8c5a | 2008-12-16 11:44:06 +0100 | [diff] [blame] | 5311 | |
Han Xu | 4d8e2ce | 2015-01-16 03:29:17 +0800 | [diff] [blame] | 5312 | FREESCALE QUAD SPI DRIVER |
Han Xu | 38714fb | 2016-02-12 05:13:25 +0000 | [diff] [blame] | 5313 | M: Han Xu <han.xu@nxp.com> |
Han Xu | 4d8e2ce | 2015-01-16 03:29:17 +0800 | [diff] [blame] | 5314 | L: linux-mtd@lists.infradead.org |
| 5315 | S: Maintained |
| 5316 | F: drivers/mtd/spi-nor/fsl-quadspi.c |
| 5317 | |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 5318 | FREESCALE SOC FS_ENET DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5319 | M: Pantelis Antoniou <pantelis.antoniou@gmail.com> |
| 5320 | M: Vitaly Bordug <vbordug@ru.mvista.com> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 5321 | L: linuxppc-dev@lists.ozlabs.org |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 5322 | L: netdev@vger.kernel.org |
| 5323 | S: Maintained |
Jeff Kirsher | ec21e2e | 2011-06-11 02:29:36 -0700 | [diff] [blame] | 5324 | F: drivers/net/ethernet/freescale/fs_enet/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5325 | F: include/linux/fs_enet_pd.h |
Pantelis Antoniou | 4689a6b | 2005-10-30 01:21:53 +0300 | [diff] [blame] | 5326 | |
Nimrod Andy | 63a0a00b9 | 2016-03-02 17:24:53 +0800 | [diff] [blame] | 5327 | FREESCALE IMX / MXC FEC DRIVER |
| 5328 | M: Fugang Duan <fugang.duan@nxp.com> |
| 5329 | L: netdev@vger.kernel.org |
| 5330 | S: Maintained |
| 5331 | F: drivers/net/ethernet/freescale/fec_main.c |
| 5332 | F: drivers/net/ethernet/freescale/fec_ptp.c |
| 5333 | F: drivers/net/ethernet/freescale/fec.h |
| 5334 | F: Documentation/devicetree/bindings/net/fsl-fec.txt |
| 5335 | |
Madalin Bucur | 2fbfadb5 | 2016-07-19 11:10:37 +0300 | [diff] [blame] | 5336 | FREESCALE QORIQ DPAA FMAN DRIVER |
| 5337 | M: Madalin Bucur <madalin.bucur@nxp.com> |
| 5338 | L: netdev@vger.kernel.org |
| 5339 | S: Maintained |
| 5340 | F: drivers/net/ethernet/freescale/fman |
| 5341 | F: Documentation/devicetree/bindings/powerpc/fsl/fman.txt |
| 5342 | |
Madalin Bucur | 63f4b4b | 2016-12-15 15:13:06 +0200 | [diff] [blame] | 5343 | FREESCALE QORIQ DPAA ETHERNET DRIVER |
| 5344 | M: Madalin Bucur <madalin.bucur@nxp.com> |
| 5345 | L: netdev@vger.kernel.org |
| 5346 | S: Maintained |
| 5347 | F: drivers/net/ethernet/freescale/dpaa |
| 5348 | |
yangbo lu | 1b48706 | 2016-11-09 11:14:09 +0800 | [diff] [blame] | 5349 | FREESCALE SOC DRIVERS |
| 5350 | M: Scott Wood <oss@buserror.net> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 5351 | L: linuxppc-dev@lists.ozlabs.org |
yangbo lu | 1b48706 | 2016-11-09 11:14:09 +0800 | [diff] [blame] | 5352 | L: linux-arm-kernel@lists.infradead.org |
| 5353 | S: Maintained |
Geert Uytterhoeven | 58f1691 | 2017-03-12 14:17:00 +0100 | [diff] [blame] | 5354 | F: Documentation/devicetree/bindings/powerpc/fsl/ |
yangbo lu | 1b48706 | 2016-11-09 11:14:09 +0800 | [diff] [blame] | 5355 | F: drivers/soc/fsl/ |
| 5356 | F: include/linux/fsl/ |
| 5357 | |
| 5358 | FREESCALE QUICC ENGINE LIBRARY |
| 5359 | M: Qiang Zhao <qiang.zhao@nxp.com> |
| 5360 | L: linuxppc-dev@lists.ozlabs.org |
| 5361 | S: Maintained |
Zhao Qiang | 7aa1aa6 | 2015-11-30 10:48:57 +0800 | [diff] [blame] | 5362 | F: drivers/soc/fsl/qe/ |
| 5363 | F: include/soc/fsl/*qe*.h |
| 5364 | F: include/soc/fsl/*ucc*.h |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 5365 | |
Joe Perches | b55ef929 | 2009-10-26 16:49:46 -0700 | [diff] [blame] | 5366 | FREESCALE USB PERIPHERAL DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5367 | M: Li Yang <leoli@freescale.com> |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 5368 | L: linux-usb@vger.kernel.org |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 5369 | L: linuxppc-dev@lists.ozlabs.org |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 5370 | S: Maintained |
Joe Perches | faf2e1d | 2014-08-08 14:26:18 -0700 | [diff] [blame] | 5371 | F: drivers/usb/gadget/udc/fsl* |
Li Yang | a7205b3 | 2007-04-23 10:38:18 -0700 | [diff] [blame] | 5372 | |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 5373 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5374 | M: Li Yang <leoli@freescale.com> |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 5375 | L: netdev@vger.kernel.org |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 5376 | L: linuxppc-dev@lists.ozlabs.org |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 5377 | S: Maintained |
Jeff Kirsher | ec21e2e | 2011-06-11 02:29:36 -0700 | [diff] [blame] | 5378 | F: drivers/net/ethernet/freescale/ucc_geth* |
Li Yang | beaf53b | 2007-05-25 13:54:02 +0800 | [diff] [blame] | 5379 | |
Claudiu Manoil | abb1ed7 | 2015-10-23 11:42:01 +0300 | [diff] [blame] | 5380 | FREESCALE eTSEC ETHERNET DRIVER (GIANFAR) |
| 5381 | M: Claudiu Manoil <claudiu.manoil@freescale.com> |
| 5382 | L: netdev@vger.kernel.org |
| 5383 | S: Maintained |
| 5384 | F: drivers/net/ethernet/freescale/gianfar* |
| 5385 | X: drivers/net/ethernet/freescale/gianfar_ptp.c |
| 5386 | F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt |
| 5387 | |
Zhao Qiang | c19b6d2 | 2016-06-06 14:30:02 +0800 | [diff] [blame] | 5388 | FREESCALE QUICC ENGINE UCC HDLC DRIVER |
| 5389 | M: Zhao Qiang <qiang.zhao@nxp.com> |
| 5390 | L: netdev@vger.kernel.org |
| 5391 | L: linuxppc-dev@lists.ozlabs.org |
| 5392 | S: Maintained |
| 5393 | F: drivers/net/wan/fsl_ucc_hdlc* |
| 5394 | |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 5395 | FREESCALE QUICC ENGINE UCC UART DRIVER |
Timur Tabi | c4ef9bc | 2013-01-15 14:19:45 -0600 | [diff] [blame] | 5396 | M: Timur Tabi <timur@tabi.org> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 5397 | L: linuxppc-dev@lists.ozlabs.org |
Timur Tabi | c4ef9bc | 2013-01-15 14:19:45 -0600 | [diff] [blame] | 5398 | S: Maintained |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 5399 | F: drivers/tty/serial/ucc_uart.c |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 5400 | |
| 5401 | FREESCALE SOC SOUND DRIVERS |
Timur Tabi | c4ef9bc | 2013-01-15 14:19:45 -0600 | [diff] [blame] | 5402 | M: Timur Tabi <timur@tabi.org> |
Mark Brown | dc85950 | 2014-08-07 10:47:24 +0100 | [diff] [blame] | 5403 | M: Nicolin Chen <nicoleotsuka@gmail.com> |
Xiubo Li | b4b9829 | 2014-12-12 16:54:14 -0800 | [diff] [blame] | 5404 | M: Xiubo Li <Xiubo.Lee@gmail.com> |
Fabio Estevam | aeea2fd | 2016-05-07 20:04:52 -0300 | [diff] [blame] | 5405 | R: Fabio Estevam <fabio.estevam@nxp.com> |
Joe Perches | 9371166 | 2009-06-16 15:34:07 -0700 | [diff] [blame] | 5406 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 5407 | L: linuxppc-dev@lists.ozlabs.org |
Timur Tabi | c4ef9bc | 2013-01-15 14:19:45 -0600 | [diff] [blame] | 5408 | S: Maintained |
Joe Perches | 69aefce | 2009-04-09 10:39:22 -0700 | [diff] [blame] | 5409 | F: sound/soc/fsl/fsl* |
Mark Brown | dc85950 | 2014-08-07 10:47:24 +0100 | [diff] [blame] | 5410 | F: sound/soc/fsl/imx* |
Joe Perches | 69aefce | 2009-04-09 10:39:22 -0700 | [diff] [blame] | 5411 | F: sound/soc/fsl/mpc8610_hpcd.c |
Timur Tabi | d9e9d82 | 2008-04-24 08:45:26 +1000 | [diff] [blame] | 5412 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5413 | FREEVXFS FILESYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5414 | M: Christoph Hellwig <hch@infradead.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5415 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
| 5416 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5417 | F: fs/freevxfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5418 | |
Pavel Machek | 71038f5 | 2009-01-15 13:51:02 -0800 | [diff] [blame] | 5419 | FREEZER |
Rafael J. Wysocki | 49db190 | 2013-10-09 01:47:53 +0200 | [diff] [blame] | 5420 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
Rafael J. Wysocki | 7fb0608 | 2014-03-20 03:34:47 +0100 | [diff] [blame] | 5421 | M: Pavel Machek <pavel@ucw.cz> |
WANG Cong | bf1c138 | 2011-10-08 20:57:50 +0200 | [diff] [blame] | 5422 | L: linux-pm@vger.kernel.org |
Pavel Machek | 71038f5 | 2009-01-15 13:51:02 -0800 | [diff] [blame] | 5423 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5424 | F: Documentation/power/freezing-of-tasks.txt |
| 5425 | F: include/linux/freezer.h |
| 5426 | F: kernel/freezer.c |
Pavel Machek | 71038f5 | 2009-01-15 13:51:02 -0800 | [diff] [blame] | 5427 | |
Konrad Rzeszutek Wilk | 839a1f7 | 2012-04-16 17:06:35 -0400 | [diff] [blame] | 5428 | FRONTSWAP API |
| 5429 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
| 5430 | L: linux-kernel@vger.kernel.org |
| 5431 | S: Maintained |
| 5432 | F: mm/frontswap.c |
| 5433 | F: include/linux/frontswap.h |
| 5434 | |
David Howells | a5432f5 | 2009-04-20 15:46:45 +0100 | [diff] [blame] | 5435 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5436 | M: David Howells <dhowells@redhat.com> |
Geert Uytterhoeven | e62d6e2 | 2015-11-12 11:46:33 +0000 | [diff] [blame] | 5437 | L: linux-cachefs@redhat.com (moderated for non-subscribers) |
David Howells | a5432f5 | 2009-04-20 15:46:45 +0100 | [diff] [blame] | 5438 | S: Supported |
| 5439 | F: Documentation/filesystems/caching/ |
| 5440 | F: fs/fscache/ |
| 5441 | F: include/linux/fscache*.h |
| 5442 | |
Eric Biggers | 90fce08 | 2017-04-26 16:43:00 -0700 | [diff] [blame] | 5443 | FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT |
Theodore Ts'o | 598c7d7 | 2016-07-14 22:44:13 -0400 | [diff] [blame] | 5444 | M: Theodore Y. Ts'o <tytso@mit.edu> |
| 5445 | M: Jaegeuk Kim <jaegeuk@kernel.org> |
Eric Biggers | 90fce08 | 2017-04-26 16:43:00 -0700 | [diff] [blame] | 5446 | L: linux-fscrypt@vger.kernel.org |
| 5447 | Q: https://patchwork.kernel.org/project/linux-fscrypt/list/ |
| 5448 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/fscrypt.git |
Theodore Ts'o | 598c7d7 | 2016-07-14 22:44:13 -0400 | [diff] [blame] | 5449 | S: Supported |
| 5450 | F: fs/crypto/ |
Eric Biggers | 46f47e4 | 2017-01-24 10:58:06 -0800 | [diff] [blame] | 5451 | F: include/linux/fscrypt*.h |
Theodore Ts'o | 598c7d7 | 2016-07-14 22:44:13 -0400 | [diff] [blame] | 5452 | |
Jaegeuk Kim | f58ad8f | 2012-12-21 12:12:27 +0900 | [diff] [blame] | 5453 | F2FS FILE SYSTEM |
Jaegeuk Kim | 9b29d48 | 2014-05-30 08:20:08 +0900 | [diff] [blame] | 5454 | M: Jaegeuk Kim <jaegeuk@kernel.org> |
Chao Yu | 9512929 | 2016-09-09 08:38:20 +0800 | [diff] [blame] | 5455 | M: Chao Yu <yuchao0@huawei.com> |
Jaegeuk Kim | f58ad8f | 2012-12-21 12:12:27 +0900 | [diff] [blame] | 5456 | L: linux-f2fs-devel@lists.sourceforge.net |
Chao Yu | 9512929 | 2016-09-09 08:38:20 +0800 | [diff] [blame] | 5457 | W: https://f2fs.wiki.kernel.org/ |
Jaegeuk Kim | f58ad8f | 2012-12-21 12:12:27 +0900 | [diff] [blame] | 5458 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git |
| 5459 | S: Maintained |
| 5460 | F: Documentation/filesystems/f2fs.txt |
Jaegeuk Kim | 3bac380 | 2014-01-09 21:00:06 +0900 | [diff] [blame] | 5461 | F: Documentation/ABI/testing/sysfs-fs-f2fs |
Jaegeuk Kim | f58ad8f | 2012-12-21 12:12:27 +0900 | [diff] [blame] | 5462 | F: fs/f2fs/ |
| 5463 | F: include/linux/f2fs_fs.h |
Chao Yu | 62d43ee | 2015-07-06 20:29:46 +0800 | [diff] [blame] | 5464 | F: include/trace/events/f2fs.h |
Jaegeuk Kim | f58ad8f | 2012-12-21 12:12:27 +0900 | [diff] [blame] | 5465 | |
David Howells | 5ab7ffe | 2007-04-10 15:10:45 +0100 | [diff] [blame] | 5466 | FUJITSU FR-V (FRV) PORT |
David Howells | 0cf0305 | 2016-01-20 10:29:00 +0000 | [diff] [blame] | 5467 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5468 | F: arch/frv/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5469 | |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 5470 | FUJITSU LAPTOP EXTRAS |
Jonathan Woithe | 409a3e9 | 2012-03-27 13:01:01 +1030 | [diff] [blame] | 5471 | M: Jonathan Woithe <jwoithe@just42.net> |
Matthew Garrett | d0944853 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 5472 | L: platform-driver-x86@vger.kernel.org |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 5473 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5474 | F: drivers/platform/x86/fujitsu-laptop.c |
Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 5475 | |
Heungjun Kim | 4da621b | 2011-11-11 08:05:33 -0300 | [diff] [blame] | 5476 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
| 5477 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 5478 | M: Heungjun Kim <riverful.kim@samsung.com> |
| 5479 | L: linux-media@vger.kernel.org |
| 5480 | S: Maintained |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 5481 | F: drivers/media/i2c/m5mols/ |
Mauro Carvalho Chehab | b5dcee2 | 2015-11-10 12:01:44 -0200 | [diff] [blame] | 5482 | F: include/media/i2c/m5mols.h |
Heungjun Kim | 4da621b | 2011-11-11 08:05:33 -0300 | [diff] [blame] | 5483 | |
Robert Gerlach | 2d24c49 | 2012-01-18 14:26:22 +0100 | [diff] [blame] | 5484 | FUJITSU TABLET EXTRAS |
| 5485 | M: Robert Gerlach <khnz@gmx.de> |
| 5486 | L: platform-driver-x86@vger.kernel.org |
| 5487 | S: Maintained |
| 5488 | F: drivers/platform/x86/fujitsu-tablet.c |
| 5489 | |
Miklos Szeredi | 04578f1 | 2005-09-09 13:10:22 -0700 | [diff] [blame] | 5490 | FUSE: FILESYSTEM IN USERSPACE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5491 | M: Miklos Szeredi <miklos@szeredi.hu> |
Miklos Szeredi | 4441f63 | 2016-05-03 11:19:33 +0200 | [diff] [blame] | 5492 | L: linux-fsdevel@vger.kernel.org |
Miklos Szeredi | 04578f1 | 2005-09-09 13:10:22 -0700 | [diff] [blame] | 5493 | W: http://fuse.sourceforge.net/ |
Miklos Szeredi | 0a30f61 | 2015-07-01 17:10:36 +0200 | [diff] [blame] | 5494 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git |
Miklos Szeredi | 04578f1 | 2005-09-09 13:10:22 -0700 | [diff] [blame] | 5495 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5496 | F: fs/fuse/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5497 | F: include/uapi/linux/fuse.h |
Miklos Szeredi | 0a30f61 | 2015-07-01 17:10:36 +0200 | [diff] [blame] | 5498 | F: Documentation/filesystems/fuse.txt |
Miklos Szeredi | 04578f1 | 2005-09-09 13:10:22 -0700 | [diff] [blame] | 5499 | |
Darren Hart (VMware) | 59cd42c | 2017-04-14 15:46:08 -0700 | [diff] [blame] | 5500 | FUTEX SUBSYSTEM |
| 5501 | M: Thomas Gleixner <tglx@linutronix.de> |
| 5502 | M: Ingo Molnar <mingo@redhat.com> |
| 5503 | R: Peter Zijlstra <peterz@infradead.org> |
| 5504 | R: Darren Hart <dvhart@infradead.org> |
| 5505 | L: linux-kernel@vger.kernel.org |
| 5506 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core |
| 5507 | S: Maintained |
| 5508 | F: kernel/futex.c |
| 5509 | F: kernel/futex_compat.c |
| 5510 | F: include/asm-generic/futex.h |
| 5511 | F: include/linux/futex.h |
| 5512 | F: include/uapi/linux/futex.h |
| 5513 | F: tools/testing/selftests/futex/ |
| 5514 | F: tools/perf/bench/futex* |
| 5515 | F: Documentation/*futex* |
| 5516 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5517 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5518 | M: Rik Faith <faith@cs.unc.edu> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5519 | L: linux-scsi@vger.kernel.org |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 5520 | S: Odd Fixes (e.g., new signatures) |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5521 | F: drivers/scsi/fdomain.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5522 | |
Emese Revfy | 6b90bd4 | 2016-05-24 00:09:38 +0200 | [diff] [blame] | 5523 | GCC PLUGINS |
| 5524 | M: Kees Cook <keescook@chromium.org> |
| 5525 | R: Emese Revfy <re.emese@gmail.com> |
| 5526 | L: kernel-hardening@lists.openwall.com |
| 5527 | S: Maintained |
| 5528 | F: scripts/gcc-plugins/ |
| 5529 | F: scripts/gcc-plugin.sh |
Andrew Donnellan | 68fdc67 | 2016-11-02 17:52:41 +1100 | [diff] [blame] | 5530 | F: scripts/Makefile.gcc-plugins |
Emese Revfy | 6b90bd4 | 2016-05-24 00:09:38 +0200 | [diff] [blame] | 5531 | F: Documentation/gcc-plugins.txt |
| 5532 | |
Peter Oberparleiter | d8e2162 | 2013-10-16 13:46:49 -0700 | [diff] [blame] | 5533 | GCOV BASED KERNEL PROFILING |
| 5534 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> |
| 5535 | S: Maintained |
| 5536 | F: kernel/gcov/ |
Jonathan Corbet | 2584bab | 2016-08-07 15:26:20 -0600 | [diff] [blame] | 5537 | F: Documentation/dev-tools/gcov.rst |
Peter Oberparleiter | d8e2162 | 2013-10-16 13:46:49 -0700 | [diff] [blame] | 5538 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5539 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5540 | M: Achim Leubner <achim_leubner@adaptec.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5541 | L: linux-scsi@vger.kernel.org |
| 5542 | W: http://www.icp-vortex.com/ |
| 5543 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5544 | F: drivers/scsi/gdt* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5545 | |
Jan Kiszka | 158daf1 | 2015-02-17 13:47:49 -0800 | [diff] [blame] | 5546 | GDB KERNEL DEBUGGING HELPER SCRIPTS |
| 5547 | M: Jan Kiszka <jan.kiszka@siemens.com> |
Kieran Bingham | e10af13 | 2016-05-23 16:25:24 -0700 | [diff] [blame] | 5548 | M: Kieran Bingham <kieran@bingham.xyz> |
Jan Kiszka | 158daf1 | 2015-02-17 13:47:49 -0800 | [diff] [blame] | 5549 | S: Supported |
| 5550 | F: scripts/gdb/ |
| 5551 | |
Hans Verkuil | 3169a1c | 2012-11-23 07:11:58 -0300 | [diff] [blame] | 5552 | GEMTEK FM RADIO RECEIVER DRIVER |
| 5553 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 5554 | L: linux-media@vger.kernel.org |
| 5555 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 5556 | W: https://linuxtv.org |
Hans Verkuil | 3169a1c | 2012-11-23 07:11:58 -0300 | [diff] [blame] | 5557 | S: Maintained |
| 5558 | F: drivers/media/radio/radio-gemtek* |
| 5559 | |
Haavard Skinnemoen | 1c23af9 | 2007-05-01 23:26:34 +0200 | [diff] [blame] | 5560 | GENERIC GPIO I2C DRIVER |
Andrew Morton | 880b0e2 | 2010-10-07 12:59:28 -0700 | [diff] [blame] | 5561 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
Haavard Skinnemoen | 1c23af9 | 2007-05-01 23:26:34 +0200 | [diff] [blame] | 5562 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5563 | F: drivers/i2c/busses/i2c-gpio.c |
| 5564 | F: include/linux/i2c-gpio.h |
Haavard Skinnemoen | 1c23af9 | 2007-05-01 23:26:34 +0200 | [diff] [blame] | 5565 | |
Peter Korsgaard | 92ed1a7 | 2011-01-10 22:11:23 +0100 | [diff] [blame] | 5566 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
| 5567 | M: Peter Korsgaard <peter.korsgaard@barco.com> |
| 5568 | L: linux-i2c@vger.kernel.org |
| 5569 | S: Supported |
Jean Delvare | e7065e2 | 2012-04-28 15:32:06 +0200 | [diff] [blame] | 5570 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
| 5571 | F: include/linux/i2c-mux-gpio.h |
| 5572 | F: Documentation/i2c/muxes/i2c-mux-gpio |
Peter Korsgaard | 92ed1a7 | 2011-01-10 22:11:23 +0100 | [diff] [blame] | 5573 | |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 5574 | GENERIC HDLC (WAN) DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5575 | M: Krzysztof Halasa <khc@pm.waw.pl> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5576 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
| 5577 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5578 | F: drivers/net/wan/c101.c |
| 5579 | F: drivers/net/wan/hd6457* |
| 5580 | F: drivers/net/wan/hdlc* |
| 5581 | F: drivers/net/wan/n2.c |
| 5582 | F: drivers/net/wan/pc300too.c |
| 5583 | F: drivers/net/wan/pci200syn.c |
| 5584 | F: drivers/net/wan/wanxl* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5585 | |
Arnd Bergmann | 1527aab | 2009-06-14 22:46:16 +0200 | [diff] [blame] | 5586 | GENERIC INCLUDE/ASM HEADER FILES |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5587 | M: Arnd Bergmann <arnd@arndb.de> |
Arnd Bergmann | 1527aab | 2009-06-14 22:46:16 +0200 | [diff] [blame] | 5588 | L: linux-arch@vger.kernel.org |
| 5589 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git |
| 5590 | S: Maintained |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 5591 | F: include/asm-generic/ |
| 5592 | F: include/uapi/asm-generic/ |
Arnd Bergmann | 1527aab | 2009-06-14 22:46:16 +0200 | [diff] [blame] | 5593 | |
Kishon Vijay Abraham I | ff76496 | 2013-09-27 11:53:25 +0530 | [diff] [blame] | 5594 | GENERIC PHY FRAMEWORK |
| 5595 | M: Kishon Vijay Abraham I <kishon@ti.com> |
| 5596 | L: linux-kernel@vger.kernel.org |
| 5597 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git |
| 5598 | S: Supported |
| 5599 | F: drivers/phy/ |
| 5600 | F: include/linux/phy/ |
| 5601 | |
Kevin Hilman | eea97ae | 2015-03-12 10:33:46 -0700 | [diff] [blame] | 5602 | GENERIC PM DOMAINS |
| 5603 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
| 5604 | M: Kevin Hilman <khilman@kernel.org> |
| 5605 | M: Ulf Hansson <ulf.hansson@linaro.org> |
| 5606 | L: linux-pm@vger.kernel.org |
| 5607 | S: Supported |
| 5608 | F: drivers/base/power/domain*.c |
| 5609 | F: include/linux/pm_domain.h |
Viresh Kumar | 5e68ebd | 2017-04-25 12:52:10 +0530 | [diff] [blame] | 5610 | F: Documentation/devicetree/bindings/power/power_domain.txt |
Kevin Hilman | eea97ae | 2015-03-12 10:33:46 -0700 | [diff] [blame] | 5611 | |
Michael S. Tsirkin | ccb86a6 | 2009-07-20 10:29:34 +0300 | [diff] [blame] | 5612 | GENERIC UIO DRIVER FOR PCI DEVICES |
Joe Perches | bda2562 | 2009-10-26 16:49:39 -0700 | [diff] [blame] | 5613 | M: "Michael S. Tsirkin" <mst@redhat.com> |
Michael S. Tsirkin | ccb86a6 | 2009-07-20 10:29:34 +0300 | [diff] [blame] | 5614 | L: kvm@vger.kernel.org |
Michael S. Tsirkin | ccb86a6 | 2009-07-20 10:29:34 +0300 | [diff] [blame] | 5615 | S: Supported |
| 5616 | F: drivers/uio/uio_pci_generic.c |
| 5617 | |
Joe Perches | f8f1ec7 | 2014-06-04 16:05:31 -0700 | [diff] [blame] | 5618 | GET_MAINTAINER SCRIPT |
| 5619 | M: Joe Perches <joe@perches.com> |
| 5620 | S: Maintained |
| 5621 | F: scripts/get_maintainer.pl |
| 5622 | |
Gabriel Krisman Bertazi | a7d5afe | 2016-10-04 15:26:48 -0300 | [diff] [blame] | 5623 | GENWQE (IBM Generic Workqueue Card) |
| 5624 | M: Frank Haverkamp <haver@linux.vnet.ibm.com> |
| 5625 | M: Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com> |
| 5626 | S: Supported |
| 5627 | F: drivers/misc/genwqe/ |
| 5628 | |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 5629 | GFS2 FILE SYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5630 | M: Steven Whitehouse <swhiteho@redhat.com> |
Bob Peterson | 28666d6 | 2015-02-13 11:23:11 -0600 | [diff] [blame] | 5631 | M: Bob Peterson <rpeterso@redhat.com> |
David Teigland | a464418 | 2006-06-22 15:29:57 -0400 | [diff] [blame] | 5632 | L: cluster-devel@redhat.com |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 5633 | W: http://sources.redhat.com/cluster/ |
Bob Peterson | 28666d6 | 2015-02-13 11:23:11 -0600 | [diff] [blame] | 5634 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 5635 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5636 | F: Documentation/filesystems/gfs2*.txt |
| 5637 | F: fs/gfs2/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5638 | F: include/uapi/linux/gfs2_ondisk.h |
Steven Whitehouse | 5be7b50 | 2006-04-28 11:27:32 -0400 | [diff] [blame] | 5639 | |
Hansjoerg Lipp | 0a34eb8 | 2006-03-26 01:38:28 -0800 | [diff] [blame] | 5640 | GIGASET ISDN DRIVERS |
Tilman Schmidt | 6b096fd | 2015-05-02 19:23:22 +0200 | [diff] [blame] | 5641 | M: Paul Bolle <pebolle@tiscali.nl> |
Hansjoerg Lipp | 0a34eb8 | 2006-03-26 01:38:28 -0800 | [diff] [blame] | 5642 | L: gigaset307x-common@lists.sourceforge.net |
| 5643 | W: http://gigaset307x.sourceforge.net/ |
Tilman Schmidt | 6b096fd | 2015-05-02 19:23:22 +0200 | [diff] [blame] | 5644 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5645 | F: Documentation/isdn/README.gigaset |
| 5646 | F: drivers/isdn/gigaset/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5647 | F: include/uapi/linux/gigaset_dev.h |
Hansjoerg Lipp | 0a34eb8 | 2006-03-26 01:38:28 -0800 | [diff] [blame] | 5648 | |
Joe Perches | 7eea35f | 2014-07-30 05:09:23 -0300 | [diff] [blame] | 5649 | GO7007 MPEG CODEC |
| 5650 | M: Hans Verkuil <hans.verkuil@cisco.com> |
| 5651 | L: linux-media@vger.kernel.org |
| 5652 | S: Maintained |
| 5653 | F: drivers/media/usb/go7007/ |
| 5654 | |
Bastien Nocera | ca96ea8 | 2014-10-31 09:26:16 -0700 | [diff] [blame] | 5655 | GOODIX TOUCHSCREEN |
| 5656 | M: Bastien Nocera <hadess@hadess.net> |
| 5657 | L: linux-input@vger.kernel.org |
| 5658 | S: Maintained |
| 5659 | F: drivers/input/touchscreen/goodix.c |
| 5660 | |
Bamvor Jian Zhang | a6a1cf3 | 2016-08-31 11:45:48 +0200 | [diff] [blame] | 5661 | GPIO MOCKUP DRIVER |
| 5662 | M: Bamvor Jian Zhang <bamvor.zhangjian@linaro.org> |
| 5663 | L: linux-gpio@vger.kernel.org |
| 5664 | S: Maintained |
| 5665 | F: drivers/gpio/gpio-mockup.c |
| 5666 | F: tools/testing/selftests/gpio/ |
| 5667 | |
Grant Likely | a0dc00b | 2011-02-12 01:48:14 -0700 | [diff] [blame] | 5668 | GPIO SUBSYSTEM |
Linus Walleij | e4651a9 | 2012-08-06 09:52:52 +0200 | [diff] [blame] | 5669 | M: Linus Walleij <linus.walleij@linaro.org> |
Linus Walleij | f2fa75c | 2013-12-10 09:43:09 +0100 | [diff] [blame] | 5670 | M: Alexandre Courbot <gnurou@gmail.com> |
Alexandre Courbot | d15b717 | 2013-05-26 11:50:54 +0900 | [diff] [blame] | 5671 | L: linux-gpio@vger.kernel.org |
Linus Walleij | f2fa75c | 2013-12-10 09:43:09 +0100 | [diff] [blame] | 5672 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git |
| 5673 | S: Maintained |
Wolfram Sang | cd97a44 | 2016-04-12 17:57:53 +0200 | [diff] [blame] | 5674 | F: Documentation/devicetree/bindings/gpio/ |
Linus Walleij | f2fa75c | 2013-12-10 09:43:09 +0100 | [diff] [blame] | 5675 | F: Documentation/gpio/ |
Linus Walleij | 40c159b | 2015-10-22 10:21:57 +0200 | [diff] [blame] | 5676 | F: Documentation/ABI/testing/gpio-cdev |
Linus Walleij | fe95046 | 2015-10-22 09:58:34 +0200 | [diff] [blame] | 5677 | F: Documentation/ABI/obsolete/sysfs-gpio |
Grant Likely | a0dc00b | 2011-02-12 01:48:14 -0700 | [diff] [blame] | 5678 | F: drivers/gpio/ |
Alexandre Courbot | bdc6e95 | 2014-08-04 13:06:58 +0900 | [diff] [blame] | 5679 | F: include/linux/gpio/ |
| 5680 | F: include/linux/gpio.h |
Yang Bai | 9b69234 | 2012-10-04 17:12:35 -0700 | [diff] [blame] | 5681 | F: include/asm-generic/gpio.h |
Linus Walleij | 3c702e9 | 2015-10-21 15:29:53 +0200 | [diff] [blame] | 5682 | F: include/uapi/linux/gpio.h |
Linus Walleij | 6d591c4 | 2015-10-21 15:45:54 +0200 | [diff] [blame] | 5683 | F: tools/gpio/ |
Grant Likely | a0dc00b | 2011-02-12 01:48:14 -0700 | [diff] [blame] | 5684 | |
Harry Wei | 71a6d0a | 2011-05-11 15:13:33 -0700 | [diff] [blame] | 5685 | GRE DEMULTIPLEXER DRIVER |
| 5686 | M: Dmitry Kozlov <xeb@mail.ru> |
| 5687 | L: netdev@vger.kernel.org |
| 5688 | S: Maintained |
Joe Perches | 11c2677 | 2013-09-11 14:23:48 -0700 | [diff] [blame] | 5689 | F: net/ipv4/gre_demux.c |
| 5690 | F: net/ipv4/gre_offload.c |
Harry Wei | 71a6d0a | 2011-05-11 15:13:33 -0700 | [diff] [blame] | 5691 | F: include/net/gre.h |
| 5692 | |
Kristoffer Glembo | d4c4113 | 2010-02-15 03:33:44 +0000 | [diff] [blame] | 5693 | GRETH 10/100/1G Ethernet MAC device driver |
Andreas Larsson | bbdd09e | 2016-04-27 16:46:10 +0200 | [diff] [blame] | 5694 | M: Andreas Larsson <andreas@gaisler.com> |
Kristoffer Glembo | d4c4113 | 2010-02-15 03:33:44 +0000 | [diff] [blame] | 5695 | L: netdev@vger.kernel.org |
| 5696 | S: Maintained |
Joe Perches | a31a96a | 2012-01-10 15:08:58 -0800 | [diff] [blame] | 5697 | F: drivers/net/ethernet/aeroflex/ |
Kristoffer Glembo | d4c4113 | 2010-02-15 03:33:44 +0000 | [diff] [blame] | 5698 | |
Greg Kroah-Hartman | 629c1fb | 2016-09-19 18:23:19 +0200 | [diff] [blame] | 5699 | GREYBUS SUBSYSTEM |
| 5700 | M: Johan Hovold <johan@kernel.org> |
| 5701 | M: Alex Elder <elder@kernel.org> |
| 5702 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
| 5703 | S: Maintained |
| 5704 | F: drivers/staging/greybus/ |
Randy Dunlap | 66ea597 | 2017-05-15 10:16:30 -0700 | [diff] [blame] | 5705 | L: greybus-dev@lists.linaro.org (moderated for non-subscribers) |
Greg Kroah-Hartman | 629c1fb | 2016-09-19 18:23:19 +0200 | [diff] [blame] | 5706 | |
Vaibhav Agarwal | 926706c | 2016-09-21 14:17:05 +0530 | [diff] [blame] | 5707 | GREYBUS AUDIO PROTOCOLS DRIVERS |
| 5708 | M: Vaibhav Agarwal <vaibhav.sr@gmail.com> |
Mark Greer | 88638cf | 2016-09-27 16:34:13 -0700 | [diff] [blame] | 5709 | M: Mark Greer <mgreer@animalcreek.com> |
Vaibhav Agarwal | 926706c | 2016-09-21 14:17:05 +0530 | [diff] [blame] | 5710 | S: Maintained |
Mark Greer | 544a694 | 2016-09-28 09:34:49 -0700 | [diff] [blame] | 5711 | F: drivers/staging/greybus/audio_apbridgea.c |
| 5712 | F: drivers/staging/greybus/audio_apbridgea.h |
Vaibhav Agarwal | 926706c | 2016-09-21 14:17:05 +0530 | [diff] [blame] | 5713 | F: drivers/staging/greybus/audio_codec.c |
Mark Greer | 544a694 | 2016-09-28 09:34:49 -0700 | [diff] [blame] | 5714 | F: drivers/staging/greybus/audio_codec.h |
| 5715 | F: drivers/staging/greybus/audio_gb.c |
| 5716 | F: drivers/staging/greybus/audio_manager.c |
| 5717 | F: drivers/staging/greybus/audio_manager.h |
| 5718 | F: drivers/staging/greybus/audio_manager_module.c |
| 5719 | F: drivers/staging/greybus/audio_manager_private.h |
| 5720 | F: drivers/staging/greybus/audio_manager_sysfs.c |
Vaibhav Agarwal | 926706c | 2016-09-21 14:17:05 +0530 | [diff] [blame] | 5721 | F: drivers/staging/greybus/audio_module.c |
| 5722 | F: drivers/staging/greybus/audio_topology.c |
| 5723 | |
Rui Miguel Silva | 2bbadaf | 2016-09-19 17:07:59 +0100 | [diff] [blame] | 5724 | GREYBUS PROTOCOLS DRIVERS |
| 5725 | M: Rui Miguel Silva <rmfrfs@gmail.com> |
| 5726 | S: Maintained |
| 5727 | F: drivers/staging/greybus/sdio.c |
| 5728 | F: drivers/staging/greybus/light.c |
| 5729 | F: drivers/staging/greybus/gpio.c |
| 5730 | F: drivers/staging/greybus/power_supply.c |
| 5731 | F: drivers/staging/greybus/spi.c |
| 5732 | F: drivers/staging/greybus/spilib.c |
| 5733 | |
Bryan O'Donoghue | 7d70051 | 2016-09-19 18:41:46 +0100 | [diff] [blame] | 5734 | GREYBUS PROTOCOLS DRIVERS |
| 5735 | M: Bryan O'Donoghue <pure.logic@nexus-software.ie> |
| 5736 | S: Maintained |
| 5737 | F: drivers/staging/greybus/loopback.c |
| 5738 | F: drivers/staging/greybus/timesync.c |
| 5739 | F: drivers/staging/greybus/timesync_platform.c |
| 5740 | |
Viresh Kumar | 5bd1635 | 2016-09-21 12:10:16 +0530 | [diff] [blame] | 5741 | GREYBUS PROTOCOLS DRIVERS |
| 5742 | M: Viresh Kumar <vireshk@kernel.org> |
| 5743 | S: Maintained |
| 5744 | F: drivers/staging/greybus/authentication.c |
| 5745 | F: drivers/staging/greybus/bootrom.c |
| 5746 | F: drivers/staging/greybus/firmware.h |
| 5747 | F: drivers/staging/greybus/fw-core.c |
| 5748 | F: drivers/staging/greybus/fw-download.c |
| 5749 | F: drivers/staging/greybus/fw-managament.c |
| 5750 | F: drivers/staging/greybus/greybus_authentication.h |
| 5751 | F: drivers/staging/greybus/greybus_firmware.h |
| 5752 | F: drivers/staging/greybus/hid.c |
| 5753 | F: drivers/staging/greybus/i2c.c |
| 5754 | F: drivers/staging/greybus/spi.c |
| 5755 | F: drivers/staging/greybus/spilib.c |
| 5756 | F: drivers/staging/greybus/spilib.h |
| 5757 | |
David Lin | 8d904fe | 2016-09-21 18:57:23 -0700 | [diff] [blame] | 5758 | GREYBUS PROTOCOLS DRIVERS |
| 5759 | M: David Lin <dtwlin@gmail.com> |
| 5760 | S: Maintained |
| 5761 | F: drivers/staging/greybus/uart.c |
| 5762 | F: drivers/staging/greybus/log.c |
| 5763 | |
Vaibhav Hiremath | 92b8bd9 | 2016-09-21 16:28:13 +0530 | [diff] [blame] | 5764 | GREYBUS PLATFORM DRIVERS |
| 5765 | M: Vaibhav Hiremath <hvaibhav.linux@gmail.com> |
| 5766 | S: Maintained |
| 5767 | F: drivers/staging/greybus/arche-platform.c |
| 5768 | F: drivers/staging/greybus/arche-apb-ctrl.c |
| 5769 | F: drivers/staging/greybus/arche_platform.h |
| 5770 | |
Charles-Antoine Couret | 7aae6e2 | 2016-09-15 12:29:51 -0300 | [diff] [blame] | 5771 | GS1662 VIDEO SERIALIZER |
| 5772 | M: Charles-Antoine Couret <charles-antoine.couret@nexvision.fr> |
| 5773 | L: linux-media@vger.kernel.org |
| 5774 | T: git git://linuxtv.org/media_tree.git |
| 5775 | S: Maintained |
| 5776 | F: drivers/media/spi/gs1662.c |
| 5777 | |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 5778 | GSPCA FINEPIX SUBDRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5779 | M: Frank Zago <frank@zago.net> |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 5780 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 5781 | T: git git://linuxtv.org/media_tree.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 5782 | S: Maintained |
Mauro Carvalho Chehab | 0c0d06c | 2012-08-14 00:13:22 -0300 | [diff] [blame] | 5783 | F: drivers/media/usb/gspca/finepix.c |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 5784 | |
Olivier Lorin | 4b3fa3c | 2009-10-03 19:09:10 -0300 | [diff] [blame] | 5785 | GSPCA GL860 SUBDRIVER |
| 5786 | M: Olivier Lorin <o.lorin@laposte.net> |
| 5787 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 5788 | T: git git://linuxtv.org/media_tree.git |
Olivier Lorin | 4b3fa3c | 2009-10-03 19:09:10 -0300 | [diff] [blame] | 5789 | S: Maintained |
Mauro Carvalho Chehab | 0c0d06c | 2012-08-14 00:13:22 -0300 | [diff] [blame] | 5790 | F: drivers/media/usb/gspca/gl860/ |
Olivier Lorin | 4b3fa3c | 2009-10-03 19:09:10 -0300 | [diff] [blame] | 5791 | |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 5792 | GSPCA M5602 SUBDRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5793 | M: Erik Andren <erik.andren@gmail.com> |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 5794 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 5795 | T: git git://linuxtv.org/media_tree.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 5796 | S: Maintained |
Mauro Carvalho Chehab | 0c0d06c | 2012-08-14 00:13:22 -0300 | [diff] [blame] | 5797 | F: drivers/media/usb/gspca/m5602/ |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 5798 | |
| 5799 | GSPCA PAC207 SONIXB SUBDRIVER |
Hans Verkuil | c0936df | 2016-07-04 10:18:10 -0300 | [diff] [blame] | 5800 | M: Hans Verkuil <hverkuil@xs4all.nl> |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 5801 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 5802 | T: git git://linuxtv.org/media_tree.git |
Hans Verkuil | c0936df | 2016-07-04 10:18:10 -0300 | [diff] [blame] | 5803 | S: Odd Fixes |
Mauro Carvalho Chehab | 0c0d06c | 2012-08-14 00:13:22 -0300 | [diff] [blame] | 5804 | F: drivers/media/usb/gspca/pac207.c |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 5805 | |
Brian Johnson | 261982f | 2009-07-19 15:58:56 -0300 | [diff] [blame] | 5806 | GSPCA SN9C20X SUBDRIVER |
Joe Perches | d95c5b0 | 2009-08-16 20:03:51 -0300 | [diff] [blame] | 5807 | M: Brian Johnson <brijohn@gmail.com> |
Brian Johnson | 261982f | 2009-07-19 15:58:56 -0300 | [diff] [blame] | 5808 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 5809 | T: git git://linuxtv.org/media_tree.git |
Brian Johnson | 261982f | 2009-07-19 15:58:56 -0300 | [diff] [blame] | 5810 | S: Maintained |
Mauro Carvalho Chehab | 0c0d06c | 2012-08-14 00:13:22 -0300 | [diff] [blame] | 5811 | F: drivers/media/usb/gspca/sn9c20x.c |
Brian Johnson | 261982f | 2009-07-19 15:58:56 -0300 | [diff] [blame] | 5812 | |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 5813 | GSPCA T613 SUBDRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5814 | M: Leandro Costantino <lcostantino@gmail.com> |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 5815 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 5816 | T: git git://linuxtv.org/media_tree.git |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 5817 | S: Maintained |
Mauro Carvalho Chehab | 0c0d06c | 2012-08-14 00:13:22 -0300 | [diff] [blame] | 5818 | F: drivers/media/usb/gspca/t613.c |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 5819 | |
| 5820 | GSPCA USB WEBCAM DRIVER |
Hans Verkuil | c0936df | 2016-07-04 10:18:10 -0300 | [diff] [blame] | 5821 | M: Hans Verkuil <hverkuil@xs4all.nl> |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 5822 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 5823 | T: git git://linuxtv.org/media_tree.git |
Hans Verkuil | c0936df | 2016-07-04 10:18:10 -0300 | [diff] [blame] | 5824 | S: Odd Fixes |
Mauro Carvalho Chehab | 0c0d06c | 2012-08-14 00:13:22 -0300 | [diff] [blame] | 5825 | F: drivers/media/usb/gspca/ |
Jean-Francois Moine | e8deeae2 | 2008-10-22 10:57:37 -0300 | [diff] [blame] | 5826 | |
Pablo Neira | bed45f7 | 2017-02-10 13:26:27 +0100 | [diff] [blame] | 5827 | GTP (GPRS Tunneling Protocol) |
| 5828 | M: Pablo Neira Ayuso <pablo@netfilter.org> |
| 5829 | M: Harald Welte <laforge@gnumonks.org> |
| 5830 | L: osmocom-net-gprs@lists.osmocom.org |
| 5831 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git |
| 5832 | S: Maintained |
| 5833 | F: drivers/net/gtp.c |
| 5834 | |
Davidlohr Bueso | 584ec97 | 2013-12-18 17:08:55 -0800 | [diff] [blame] | 5835 | GUID PARTITION TABLE (GPT) |
Andrew Morton | 4f973c6 | 2015-06-25 15:02:05 -0700 | [diff] [blame] | 5836 | M: Davidlohr Bueso <dave@stgolabs.net> |
Davidlohr Bueso | 584ec97 | 2013-12-18 17:08:55 -0800 | [diff] [blame] | 5837 | L: linux-efi@vger.kernel.org |
| 5838 | S: Maintained |
| 5839 | F: block/partitions/efi.* |
| 5840 | |
Ezequiel Garcia | aa3c598 | 2012-10-01 12:41:16 -0300 | [diff] [blame] | 5841 | STK1160 USB VIDEO CAPTURE DRIVER |
Ezequiel Garcia | 3259aa5 | 2015-03-10 11:43:20 -0300 | [diff] [blame] | 5842 | M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> |
Ezequiel Garcia | aa3c598 | 2012-10-01 12:41:16 -0300 | [diff] [blame] | 5843 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 5844 | T: git git://linuxtv.org/media_tree.git |
Ezequiel Garcia | aa3c598 | 2012-10-01 12:41:16 -0300 | [diff] [blame] | 5845 | S: Maintained |
| 5846 | F: drivers/media/usb/stk1160/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5847 | |
Yoshinori Sato | 4e456b8 | 2015-03-11 01:41:38 +0900 | [diff] [blame] | 5848 | H8/300 ARCHITECTURE |
| 5849 | M: Yoshinori Sato <ysato@users.sourceforge.jp> |
Geert Uytterhoeven | b992c76 | 2015-07-17 16:23:55 -0700 | [diff] [blame] | 5850 | L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers) |
Yoshinori Sato | 4e456b8 | 2015-03-11 01:41:38 +0900 | [diff] [blame] | 5851 | W: http://uclinux-h8.sourceforge.jp |
| 5852 | T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git |
| 5853 | S: Maintained |
| 5854 | F: arch/h8300/ |
| 5855 | F: drivers/clocksource/h8300_*.c |
| 5856 | F: drivers/clk/h8300/ |
| 5857 | F: drivers/irqchip/irq-renesas-h8*.c |
| 5858 | |
Harry Wei | 71a6d0a | 2011-05-11 15:13:33 -0700 | [diff] [blame] | 5859 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
| 5860 | M: Frank Seidel <frank@f-seidel.de> |
| 5861 | L: platform-driver-x86@vger.kernel.org |
| 5862 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ |
| 5863 | S: Maintained |
| 5864 | F: drivers/platform/x86/hdaps.c |
| 5865 | |
Hans Verkuil | 48fc9e2 | 2013-04-11 03:36:49 -0300 | [diff] [blame] | 5866 | HDPVR USB VIDEO ENCODER DRIVER |
| 5867 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 5868 | L: linux-media@vger.kernel.org |
| 5869 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 5870 | W: https://linuxtv.org |
Hans Verkuil | 48fc9e2 | 2013-04-11 03:36:49 -0300 | [diff] [blame] | 5871 | S: Odd Fixes |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 5872 | F: drivers/media/usb/hdpvr/ |
Hans Verkuil | 48fc9e2 | 2013-04-11 03:36:49 -0300 | [diff] [blame] | 5873 | |
Harry Wei | 71a6d0a | 2011-05-11 15:13:33 -0700 | [diff] [blame] | 5874 | HWPOISON MEMORY FAILURE HANDLING |
Andi Kleen | f9625c4 | 2014-06-04 16:05:32 -0700 | [diff] [blame] | 5875 | M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> |
Harry Wei | 71a6d0a | 2011-05-11 15:13:33 -0700 | [diff] [blame] | 5876 | L: linux-mm@kvack.org |
Harry Wei | 71a6d0a | 2011-05-11 15:13:33 -0700 | [diff] [blame] | 5877 | S: Maintained |
| 5878 | F: mm/memory-failure.c |
| 5879 | F: mm/hwpoison-inject.c |
| 5880 | |
| 5881 | HYPERVISOR VIRTUAL CONSOLE DRIVER |
| 5882 | L: linuxppc-dev@lists.ozlabs.org |
| 5883 | S: Odd Fixes |
| 5884 | F: drivers/tty/hvc/ |
| 5885 | |
Antti Palosaari | e5ab147 | 2014-09-10 04:20:15 -0300 | [diff] [blame] | 5886 | HACKRF MEDIA DRIVER |
| 5887 | M: Antti Palosaari <crope@iki.fi> |
| 5888 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 5889 | W: https://linuxtv.org |
Antti Palosaari | e5ab147 | 2014-09-10 04:20:15 -0300 | [diff] [blame] | 5890 | W: http://palosaari.fi/linux/ |
| 5891 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 5892 | T: git git://linuxtv.org/anttip/media_tree.git |
| 5893 | S: Maintained |
| 5894 | F: drivers/media/usb/hackrf/ |
| 5895 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 5896 | HARDWARE MONITORING |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 5897 | M: Jean Delvare <jdelvare@suse.com> |
Guenter Roeck | ca46208 | 2012-06-01 23:28:23 -0700 | [diff] [blame] | 5898 | M: Guenter Roeck <linux@roeck-us.net> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 5899 | L: linux-hwmon@vger.kernel.org |
| 5900 | W: http://hwmon.wiki.kernel.org/ |
Jean Delvare | a94ef4e | 2015-04-27 16:37:39 +0200 | [diff] [blame] | 5901 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/ |
Guenter Roeck | 885374e | 2010-09-24 08:43:44 -0700 | [diff] [blame] | 5902 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
Jean Delvare | 9e012c1 | 2010-09-17 17:24:11 +0200 | [diff] [blame] | 5903 | S: Maintained |
Jean Delvare | 047f4ec | 2009-12-09 20:35:46 +0100 | [diff] [blame] | 5904 | F: Documentation/hwmon/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5905 | F: drivers/hwmon/ |
Jean Delvare | 047f4ec | 2009-12-09 20:35:46 +0100 | [diff] [blame] | 5906 | F: include/linux/hwmon*.h |
Robert Love | 860e1d6 | 2005-08-31 23:57:59 -0400 | [diff] [blame] | 5907 | |
| 5908 | HARDWARE RANDOM NUMBER GENERATOR CORE |
Joe Perches | c0d0787 | 2009-09-23 15:57:17 -0700 | [diff] [blame] | 5909 | M: Matt Mackall <mpm@selenic.com> |
| 5910 | M: Herbert Xu <herbert@gondor.apana.org.au> |
Michael S. Tsirkin | 3eda7167 | 2015-01-16 09:16:00 +0200 | [diff] [blame] | 5911 | L: linux-crypto@vger.kernel.org |
Joe Perches | c0d0787 | 2009-09-23 15:57:17 -0700 | [diff] [blame] | 5912 | S: Odd fixes |
Geert Uytterhoeven | f6c60b1 | 2016-05-22 11:05:56 +0200 | [diff] [blame] | 5913 | F: Documentation/devicetree/bindings/rng/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5914 | F: Documentation/hw_random.txt |
| 5915 | F: drivers/char/hw_random/ |
| 5916 | F: include/linux/hw_random.h |
Robert Love | 860e1d6 | 2005-08-31 23:57:59 -0400 | [diff] [blame] | 5917 | |
Ohad Ben-Cohen | 8b37fcf | 2011-09-12 10:43:01 +0300 | [diff] [blame] | 5918 | HARDWARE SPINLOCK CORE |
| 5919 | M: Ohad Ben-Cohen <ohad@wizery.com> |
Bjorn Andersson | 69ae989 | 2016-02-13 17:35:19 -0800 | [diff] [blame] | 5920 | M: Bjorn Andersson <bjorn.andersson@linaro.org> |
Bjorn Andersson | d758684 | 2016-03-21 22:43:54 -0700 | [diff] [blame] | 5921 | L: linux-remoteproc@vger.kernel.org |
Ohad Ben-Cohen | 8b37fcf | 2011-09-12 10:43:01 +0300 | [diff] [blame] | 5922 | S: Maintained |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 5923 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git |
Bjorn Andersson | 2dbd858 | 2016-07-06 20:44:29 -0700 | [diff] [blame] | 5924 | F: Documentation/devicetree/bindings/hwlock/ |
Ohad Ben-Cohen | 8b37fcf | 2011-09-12 10:43:01 +0300 | [diff] [blame] | 5925 | F: Documentation/hwspinlock.txt |
Bjorn Andersson | 2dbd858 | 2016-07-06 20:44:29 -0700 | [diff] [blame] | 5926 | F: drivers/hwspinlock/ |
Ohad Ben-Cohen | 8b37fcf | 2011-09-12 10:43:01 +0300 | [diff] [blame] | 5927 | F: include/linux/hwspinlock.h |
| 5928 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5929 | HARMONY SOUND DRIVER |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 5930 | L: linux-parisc@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5931 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5932 | F: sound/parisc/harmony.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5933 | |
Brian Boylston | 214de83 | 2016-05-25 11:19:54 -0500 | [diff] [blame] | 5934 | HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER |
Jimmy Vance | 4cfccbd | 2016-11-10 15:25:27 -0500 | [diff] [blame] | 5935 | M: Jimmy Vance <jimmy.vance@hpe.com> |
Brian Boylston | 214de83 | 2016-05-25 11:19:54 -0500 | [diff] [blame] | 5936 | S: Supported |
| 5937 | F: Documentation/watchdog/hpwdt.txt |
| 5938 | F: drivers/watchdog/hpwdt.c |
| 5939 | |
Stephen M. Cameron | 9257aa4 | 2010-05-27 15:14:44 -0500 | [diff] [blame] | 5940 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
Don Brace | a0a268a | 2016-02-23 15:21:44 -0600 | [diff] [blame] | 5941 | M: Don Brace <don.brace@microsemi.com> |
Don Brace | a0a268a | 2016-02-23 15:21:44 -0600 | [diff] [blame] | 5942 | L: esc.storagedev@microsemi.com |
Don Brace | 693373d | 2014-10-15 22:32:41 +0000 | [diff] [blame] | 5943 | L: linux-scsi@vger.kernel.org |
Stephen M. Cameron | 9257aa4 | 2010-05-27 15:14:44 -0500 | [diff] [blame] | 5944 | S: Supported |
| 5945 | F: Documentation/scsi/hpsa.txt |
| 5946 | F: drivers/scsi/hpsa*.[ch] |
| 5947 | F: include/linux/cciss*.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5948 | F: include/uapi/linux/cciss*.h |
Stephen M. Cameron | 9257aa4 | 2010-05-27 15:14:44 -0500 | [diff] [blame] | 5949 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5950 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
Don Brace | 516fdce | 2016-03-08 16:05:51 -0600 | [diff] [blame] | 5951 | M: Don Brace <don.brace@microsemi.com> |
Don Brace | 516fdce | 2016-03-08 16:05:51 -0600 | [diff] [blame] | 5952 | L: esc.storagedev@microsemi.com |
Don Brace | 693373d | 2014-10-15 22:32:41 +0000 | [diff] [blame] | 5953 | L: linux-scsi@vger.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5954 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5955 | F: Documentation/blockdev/cciss.txt |
| 5956 | F: drivers/block/cciss* |
| 5957 | F: include/linux/cciss_ioctl.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 5958 | F: include/uapi/linux/cciss_ioctl.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5959 | |
Vishwanathapura, Niranjana | 7d6f728 | 2017-04-12 20:29:22 -0700 | [diff] [blame] | 5960 | OPA-VNIC DRIVER |
| 5961 | M: Dennis Dalessandro <dennis.dalessandro@intel.com> |
| 5962 | M: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> |
| 5963 | L: linux-rdma@vger.kernel.org |
| 5964 | S: Supported |
| 5965 | F: drivers/infiniband/ulp/opa_vnic |
| 5966 | |
Dennis Dalessandro | f48ad61 | 2016-05-19 05:26:51 -0700 | [diff] [blame] | 5967 | HFI1 DRIVER |
| 5968 | M: Mike Marciniszyn <mike.marciniszyn@intel.com> |
| 5969 | M: Dennis Dalessandro <dennis.dalessandro@intel.com> |
| 5970 | L: linux-rdma@vger.kernel.org |
| 5971 | S: Supported |
| 5972 | F: drivers/infiniband/hw/hfi1 |
| 5973 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5974 | HFS FILESYSTEM |
Geert Uytterhoeven | 6cf515e | 2011-04-24 10:32:49 +0200 | [diff] [blame] | 5975 | L: linux-fsdevel@vger.kernel.org |
| 5976 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5977 | F: Documentation/filesystems/hfs.txt |
| 5978 | F: fs/hfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5979 | |
Geert Uytterhoeven | ef575f4 | 2014-01-23 15:54:21 -0800 | [diff] [blame] | 5980 | HFSPLUS FILESYSTEM |
| 5981 | L: linux-fsdevel@vger.kernel.org |
| 5982 | S: Orphan |
| 5983 | F: Documentation/filesystems/hfsplus.txt |
| 5984 | F: fs/hfsplus/ |
| 5985 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5986 | HGA FRAMEBUFFER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 5987 | M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5988 | L: linux-nvidia@lists.surfsouth.com |
| 5989 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml |
| 5990 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 5991 | F: drivers/video/fbdev/hgafb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5992 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 5993 | HIBERNATION (aka Software Suspend, aka swsusp) |
Rafael J. Wysocki | 49db190 | 2013-10-09 01:47:53 +0200 | [diff] [blame] | 5994 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
Rafael J. Wysocki | 7fb0608 | 2014-03-20 03:34:47 +0100 | [diff] [blame] | 5995 | M: Pavel Machek <pavel@ucw.cz> |
WANG Cong | bf1c138 | 2011-10-08 20:57:50 +0200 | [diff] [blame] | 5996 | L: linux-pm@vger.kernel.org |
Rafael J. Wysocki | 6865644 | 2016-11-25 00:13:56 +0100 | [diff] [blame] | 5997 | B: https://bugzilla.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 5998 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 5999 | F: arch/x86/power/ |
| 6000 | F: drivers/base/power/ |
| 6001 | F: kernel/power/ |
| 6002 | F: include/linux/suspend.h |
| 6003 | F: include/linux/freezer.h |
| 6004 | F: include/linux/pm.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6005 | F: arch/*/include/asm/suspend*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6006 | |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 6007 | HID CORE LAYER |
Jiri Kosina | e5f6450 | 2015-08-09 09:11:34 +0200 | [diff] [blame] | 6008 | M: Jiri Kosina <jikos@kernel.org> |
Jiri Kosina | 406df15 | 2015-11-20 10:16:06 +0100 | [diff] [blame] | 6009 | R: Benjamin Tissoires <benjamin.tissoires@redhat.com> |
Dmitry Torokhov | eb76c5c | 2007-11-02 09:07:33 -0400 | [diff] [blame] | 6010 | L: linux-input@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6011 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 6012 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6013 | F: drivers/hid/ |
| 6014 | F: include/linux/hid* |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6015 | F: include/uapi/linux/hid* |
Jiri Kosina | 4ef4caa | 2006-12-14 12:03:30 +0100 | [diff] [blame] | 6016 | |
Srinivas Pandruvada | 30ee72f | 2015-05-15 11:35:38 -0700 | [diff] [blame] | 6017 | HID SENSOR HUB DRIVERS |
Jiri Kosina | e5f6450 | 2015-08-09 09:11:34 +0200 | [diff] [blame] | 6018 | M: Jiri Kosina <jikos@kernel.org> |
Srinivas Pandruvada | 30ee72f | 2015-05-15 11:35:38 -0700 | [diff] [blame] | 6019 | M: Jonathan Cameron <jic23@kernel.org> |
| 6020 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> |
| 6021 | L: linux-input@vger.kernel.org |
| 6022 | L: linux-iio@vger.kernel.org |
| 6023 | S: Maintained |
| 6024 | F: Documentation/hid/hid-sensor* |
| 6025 | F: drivers/hid/hid-sensor-* |
| 6026 | F: drivers/iio/*/hid-* |
| 6027 | F: include/linux/hid-sensor-* |
| 6028 | |
Ingo Molnar | 38bed54 | 2007-02-22 09:09:34 +0100 | [diff] [blame] | 6029 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6030 | M: Thomas Gleixner <tglx@linutronix.de> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 6031 | L: linux-kernel@vger.kernel.org |
Peter Zijlstra | 75fc2d3 | 2011-12-05 17:27:08 +0100 | [diff] [blame] | 6032 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
Ingo Molnar | 38bed54 | 2007-02-22 09:09:34 +0100 | [diff] [blame] | 6033 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6034 | F: Documentation/timers/ |
Thomas Gleixner | 5cee964 | 2014-06-22 12:06:40 +0200 | [diff] [blame] | 6035 | F: kernel/time/hrtimer.c |
Thomas Gleixner | 88606e8 | 2010-12-14 21:37:13 +0100 | [diff] [blame] | 6036 | F: kernel/time/clockevents.c |
| 6037 | F: kernel/time/tick*.* |
| 6038 | F: kernel/time/timer_*.c |
Joe Perches | 05ed849 | 2011-07-25 17:13:14 -0700 | [diff] [blame] | 6039 | F: include/linux/clockchips.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6040 | F: include/linux/hrtimer.h |
Ingo Molnar | 38bed54 | 2007-02-22 09:09:34 +0100 | [diff] [blame] | 6041 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6042 | HIGH-SPEED SCC DRIVER FOR AX.25 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6043 | L: linux-hams@vger.kernel.org |
Uwe Kleine-König | 8b64f2a | 2012-05-29 15:07:11 -0700 | [diff] [blame] | 6044 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6045 | F: drivers/net/hamradio/dmascc.c |
| 6046 | F: drivers/net/hamradio/scc.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6047 | |
HighPoint Linux Team | ede1e6f | 2006-05-16 14:38:09 +0800 | [diff] [blame] | 6048 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6049 | M: HighPoint Linux Team <linux@highpoint-tech.com> |
HighPoint Linux Team | ede1e6f | 2006-05-16 14:38:09 +0800 | [diff] [blame] | 6050 | W: http://www.highpoint-tech.com |
| 6051 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6052 | F: Documentation/scsi/hptiop.txt |
| 6053 | F: drivers/scsi/hptiop.c |
HighPoint Linux Team | ede1e6f | 2006-05-16 14:38:09 +0800 | [diff] [blame] | 6054 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6055 | HIPPI |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6056 | M: Jes Sorensen <jes@trained-monkey.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6057 | L: linux-hippi@sunsite.dk |
| 6058 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6059 | F: include/linux/hippidevice.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6060 | F: include/uapi/linux/if_hippi.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6061 | F: net/802/hippi.c |
Jeff Kirsher | ff5a3b5 | 2011-08-01 22:48:13 -0700 | [diff] [blame] | 6062 | F: drivers/net/hippi/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6063 | |
Daode Huang | b30d74e | 2016-07-01 17:34:05 +0800 | [diff] [blame] | 6064 | HISILICON NETWORK SUBSYSTEM DRIVER |
| 6065 | M: Yisen Zhuang <yisen.zhuang@huawei.com> |
| 6066 | M: Salil Mehta <salil.mehta@huawei.com> |
| 6067 | L: netdev@vger.kernel.org |
| 6068 | W: http://www.hisilicon.com |
| 6069 | S: Maintained |
| 6070 | F: drivers/net/ethernet/hisilicon/ |
| 6071 | F: Documentation/devicetree/bindings/net/hisilicon*.txt |
| 6072 | |
oulijun | 66a9bae | 2016-07-21 19:06:57 +0800 | [diff] [blame] | 6073 | HISILICON ROCE DRIVER |
| 6074 | M: Lijun Ou <oulijun@huawei.com> |
| 6075 | M: Wei Hu(Xavier) <xavier.huwei@huawei.com> |
| 6076 | L: linux-rdma@vger.kernel.org |
| 6077 | S: Maintained |
| 6078 | F: drivers/infiniband/hw/hns/ |
| 6079 | F: Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt |
| 6080 | |
John Garry | 16c6c25 | 2015-11-18 00:50:59 +0800 | [diff] [blame] | 6081 | HISILICON SAS Controller |
| 6082 | M: John Garry <john.garry@huawei.com> |
| 6083 | W: http://www.hisilicon.com |
| 6084 | S: Supported |
| 6085 | F: drivers/scsi/hisi_sas/ |
| 6086 | F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt |
| 6087 | |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 6088 | HOST AP DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6089 | M: Jouni Malinen <j@w1.fi> |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 6090 | L: linux-wireless@vger.kernel.org |
Jouni Malinen | ffd74ac | 2016-09-27 18:42:58 +0300 | [diff] [blame] | 6091 | W: http://w1.fi/hostap-driver.html |
| 6092 | S: Obsolete |
Kalle Valo | eb4f98d | 2015-11-18 09:42:58 +0200 | [diff] [blame] | 6093 | F: drivers/net/wireless/intersil/hostap/ |
Jouni Malinen | ff1d276 | 2005-05-12 22:54:16 -0400 | [diff] [blame] | 6094 | |
Carlos Corbacho | dd8cd77 | 2008-02-05 02:17:15 +0000 | [diff] [blame] | 6095 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
Matthew Garrett | d0944853 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 6096 | L: platform-driver-x86@vger.kernel.org |
Carlos Corbacho | 95c7021 | 2011-05-02 09:57:08 +0100 | [diff] [blame] | 6097 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6098 | F: drivers/platform/x86/tc1100-wmi.c |
Carlos Corbacho | dd8cd77 | 2008-02-05 02:17:15 +0000 | [diff] [blame] | 6099 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6100 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6101 | M: Jaroslav Kysela <perex@perex.cz> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6102 | S: Maintained |
Jeff Kirsher | 7e25d72 | 2011-07-24 13:19:50 -0700 | [diff] [blame] | 6103 | F: drivers/net/ethernet/hp/hp100.* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6104 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 6105 | HPET: High Precision Event Timers driver |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6106 | M: Clemens Ladisch <clemens@ladisch.de> |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 6107 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6108 | F: Documentation/timers/hpet.txt |
| 6109 | F: drivers/char/hpet.c |
| 6110 | F: include/linux/hpet.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6111 | F: include/uapi/linux/hpet.h |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 6112 | |
Jiri Kosina | e07b5d7 | 2010-03-18 10:59:57 +0100 | [diff] [blame] | 6113 | HPET: x86 |
Joe Perches | 9e06f63 | 2014-04-03 14:48:53 -0700 | [diff] [blame] | 6114 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6115 | F: arch/x86/kernel/hpet.c |
| 6116 | F: arch/x86/include/asm/hpet.h |
Bob Picco | b9b0332 | 2005-11-07 00:59:19 -0800 | [diff] [blame] | 6117 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6118 | HPFS FILESYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6119 | M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6120 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
| 6121 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6122 | F: fs/hpfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6123 | |
Sebastian Reichel | 3441cde | 2013-11-27 10:17:22 +0100 | [diff] [blame] | 6124 | HSI SUBSYSTEM |
Sebastian Reichel | 56459ea | 2014-03-28 19:57:59 +0100 | [diff] [blame] | 6125 | M: Sebastian Reichel <sre@kernel.org> |
| 6126 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git |
Sebastian Reichel | 3441cde | 2013-11-27 10:17:22 +0100 | [diff] [blame] | 6127 | S: Maintained |
| 6128 | F: Documentation/ABI/testing/sysfs-bus-hsi |
Tobias Klauser | 83e676c | 2017-04-21 15:59:04 +0200 | [diff] [blame] | 6129 | F: Documentation/driver-api/hsi.rst |
Sebastian Reichel | 3441cde | 2013-11-27 10:17:22 +0100 | [diff] [blame] | 6130 | F: drivers/hsi/ |
| 6131 | F: include/linux/hsi/ |
| 6132 | F: include/uapi/linux/hsi/ |
| 6133 | |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 6134 | HSO 3G MODEM DRIVER |
Baruch Siach | 0bf09c3 | 2017-02-28 10:39:48 +0200 | [diff] [blame] | 6135 | L: linux-usb@vger.kernel.org |
| 6136 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6137 | F: drivers/net/usb/hso.c |
Denis Joseph Barrow | 11cd29b | 2009-01-02 13:50:36 +0000 | [diff] [blame] | 6138 | |
Arvid Brodin | 19990e2 | 2013-11-29 23:36:00 +0100 | [diff] [blame] | 6139 | HSR NETWORK PROTOCOL |
| 6140 | M: Arvid Brodin <arvid.brodin@alten.se> |
| 6141 | L: netdev@vger.kernel.org |
| 6142 | S: Maintained |
| 6143 | F: net/hsr/ |
| 6144 | |
Pau Oliva Fora | 5a18c34 | 2008-06-02 00:38:35 -0400 | [diff] [blame] | 6145 | HTCPEN TOUCHSCREEN DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6146 | M: Pau Oliva Fora <pof@eslack.org> |
Pau Oliva Fora | 5a18c34 | 2008-06-02 00:38:35 -0400 | [diff] [blame] | 6147 | L: linux-input@vger.kernel.org |
| 6148 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6149 | F: drivers/input/touchscreen/htcpen.c |
Pau Oliva Fora | 5a18c34 | 2008-06-02 00:38:35 -0400 | [diff] [blame] | 6150 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6151 | HUGETLB FILESYSTEM |
Nadia Yvette Chambers | 6d49e35 | 2012-12-06 10:39:54 +0100 | [diff] [blame] | 6152 | M: Nadia Yvette Chambers <nyc@holomorphy.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6153 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6154 | F: fs/hugetlbfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6155 | |
Jean-Christophe Trotin | fe713d6 | 2016-09-05 12:31:29 -0300 | [diff] [blame] | 6156 | HVA ST MEDIA DRIVER |
| 6157 | M: Jean-Christophe Trotin <jean-christophe.trotin@st.com> |
| 6158 | L: linux-media@vger.kernel.org |
| 6159 | T: git git://linuxtv.org/media_tree.git |
| 6160 | W: https://linuxtv.org |
| 6161 | S: Supported |
| 6162 | F: drivers/media/platform/sti/hva |
| 6163 | |
K. Y. Srinivasan | 0518318 | 2011-12-01 14:31:30 -0800 | [diff] [blame] | 6164 | Hyper-V CORE AND DRIVERS |
Joe Perches | 9c3646d | 2015-06-25 15:02:00 -0700 | [diff] [blame] | 6165 | M: "K. Y. Srinivasan" <kys@microsoft.com> |
K. Y. Srinivasan | 0518318 | 2011-12-01 14:31:30 -0800 | [diff] [blame] | 6166 | M: Haiyang Zhang <haiyangz@microsoft.com> |
Stephen Hemminger | 421463b | 2017-01-05 09:36:26 -0800 | [diff] [blame] | 6167 | M: Stephen Hemminger <sthemmin@microsoft.com> |
K. Y. Srinivasan | 0518318 | 2011-12-01 14:31:30 -0800 | [diff] [blame] | 6168 | L: devel@linuxdriverproject.org |
| 6169 | S: Maintained |
Haiyang Zhang | a416274 | 2013-05-09 14:34:55 -0700 | [diff] [blame] | 6170 | F: arch/x86/include/asm/mshyperv.h |
| 6171 | F: arch/x86/include/uapi/asm/hyperv.h |
| 6172 | F: arch/x86/kernel/cpu/mshyperv.c |
K. Y. Srinivasan | 8730046 | 2017-01-18 16:45:02 -0700 | [diff] [blame] | 6173 | F: arch/x86/hyperv |
K. Y. Srinivasan | 0518318 | 2011-12-01 14:31:30 -0800 | [diff] [blame] | 6174 | F: drivers/hid/hid-hyperv.c |
Haiyang Zhang | a416274 | 2013-05-09 14:34:55 -0700 | [diff] [blame] | 6175 | F: drivers/hv/ |
Haiyang Zhang | f92ca80 | 2013-11-21 14:32:10 -0800 | [diff] [blame] | 6176 | F: drivers/input/serio/hyperv-keyboard.c |
Jake Oshins | 4daace0 | 2016-02-16 21:56:23 +0000 | [diff] [blame] | 6177 | F: drivers/pci/host/pci-hyperv.c |
K. Y. Srinivasan | 0518318 | 2011-12-01 14:31:30 -0800 | [diff] [blame] | 6178 | F: drivers/net/hyperv/ |
Haiyang Zhang | a416274 | 2013-05-09 14:34:55 -0700 | [diff] [blame] | 6179 | F: drivers/scsi/storvsc_drv.c |
Stephen Hemminger | 95096f2 | 2016-12-03 12:34:40 -0800 | [diff] [blame] | 6180 | F: drivers/uio/uio_hv_generic.c |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 6181 | F: drivers/video/fbdev/hyperv_fb.c |
Haiyang Zhang | a416274 | 2013-05-09 14:34:55 -0700 | [diff] [blame] | 6182 | F: include/linux/hyperv.h |
| 6183 | F: tools/hv/ |
Dexuan Cui | 54bf725 | 2015-08-05 00:52:45 -0700 | [diff] [blame] | 6184 | F: Documentation/ABI/stable/sysfs-bus-vmbus |
K. Y. Srinivasan | 0518318 | 2011-12-01 14:31:30 -0800 | [diff] [blame] | 6185 | |
Peter Rosin | 7724fd0 | 2016-03-14 23:52:43 +0100 | [diff] [blame] | 6186 | I2C MUXES |
| 6187 | M: Peter Rosin <peda@axentia.se> |
| 6188 | L: linux-i2c@vger.kernel.org |
| 6189 | S: Maintained |
Peter Rosin | 2254d24 | 2016-05-04 22:15:30 +0200 | [diff] [blame] | 6190 | F: Documentation/i2c/i2c-topology |
Peter Rosin | 7724fd0 | 2016-03-14 23:52:43 +0100 | [diff] [blame] | 6191 | F: Documentation/i2c/muxes/ |
| 6192 | F: Documentation/devicetree/bindings/i2c/i2c-mux* |
Peter Rosin | e8813c1 | 2016-07-08 12:12:17 +0200 | [diff] [blame] | 6193 | F: Documentation/devicetree/bindings/i2c/i2c-arb* |
Peter Rosin | 0ac8eb6 | 2016-07-08 12:13:49 +0200 | [diff] [blame] | 6194 | F: Documentation/devicetree/bindings/i2c/i2c-gate* |
Peter Rosin | 7724fd0 | 2016-03-14 23:52:43 +0100 | [diff] [blame] | 6195 | F: drivers/i2c/i2c-mux.c |
| 6196 | F: drivers/i2c/muxes/ |
| 6197 | F: include/linux/i2c-mux.h |
| 6198 | |
Jean Delvare | d85c8a6a | 2012-11-13 22:27:19 +0100 | [diff] [blame] | 6199 | I2C OVER PARALLEL PORT |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 6200 | M: Jean Delvare <jdelvare@suse.com> |
Jean Delvare | d85c8a6a | 2012-11-13 22:27:19 +0100 | [diff] [blame] | 6201 | L: linux-i2c@vger.kernel.org |
| 6202 | S: Maintained |
| 6203 | F: Documentation/i2c/busses/i2c-parport |
| 6204 | F: Documentation/i2c/busses/i2c-parport-light |
| 6205 | F: drivers/i2c/busses/i2c-parport.c |
| 6206 | F: drivers/i2c/busses/i2c-parport-light.c |
| 6207 | |
| 6208 | I2C/SMBUS CONTROLLER DRIVERS FOR PC |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 6209 | M: Jean Delvare <jdelvare@suse.com> |
Jean Delvare | d85c8a6a | 2012-11-13 22:27:19 +0100 | [diff] [blame] | 6210 | L: linux-i2c@vger.kernel.org |
| 6211 | S: Maintained |
| 6212 | F: Documentation/i2c/busses/i2c-ali1535 |
| 6213 | F: Documentation/i2c/busses/i2c-ali1563 |
| 6214 | F: Documentation/i2c/busses/i2c-ali15x3 |
| 6215 | F: Documentation/i2c/busses/i2c-amd756 |
| 6216 | F: Documentation/i2c/busses/i2c-amd8111 |
| 6217 | F: Documentation/i2c/busses/i2c-i801 |
| 6218 | F: Documentation/i2c/busses/i2c-nforce2 |
| 6219 | F: Documentation/i2c/busses/i2c-piix4 |
| 6220 | F: Documentation/i2c/busses/i2c-sis5595 |
| 6221 | F: Documentation/i2c/busses/i2c-sis630 |
| 6222 | F: Documentation/i2c/busses/i2c-sis96x |
| 6223 | F: Documentation/i2c/busses/i2c-via |
| 6224 | F: Documentation/i2c/busses/i2c-viapro |
| 6225 | F: drivers/i2c/busses/i2c-ali1535.c |
| 6226 | F: drivers/i2c/busses/i2c-ali1563.c |
| 6227 | F: drivers/i2c/busses/i2c-ali15x3.c |
| 6228 | F: drivers/i2c/busses/i2c-amd756.c |
| 6229 | F: drivers/i2c/busses/i2c-amd756-s4882.c |
| 6230 | F: drivers/i2c/busses/i2c-amd8111.c |
| 6231 | F: drivers/i2c/busses/i2c-i801.c |
| 6232 | F: drivers/i2c/busses/i2c-isch.c |
| 6233 | F: drivers/i2c/busses/i2c-nforce2.c |
| 6234 | F: drivers/i2c/busses/i2c-nforce2-s4985.c |
| 6235 | F: drivers/i2c/busses/i2c-piix4.c |
| 6236 | F: drivers/i2c/busses/i2c-sis5595.c |
| 6237 | F: drivers/i2c/busses/i2c-sis630.c |
| 6238 | F: drivers/i2c/busses/i2c-sis96x.c |
| 6239 | F: drivers/i2c/busses/i2c-via.c |
| 6240 | F: drivers/i2c/busses/i2c-viapro.c |
| 6241 | |
Neil Horman | cb7f07a | 2013-02-10 11:59:03 -0500 | [diff] [blame] | 6242 | I2C/SMBUS ISMT DRIVER |
| 6243 | M: Seth Heasley <seth.heasley@intel.com> |
| 6244 | M: Neil Horman <nhorman@tuxdriver.com> |
| 6245 | L: linux-i2c@vger.kernel.org |
| 6246 | F: drivers/i2c/busses/i2c-ismt.c |
| 6247 | F: Documentation/i2c/busses/i2c-ismt |
| 6248 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 6249 | I2C/SMBUS STUB DRIVER |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 6250 | M: Jean Delvare <jdelvare@suse.com> |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 6251 | L: linux-i2c@vger.kernel.org |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 6252 | S: Maintained |
Cesar Eduardo Barros | 8547a5b | 2012-12-16 21:11:54 +0100 | [diff] [blame] | 6253 | F: drivers/i2c/i2c-stub.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 6254 | |
Jean Delvare | 5b54396 | 2005-08-15 19:51:02 +0200 | [diff] [blame] | 6255 | I2C SUBSYSTEM |
Wolfram Sang | 14d77c4 | 2013-02-08 20:54:40 +0100 | [diff] [blame] | 6256 | M: Wolfram Sang <wsa@the-dreams.de> |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 6257 | L: linux-i2c@vger.kernel.org |
Wolfram Sang | 9d4ea27 | 2014-04-02 20:25:59 +0200 | [diff] [blame] | 6258 | W: https://i2c.wiki.kernel.org/ |
| 6259 | Q: https://patchwork.ozlabs.org/project/linux-i2c/list/ |
Wolfram Sang | 14d77c4 | 2013-02-08 20:54:40 +0100 | [diff] [blame] | 6260 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6261 | S: Maintained |
Wolfram Sang | 40ed1b4 | 2014-12-08 10:53:13 +0100 | [diff] [blame] | 6262 | F: Documentation/devicetree/bindings/i2c/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6263 | F: Documentation/i2c/ |
| 6264 | F: drivers/i2c/ |
Wolfram Sang | 630bc46 | 2015-10-29 08:25:48 +0100 | [diff] [blame] | 6265 | F: drivers/i2c/*/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6266 | F: include/linux/i2c.h |
Jean Delvare | 03b70d6 | 2009-11-26 09:22:32 +0100 | [diff] [blame] | 6267 | F: include/linux/i2c-*.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6268 | F: include/uapi/linux/i2c.h |
| 6269 | F: include/uapi/linux/i2c-*.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6270 | |
Wolfram Sang | 4560d67 | 2014-08-19 10:08:35 -0500 | [diff] [blame] | 6271 | I2C ACPI SUPPORT |
| 6272 | M: Mika Westerberg <mika.westerberg@linux.intel.com> |
| 6273 | L: linux-i2c@vger.kernel.org |
| 6274 | L: linux-acpi@vger.kernel.org |
| 6275 | S: Maintained |
Wolfram Sang | 4560d67 | 2014-08-19 10:08:35 -0500 | [diff] [blame] | 6276 | |
Jean Delvare | d85c8a6a | 2012-11-13 22:27:19 +0100 | [diff] [blame] | 6277 | I2C-TAOS-EVM DRIVER |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 6278 | M: Jean Delvare <jdelvare@suse.com> |
Jean Delvare | d85c8a6a | 2012-11-13 22:27:19 +0100 | [diff] [blame] | 6279 | L: linux-i2c@vger.kernel.org |
| 6280 | S: Maintained |
| 6281 | F: Documentation/i2c/busses/i2c-taos-evm |
| 6282 | F: drivers/i2c/busses/i2c-taos-evm.c |
| 6283 | |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 6284 | I2C-TINY-USB DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6285 | M: Till Harbaum <till@harbaum.org> |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 6286 | L: linux-i2c@vger.kernel.org |
Joe Perches | 932d187 | 2009-04-07 21:10:58 -0700 | [diff] [blame] | 6287 | W: http://www.harbaum.org/till/i2c_tiny_usb |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 6288 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6289 | F: drivers/i2c/busses/i2c-tiny-usb.c |
Till Harbaum | e8c76ee | 2007-05-01 23:26:35 +0200 | [diff] [blame] | 6290 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6291 | i386 BOOT CODE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6292 | M: "H. Peter Anvin" <hpa@zytor.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6293 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6294 | F: arch/x86/boot/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6295 | |
| 6296 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6297 | M: "H. Peter Anvin" <hpa@zytor.com> |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6298 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6299 | S: Maintained |
| 6300 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6301 | IA64 (Itanium) PLATFORM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6302 | M: Tony Luck <tony.luck@intel.com> |
| 6303 | M: Fenghua Yu <fenghua.yu@intel.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6304 | L: linux-ia64@vger.kernel.org |
Tony Luck | 6b1c70b | 2011-10-11 15:40:38 -0700 | [diff] [blame] | 6305 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6306 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6307 | F: arch/ia64/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6308 | |
Leonidas Da Silva Barbosa | 4cd3875 | 2015-08-08 18:29:27 -0300 | [diff] [blame] | 6309 | IBM Power VMX Cryptographic instructions |
| 6310 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> |
Paulo Flabiano Smorigo | 5cd01fe | 2015-08-10 16:14:17 -0300 | [diff] [blame] | 6311 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> |
Leonidas Da Silva Barbosa | 4cd3875 | 2015-08-08 18:29:27 -0300 | [diff] [blame] | 6312 | L: linux-crypto@vger.kernel.org |
| 6313 | S: Supported |
| 6314 | F: drivers/crypto/vmx/Makefile |
| 6315 | F: drivers/crypto/vmx/Kconfig |
| 6316 | F: drivers/crypto/vmx/vmx.c |
| 6317 | F: drivers/crypto/vmx/aes* |
| 6318 | F: drivers/crypto/vmx/ghash* |
| 6319 | F: drivers/crypto/vmx/ppc-xlate.pl |
| 6320 | |
Kent Yoder | 956c203 | 2012-09-07 04:17:01 +0800 | [diff] [blame] | 6321 | IBM Power in-Nest Crypto Acceleration |
Leonidas Da Silva Barbosa | 4cd3875 | 2015-08-08 18:29:27 -0300 | [diff] [blame] | 6322 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> |
Paulo Flabiano Smorigo | 5cd01fe | 2015-08-10 16:14:17 -0300 | [diff] [blame] | 6323 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> |
Kent Yoder | 956c203 | 2012-09-07 04:17:01 +0800 | [diff] [blame] | 6324 | L: linux-crypto@vger.kernel.org |
| 6325 | S: Supported |
Dan Streetman | 28bceea | 2015-06-18 12:28:32 -0400 | [diff] [blame] | 6326 | F: drivers/crypto/nx/Makefile |
| 6327 | F: drivers/crypto/nx/Kconfig |
| 6328 | F: drivers/crypto/nx/nx-aes* |
| 6329 | F: drivers/crypto/nx/nx-sha* |
| 6330 | F: drivers/crypto/nx/nx.* |
| 6331 | F: drivers/crypto/nx/nx_csbcpb.h |
| 6332 | F: drivers/crypto/nx/nx_debugfs.h |
Kent Yoder | 956c203 | 2012-09-07 04:17:01 +0800 | [diff] [blame] | 6333 | |
Seth Jennings | 0e16aaf | 2012-07-19 09:42:40 -0500 | [diff] [blame] | 6334 | IBM Power 842 compression accelerator |
Haren Myneni | f275d38 | 2017-04-01 10:25:40 -0700 | [diff] [blame] | 6335 | M: Haren Myneni <haren@us.ibm.com> |
Seth Jennings | 0e16aaf | 2012-07-19 09:42:40 -0500 | [diff] [blame] | 6336 | S: Supported |
Dan Streetman | 28bceea | 2015-06-18 12:28:32 -0400 | [diff] [blame] | 6337 | F: drivers/crypto/nx/Makefile |
| 6338 | F: drivers/crypto/nx/Kconfig |
Dan Streetman | 7011a12 | 2015-05-07 13:49:17 -0400 | [diff] [blame] | 6339 | F: drivers/crypto/nx/nx-842* |
Dan Streetman | 2da572c | 2015-05-07 13:49:14 -0400 | [diff] [blame] | 6340 | F: include/linux/sw842.h |
Dan Streetman | 2062c5b | 2015-05-07 13:49:15 -0400 | [diff] [blame] | 6341 | F: crypto/842.c |
Dan Streetman | 2da572c | 2015-05-07 13:49:14 -0400 | [diff] [blame] | 6342 | F: lib/842/ |
Seth Jennings | 0e16aaf | 2012-07-19 09:42:40 -0500 | [diff] [blame] | 6343 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6344 | IBM Power Linux RAID adapter |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6345 | M: Brian King <brking@us.ibm.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6346 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6347 | F: drivers/scsi/ipr.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6348 | |
Santiago Leon | 9d348af | 2010-09-03 18:29:53 +0000 | [diff] [blame] | 6349 | IBM Power Virtual Ethernet Device Driver |
Thomas Falcon | eddd63a | 2015-01-09 14:29:40 -0600 | [diff] [blame] | 6350 | M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> |
Santiago Leon | 9d348af | 2010-09-03 18:29:53 +0000 | [diff] [blame] | 6351 | L: netdev@vger.kernel.org |
| 6352 | S: Supported |
Jeff Kirsher | 9aa3283 | 2011-05-13 14:29:12 -0700 | [diff] [blame] | 6353 | F: drivers/net/ethernet/ibm/ibmveth.* |
Santiago Leon | 9d348af | 2010-09-03 18:29:53 +0000 | [diff] [blame] | 6354 | |
Thomas Falcon | 032c5e8 | 2015-12-21 11:26:06 -0600 | [diff] [blame] | 6355 | IBM Power SRIOV Virtual NIC Device Driver |
| 6356 | M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> |
| 6357 | M: John Allen <jallen@linux.vnet.ibm.com> |
| 6358 | L: netdev@vger.kernel.org |
| 6359 | S: Supported |
| 6360 | F: drivers/net/ethernet/ibm/ibmvnic.* |
| 6361 | |
Nathan Fontenot | e6babec | 2014-04-09 13:32:06 -0500 | [diff] [blame] | 6362 | IBM Power Virtual SCSI Device Drivers |
Tyrel Datwyler | bcbde52 | 2015-01-12 16:31:34 -0800 | [diff] [blame] | 6363 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
Robert Jennings | 4b7652c | 2012-07-31 12:34:36 -0500 | [diff] [blame] | 6364 | L: linux-scsi@vger.kernel.org |
| 6365 | S: Supported |
Nathan Fontenot | e6babec | 2014-04-09 13:32:06 -0500 | [diff] [blame] | 6366 | F: drivers/scsi/ibmvscsi/ibmvscsi* |
Bryant G. Ly | 88a678b | 2016-06-28 17:05:35 -0500 | [diff] [blame] | 6367 | F: include/scsi/viosrp.h |
| 6368 | |
| 6369 | IBM Power Virtual SCSI Device Target Driver |
| 6370 | M: Bryant G. Ly <bryantly@linux.vnet.ibm.com> |
| 6371 | M: Michael Cyr <mikecyr@linux.vnet.ibm.com> |
| 6372 | L: linux-scsi@vger.kernel.org |
| 6373 | L: target-devel@vger.kernel.org |
| 6374 | S: Supported |
| 6375 | F: drivers/scsi/ibmvscsi_tgt/ |
Nathan Fontenot | e6babec | 2014-04-09 13:32:06 -0500 | [diff] [blame] | 6376 | |
| 6377 | IBM Power Virtual FC Device Drivers |
Tyrel Datwyler | 44b4dad | 2015-01-12 16:31:35 -0800 | [diff] [blame] | 6378 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
Nathan Fontenot | e6babec | 2014-04-09 13:32:06 -0500 | [diff] [blame] | 6379 | L: linux-scsi@vger.kernel.org |
| 6380 | S: Supported |
| 6381 | F: drivers/scsi/ibmvscsi/ibmvfc* |
Robert Jennings | 4b7652c | 2012-07-31 12:34:36 -0500 | [diff] [blame] | 6382 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6383 | IBM ServeRAID RAID DRIVER |
Michael Opdenacker | f9213e7 | 2014-08-08 14:23:50 -0700 | [diff] [blame] | 6384 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6385 | F: drivers/scsi/ips.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6386 | |
Peter Tyser | 6ed9f9c | 2012-04-18 09:48:24 -0500 | [diff] [blame] | 6387 | ICH LPC AND GPIO DRIVER |
| 6388 | M: Peter Tyser <ptyser@xes-inc.com> |
| 6389 | S: Maintained |
| 6390 | F: drivers/mfd/lpc_ich.c |
| 6391 | F: drivers/gpio/gpio-ich.c |
| 6392 | |
Marek Vasut | 3e1aec4e | 2017-01-12 02:03:24 +0100 | [diff] [blame] | 6393 | IDT VersaClock 5 CLOCK DRIVER |
| 6394 | M: Marek Vasut <marek.vasut@gmail.com> |
| 6395 | S: Maintained |
| 6396 | F: drivers/clk/clk-versaclock5.c |
| 6397 | |
Bartlomiej Zolnierkiewicz | 1e7106f | 2007-01-27 13:46:14 +0100 | [diff] [blame] | 6398 | IDE SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6399 | M: "David S. Miller" <davem@davemloft.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6400 | L: linux-ide@vger.kernel.org |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 6401 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 6402 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6403 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6404 | F: Documentation/ide/ |
| 6405 | F: drivers/ide/ |
| 6406 | F: include/linux/ide.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6407 | |
Ike Panhc | 6cb8c13 | 2011-08-25 22:28:45 +0800 | [diff] [blame] | 6408 | IDEAPAD LAPTOP EXTRAS DRIVER |
| 6409 | M: Ike Panhc <ike.pan@canonical.com> |
| 6410 | L: platform-driver-x86@vger.kernel.org |
| 6411 | W: http://launchpad.net/ideapad-laptop |
| 6412 | S: Maintained |
| 6413 | F: drivers/platform/x86/ideapad-laptop.c |
| 6414 | |
Andrey Moiseev | 1ea4c16 | 2013-08-25 22:51:15 -0700 | [diff] [blame] | 6415 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
| 6416 | M: Andrey Moiseev <o2g.org.ru@gmail.com> |
| 6417 | L: linux-input@vger.kernel.org |
| 6418 | W: https://github.com/o2genum/ideapad-slidebar |
| 6419 | S: Maintained |
| 6420 | F: drivers/input/misc/ideapad_slidebar.c |
| 6421 | |
Bartlomiej Zolnierkiewicz | 0f861e8 | 2009-03-31 20:15:31 +0200 | [diff] [blame] | 6422 | IDE/ATAPI DRIVERS |
Borislav Petkov | 487ba8e | 2012-10-29 18:40:10 +0100 | [diff] [blame] | 6423 | M: Borislav Petkov <bp@alien8.de> |
Jens Axboe | 9c5b0ce | 2007-01-03 18:15:20 +0100 | [diff] [blame] | 6424 | L: linux-ide@vger.kernel.org |
Borislav Petkov | c404c19 | 2007-12-24 15:23:44 +0100 | [diff] [blame] | 6425 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6426 | F: Documentation/cdrom/ide-cd |
| 6427 | F: drivers/ide/ide-cd* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6428 | |
Sergey Lapin | 02cf228 | 2009-06-08 12:18:50 +0000 | [diff] [blame] | 6429 | IEEE 802.15.4 SUBSYSTEM |
Alexander Aring | aff3eaa | 2016-02-19 09:59:10 +0100 | [diff] [blame] | 6430 | M: Alexander Aring <aar@pengutronix.de> |
Stefan Schmidt | 5cc9204 | 2016-10-25 16:34:35 +0200 | [diff] [blame] | 6431 | M: Stefan Schmidt <stefan@osg.samsung.com> |
Varka Bhadram | ebef9c1 | 2014-08-08 17:32:45 +0530 | [diff] [blame] | 6432 | L: linux-wpan@vger.kernel.org |
Alexander Aring | aff3eaa | 2016-02-19 09:59:10 +0100 | [diff] [blame] | 6433 | W: http://wpan.cakelab.org/ |
| 6434 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
| 6435 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git |
Sergey Lapin | 02cf228 | 2009-06-08 12:18:50 +0000 | [diff] [blame] | 6436 | S: Maintained |
| 6437 | F: net/ieee802154/ |
Dmitry Eremin-Solenikov | 6865335 | 2012-07-13 20:15:34 +0000 | [diff] [blame] | 6438 | F: net/mac802154/ |
Cesar Eduardo Barros | 251741b | 2013-01-04 15:35:30 -0800 | [diff] [blame] | 6439 | F: drivers/net/ieee802154/ |
Alexander Aring | 580947d | 2014-10-25 09:41:05 +0200 | [diff] [blame] | 6440 | F: include/linux/nl802154.h |
| 6441 | F: include/linux/ieee802154.h |
| 6442 | F: include/net/nl802154.h |
| 6443 | F: include/net/mac802154.h |
| 6444 | F: include/net/af_ieee802154.h |
| 6445 | F: include/net/cfg802154.h |
| 6446 | F: include/net/ieee802154_netdev.h |
Varka Bhadram | ebef9c1 | 2014-08-08 17:32:45 +0530 | [diff] [blame] | 6447 | F: Documentation/networking/ieee802154.txt |
Sergey Lapin | 02cf228 | 2009-06-08 12:18:50 +0000 | [diff] [blame] | 6448 | |
Yotam Gigi | 1ce8460 | 2017-02-01 15:30:02 +0200 | [diff] [blame] | 6449 | IFE PROTOCOL |
| 6450 | M: Yotam Gigi <yotamg@mellanox.com> |
| 6451 | M: Jamal Hadi Salim <jhs@mojatatu.com> |
| 6452 | F: net/ife |
| 6453 | F: include/net/ife.h |
| 6454 | F: include/uapi/linux/ife.h |
| 6455 | |
Sean Young | b1c9719 | 2014-10-23 17:58:22 -0300 | [diff] [blame] | 6456 | IGORPLUG-USB IR RECEIVER |
| 6457 | M: Sean Young <sean@mess.org> |
| 6458 | L: linux-media@vger.kernel.org |
| 6459 | S: Maintained |
| 6460 | F: drivers/media/rc/igorplugusb.c |
| 6461 | |
Sean Young | 40ad4a3 | 2012-11-19 10:32:53 -0300 | [diff] [blame] | 6462 | IGUANAWORKS USB IR TRANSCEIVER |
| 6463 | M: Sean Young <sean@mess.org> |
| 6464 | L: linux-media@vger.kernel.org |
| 6465 | S: Maintained |
| 6466 | F: drivers/media/rc/iguanair.c |
| 6467 | |
Peter Rosin | ed13134 | 2016-11-08 12:58:55 +0100 | [diff] [blame] | 6468 | IIO DIGITAL POTENTIOMETER DAC |
| 6469 | M: Peter Rosin <peda@axentia.se> |
| 6470 | L: linux-iio@vger.kernel.org |
| 6471 | S: Maintained |
Peter Rosin | 7fde148 | 2016-11-08 12:58:56 +0100 | [diff] [blame] | 6472 | F: Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac |
Peter Rosin | ed13134 | 2016-11-08 12:58:55 +0100 | [diff] [blame] | 6473 | F: Documentation/devicetree/bindings/iio/dac/dpot-dac.txt |
Peter Rosin | 7fde148 | 2016-11-08 12:58:56 +0100 | [diff] [blame] | 6474 | F: drivers/iio/dac/dpot-dac.c |
Peter Rosin | ed13134 | 2016-11-08 12:58:55 +0100 | [diff] [blame] | 6475 | |
Peter Rosin | e778aa1 | 2016-11-08 12:58:57 +0100 | [diff] [blame] | 6476 | IIO ENVELOPE DETECTOR |
| 6477 | M: Peter Rosin <peda@axentia.se> |
| 6478 | L: linux-iio@vger.kernel.org |
| 6479 | S: Maintained |
Peter Rosin | b475f80 | 2016-11-08 12:58:58 +0100 | [diff] [blame] | 6480 | F: Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector |
Peter Rosin | e778aa1 | 2016-11-08 12:58:57 +0100 | [diff] [blame] | 6481 | F: Documentation/devicetree/bindings/iio/adc/envelope-detector.txt |
Peter Rosin | b475f80 | 2016-11-08 12:58:58 +0100 | [diff] [blame] | 6482 | F: drivers/iio/adc/envelope-detector.c |
Peter Rosin | e778aa1 | 2016-11-08 12:58:57 +0100 | [diff] [blame] | 6483 | |
Peter Rosin | a36954f | 2017-05-14 21:51:09 +0200 | [diff] [blame] | 6484 | IIO MULTIPLEXER |
| 6485 | M: Peter Rosin <peda@axentia.se> |
| 6486 | L: linux-iio@vger.kernel.org |
| 6487 | S: Maintained |
| 6488 | F: Documentation/devicetree/bindings/iio/multiplexer/iio-mux.txt |
Peter Rosin | 7ba9df5 | 2017-05-14 21:51:10 +0200 | [diff] [blame] | 6489 | F: drivers/iio/multiplexer/iio-mux.c |
Peter Rosin | a36954f | 2017-05-14 21:51:09 +0200 | [diff] [blame] | 6490 | |
Ameya Palande | 9545f86 | 2012-01-10 09:00:58 -0800 | [diff] [blame] | 6491 | IIO SUBSYSTEM AND DRIVERS |
Sachin Kamat | 030a13d | 2013-09-11 11:00:00 +0100 | [diff] [blame] | 6492 | M: Jonathan Cameron <jic23@kernel.org> |
Lars-Peter Clausen | f0d6116 | 2014-08-18 09:29:00 +0100 | [diff] [blame] | 6493 | R: Hartmut Knaack <knaack.h@gmx.de> |
| 6494 | R: Lars-Peter Clausen <lars@metafoo.de> |
Peter Meerwald-Stadler | 6fca5aa | 2016-03-13 16:22:33 +0100 | [diff] [blame] | 6495 | R: Peter Meerwald-Stadler <pmeerw@pmeerw.net> |
Ameya Palande | 9545f86 | 2012-01-10 09:00:58 -0800 | [diff] [blame] | 6496 | L: linux-iio@vger.kernel.org |
Jonathan Cameron | 21d4165 | 2016-07-03 10:18:03 +0100 | [diff] [blame] | 6497 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git |
Ameya Palande | 9545f86 | 2012-01-10 09:00:58 -0800 | [diff] [blame] | 6498 | S: Maintained |
Geert Uytterhoeven | 866b148 | 2016-05-22 11:05:57 +0200 | [diff] [blame] | 6499 | F: Documentation/devicetree/bindings/iio/ |
Lars-Peter Clausen | 03e7c25 | 2012-04-26 13:46:42 +0200 | [diff] [blame] | 6500 | F: drivers/iio/ |
Ameya Palande | 9545f86 | 2012-01-10 09:00:58 -0800 | [diff] [blame] | 6501 | F: drivers/staging/iio/ |
Daniel Baluta | 8fe671f | 2014-11-13 15:19:47 -0800 | [diff] [blame] | 6502 | F: include/linux/iio/ |
Roberta Dobrescu | 817020c | 2015-02-26 10:49:25 +0200 | [diff] [blame] | 6503 | F: tools/iio/ |
Ameya Palande | 9545f86 | 2012-01-10 09:00:58 -0800 | [diff] [blame] | 6504 | |
Stanislaw Gruszka | 6551926 | 2011-01-08 15:19:40 +0100 | [diff] [blame] | 6505 | IKANOS/ADI EAGLE ADSL USB DRIVER |
| 6506 | M: Matthieu Castet <castet.matthieu@free.fr> |
| 6507 | M: Stanislaw Gruszka <stf_xl@wp.pl> |
| 6508 | S: Maintained |
| 6509 | F: drivers/usb/atm/ueagle-atm.c |
| 6510 | |
Paul Burton | 8ef3ff2 | 2016-08-26 15:17:48 +0100 | [diff] [blame] | 6511 | IMGTEC ASCII LCD DRIVER |
| 6512 | M: Paul Burton <paul.burton@imgtec.com> |
| 6513 | S: Maintained |
| 6514 | F: Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt |
Paul Burton | 0cad855 | 2016-08-26 15:17:49 +0100 | [diff] [blame] | 6515 | F: drivers/auxdisplay/img-ascii-lcd.c |
Paul Burton | 8ef3ff2 | 2016-08-26 15:17:48 +0100 | [diff] [blame] | 6516 | |
Guenter Roeck | e89ab51 | 2013-03-08 08:13:09 -0800 | [diff] [blame] | 6517 | INA209 HARDWARE MONITOR DRIVER |
| 6518 | M: Guenter Roeck <linux@roeck-us.net> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 6519 | L: linux-hwmon@vger.kernel.org |
Guenter Roeck | e89ab51 | 2013-03-08 08:13:09 -0800 | [diff] [blame] | 6520 | S: Maintained |
| 6521 | F: Documentation/hwmon/ina209 |
| 6522 | F: Documentation/devicetree/bindings/i2c/ina209.txt |
| 6523 | F: drivers/hwmon/ina209.c |
| 6524 | |
| 6525 | INA2XX HARDWARE MONITOR DRIVER |
| 6526 | M: Guenter Roeck <linux@roeck-us.net> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 6527 | L: linux-hwmon@vger.kernel.org |
Guenter Roeck | e89ab51 | 2013-03-08 08:13:09 -0800 | [diff] [blame] | 6528 | S: Maintained |
| 6529 | F: Documentation/hwmon/ina2xx |
| 6530 | F: drivers/hwmon/ina2xx.c |
| 6531 | F: include/linux/platform_data/ina2xx.h |
| 6532 | |
Samuel Iglesias Gonsalvez | 14dc124 | 2012-11-16 16:19:59 +0100 | [diff] [blame] | 6533 | INDUSTRY PACK SUBSYSTEM (IPACK) |
| 6534 | M: Samuel Iglesias Gonsalvez <siglesias@igalia.com> |
| 6535 | M: Jens Taprogge <jens.taprogge@taprogge.org> |
| 6536 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
| 6537 | L: industrypack-devel@lists.sourceforge.net |
| 6538 | W: http://industrypack.sourceforge.net |
| 6539 | S: Maintained |
| 6540 | F: drivers/ipack/ |
| 6541 | |
Zubair Lutfullah Kakakhel | 8adc53f | 2015-03-18 16:16:37 +0000 | [diff] [blame] | 6542 | INGENIC JZ4780 DMA Driver |
| 6543 | M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> |
| 6544 | S: Maintained |
| 6545 | F: drivers/dma/dma-jz4780.c |
| 6546 | |
Harvey Hunt | 87cf40e | 2016-08-30 15:22:55 +0100 | [diff] [blame] | 6547 | INGENIC JZ4780 NAND DRIVER |
| 6548 | M: Harvey Hunt <harveyhuntnexus@gmail.com> |
| 6549 | L: linux-mtd@lists.infradead.org |
| 6550 | S: Maintained |
| 6551 | F: drivers/mtd/nand/jz4780_* |
| 6552 | |
Mimi Zohar | aa7168f | 2009-02-04 09:07:03 -0500 | [diff] [blame] | 6553 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
Mimi Zohar | 74dd744 | 2014-02-27 08:44:45 -0500 | [diff] [blame] | 6554 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
Dmitry Kasatkin | bfd33c4 | 2015-01-15 14:18:18 +0200 | [diff] [blame] | 6555 | M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com> |
Mimi Zohar | 74dd744 | 2014-02-27 08:44:45 -0500 | [diff] [blame] | 6556 | L: linux-ima-devel@lists.sourceforge.net |
| 6557 | L: linux-ima-user@lists.sourceforge.net |
| 6558 | L: linux-security-module@vger.kernel.org |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 6559 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git |
Mimi Zohar | aa7168f | 2009-02-04 09:07:03 -0500 | [diff] [blame] | 6560 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6561 | F: security/integrity/ima/ |
Mimi Zohar | aa7168f | 2009-02-04 09:07:03 -0500 | [diff] [blame] | 6562 | |
James Hogan | 9a4ea5a | 2014-11-17 09:17:49 -0300 | [diff] [blame] | 6563 | IMGTEC IR DECODER DRIVER |
| 6564 | M: James Hogan <james.hogan@imgtec.com> |
| 6565 | S: Maintained |
| 6566 | F: drivers/media/rc/img-ir/ |
| 6567 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6568 | IMS TWINTURBO FRAMEBUFFER DRIVER |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 6569 | L: linux-fbdev@vger.kernel.org |
Paul Mundt | 843393d | 2007-11-19 13:11:04 +0900 | [diff] [blame] | 6570 | S: Orphan |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 6571 | F: drivers/video/fbdev/imsttfb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6572 | |
| 6573 | INFINIBAND SUBSYSTEM |
Doug Ledford | b6b2bbe | 2015-05-05 12:57:09 -0400 | [diff] [blame] | 6574 | M: Doug Ledford <dledford@redhat.com> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6575 | M: Sean Hefty <sean.hefty@intel.com> |
| 6576 | M: Hal Rosenstock <hal.rosenstock@gmail.com> |
Roland Dreier | e6cc0fd | 2009-09-07 21:54:38 -0700 | [diff] [blame] | 6577 | L: linux-rdma@vger.kernel.org |
Roland Dreier | 605841f | 2010-09-27 17:51:24 -0700 | [diff] [blame] | 6578 | W: http://www.openfabrics.org/ |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 6579 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
Doug Ledford | 2936ae0 | 2015-05-11 21:03:36 -0400 | [diff] [blame] | 6580 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6581 | S: Supported |
Geert Uytterhoeven | 3d35d32 | 2017-03-12 14:16:53 +0100 | [diff] [blame] | 6582 | F: Documentation/devicetree/bindings/infiniband/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6583 | F: Documentation/infiniband/ |
| 6584 | F: drivers/infiniband/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6585 | F: include/uapi/linux/if_infiniband.h |
Yann Droneaud | 954138d | 2015-05-04 14:31:03 +0200 | [diff] [blame] | 6586 | F: include/uapi/rdma/ |
| 6587 | F: include/rdma/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6588 | |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 6589 | INOTIFY |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6590 | M: John McCutchan <john@johnmccutchan.com> |
| 6591 | M: Robert Love <rlove@rlove.org> |
| 6592 | M: Eric Paris <eparis@parisplace.org> |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 6593 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6594 | F: Documentation/filesystems/inotify.txt |
| 6595 | F: fs/notify/inotify/ |
| 6596 | F: include/linux/inotify.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6597 | F: include/uapi/linux/inotify.h |
Robert Love | c9f04f5 | 2005-07-15 12:21:07 -0400 | [diff] [blame] | 6598 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6599 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6600 | M: Dmitry Torokhov <dmitry.torokhov@gmail.com> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6601 | L: linux-input@vger.kernel.org |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 6602 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6603 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6604 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6605 | F: drivers/input/ |
Dmitry Torokhov | f4eea7e | 2012-05-10 22:31:59 -0700 | [diff] [blame] | 6606 | F: include/linux/input.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6607 | F: include/uapi/linux/input.h |
Dmitry Torokhov | f4eea7e | 2012-05-10 22:31:59 -0700 | [diff] [blame] | 6608 | F: include/linux/input/ |
Andreas Färber | e52d839 | 2016-03-10 17:19:28 -0800 | [diff] [blame] | 6609 | F: Documentation/devicetree/bindings/input/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6610 | |
Henrik Rydberg | 3267a87 | 2010-06-24 19:10:40 -0700 | [diff] [blame] | 6611 | INPUT MULTITOUCH (MT) PROTOCOL |
Henrik Rydberg | 75dd112 | 2015-01-08 14:32:21 -0800 | [diff] [blame] | 6612 | M: Henrik Rydberg <rydberg@bitmath.org> |
Henrik Rydberg | 3267a87 | 2010-06-24 19:10:40 -0700 | [diff] [blame] | 6613 | L: linux-input@vger.kernel.org |
Henrik Rydberg | 75dd112 | 2015-01-08 14:32:21 -0800 | [diff] [blame] | 6614 | S: Odd fixes |
Mauro Carvalho Chehab | e2ba573 | 2017-04-04 17:51:04 -0700 | [diff] [blame] | 6615 | F: Documentation/input/multi-touch-protocol.rst |
Henrik Rydberg | 7f9c245 | 2010-12-07 09:18:28 +0100 | [diff] [blame] | 6616 | F: drivers/input/input-mt.c |
Henrik Rydberg | 3267a87 | 2010-06-24 19:10:40 -0700 | [diff] [blame] | 6617 | K: \b(ABS|SYN)_MT_ |
| 6618 | |
Jie Yang | 97fa99a | 2015-02-02 16:55:27 +0800 | [diff] [blame] | 6619 | INTEL ASoC BDW/HSW DRIVERS |
| 6620 | M: Jie Yang <yang.jie@linux.intel.com> |
Jim Davis | e5747e4 | 2015-06-25 15:01:58 -0700 | [diff] [blame] | 6621 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Jie Yang | 97fa99a | 2015-02-02 16:55:27 +0800 | [diff] [blame] | 6622 | S: Supported |
Joe Perches | e8e1225 | 2015-06-30 14:59:39 -0700 | [diff] [blame] | 6623 | F: sound/soc/intel/common/sst-dsp* |
| 6624 | F: sound/soc/intel/common/sst-firmware.c |
| 6625 | F: sound/soc/intel/boards/broadwell.c |
| 6626 | F: sound/soc/intel/haswell/ |
Jie Yang | 97fa99a | 2015-02-02 16:55:27 +0800 | [diff] [blame] | 6627 | |
Dave Jiang | 4ac13e1 | 2011-07-29 17:16:55 -0700 | [diff] [blame] | 6628 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
| 6629 | M: Intel SCU Linux support <intel-linux-scu@intel.com> |
Lukasz Dorau | fdc5813 | 2014-04-07 15:39:58 -0700 | [diff] [blame] | 6630 | M: Artur Paszkiewicz <artur.paszkiewicz@intel.com> |
Dave Jiang | 4ac13e1 | 2011-07-29 17:16:55 -0700 | [diff] [blame] | 6631 | L: linux-scsi@vger.kernel.org |
Dave Jiang | 7106891 | 2012-09-25 15:24:56 -0700 | [diff] [blame] | 6632 | T: git git://git.code.sf.net/p/intel-sas/isci |
| 6633 | S: Supported |
Dave Jiang | 4ac13e1 | 2011-07-29 17:16:55 -0700 | [diff] [blame] | 6634 | F: drivers/scsi/isci/ |
Dave Jiang | 4ac13e1 | 2011-07-29 17:16:55 -0700 | [diff] [blame] | 6635 | |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 6636 | INTEL HID EVENT DRIVER |
| 6637 | M: Alex Hung <alex.hung@canonical.com> |
| 6638 | L: platform-driver-x86@vger.kernel.org |
| 6639 | S: Maintained |
| 6640 | F: drivers/platform/x86/intel-hid.c |
| 6641 | |
AceLan Kao | 332e081 | 2016-07-01 09:51:49 +0800 | [diff] [blame] | 6642 | INTEL VIRTUAL BUTTON DRIVER |
| 6643 | M: AceLan Kao <acelan.kao@canonical.com> |
| 6644 | L: platform-driver-x86@vger.kernel.org |
| 6645 | S: Maintained |
| 6646 | F: drivers/platform/x86/intel-vbtn.c |
| 6647 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 6648 | INTEL IDLE DRIVER |
Rafael J. Wysocki | 6af3399 | 2016-11-30 02:33:07 +0100 | [diff] [blame] | 6649 | M: Jacob Pan <jacob.jun.pan@linux.intel.com> |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 6650 | M: Len Brown <lenb@kernel.org> |
WANG Cong | bf1c138 | 2011-10-08 20:57:50 +0200 | [diff] [blame] | 6651 | L: linux-pm@vger.kernel.org |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 6652 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
Rafael J. Wysocki | 2ed38cb | 2016-11-30 02:32:17 +0100 | [diff] [blame] | 6653 | B: https://bugzilla.kernel.org |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 6654 | S: Supported |
| 6655 | F: drivers/idle/intel_idle.c |
| 6656 | |
Srinivas Pandruvada | 8fb861f | 2016-08-07 02:25:39 -0700 | [diff] [blame] | 6657 | INTEL INTEGRATED SENSOR HUB DRIVER |
| 6658 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> |
| 6659 | M: Jiri Kosina <jikos@kernel.org> |
| 6660 | L: linux-input@vger.kernel.org |
| 6661 | S: Maintained |
| 6662 | F: drivers/hid/intel-ish-hid/ |
| 6663 | |
Kristen Carlson Accardi | 7c1ac18 | 2014-12-15 15:58:24 -0800 | [diff] [blame] | 6664 | INTEL PSTATE DRIVER |
Srinivas Pandruvada | 58ac1f6 | 2015-11-02 09:45:46 -0800 | [diff] [blame] | 6665 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> |
| 6666 | M: Len Brown <lenb@kernel.org> |
Kristen Carlson Accardi | 7c1ac18 | 2014-12-15 15:58:24 -0800 | [diff] [blame] | 6667 | L: linux-pm@vger.kernel.org |
| 6668 | S: Supported |
| 6669 | F: drivers/cpufreq/intel_pstate.c |
| 6670 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 6671 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
Sudip Mukherjee | d8e3875 | 2016-09-19 14:43:58 -0700 | [diff] [blame] | 6672 | M: Maik Broemme <mbroemme@libmpq.org> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 6673 | L: linux-fbdev@vger.kernel.org |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 6674 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6675 | F: Documentation/fb/intelfb.txt |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 6676 | F: drivers/video/fbdev/intelfb/ |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 6677 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6678 | INTEL 810/815 FRAMEBUFFER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6679 | M: Antonino Daplas <adaplas@gmail.com> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 6680 | L: linux-fbdev@vger.kernel.org |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 6681 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 6682 | F: drivers/video/fbdev/i810/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6683 | |
Thomas, Sujith | f4a9bc4 | 2008-11-05 16:15:31 +0530 | [diff] [blame] | 6684 | INTEL MENLOW THERMAL DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6685 | M: Sujith Thomas <sujith.thomas@intel.com> |
Matthew Garrett | d0944853 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 6686 | L: platform-driver-x86@vger.kernel.org |
Rafael J. Wysocki | 5ca92bd | 2013-10-10 23:03:44 +0200 | [diff] [blame] | 6687 | W: https://01.org/linux-acpi |
Thomas, Sujith | f4a9bc4 | 2008-11-05 16:15:31 +0530 | [diff] [blame] | 6688 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6689 | F: drivers/platform/x86/intel_menlow.c |
Thomas, Sujith | f4a9bc4 | 2008-11-05 16:15:31 +0530 | [diff] [blame] | 6690 | |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 6691 | INTEL I/OAT DMA DRIVER |
Dave Jiang | 18ebd56 | 2013-10-22 15:29:20 -0700 | [diff] [blame] | 6692 | M: Dave Jiang <dave.jiang@intel.com> |
Dan Williams | 08223d8 | 2014-08-19 06:07:56 -0700 | [diff] [blame] | 6693 | R: Dan Williams <dan.j.williams@intel.com> |
Dave Jiang | 18ebd56 | 2013-10-22 15:29:20 -0700 | [diff] [blame] | 6694 | L: dmaengine@vger.kernel.org |
| 6695 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ |
| 6696 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6697 | F: drivers/dma/ioat* |
Nelson, Shannon | 248a9dc | 2007-07-15 23:37:20 -0700 | [diff] [blame] | 6698 | |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 6699 | INTEL IOMMU (VT-d) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6700 | M: David Woodhouse <dwmw2@infradead.org> |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 6701 | L: iommu@lists.linux-foundation.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 6702 | T: git git://git.infradead.org/iommu-2.6.git |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 6703 | S: Supported |
Roland Dreier | 3fb3961 | 2011-10-10 17:07:15 -0700 | [diff] [blame] | 6704 | F: drivers/iommu/intel-iommu.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6705 | F: include/linux/intel-iommu.h |
David Woodhouse | 6c8909b | 2008-10-18 16:12:17 +0100 | [diff] [blame] | 6706 | |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 6707 | INTEL IOP-ADMA DMA DRIVER |
Dan Williams | 08223d8 | 2014-08-19 06:07:56 -0700 | [diff] [blame] | 6708 | R: Dan Williams <dan.j.williams@intel.com> |
Dan Williams | 1dd8372 | 2012-08-15 19:20:02 -0700 | [diff] [blame] | 6709 | S: Odd fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6710 | F: drivers/dma/iop-adma.c |
Dan Williams | b3e5f26 | 2007-08-07 10:26:35 -0700 | [diff] [blame] | 6711 | |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 6712 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
Krzysztof Hałasa | 5529c2c | 2014-09-30 10:32:58 +0200 | [diff] [blame] | 6713 | M: Krzysztof Halasa <khalasa@piap.pl> |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 6714 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6715 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
| 6716 | F: arch/arm/mach-ixp4xx/include/mach/npe.h |
| 6717 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c |
| 6718 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c |
Jeff Kirsher | b47da97 | 2011-07-14 22:13:23 -0700 | [diff] [blame] | 6719 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6720 | F: drivers/net/wan/ixp4xx_hss.c |
Krzysztof Hałasa | 9251ce9 | 2008-12-21 23:52:36 +0100 | [diff] [blame] | 6721 | |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 6722 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6723 | M: Deepak Saxena <dsaxena@plexity.net> |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 6724 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6725 | F: drivers/char/hw_random/ixp4xx-rng.c |
Michael Buesch | 844dd05 | 2006-06-26 00:24:59 -0700 | [diff] [blame] | 6726 | |
Jeff Kirsher | 2f30232 | 2015-03-25 17:01:03 -0700 | [diff] [blame] | 6727 | INTEL ETHERNET DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6728 | M: Jeff Kirsher <jeffrey.t.kirsher@intel.com> |
Jiri Benc | eff471b | 2016-04-05 16:39:37 +0200 | [diff] [blame] | 6729 | L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers) |
Jesse Brandeburg | f6fde11 | 2012-10-09 02:52:14 +0000 | [diff] [blame] | 6730 | W: http://www.intel.com/support/feedback.htm |
Auke Kok | d94e6fe | 2008-03-03 14:37:47 -0800 | [diff] [blame] | 6731 | W: http://e1000.sourceforge.net/ |
Jeff Kirsher | 2f30232 | 2015-03-25 17:01:03 -0700 | [diff] [blame] | 6732 | Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/ |
| 6733 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git |
| 6734 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6735 | S: Supported |
Jeff Kirsher | 0d16440 | 2010-10-05 01:15:17 +0000 | [diff] [blame] | 6736 | F: Documentation/networking/e100.txt |
| 6737 | F: Documentation/networking/e1000.txt |
| 6738 | F: Documentation/networking/e1000e.txt |
| 6739 | F: Documentation/networking/igb.txt |
| 6740 | F: Documentation/networking/igbvf.txt |
| 6741 | F: Documentation/networking/ixgb.txt |
| 6742 | F: Documentation/networking/ixgbe.txt |
| 6743 | F: Documentation/networking/ixgbevf.txt |
Jesse Brandeburg | 1bff652 | 2013-09-11 08:40:23 +0000 | [diff] [blame] | 6744 | F: Documentation/networking/i40e.txt |
Greg Rose | 105bf2f | 2013-12-21 06:13:16 +0000 | [diff] [blame] | 6745 | F: Documentation/networking/i40evf.txt |
Jeff Kirsher | dee1ad4 | 2011-04-07 07:42:33 -0700 | [diff] [blame] | 6746 | F: drivers/net/ethernet/intel/ |
Joe Perches | bc90d29 | 2014-02-25 13:35:53 -0800 | [diff] [blame] | 6747 | F: drivers/net/ethernet/intel/*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6748 | |
Faisal Latif | 6e4de86 | 2016-01-20 13:40:16 -0600 | [diff] [blame] | 6749 | INTEL RDMA RNIC DRIVER |
| 6750 | M: Faisal Latif <faisal.latif@intel.com> |
Shiraz Saleem | 3b9d965 | 2016-12-05 11:28:32 -0600 | [diff] [blame] | 6751 | M: Shiraz Saleem <shiraz.saleem@intel.com> |
Faisal Latif | 6e4de86 | 2016-01-20 13:40:16 -0600 | [diff] [blame] | 6752 | L: linux-rdma@vger.kernel.org |
| 6753 | S: Supported |
| 6754 | F: drivers/infiniband/hw/i40iw/ |
| 6755 | |
Andy Shevchenko | 224f9e6 | 2016-07-11 16:05:18 +0300 | [diff] [blame] | 6756 | INTEL MERRIFIELD GPIO DRIVER |
| 6757 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
| 6758 | L: linux-gpio@vger.kernel.org |
| 6759 | S: Maintained |
| 6760 | F: drivers/gpio/gpio-merrifield.c |
| 6761 | |
Linus Walleij | 0963d59b | 2013-10-19 15:39:17 +0200 | [diff] [blame] | 6762 | INTEL-MID GPIO DRIVER |
| 6763 | M: David Cohen <david.a.cohen@linux.intel.com> |
| 6764 | L: linux-gpio@vger.kernel.org |
| 6765 | S: Maintained |
| 6766 | F: drivers/gpio/gpio-intel-mid.c |
| 6767 | |
Stanislav Yakovlev | ca907a9 | 2012-03-24 03:41:01 -0400 | [diff] [blame] | 6768 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
| 6769 | M: Stanislav Yakovlev <stas.yakovlev@gmail.com> |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 6770 | L: linux-wireless@vger.kernel.org |
Stanislav Yakovlev | ca907a9 | 2012-03-24 03:41:01 -0400 | [diff] [blame] | 6771 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6772 | F: Documentation/networking/README.ipw2100 |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6773 | F: Documentation/networking/README.ipw2200 |
Kalle Valo | 367a109 | 2015-11-17 20:24:59 +0200 | [diff] [blame] | 6774 | F: drivers/net/wireless/intel/ipw2x00/ |
James Ketrenos | 826d2ab | 2005-11-07 18:56:59 -0600 | [diff] [blame] | 6775 | |
Alexander Shishkin | 5760b0a | 2015-09-22 15:47:20 +0300 | [diff] [blame] | 6776 | INTEL(R) TRACE HUB |
| 6777 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> |
| 6778 | S: Supported |
| 6779 | F: Documentation/trace/intel_th.txt |
| 6780 | F: drivers/hwtracing/intel_th/ |
| 6781 | |
Shane Wang | 4bd96a7 | 2010-03-10 14:36:10 +0800 | [diff] [blame] | 6782 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
Wei, Gang | 74b18e1 | 2015-12-02 07:07:20 +0000 | [diff] [blame] | 6783 | M: Ning Sun <ning.sun@intel.com> |
Shane Wang | 4bd96a7 | 2010-03-10 14:36:10 +0800 | [diff] [blame] | 6784 | L: tboot-devel@lists.sourceforge.net |
| 6785 | W: http://tboot.sourceforge.net |
Gang Wei | e9b7d7c | 2012-09-17 14:08:59 -0700 | [diff] [blame] | 6786 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
Shane Wang | 4bd96a7 | 2010-03-10 14:36:10 +0800 | [diff] [blame] | 6787 | S: Supported |
| 6788 | F: Documentation/intel_txt.txt |
| 6789 | F: include/linux/tboot.h |
| 6790 | F: arch/x86/kernel/tboot.c |
| 6791 | |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 6792 | INTEL WIRELESS WIMAX CONNECTION 2400 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6793 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 6794 | M: linux-wimax@intel.com |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 6795 | L: wimax@linuxwimax.org (subscribers-only) |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 6796 | S: Supported |
| 6797 | W: http://linuxwimax.org |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6798 | F: Documentation/wimax/README.i2400m |
| 6799 | F: drivers/net/wimax/i2400m/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6800 | F: include/uapi/linux/wimax/i2400m.h |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 6801 | |
Stanislaw Gruszka | 1c0ce89 | 2011-03-25 17:59:39 +0100 | [diff] [blame] | 6802 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
| 6803 | M: Stanislaw Gruszka <sgruszka@redhat.com> |
Wey-Yi Guy | efa3144 | 2011-02-22 16:43:05 -0800 | [diff] [blame] | 6804 | L: linux-wireless@vger.kernel.org |
Stanislaw Gruszka | 1c0ce89 | 2011-03-25 17:59:39 +0100 | [diff] [blame] | 6805 | S: Supported |
Kalle Valo | 7ac9a36 | 2015-11-17 20:37:11 +0200 | [diff] [blame] | 6806 | F: drivers/net/wireless/intel/iwlegacy/ |
Wey-Yi Guy | efa3144 | 2011-02-22 16:43:05 -0800 | [diff] [blame] | 6807 | |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6808 | INTEL WIRELESS WIFI LINK (iwlwifi) |
Wey-Yi Guy | 15fae50 | 2012-04-16 12:03:35 -0700 | [diff] [blame] | 6809 | M: Johannes Berg <johannes.berg@intel.com> |
Johannes Berg | 6161b02 | 2013-07-23 14:03:39 +0200 | [diff] [blame] | 6810 | M: Emmanuel Grumbach <emmanuel.grumbach@intel.com> |
Luca Coelho | af5e964 | 2016-04-19 12:03:45 +0300 | [diff] [blame] | 6811 | M: Luca Coelho <luciano.coelho@intel.com> |
Johannes Berg | 7b9aebf | 2015-09-08 17:03:20 +0200 | [diff] [blame] | 6812 | M: Intel Linux Wireless <linuxwifi@intel.com> |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6813 | L: linux-wireless@vger.kernel.org |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6814 | W: http://intellinuxwireless.org |
Wey-Yi Guy | b62ff71 | 2011-09-22 15:14:49 -0700 | [diff] [blame] | 6815 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6816 | S: Supported |
Kalle Valo | e705c12 | 2015-11-17 20:57:38 +0200 | [diff] [blame] | 6817 | F: drivers/net/wireless/intel/iwlwifi/ |
Zhu Yi | b481de9 | 2007-09-25 17:54:57 -0700 | [diff] [blame] | 6818 | |
Tomas Winkler | de8fe02 | 2012-05-09 16:39:02 +0300 | [diff] [blame] | 6819 | INTEL MANAGEMENT ENGINE (mei) |
| 6820 | M: Tomas Winkler <tomas.winkler@intel.com> |
| 6821 | L: linux-kernel@vger.kernel.org |
| 6822 | S: Supported |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6823 | F: include/uapi/linux/mei.h |
Tomas Winkler | 5069288b | 2015-06-13 22:11:33 +0300 | [diff] [blame] | 6824 | F: include/linux/mei_cl_bus.h |
Tomas Winkler | de8fe02 | 2012-05-09 16:39:02 +0300 | [diff] [blame] | 6825 | F: drivers/misc/mei/* |
Tomas Winkler | 222818c | 2016-01-08 00:49:22 +0200 | [diff] [blame] | 6826 | F: drivers/watchdog/mei_wdt.c |
Cesar Eduardo Barros | e07950a1 | 2013-01-04 15:35:36 -0800 | [diff] [blame] | 6827 | F: Documentation/misc-devices/mei/* |
Shuah Khan | 986b891 | 2016-09-16 16:07:20 -0600 | [diff] [blame] | 6828 | F: samples/mei/* |
Tomas Winkler | de8fe02 | 2012-05-09 16:39:02 +0300 | [diff] [blame] | 6829 | |
Sudeep Dutt | 50ceb98 | 2015-10-13 11:21:19 -0700 | [diff] [blame] | 6830 | INTEL MIC DRIVERS (mic) |
| 6831 | M: Sudeep Dutt <sudeep.dutt@intel.com> |
| 6832 | M: Ashutosh Dixit <ashutosh.dixit@intel.com> |
| 6833 | S: Supported |
| 6834 | W: https://github.com/sudeepdutt/mic |
| 6835 | W: http://software.intel.com/en-us/mic-developer |
| 6836 | F: include/linux/mic_bus.h |
| 6837 | F: include/linux/scif.h |
| 6838 | F: include/uapi/linux/mic_common.h |
| 6839 | F: include/uapi/linux/mic_ioctl.h |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 6840 | F: include/uapi/linux/scif_ioctl.h |
Sudeep Dutt | 50ceb98 | 2015-10-13 11:21:19 -0700 | [diff] [blame] | 6841 | F: drivers/misc/mic/ |
| 6842 | F: drivers/dma/mic_x100_dma.c |
| 6843 | F: drivers/dma/mic_x100_dma.h |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 6844 | F: Documentation/mic/ |
Sudeep Dutt | 50ceb98 | 2015-10-13 11:21:19 -0700 | [diff] [blame] | 6845 | |
Qipeng Zha | fdca4f1 | 2015-12-11 22:45:00 +0800 | [diff] [blame] | 6846 | INTEL PMC/P-Unit IPC DRIVER |
qipeng.zha | 0a8b835 | 2015-06-27 00:32:15 +0800 | [diff] [blame] | 6847 | M: Zha Qipeng<qipeng.zha@intel.com> |
| 6848 | L: platform-driver-x86@vger.kernel.org |
| 6849 | S: Maintained |
| 6850 | F: drivers/platform/x86/intel_pmc_ipc.c |
Qipeng Zha | fdca4f1 | 2015-12-11 22:45:00 +0800 | [diff] [blame] | 6851 | F: drivers/platform/x86/intel_punit_ipc.c |
qipeng.zha | 0a8b835 | 2015-06-27 00:32:15 +0800 | [diff] [blame] | 6852 | F: arch/x86/include/asm/intel_pmc_ipc.h |
Qipeng Zha | fdca4f1 | 2015-12-11 22:45:00 +0800 | [diff] [blame] | 6853 | F: arch/x86/include/asm/intel_punit_ipc.h |
qipeng.zha | 0a8b835 | 2015-06-27 00:32:15 +0800 | [diff] [blame] | 6854 | |
Souvik Kumar Chakravarty | 378f956 | 2016-01-12 16:00:33 +0530 | [diff] [blame] | 6855 | INTEL TELEMETRY DRIVER |
| 6856 | M: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com> |
| 6857 | L: platform-driver-x86@vger.kernel.org |
| 6858 | S: Maintained |
Souvik Kumar Chakravarty | 378f956 | 2016-01-12 16:00:33 +0530 | [diff] [blame] | 6859 | F: arch/x86/include/asm/intel_telemetry.h |
Souvik Kumar Chakravarty | f1fc3cd | 2016-01-21 09:30:50 +0530 | [diff] [blame] | 6860 | F: drivers/platform/x86/intel_telemetry* |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 6861 | |
Rajneesh Bhardwaj | b740d2e | 2016-05-26 14:41:19 +0530 | [diff] [blame] | 6862 | INTEL PMC CORE DRIVER |
| 6863 | M: Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com> |
| 6864 | M: Vishwanath Somayaji <vishwanath.somayaji@intel.com> |
| 6865 | L: platform-driver-x86@vger.kernel.org |
| 6866 | S: Maintained |
| 6867 | F: arch/x86/include/asm/pmc_core.h |
| 6868 | F: drivers/platform/x86/intel_pmc_core* |
| 6869 | |
Linus Walleij | 3904b28 | 2016-10-25 16:15:54 +0200 | [diff] [blame] | 6870 | INVENSENSE MPU-3050 GYROSCOPE DRIVER |
| 6871 | M: Linus Walleij <linus.walleij@linaro.org> |
| 6872 | L: linux-iio@vger.kernel.org |
| 6873 | S: Maintained |
| 6874 | F: drivers/iio/gyro/mpu3050* |
| 6875 | F: Documentation/devicetree/bindings/iio/gyroscope/inv,mpu3050.txt |
| 6876 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6877 | IOC3 ETHERNET DRIVER |
| 6878 | M: Ralf Baechle <ralf@linux-mips.org> |
| 6879 | L: linux-mips@linux-mips.org |
| 6880 | S: Maintained |
| 6881 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
| 6882 | |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 6883 | IOC3 SERIAL DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6884 | M: Pat Gefre <pfg@sgi.com> |
Ralf Baechle | d39e072 | 2010-10-19 18:32:41 +0100 | [diff] [blame] | 6885 | L: linux-serial@vger.kernel.org |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 6886 | S: Maintained |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 6887 | F: drivers/tty/serial/ioc3_serial.c |
Ralf Baechle | cb109a0 | 2007-08-30 23:56:30 -0700 | [diff] [blame] | 6888 | |
Stephen Warren | 0b6e856 | 2013-09-13 13:10:27 -0600 | [diff] [blame] | 6889 | IOMMU DRIVERS |
| 6890 | M: Joerg Roedel <joro@8bytes.org> |
| 6891 | L: iommu@lists.linux-foundation.org |
| 6892 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
| 6893 | S: Maintained |
Geert Uytterhoeven | efcd94c | 2016-05-22 11:05:59 +0200 | [diff] [blame] | 6894 | F: Documentation/devicetree/bindings/iommu/ |
Stephen Warren | 0b6e856 | 2013-09-13 13:10:27 -0600 | [diff] [blame] | 6895 | F: drivers/iommu/ |
Thierry Reding | 82df0a4 | 2017-03-20 20:11:27 +0100 | [diff] [blame] | 6896 | F: include/linux/iommu.h |
| 6897 | F: include/linux/iova.h |
Stephen Warren | 0b6e856 | 2013-09-13 13:10:27 -0600 | [diff] [blame] | 6898 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 6899 | IP MASQUERADING |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6900 | M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6901 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6902 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6903 | |
Corey Minyard | 4409ebe | 2006-04-20 02:43:12 -0700 | [diff] [blame] | 6904 | IPMI SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6905 | M: Corey Minyard <minyard@acm.org> |
Randy Dunlap | b0c9065 | 2009-11-11 14:26:13 -0800 | [diff] [blame] | 6906 | L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers) |
Corey Minyard | 4409ebe | 2006-04-20 02:43:12 -0700 | [diff] [blame] | 6907 | W: http://openipmi.sourceforge.net/ |
| 6908 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6909 | F: Documentation/IPMI.txt |
| 6910 | F: drivers/char/ipmi/ |
| 6911 | F: include/linux/ipmi* |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6912 | F: include/uapi/linux/ipmi* |
Corey Minyard | 4409ebe | 2006-04-20 02:43:12 -0700 | [diff] [blame] | 6913 | |
Kenneth Westfield | 2d80089 | 2015-03-03 16:21:50 -0800 | [diff] [blame] | 6914 | QCOM AUDIO (ASoC) DRIVERS |
| 6915 | M: Patrick Lai <plai@codeaurora.org> |
| 6916 | M: Banajit Goswami <bgoswami@codeaurora.org> |
| 6917 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 6918 | S: Supported |
| 6919 | F: sound/soc/qcom/ |
| 6920 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6921 | IPS SCSI RAID DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6922 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6923 | L: linux-scsi@vger.kernel.org |
| 6924 | W: http://www.adaptec.com/ |
| 6925 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6926 | F: drivers/scsi/ips* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6927 | |
| 6928 | IPVS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6929 | M: Wensong Zhang <wensong@linux-vs.org> |
| 6930 | M: Simon Horman <horms@verge.net.au> |
| 6931 | M: Julian Anastasov <ja@ssi.bg> |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 6932 | L: netdev@vger.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6933 | L: lvs-devel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6934 | S: Maintained |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 6935 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git |
| 6936 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6937 | F: Documentation/networking/ipvs-sysctl.txt |
Hannes Eder | b61d4a71 | 2009-09-21 17:04:12 -0700 | [diff] [blame] | 6938 | F: include/net/ip_vs.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6939 | F: include/uapi/linux/ip_vs.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6940 | F: net/netfilter/ipvs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6941 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 6942 | IPWIRELESS DRIVER |
Jiri Kosina | e5f6450 | 2015-08-09 09:11:34 +0200 | [diff] [blame] | 6943 | M: Jiri Kosina <jikos@kernel.org> |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 6944 | M: David Sterba <dsterba@suse.com> |
Jiri Kosina | 92094aa | 2011-11-13 21:41:00 +0100 | [diff] [blame] | 6945 | S: Odd Fixes |
Greg Kroah-Hartman | 282361a | 2011-02-22 16:23:22 -0800 | [diff] [blame] | 6946 | F: drivers/tty/ipwireless/ |
David Sterba | 099dc4f | 2008-02-07 10:57:12 +0100 | [diff] [blame] | 6947 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6948 | IPX NETWORK LAYER |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6949 | L: netdev@vger.kernel.org |
Arnaldo Carvalho de Melo | 0c59d28 | 2017-02-13 14:15:44 -0300 | [diff] [blame] | 6950 | S: Odd fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6951 | F: include/net/ipx.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 6952 | F: include/uapi/linux/ipx.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6953 | F: net/ipx/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 6954 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6955 | IRDA SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 6956 | M: Samuel Ortiz <samuel@sortiz.org> |
Olaf Hering | a2ac953 | 2005-07-12 13:58:35 -0700 | [diff] [blame] | 6957 | L: irda-users@lists.sourceforge.net (subscribers-only) |
Wolfram Sang | ced649e | 2011-01-31 22:21:46 +0100 | [diff] [blame] | 6958 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6959 | W: http://irda.sourceforge.net/ |
Samuel Ortiz | f353976 | 2006-05-09 15:24:49 -0700 | [diff] [blame] | 6960 | S: Maintained |
Samuel Ortiz | e005797 | 2009-06-05 16:12:00 +0200 | [diff] [blame] | 6961 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 6962 | F: Documentation/networking/irda.txt |
| 6963 | F: drivers/net/irda/ |
| 6964 | F: include/net/irda/ |
| 6965 | F: net/irda/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6966 | |
Thomas Gleixner | a800c7c | 2010-09-21 11:33:54 +0200 | [diff] [blame] | 6967 | IRQ SUBSYSTEM |
| 6968 | M: Thomas Gleixner <tglx@linutronix.de> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 6969 | L: linux-kernel@vger.kernel.org |
Thomas Gleixner | a800c7c | 2010-09-21 11:33:54 +0200 | [diff] [blame] | 6970 | S: Maintained |
Peter Zijlstra | 75fc2d3 | 2011-12-05 17:27:08 +0100 | [diff] [blame] | 6971 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
Thomas Gleixner | a800c7c | 2010-09-21 11:33:54 +0200 | [diff] [blame] | 6972 | F: kernel/irq/ |
Jason Cooper | 2ed9fd2 | 2014-05-13 18:47:01 +0000 | [diff] [blame] | 6973 | |
| 6974 | IRQCHIP DRIVERS |
| 6975 | M: Thomas Gleixner <tglx@linutronix.de> |
| 6976 | M: Jason Cooper <jason@lakedaemon.net> |
Thomas Gleixner | 54d9ffc | 2015-07-30 12:38:06 +0200 | [diff] [blame] | 6977 | M: Marc Zyngier <marc.zyngier@arm.com> |
Jason Cooper | 2ed9fd2 | 2014-05-13 18:47:01 +0000 | [diff] [blame] | 6978 | L: linux-kernel@vger.kernel.org |
| 6979 | S: Maintained |
| 6980 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
| 6981 | T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core |
Geert Uytterhoeven | 5b5a906 | 2014-08-28 09:56:47 +0200 | [diff] [blame] | 6982 | F: Documentation/devicetree/bindings/interrupt-controller/ |
Thomas Petazzoni | edd9690 | 2012-10-28 10:05:40 +0100 | [diff] [blame] | 6983 | F: drivers/irqchip/ |
Thomas Gleixner | a800c7c | 2010-09-21 11:33:54 +0200 | [diff] [blame] | 6984 | |
Grant Likely | 7ab3a83 | 2012-02-14 14:06:47 -0700 | [diff] [blame] | 6985 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
Thomas Gleixner | b09dec2 | 2015-07-30 12:40:55 +0200 | [diff] [blame] | 6986 | M: Marc Zyngier <marc.zyngier@arm.com> |
Grant Likely | 7ab3a83 | 2012-02-14 14:06:47 -0700 | [diff] [blame] | 6987 | S: Maintained |
Thomas Gleixner | b09dec2 | 2015-07-30 12:40:55 +0200 | [diff] [blame] | 6988 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
Grant Likely | 7ab3a83 | 2012-02-14 14:06:47 -0700 | [diff] [blame] | 6989 | F: Documentation/IRQ-domain.txt |
| 6990 | F: include/linux/irqdomain.h |
| 6991 | F: kernel/irq/irqdomain.c |
Thomas Gleixner | b09dec2 | 2015-07-30 12:40:55 +0200 | [diff] [blame] | 6992 | F: kernel/irq/msi.c |
Grant Likely | 7ab3a83 | 2012-02-14 14:06:47 -0700 | [diff] [blame] | 6993 | |
William Breathitt Gray | ad7afc3 | 2016-05-01 18:43:35 -0400 | [diff] [blame] | 6994 | ISA |
| 6995 | M: William Breathitt Gray <vilhelm.gray@gmail.com> |
| 6996 | S: Maintained |
| 6997 | F: Documentation/isa.txt |
| 6998 | F: drivers/base/isa.c |
| 6999 | F: include/linux/isa.h |
| 7000 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7001 | ISAPNP |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7002 | M: Jaroslav Kysela <perex@perex.cz> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7003 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7004 | F: Documentation/isapnp.txt |
| 7005 | F: drivers/pnp/isapnp/ |
| 7006 | F: include/linux/isapnp.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7007 | |
Hans Verkuil | d39b842 | 2012-11-23 07:07:02 -0300 | [diff] [blame] | 7008 | ISA RADIO MODULE |
| 7009 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 7010 | L: linux-media@vger.kernel.org |
| 7011 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 7012 | W: https://linuxtv.org |
Hans Verkuil | d39b842 | 2012-11-23 07:07:02 -0300 | [diff] [blame] | 7013 | S: Maintained |
| 7014 | F: drivers/media/radio/radio-isa* |
| 7015 | |
Harry Wei | 71a6d0a | 2011-05-11 15:13:33 -0700 | [diff] [blame] | 7016 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
| 7017 | M: Peter Jones <pjones@redhat.com> |
| 7018 | M: Konrad Rzeszutek Wilk <konrad@kernel.org> |
| 7019 | S: Maintained |
| 7020 | F: drivers/firmware/iscsi_ibft* |
| 7021 | |
Mike Christie | 14816b1e | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 7022 | ISCSI |
Lee Duncan | 623290a | 2016-09-26 15:25:30 -0700 | [diff] [blame] | 7023 | M: Lee Duncan <lduncan@suse.com> |
| 7024 | M: Chris Leech <cleech@redhat.com> |
Mike Christie | 14816b1e | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 7025 | L: open-iscsi@googlegroups.com |
Lee Duncan | 623290a | 2016-09-26 15:25:30 -0700 | [diff] [blame] | 7026 | W: www.open-iscsi.com |
Mike Christie | 14816b1e | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 7027 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7028 | F: drivers/scsi/*iscsi* |
| 7029 | F: include/scsi/*iscsi* |
Mike Christie | 14816b1e | 2007-11-28 16:22:06 -0800 | [diff] [blame] | 7030 | |
Or Gerlitz | 1e65eb4 | 2013-05-08 12:21:19 +0000 | [diff] [blame] | 7031 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
| 7032 | M: Or Gerlitz <ogerlitz@mellanox.com> |
Sagi Grimberg | e7d2c25 | 2016-04-03 15:03:12 +0300 | [diff] [blame] | 7033 | M: Sagi Grimberg <sagi@grimberg.me> |
Or Gerlitz | 1e65eb4 | 2013-05-08 12:21:19 +0000 | [diff] [blame] | 7034 | M: Roi Dayan <roid@mellanox.com> |
| 7035 | L: linux-rdma@vger.kernel.org |
| 7036 | S: Supported |
| 7037 | W: http://www.openfabrics.org |
| 7038 | W: www.open-iscsi.org |
| 7039 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 7040 | F: drivers/infiniband/ulp/iser/ |
Or Gerlitz | 1e65eb4 | 2013-05-08 12:21:19 +0000 | [diff] [blame] | 7041 | |
Sagi Grimberg | 2b70e5f | 2015-01-07 12:54:44 +0200 | [diff] [blame] | 7042 | ISCSI EXTENSIONS FOR RDMA (ISER) TARGET |
Sagi Grimberg | e7d2c25 | 2016-04-03 15:03:12 +0300 | [diff] [blame] | 7043 | M: Sagi Grimberg <sagi@grimberg.me> |
Sagi Grimberg | 2b70e5f | 2015-01-07 12:54:44 +0200 | [diff] [blame] | 7044 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
| 7045 | L: linux-rdma@vger.kernel.org |
| 7046 | L: target-devel@vger.kernel.org |
| 7047 | S: Supported |
| 7048 | W: http://www.linux-iscsi.org |
| 7049 | F: drivers/infiniband/ulp/isert |
| 7050 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7051 | ISDN SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7052 | M: Karsten Keil <isdn@linux-pingi.de> |
Paul Bolle | d5d5227 | 2008-04-15 00:40:48 -0700 | [diff] [blame] | 7053 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
David S. Miller | 3da0ae6 | 2010-03-25 20:32:39 -0700 | [diff] [blame] | 7054 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7055 | W: http://www.isdn4linux.de |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 7056 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7057 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7058 | F: Documentation/isdn/ |
| 7059 | F: drivers/isdn/ |
| 7060 | F: include/linux/isdn.h |
| 7061 | F: include/linux/isdn/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 7062 | F: include/uapi/linux/isdn.h |
| 7063 | F: include/uapi/linux/isdn/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7064 | |
| 7065 | ISDN SUBSYSTEM (Eicon active card driver) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7066 | M: Armin Schindler <mac@melware.de> |
Paul Bolle | d5d5227 | 2008-04-15 00:40:48 -0700 | [diff] [blame] | 7067 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7068 | W: http://www.melware.de |
| 7069 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7070 | F: drivers/isdn/hardware/eicon/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7071 | |
Jean Delvare | d624870 | 2010-03-05 22:17:20 +0100 | [diff] [blame] | 7072 | IT87 HARDWARE MONITORING DRIVER |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 7073 | M: Jean Delvare <jdelvare@suse.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 7074 | L: linux-hwmon@vger.kernel.org |
Jean Delvare | d624870 | 2010-03-05 22:17:20 +0100 | [diff] [blame] | 7075 | S: Maintained |
| 7076 | F: Documentation/hwmon/it87 |
| 7077 | F: drivers/hwmon/it87.c |
| 7078 | |
Malcolm Priestley | 68620bd | 2012-11-04 19:16:31 +0100 | [diff] [blame] | 7079 | IT913X MEDIA DRIVER |
Antti Palosaari | d7104bf | 2013-03-09 22:58:13 -0300 | [diff] [blame] | 7080 | M: Antti Palosaari <crope@iki.fi> |
| 7081 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 7082 | W: https://linuxtv.org |
Antti Palosaari | d7104bf | 2013-03-09 22:58:13 -0300 | [diff] [blame] | 7083 | W: http://palosaari.fi/linux/ |
| 7084 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 7085 | T: git git://linuxtv.org/anttip/media_tree.git |
| 7086 | S: Maintained |
Antti Palosaari | 249c697 | 2014-09-01 19:44:59 -0300 | [diff] [blame] | 7087 | F: drivers/media/tuners/it913x* |
Antti Palosaari | d7104bf | 2013-03-09 22:58:13 -0300 | [diff] [blame] | 7088 | |
Hans Verkuil | 91821ff | 2007-12-02 09:35:33 -0300 | [diff] [blame] | 7089 | IVTV VIDEO4LINUX DRIVER |
Andy Walls | 6afdeaf | 2010-05-23 18:53:35 -0300 | [diff] [blame] | 7090 | M: Andy Walls <awalls@md.metrocast.net> |
Joe Perches | 7b212ed | 2014-12-10 15:51:24 -0800 | [diff] [blame] | 7091 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 7092 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 7093 | T: git git://linuxtv.org/media_tree.git |
Hans Verkuil | 91821ff | 2007-12-02 09:35:33 -0300 | [diff] [blame] | 7094 | W: http://www.ivtvdriver.org |
| 7095 | S: Maintained |
Mauro Carvalho Chehab | 618cd93 | 2016-09-12 12:48:54 -0300 | [diff] [blame] | 7096 | F: Documentation/media/v4l-drivers/ivtv* |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 7097 | F: drivers/media/pci/ivtv/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 7098 | F: include/uapi/linux/ivtv* |
Hans Verkuil | 91821ff | 2007-12-02 09:35:33 -0300 | [diff] [blame] | 7099 | |
Malcolm Priestley | 68620bd | 2012-11-04 19:16:31 +0100 | [diff] [blame] | 7100 | IX2505V MEDIA DRIVER |
| 7101 | M: Malcolm Priestley <tvboxspy@gmail.com> |
| 7102 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 7103 | W: https://linuxtv.org |
Malcolm Priestley | 68620bd | 2012-11-04 19:16:31 +0100 | [diff] [blame] | 7104 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 7105 | S: Maintained |
| 7106 | F: drivers/media/dvb-frontends/ix2505v* |
| 7107 | |
Guenter Roeck | 4453d73 | 2010-08-09 17:21:08 -0700 | [diff] [blame] | 7108 | JC42.4 TEMPERATURE SENSOR DRIVER |
| 7109 | M: Guenter Roeck <linux@roeck-us.net> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 7110 | L: linux-hwmon@vger.kernel.org |
Guenter Roeck | 4453d73 | 2010-08-09 17:21:08 -0700 | [diff] [blame] | 7111 | S: Maintained |
| 7112 | F: drivers/hwmon/jc42.c |
| 7113 | F: Documentation/hwmon/jc42 |
| 7114 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7115 | JFS FILESYSTEM |
Dave Kleikamp | 3256f80 | 2011-03-04 10:13:47 -0600 | [diff] [blame] | 7116 | M: Dave Kleikamp <shaggy@kernel.org> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7117 | L: jfs-discussion@lists.sourceforge.net |
| 7118 | W: http://jfs.sourceforge.net/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 7119 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
Dave Kleikamp | 8f8f013 | 2009-07-13 11:02:24 -0500 | [diff] [blame] | 7120 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7121 | F: Documentation/filesystems/jfs.txt |
| 7122 | F: fs/jfs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7123 | |
Guo-Fu Tseng | 9525223 | 2008-09-16 01:00:11 +0800 | [diff] [blame] | 7124 | JME NETWORK DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7125 | M: Guo-Fu Tseng <cooldavid@cooldavid.org> |
Guo-Fu Tseng | 9525223 | 2008-09-16 01:00:11 +0800 | [diff] [blame] | 7126 | L: netdev@vger.kernel.org |
| 7127 | S: Maintained |
Jeff Kirsher | 63d24a0 | 2011-06-15 10:17:58 -0700 | [diff] [blame] | 7128 | F: drivers/net/ethernet/jme.* |
Guo-Fu Tseng | 9525223 | 2008-09-16 01:00:11 +0800 | [diff] [blame] | 7129 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7130 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7131 | M: David Woodhouse <dwmw2@infradead.org> |
David Woodhouse | 6d85d06 | 2007-10-27 10:39:48 -0400 | [diff] [blame] | 7132 | L: linux-mtd@lists.infradead.org |
| 7133 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7134 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7135 | F: fs/jffs2/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 7136 | F: include/uapi/linux/jffs2.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7137 | |
Theodore Ts'o | d183e11 | 2011-05-26 09:53:09 -0400 | [diff] [blame] | 7138 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) |
| 7139 | M: "Theodore Ts'o" <tytso@mit.edu> |
Jan Kara | c290ea0 | 2015-06-18 16:52:29 +0200 | [diff] [blame] | 7140 | M: Jan Kara <jack@suse.com> |
Theodore Ts'o | d183e11 | 2011-05-26 09:53:09 -0400 | [diff] [blame] | 7141 | L: linux-ext4@vger.kernel.org |
| 7142 | S: Maintained |
| 7143 | F: fs/jbd2/ |
| 7144 | F: include/linux/jbd2.h |
Theodore Tso | ae0718f | 2006-05-20 15:00:13 -0700 | [diff] [blame] | 7145 | |
Mikhail Ulyanov | 207dab5 | 2015-07-22 08:23:05 -0300 | [diff] [blame] | 7146 | JPU V4L2 MEM2MEM DRIVER FOR RENESAS |
| 7147 | M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com> |
| 7148 | L: linux-media@vger.kernel.org |
| 7149 | S: Maintained |
| 7150 | F: drivers/media/platform/rcar_jpu.c |
| 7151 | |
Breno Leitao | fd8b6cb | 2010-10-06 13:04:48 -0300 | [diff] [blame] | 7152 | JSM Neo PCI based serial card |
Gabriel Krisman Bertazi | df24708 | 2016-02-08 10:20:59 -0200 | [diff] [blame] | 7153 | M: Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com> |
Breno Leitao | fd8b6cb | 2010-10-06 13:04:48 -0300 | [diff] [blame] | 7154 | L: linux-serial@vger.kernel.org |
| 7155 | S: Maintained |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 7156 | F: drivers/tty/serial/jsm/ |
Breno Leitao | fd8b6cb | 2010-10-06 13:04:48 -0300 | [diff] [blame] | 7157 | |
Clemens Ladisch | af39917 | 2011-01-10 16:32:54 +0100 | [diff] [blame] | 7158 | K10TEMP HARDWARE MONITORING DRIVER |
| 7159 | M: Clemens Ladisch <clemens@ladisch.de> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 7160 | L: linux-hwmon@vger.kernel.org |
Clemens Ladisch | af39917 | 2011-01-10 16:32:54 +0100 | [diff] [blame] | 7161 | S: Maintained |
| 7162 | F: Documentation/hwmon/k10temp |
| 7163 | F: drivers/hwmon/k10temp.c |
| 7164 | |
Rudolf Marek | 4660cb3 | 2006-10-08 22:01:26 +0200 | [diff] [blame] | 7165 | K8TEMP HARDWARE MONITORING DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7166 | M: Rudolf Marek <r.marek@assembler.cz> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 7167 | L: linux-hwmon@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7168 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7169 | F: Documentation/hwmon/k8temp |
| 7170 | F: drivers/hwmon/k8temp.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7171 | |
Andrey Ryabinin | 0ba1d91 | 2016-03-25 14:22:17 -0700 | [diff] [blame] | 7172 | KASAN |
| 7173 | M: Andrey Ryabinin <aryabinin@virtuozzo.com> |
| 7174 | R: Alexander Potapenko <glider@google.com> |
| 7175 | R: Dmitry Vyukov <dvyukov@google.com> |
| 7176 | L: kasan-dev@googlegroups.com |
| 7177 | S: Maintained |
| 7178 | F: arch/*/include/asm/kasan.h |
| 7179 | F: arch/*/mm/kasan_init* |
Jonathan Corbet | 2757aaf | 2016-08-07 15:31:03 -0600 | [diff] [blame] | 7180 | F: Documentation/dev-tools/kasan.rst |
Andrey Ryabinin | 64f8eba | 2016-05-20 16:59:28 -0700 | [diff] [blame] | 7181 | F: include/linux/kasan*.h |
Andrey Ryabinin | 0ba1d91 | 2016-03-25 14:22:17 -0700 | [diff] [blame] | 7182 | F: lib/test_kasan.c |
| 7183 | F: mm/kasan/ |
| 7184 | F: scripts/Makefile.kasan |
| 7185 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7186 | KCONFIG |
Michal Marek | 5eb1f99 | 2013-10-30 12:02:27 +0100 | [diff] [blame] | 7187 | M: "Yann E. MORIN" <yann.morin.1998@free.fr> |
Sam Ravnborg | 347d12d | 2007-10-18 13:23:33 +0200 | [diff] [blame] | 7188 | L: linux-kbuild@vger.kernel.org |
Joe Perches | cea8321 | 2014-03-03 15:38:38 -0800 | [diff] [blame] | 7189 | T: git git://gitorious.org/linux-kconfig/linux-kconfig |
Michal Marek | 5eb1f99 | 2013-10-30 12:02:27 +0100 | [diff] [blame] | 7190 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7191 | F: Documentation/kbuild/kconfig-language.txt |
| 7192 | F: scripts/kconfig/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7193 | |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 7194 | KDUMP |
Vivek Goyal | f871f19 | 2016-05-27 14:27:27 -0700 | [diff] [blame] | 7195 | M: Dave Young <dyoung@redhat.com> |
| 7196 | M: Baoquan He <bhe@redhat.com> |
| 7197 | R: Vivek Goyal <vgoyal@redhat.com> |
Simon Horman | 3463399 | 2007-05-08 00:31:40 -0700 | [diff] [blame] | 7198 | L: kexec@lists.infradead.org |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 7199 | W: http://lse.sourceforge.net/kdump/ |
| 7200 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 7201 | F: Documentation/kdump/ |
Vivek Goyal | ea6c208 | 2006-05-20 14:59:55 -0700 | [diff] [blame] | 7202 | |
Hans Verkuil | f41bf02 | 2012-11-23 07:04:36 -0300 | [diff] [blame] | 7203 | KEENE FM RADIO TRANSMITTER DRIVER |
| 7204 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 7205 | L: linux-media@vger.kernel.org |
| 7206 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 7207 | W: https://linuxtv.org |
Hans Verkuil | f41bf02 | 2012-11-23 07:04:36 -0300 | [diff] [blame] | 7208 | S: Maintained |
| 7209 | F: drivers/media/radio/radio-keene* |
| 7210 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7211 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7212 | M: Ian Kent <raven@themaw.net> |
Ian Kent | f694fc9 | 2012-02-27 08:03:38 +0800 | [diff] [blame] | 7213 | L: autofs@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7214 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7215 | F: fs/autofs4/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7216 | |
Michal Marek | 70fb7ba | 2010-01-29 14:22:43 +0100 | [diff] [blame] | 7217 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
Masahiro Yamada | 8b38f89 | 2017-03-10 10:41:50 +0900 | [diff] [blame] | 7218 | M: Masahiro Yamada <yamada.masahiro@socionext.com> |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 7219 | M: Michal Marek <mmarek@suse.com> |
Masahiro Yamada | 8b38f89 | 2017-03-10 10:41:50 +0900 | [diff] [blame] | 7220 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git |
Sam Ravnborg | 347d12d | 2007-10-18 13:23:33 +0200 | [diff] [blame] | 7221 | L: linux-kbuild@vger.kernel.org |
Michal Marek | 5ce4596 | 2009-12-14 17:57:43 -0800 | [diff] [blame] | 7222 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7223 | F: Documentation/kbuild/ |
| 7224 | F: Makefile |
| 7225 | F: scripts/Makefile.* |
Michal Marek | 70fb7ba | 2010-01-29 14:22:43 +0100 | [diff] [blame] | 7226 | F: scripts/basic/ |
| 7227 | F: scripts/mk* |
| 7228 | F: scripts/package/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7229 | |
| 7230 | KERNEL JANITORS |
maximilian attems | c3000e0 | 2007-07-06 11:17:32 -0700 | [diff] [blame] | 7231 | L: kernel-janitors@vger.kernel.org |
Justin P. Mattock | 10466f5 | 2010-08-26 15:30:03 -0700 | [diff] [blame] | 7232 | W: http://kernelnewbies.org/KernelJanitors |
Joe Perches | ee709b0 | 2009-10-26 16:49:43 -0700 | [diff] [blame] | 7233 | S: Odd Fixes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7234 | |
J. Bruce Fields | e8b4355 | 2008-07-23 08:49:50 -0400 | [diff] [blame] | 7235 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7236 | M: "J. Bruce Fields" <bfields@fieldses.org> |
J. Bruce Fields | 883985f | 2015-08-24 16:44:40 -0400 | [diff] [blame] | 7237 | M: Jeff Layton <jlayton@poochiereds.net> |
Neil Brown | 16141c0 | 2007-12-11 16:16:12 -0800 | [diff] [blame] | 7238 | L: linux-nfs@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7239 | W: http://nfs.sourceforge.net/ |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 7240 | T: git git://linux-nfs.org/~bfields/linux.git |
NeilBrown | 98fac23 | 2007-01-26 00:56:57 -0800 | [diff] [blame] | 7241 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7242 | F: fs/nfsd/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 7243 | F: include/uapi/linux/nfsd/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7244 | F: fs/lockd/ |
| 7245 | F: fs/nfs_common/ |
| 7246 | F: net/sunrpc/ |
| 7247 | F: include/linux/lockd/ |
| 7248 | F: include/linux/sunrpc/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 7249 | F: include/uapi/linux/sunrpc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7250 | |
Shuah Khan | 13b122b | 2014-10-13 15:51:21 -0700 | [diff] [blame] | 7251 | KERNEL SELFTEST FRAMEWORK |
| 7252 | M: Shuah Khan <shuahkh@osg.samsung.com> |
Shuah Khan | 90effdc | 2016-06-14 16:30:27 -0600 | [diff] [blame] | 7253 | M: Shuah Khan <shuah@kernel.org> |
Shuah Khan | 64f0085 | 2016-02-17 13:11:32 -0800 | [diff] [blame] | 7254 | L: linux-kselftest@vger.kernel.org |
Shuah Khan | 13b122b | 2014-10-13 15:51:21 -0700 | [diff] [blame] | 7255 | T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest |
| 7256 | S: Maintained |
| 7257 | F: tools/testing/selftests |
| 7258 | |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 7259 | KERNEL VIRTUAL MACHINE (KVM) |
Paolo Bonzini | c93a64f | 2013-05-15 19:02:24 +0200 | [diff] [blame] | 7260 | M: Paolo Bonzini <pbonzini@redhat.com> |
Paolo Bonzini | 3d8e15d | 2016-04-07 17:21:43 +0200 | [diff] [blame] | 7261 | M: Radim Krčmář <rkrcmar@redhat.com> |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 7262 | L: kvm@vger.kernel.org |
Ramkumar Ramachandra | e3e5847 | 2013-10-31 16:16:34 +0530 | [diff] [blame] | 7263 | W: http://www.linux-kvm.org |
Ramkumar Ramachandra | a94b40a | 2013-10-31 16:29:23 +0530 | [diff] [blame] | 7264 | T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 7265 | S: Supported |
Paolo Bonzini | c93a64f | 2013-05-15 19:02:24 +0200 | [diff] [blame] | 7266 | F: Documentation/*/kvm*.txt |
| 7267 | F: Documentation/virtual/kvm/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7268 | F: arch/*/kvm/ |
Christian Borntraeger | 1662e86 | 2015-03-12 14:59:26 +0100 | [diff] [blame] | 7269 | F: arch/x86/kernel/kvm.c |
| 7270 | F: arch/x86/kernel/kvmclock.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7271 | F: arch/*/include/asm/kvm* |
| 7272 | F: include/linux/kvm* |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 7273 | F: include/uapi/linux/kvm* |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7274 | F: virt/kvm/ |
Janosch Frank | 6d0a1a6 | 2016-05-18 13:26:22 +0200 | [diff] [blame] | 7275 | F: tools/kvm/ |
Avi Kivity | 426d62e | 2006-12-13 00:34:03 -0800 | [diff] [blame] | 7276 | |
Joerg Roedel | ad8003d | 2008-09-10 20:01:07 +0200 | [diff] [blame] | 7277 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
Joerg Roedel | 7de609c | 2012-10-29 19:08:21 +0100 | [diff] [blame] | 7278 | M: Joerg Roedel <joro@8bytes.org> |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 7279 | L: kvm@vger.kernel.org |
Dirk Müller | 038161d | 2015-10-01 13:46:01 +0200 | [diff] [blame] | 7280 | W: http://www.linux-kvm.org/ |
Joerg Roedel | 7de609c | 2012-10-29 19:08:21 +0100 | [diff] [blame] | 7281 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7282 | F: arch/x86/include/asm/svm.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7283 | F: arch/x86/kvm/svm.c |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 7284 | |
Hollis Blanchard | 513014b | 2008-04-16 23:28:08 -0500 | [diff] [blame] | 7285 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 7286 | M: Alexander Graf <agraf@suse.com> |
Avi Kivity | 1fc9d2b | 2008-05-18 13:50:23 +0300 | [diff] [blame] | 7287 | L: kvm-ppc@vger.kernel.org |
Dirk Müller | 038161d | 2015-10-01 13:46:01 +0200 | [diff] [blame] | 7288 | W: http://www.linux-kvm.org/ |
Michael Ellerman | 6a7f972 | 2012-10-15 19:01:05 +0000 | [diff] [blame] | 7289 | T: git git://github.com/agraf/linux-2.6.git |
Hollis Blanchard | 513014b | 2008-04-16 23:28:08 -0500 | [diff] [blame] | 7290 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7291 | F: arch/powerpc/include/asm/kvm* |
| 7292 | F: arch/powerpc/kvm/ |
Hollis Blanchard | 513014b | 2008-04-16 23:28:08 -0500 | [diff] [blame] | 7293 | |
Christian Borntraeger | 85f8fff | 2008-03-25 18:47:41 +0100 | [diff] [blame] | 7294 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7295 | M: Christian Borntraeger <borntraeger@de.ibm.com> |
Christian Borntraeger | 4ae57b6 | 2012-06-05 13:05:02 +0200 | [diff] [blame] | 7296 | M: Cornelia Huck <cornelia.huck@de.ibm.com> |
Christian Borntraeger | 85f8fff | 2008-03-25 18:47:41 +0100 | [diff] [blame] | 7297 | L: linux-s390@vger.kernel.org |
| 7298 | W: http://www.ibm.com/developerworks/linux/linux390/ |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 7299 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git |
Christian Borntraeger | 85f8fff | 2008-03-25 18:47:41 +0100 | [diff] [blame] | 7300 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7301 | F: Documentation/s390/kvm.txt |
| 7302 | F: arch/s390/include/asm/kvm* |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 7303 | F: arch/s390/kvm/ |
Christian Borntraeger | b8f9828 | 2017-03-22 12:36:07 +0100 | [diff] [blame] | 7304 | F: arch/s390/mm/gmap.c |
Christian Borntraeger | 85f8fff | 2008-03-25 18:47:41 +0100 | [diff] [blame] | 7305 | |
Christoffer Dall | a749474 | 2013-01-20 18:42:26 -0500 | [diff] [blame] | 7306 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
Christoffer Dall | 0f4ca79 | 2013-06-21 13:54:36 -0700 | [diff] [blame] | 7307 | M: Christoffer Dall <christoffer.dall@linaro.org> |
Marc Zyngier | 5c8818b | 2014-04-26 03:43:01 -0700 | [diff] [blame] | 7308 | M: Marc Zyngier <marc.zyngier@arm.com> |
| 7309 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Christoffer Dall | a749474 | 2013-01-20 18:42:26 -0500 | [diff] [blame] | 7310 | L: kvmarm@lists.cs.columbia.edu |
| 7311 | W: http://systems.cs.columbia.edu/projects/kvm-arm |
Fengguang Wu | 1b1ebe8 | 2015-12-18 15:51:44 +0800 | [diff] [blame] | 7312 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git |
Christoffer Dall | 0f4ca79 | 2013-06-21 13:54:36 -0700 | [diff] [blame] | 7313 | S: Supported |
Christoffer Dall | a749474 | 2013-01-20 18:42:26 -0500 | [diff] [blame] | 7314 | F: arch/arm/include/uapi/asm/kvm* |
| 7315 | F: arch/arm/include/asm/kvm* |
| 7316 | F: arch/arm/kvm/ |
Marc Zyngier | 5c8818b | 2014-04-26 03:43:01 -0700 | [diff] [blame] | 7317 | F: virt/kvm/arm/ |
| 7318 | F: include/kvm/arm_* |
Christoffer Dall | a749474 | 2013-01-20 18:42:26 -0500 | [diff] [blame] | 7319 | |
Marc Zyngier | 6394a3e | 2013-04-02 17:49:40 +0100 | [diff] [blame] | 7320 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
Marc Zyngier | 5c8818b | 2014-04-26 03:43:01 -0700 | [diff] [blame] | 7321 | M: Christoffer Dall <christoffer.dall@linaro.org> |
Marc Zyngier | 6394a3e | 2013-04-02 17:49:40 +0100 | [diff] [blame] | 7322 | M: Marc Zyngier <marc.zyngier@arm.com> |
| 7323 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 7324 | L: kvmarm@lists.cs.columbia.edu |
| 7325 | S: Maintained |
| 7326 | F: arch/arm64/include/uapi/asm/kvm* |
| 7327 | F: arch/arm64/include/asm/kvm* |
| 7328 | F: arch/arm64/kvm/ |
| 7329 | |
James Hogan | bfd3d53 | 2015-12-16 23:49:41 +0000 | [diff] [blame] | 7330 | KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips) |
| 7331 | M: James Hogan <james.hogan@imgtec.com> |
| 7332 | L: linux-mips@linux-mips.org |
| 7333 | S: Supported |
| 7334 | F: arch/mips/include/uapi/asm/kvm* |
| 7335 | F: arch/mips/include/asm/kvm* |
| 7336 | F: arch/mips/kvm/ |
| 7337 | |
Tejun Heo | 27f395b | 2017-03-23 13:34:47 -0400 | [diff] [blame] | 7338 | KERNFS |
| 7339 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
| 7340 | M: Tejun Heo <tj@kernel.org> |
| 7341 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
| 7342 | S: Supported |
| 7343 | F: include/linux/kernfs.h |
| 7344 | F: fs/kernfs/ |
| 7345 | |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 7346 | KEXEC |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7347 | M: Eric Biederman <ebiederm@xmission.com> |
Simon Horman | 2f327da | 2010-09-09 16:37:33 -0700 | [diff] [blame] | 7348 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
Simon Horman | 3463399 | 2007-05-08 00:31:40 -0700 | [diff] [blame] | 7349 | L: kexec@lists.infradead.org |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 7350 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7351 | F: include/linux/kexec.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 7352 | F: include/uapi/linux/kexec.h |
Minfei Huang | 10540a6 | 2016-05-27 14:27:24 -0700 | [diff] [blame] | 7353 | F: kernel/kexec* |
Eric W. Biederman | dc009d9 | 2005-06-25 14:57:52 -0700 | [diff] [blame] | 7354 | |
David Howells | e971461 | 2010-03-29 23:42:09 +0100 | [diff] [blame] | 7355 | KEYS/KEYRINGS: |
| 7356 | M: David Howells <dhowells@redhat.com> |
David Howells | aa62eff | 2015-08-11 13:29:48 +0100 | [diff] [blame] | 7357 | L: keyrings@vger.kernel.org |
David Howells | e971461 | 2010-03-29 23:42:09 +0100 | [diff] [blame] | 7358 | S: Maintained |
Randy Dunlap | d410fa4 | 2011-05-19 15:59:38 -0700 | [diff] [blame] | 7359 | F: Documentation/security/keys.txt |
David Howells | e971461 | 2010-03-29 23:42:09 +0100 | [diff] [blame] | 7360 | F: include/linux/key.h |
| 7361 | F: include/linux/key-type.h |
David Howells | 75aeddd | 2016-05-11 14:36:14 +0100 | [diff] [blame] | 7362 | F: include/linux/keyctl.h |
| 7363 | F: include/uapi/linux/keyctl.h |
David Howells | e971461 | 2010-03-29 23:42:09 +0100 | [diff] [blame] | 7364 | F: include/keys/ |
| 7365 | F: security/keys/ |
| 7366 | |
Mimi Zohar | 7f3c68b | 2011-01-18 09:07:13 -0500 | [diff] [blame] | 7367 | KEYS-TRUSTED |
Mimi Zohar | 74dd744 | 2014-02-27 08:44:45 -0500 | [diff] [blame] | 7368 | M: David Safford <safford@us.ibm.com> |
| 7369 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
Mimi Zohar | 7f3c68b | 2011-01-18 09:07:13 -0500 | [diff] [blame] | 7370 | L: linux-security-module@vger.kernel.org |
David Howells | aa62eff | 2015-08-11 13:29:48 +0100 | [diff] [blame] | 7371 | L: keyrings@vger.kernel.org |
Mimi Zohar | 7f3c68b | 2011-01-18 09:07:13 -0500 | [diff] [blame] | 7372 | S: Supported |
Randy Dunlap | d410fa4 | 2011-05-19 15:59:38 -0700 | [diff] [blame] | 7373 | F: Documentation/security/keys-trusted-encrypted.txt |
Mimi Zohar | 7f3c68b | 2011-01-18 09:07:13 -0500 | [diff] [blame] | 7374 | F: include/keys/trusted-type.h |
| 7375 | F: security/keys/trusted.c |
| 7376 | F: security/keys/trusted.h |
| 7377 | |
| 7378 | KEYS-ENCRYPTED |
Mimi Zohar | 74dd744 | 2014-02-27 08:44:45 -0500 | [diff] [blame] | 7379 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
| 7380 | M: David Safford <safford@us.ibm.com> |
Mimi Zohar | 7f3c68b | 2011-01-18 09:07:13 -0500 | [diff] [blame] | 7381 | L: linux-security-module@vger.kernel.org |
David Howells | aa62eff | 2015-08-11 13:29:48 +0100 | [diff] [blame] | 7382 | L: keyrings@vger.kernel.org |
Mimi Zohar | 7f3c68b | 2011-01-18 09:07:13 -0500 | [diff] [blame] | 7383 | S: Supported |
Randy Dunlap | d410fa4 | 2011-05-19 15:59:38 -0700 | [diff] [blame] | 7384 | F: Documentation/security/keys-trusted-encrypted.txt |
Mimi Zohar | 7f3c68b | 2011-01-18 09:07:13 -0500 | [diff] [blame] | 7385 | F: include/keys/encrypted-type.h |
Joe Perches | 19c90aa | 2012-01-10 15:09:00 -0800 | [diff] [blame] | 7386 | F: security/keys/encrypted-keys/ |
Mimi Zohar | 7f3c68b | 2011-01-18 09:07:13 -0500 | [diff] [blame] | 7387 | |
Jason Wessel | 5b778da | 2010-05-20 21:04:28 -0500 | [diff] [blame] | 7388 | KGDB / KDB /debug_core |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7389 | M: Jason Wessel <jason.wessel@windriver.com> |
Jason Wessel | 4063eb5 | 2010-05-20 21:04:19 -0500 | [diff] [blame] | 7390 | W: http://kgdb.wiki.kernel.org/ |
Jason Wessel | e3e2aaf | 2008-03-20 13:43:45 -0500 | [diff] [blame] | 7391 | L: kgdb-bugreport@lists.sourceforge.net |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 7392 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git |
Jason Wessel | e3e2aaf | 2008-03-20 13:43:45 -0500 | [diff] [blame] | 7393 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7394 | F: Documentation/DocBook/kgdb.tmpl |
| 7395 | F: drivers/misc/kgdbts.c |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 7396 | F: drivers/tty/serial/kgdboc.c |
Jason Wessel | 5b778da | 2010-05-20 21:04:28 -0500 | [diff] [blame] | 7397 | F: include/linux/kdb.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7398 | F: include/linux/kgdb.h |
Jason Wessel | 4063eb5 | 2010-05-20 21:04:19 -0500 | [diff] [blame] | 7399 | F: kernel/debug/ |
Jason Wessel | e3e2aaf | 2008-03-20 13:43:45 -0500 | [diff] [blame] | 7400 | |
Pekka Enberg | 456db8c | 2008-04-28 22:47:29 +0300 | [diff] [blame] | 7401 | KMEMCHECK |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7402 | M: Vegard Nossum <vegardno@ifi.uio.no> |
Pekka Enberg | 2ed1c52 | 2011-01-15 13:30:04 +0200 | [diff] [blame] | 7403 | M: Pekka Enberg <penberg@kernel.org> |
Pekka Enberg | 456db8c | 2008-04-28 22:47:29 +0300 | [diff] [blame] | 7404 | S: Maintained |
Jonathan Corbet | 9c296b4 | 2016-08-07 16:12:28 -0600 | [diff] [blame] | 7405 | F: Documentation/dev-tools/kmemcheck.rst |
Joe Perches | 410d7a9 | 2009-11-17 14:06:15 -0800 | [diff] [blame] | 7406 | F: arch/x86/include/asm/kmemcheck.h |
| 7407 | F: arch/x86/mm/kmemcheck/ |
| 7408 | F: include/linux/kmemcheck.h |
| 7409 | F: mm/kmemcheck.c |
Pekka Enberg | 456db8c | 2008-04-28 22:47:29 +0300 | [diff] [blame] | 7410 | |
Catalin Marinas | c3bb4d2 | 2009-06-12 09:35:22 +0100 | [diff] [blame] | 7411 | KMEMLEAK |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7412 | M: Catalin Marinas <catalin.marinas@arm.com> |
Catalin Marinas | c3bb4d2 | 2009-06-12 09:35:22 +0100 | [diff] [blame] | 7413 | S: Maintained |
Jonathan Corbet | ca90a7a3 | 2016-08-07 15:46:10 -0600 | [diff] [blame] | 7414 | F: Documentation/dev-tools/kmemleak.rst |
Catalin Marinas | c3bb4d2 | 2009-06-12 09:35:22 +0100 | [diff] [blame] | 7415 | F: include/linux/kmemleak.h |
| 7416 | F: mm/kmemleak.c |
| 7417 | F: mm/kmemleak-test.c |
| 7418 | |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 7419 | KPROBES |
Ananth N Mavinakayanahalli | a320817 | 2016-04-28 16:18:58 -0700 | [diff] [blame] | 7420 | M: Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7421 | M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> |
| 7422 | M: "David S. Miller" <davem@davemloft.net> |
Masami Hiramatsu | 353def9 | 2016-03-31 22:33:23 +0900 | [diff] [blame] | 7423 | M: Masami Hiramatsu <mhiramat@kernel.org> |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 7424 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7425 | F: Documentation/kprobes.txt |
| 7426 | F: include/linux/kprobes.h |
Luis R. Rodriguez | 7d134b2 | 2017-02-27 14:26:56 -0800 | [diff] [blame] | 7427 | F: include/asm-generic/kprobes.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7428 | F: kernel/kprobes.c |
Prasanna S Panchamukhi | 89559a6 | 2005-09-22 21:43:47 -0700 | [diff] [blame] | 7429 | |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 7430 | KS0108 LCD CONTROLLER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7431 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
Miguel Ojeda | 450c622 | 2008-07-04 09:59:33 -0700 | [diff] [blame] | 7432 | W: http://miguelojeda.es/auxdisplay.htm |
| 7433 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 7434 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7435 | F: Documentation/auxdisplay/ks0108 |
| 7436 | F: drivers/auxdisplay/ks0108.c |
| 7437 | F: include/linux/ks0108.h |
Miguel Ojeda Sandonis | 70e8404 | 2007-02-10 01:44:32 -0800 | [diff] [blame] | 7438 | |
David Ahern | 1b69c6d | 2015-09-29 20:07:11 -0700 | [diff] [blame] | 7439 | L3MDEV |
| 7440 | M: David Ahern <dsa@cumulusnetworks.com> |
| 7441 | L: netdev@vger.kernel.org |
| 7442 | S: Maintained |
| 7443 | F: net/l3mdev |
| 7444 | F: include/net/l3mdev.h |
| 7445 | |
John Crispin | 9ca4435 | 2016-01-04 20:28:12 +0100 | [diff] [blame] | 7446 | LANTIQ MIPS ARCHITECTURE |
John Crispin | bdb40e8 | 2016-05-05 09:57:55 +0200 | [diff] [blame] | 7447 | M: John Crispin <john@phrozen.org> |
John Crispin | 9ca4435 | 2016-01-04 20:28:12 +0100 | [diff] [blame] | 7448 | L: linux-mips@linux-mips.org |
| 7449 | S: Maintained |
| 7450 | F: arch/mips/lantiq |
| 7451 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7452 | LAPB module |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7453 | L: linux-x25@vger.kernel.org |
David S. Miller | bf9915c | 2006-07-21 14:55:17 -0700 | [diff] [blame] | 7454 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7455 | F: Documentation/networking/lapb-module.txt |
| 7456 | F: include/*/lapb.h |
| 7457 | F: net/lapb/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7458 | |
| 7459 | LASI 53c700 driver for PARISC |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7460 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7461 | L: linux-scsi@vger.kernel.org |
| 7462 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7463 | F: Documentation/scsi/53c700.txt |
| 7464 | F: drivers/scsi/53c700* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7465 | |
Richard Purdie | 263de9b | 2006-05-15 09:44:16 -0700 | [diff] [blame] | 7466 | LED SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7467 | M: Richard Purdie <rpurdie@rpsys.net> |
Jacek Anaszewski | 305335b | 2016-12-22 18:03:25 +0100 | [diff] [blame] | 7468 | M: Jacek Anaszewski <jacek.anaszewski@gmail.com> |
Pavel Machek | dbfa048 | 2016-11-15 11:12:05 +0100 | [diff] [blame] | 7469 | M: Pavel Machek <pavel@ucw.cz> |
Bryan Wu | aa69cb8 | 2012-05-31 19:51:37 +0800 | [diff] [blame] | 7470 | L: linux-leds@vger.kernel.org |
Jacek Anaszewski | b8926ba | 2015-08-20 08:59:35 +0200 | [diff] [blame] | 7471 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git |
Richard Purdie | 263de9b | 2006-05-15 09:44:16 -0700 | [diff] [blame] | 7472 | S: Maintained |
Geert Uytterhoeven | 85c9036 | 2016-05-22 11:06:00 +0200 | [diff] [blame] | 7473 | F: Documentation/devicetree/bindings/leds/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7474 | F: drivers/leds/ |
| 7475 | F: include/linux/leds.h |
Richard Purdie | 263de9b | 2006-05-15 09:44:16 -0700 | [diff] [blame] | 7476 | |
Jean Delvare | b0461a4 | 2011-06-15 15:08:46 -0700 | [diff] [blame] | 7477 | LEGACY EEPROM DRIVER |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 7478 | M: Jean Delvare <jdelvare@suse.com> |
Jean Delvare | b0461a4 | 2011-06-15 15:08:46 -0700 | [diff] [blame] | 7479 | S: Maintained |
| 7480 | F: Documentation/misc-devices/eeprom |
| 7481 | F: drivers/misc/eeprom/eeprom.c |
| 7482 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7483 | LEGO USB Tower driver |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7484 | M: Juergen Stuber <starblue@users.sourceforge.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7485 | L: legousb-devel@lists.sourceforge.net |
| 7486 | W: http://legousb.sourceforge.net/ |
| 7487 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7488 | F: drivers/usb/misc/legousbtower.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7489 | |
Michael Krufky | 055616a | 2012-10-02 00:56:06 -0300 | [diff] [blame] | 7490 | LG2160 MEDIA DRIVER |
| 7491 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 7492 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 7493 | W: https://linuxtv.org |
Michael Krufky | 055616a | 2012-10-02 00:56:06 -0300 | [diff] [blame] | 7494 | W: http://github.com/mkrufky |
| 7495 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 7496 | T: git git://linuxtv.org/mkrufky/tuners.git |
| 7497 | S: Maintained |
| 7498 | F: drivers/media/dvb-frontends/lg2160.* |
| 7499 | |
Michael Krufky | 6f0e772 | 2012-10-02 00:56:00 -0300 | [diff] [blame] | 7500 | LGDT3305 MEDIA DRIVER |
| 7501 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 7502 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 7503 | W: https://linuxtv.org |
Michael Krufky | 6f0e772 | 2012-10-02 00:56:00 -0300 | [diff] [blame] | 7504 | W: http://github.com/mkrufky |
| 7505 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 7506 | T: git git://linuxtv.org/mkrufky/tuners.git |
| 7507 | S: Maintained |
| 7508 | F: drivers/media/dvb-frontends/lgdt3305.* |
| 7509 | |
Rusty Russell | 568a17f | 2007-10-25 14:12:24 +1000 | [diff] [blame] | 7510 | LGUEST |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7511 | M: Rusty Russell <rusty@rustcorp.com.au> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 7512 | L: lguest@lists.ozlabs.org |
Rusty Russell | 568a17f | 2007-10-25 14:12:24 +1000 | [diff] [blame] | 7513 | W: http://lguest.ozlabs.org/ |
Rusty Russell | 72e9186 | 2010-08-27 08:39:51 -0600 | [diff] [blame] | 7514 | S: Odd Fixes |
Joe Perches | 070f420 | 2012-02-03 15:37:13 -0800 | [diff] [blame] | 7515 | F: arch/x86/include/asm/lguest*.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7516 | F: arch/x86/lguest/ |
| 7517 | F: drivers/lguest/ |
| 7518 | F: include/linux/lguest*.h |
Joe Perches | 070f420 | 2012-02-03 15:37:13 -0800 | [diff] [blame] | 7519 | F: tools/lguest/ |
Rusty Russell | 568a17f | 2007-10-25 14:12:24 +1000 | [diff] [blame] | 7520 | |
Tejun Heo | 32ac7cb | 2015-01-06 18:36:44 -0500 | [diff] [blame] | 7521 | LIBATA SUBSYSTEM (Serial and Parallel ATA drivers) |
| 7522 | M: Tejun Heo <tj@kernel.org> |
| 7523 | L: linux-ide@vger.kernel.org |
| 7524 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
| 7525 | S: Maintained |
| 7526 | F: drivers/ata/ |
| 7527 | F: include/linux/ata.h |
| 7528 | F: include/linux/libata.h |
Geert Uytterhoeven | d2abf98 | 2016-05-22 11:06:01 +0200 | [diff] [blame] | 7529 | F: Documentation/devicetree/bindings/ata/ |
Tejun Heo | 32ac7cb | 2015-01-06 18:36:44 -0500 | [diff] [blame] | 7530 | |
| 7531 | LIBATA PATA ARASAN COMPACT FLASH CONTROLLER |
Viresh Kumar | da89947 | 2015-07-17 16:23:50 -0700 | [diff] [blame] | 7532 | M: Viresh Kumar <vireshk@kernel.org> |
Tejun Heo | 32ac7cb | 2015-01-06 18:36:44 -0500 | [diff] [blame] | 7533 | L: linux-ide@vger.kernel.org |
| 7534 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
| 7535 | S: Maintained |
| 7536 | F: include/linux/pata_arasan_cf_data.h |
| 7537 | F: drivers/ata/pata_arasan_cf.c |
| 7538 | |
Bartlomiej Zolnierkiewicz | c7fa056 | 2014-12-02 17:29:08 +0100 | [diff] [blame] | 7539 | LIBATA PATA DRIVERS |
| 7540 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
| 7541 | M: Tejun Heo <tj@kernel.org> |
| 7542 | L: linux-ide@vger.kernel.org |
| 7543 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
| 7544 | S: Maintained |
| 7545 | F: drivers/ata/pata_*.c |
| 7546 | F: drivers/ata/ata_generic.c |
| 7547 | |
Tejun Heo | 32ac7cb | 2015-01-06 18:36:44 -0500 | [diff] [blame] | 7548 | LIBATA SATA AHCI PLATFORM devices support |
| 7549 | M: Hans de Goede <hdegoede@redhat.com> |
| 7550 | M: Tejun Heo <tj@kernel.org> |
| 7551 | L: linux-ide@vger.kernel.org |
| 7552 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
| 7553 | S: Maintained |
| 7554 | F: drivers/ata/ahci_platform.c |
| 7555 | F: drivers/ata/libahci_platform.c |
| 7556 | F: include/linux/ahci_platform.h |
| 7557 | |
| 7558 | LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER |
| 7559 | M: Mikael Pettersson <mikpelinux@gmail.com> |
| 7560 | L: linux-ide@vger.kernel.org |
| 7561 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
| 7562 | S: Maintained |
| 7563 | F: drivers/ata/sata_promise.* |
| 7564 | |
Sasha Levin | 1acd437 | 2013-06-13 18:41:24 -0400 | [diff] [blame] | 7565 | LIBLOCKDEP |
| 7566 | M: Sasha Levin <sasha.levin@oracle.com> |
| 7567 | S: Maintained |
| 7568 | F: tools/lib/lockdep/ |
| 7569 | |
Dan Williams | bc30196 | 2015-06-25 04:48:19 -0400 | [diff] [blame] | 7570 | LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM |
| 7571 | M: Dan Williams <dan.j.williams@intel.com> |
| 7572 | L: linux-nvdimm@lists.01.org |
| 7573 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 7574 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git |
Dan Williams | bc30196 | 2015-06-25 04:48:19 -0400 | [diff] [blame] | 7575 | S: Supported |
| 7576 | F: drivers/nvdimm/* |
| 7577 | F: include/linux/nd.h |
| 7578 | F: include/linux/libnvdimm.h |
| 7579 | F: include/uapi/linux/ndctl.h |
| 7580 | |
| 7581 | LIBNVDIMM BLK: MMIO-APERTURE DRIVER |
| 7582 | M: Ross Zwisler <ross.zwisler@linux.intel.com> |
| 7583 | L: linux-nvdimm@lists.01.org |
| 7584 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ |
| 7585 | S: Supported |
| 7586 | F: drivers/nvdimm/blk.c |
| 7587 | F: drivers/nvdimm/region_devs.c |
| 7588 | F: drivers/acpi/nfit* |
| 7589 | |
| 7590 | LIBNVDIMM BTT: BLOCK TRANSLATION TABLE |
| 7591 | M: Vishal Verma <vishal.l.verma@intel.com> |
| 7592 | L: linux-nvdimm@lists.01.org |
| 7593 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ |
| 7594 | S: Supported |
| 7595 | F: drivers/nvdimm/btt* |
| 7596 | |
| 7597 | LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER |
| 7598 | M: Ross Zwisler <ross.zwisler@linux.intel.com> |
| 7599 | L: linux-nvdimm@lists.01.org |
| 7600 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ |
| 7601 | S: Supported |
| 7602 | F: drivers/nvdimm/pmem.c |
Ross Zwisler | b864bc1 | 2015-07-10 11:06:10 -0600 | [diff] [blame] | 7603 | F: include/linux/pmem.h |
Ross Zwisler | 4060352 | 2015-08-18 13:55:36 -0600 | [diff] [blame] | 7604 | F: arch/*/include/asm/pmem.h |
Dan Williams | bc30196 | 2015-06-25 04:48:19 -0400 | [diff] [blame] | 7605 | |
Matias Bjørling | cd9e980 | 2015-10-28 19:54:55 +0100 | [diff] [blame] | 7606 | LIGHTNVM PLATFORM SUPPORT |
| 7607 | M: Matias Bjorling <mb@lightnvm.io> |
| 7608 | W: http://github/OpenChannelSSD |
Matias Bjørling | 4ead1a2 | 2015-11-16 15:34:35 +0100 | [diff] [blame] | 7609 | L: linux-block@vger.kernel.org |
Matias Bjørling | cd9e980 | 2015-10-28 19:54:55 +0100 | [diff] [blame] | 7610 | S: Maintained |
| 7611 | F: drivers/lightnvm/ |
| 7612 | F: include/linux/lightnvm.h |
| 7613 | F: include/uapi/linux/lightnvm.h |
| 7614 | |
Paul Mackerras | 852bb9f | 2008-07-04 21:04:42 +1000 | [diff] [blame] | 7615 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7616 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
| 7617 | M: Paul Mackerras <paulus@samba.org> |
Benjamin Herrenschmidt | ea66893 | 2014-07-28 13:54:37 +1000 | [diff] [blame] | 7618 | M: Michael Ellerman <mpe@ellerman.id.au> |
Michael Ellerman | ad654f2 | 2016-10-05 16:08:16 +1100 | [diff] [blame] | 7619 | W: https://github.com/linuxppc/linux/wiki |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 7620 | L: linuxppc-dev@lists.ozlabs.org |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 7621 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
Michael Ellerman | 9958084 | 2015-07-07 19:16:23 +1000 | [diff] [blame] | 7622 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7623 | S: Supported |
Stewart Smith | a427158 | 2017-02-16 11:37:15 +1100 | [diff] [blame] | 7624 | F: Documentation/ABI/stable/sysfs-firmware-opal-* |
Geert Uytterhoeven | 58f1691 | 2017-03-12 14:17:00 +0100 | [diff] [blame] | 7625 | F: Documentation/devicetree/bindings/powerpc/ |
Stewart Smith | a427158 | 2017-02-16 11:37:15 +1100 | [diff] [blame] | 7626 | F: Documentation/devicetree/bindings/rtc/rtc-opal.txt |
| 7627 | F: Documentation/devicetree/bindings/i2c/i2c-opal.txt |
Joe Perches | 11c34c7 | 2009-12-04 07:16:59 +0000 | [diff] [blame] | 7628 | F: Documentation/powerpc/ |
| 7629 | F: arch/powerpc/ |
Michael Ellerman | ef69b03 | 2016-03-02 12:36:56 +1100 | [diff] [blame] | 7630 | F: drivers/char/tpm/tpm_ibmvtpm* |
| 7631 | F: drivers/crypto/nx/ |
| 7632 | F: drivers/crypto/vmx/ |
Stewart Smith | a427158 | 2017-02-16 11:37:15 +1100 | [diff] [blame] | 7633 | F: drivers/i2c/busses/i2c-opal.c |
Michael Ellerman | ef69b03 | 2016-03-02 12:36:56 +1100 | [diff] [blame] | 7634 | F: drivers/net/ethernet/ibm/ibmveth.* |
| 7635 | F: drivers/net/ethernet/ibm/ibmvnic.* |
Gavin Shan | 6672515 | 2016-05-20 16:41:42 +1000 | [diff] [blame] | 7636 | F: drivers/pci/hotplug/pnv_php.c |
Michael Ellerman | ef69b03 | 2016-03-02 12:36:56 +1100 | [diff] [blame] | 7637 | F: drivers/pci/hotplug/rpa* |
Stewart Smith | a427158 | 2017-02-16 11:37:15 +1100 | [diff] [blame] | 7638 | F: drivers/rtc/rtc-opal.c |
Michael Ellerman | ef69b03 | 2016-03-02 12:36:56 +1100 | [diff] [blame] | 7639 | F: drivers/scsi/ibmvscsi/ |
Stewart Smith | a427158 | 2017-02-16 11:37:15 +1100 | [diff] [blame] | 7640 | F: drivers/tty/hvc/hvc_opal.c |
Michael Ellerman | ad654f2 | 2016-10-05 16:08:16 +1100 | [diff] [blame] | 7641 | F: tools/testing/selftests/powerpc |
Michael Ellerman | ef69b03 | 2016-03-02 12:36:56 +1100 | [diff] [blame] | 7642 | N: /pmac |
| 7643 | N: powermac |
| 7644 | N: powernv |
| 7645 | N: [^a-z0-9]ps3 |
| 7646 | N: pseries |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7647 | |
| 7648 | LINUX FOR POWER MACINTOSH |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7649 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7650 | W: http://www.penguinppc.org/ |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 7651 | L: linuxppc-dev@lists.ozlabs.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7652 | S: Maintained |
Joe Perches | 11c34c7 | 2009-12-04 07:16:59 +0000 | [diff] [blame] | 7653 | F: arch/powerpc/platforms/powermac/ |
| 7654 | F: drivers/macintosh/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7655 | |
Grant Likely | 77a7636 | 2008-07-12 12:11:43 -0600 | [diff] [blame] | 7656 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
Anatolij Gustschin | a149507 | 2011-07-20 19:04:25 +0000 | [diff] [blame] | 7657 | M: Anatolij Gustschin <agust@denx.de> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 7658 | L: linuxppc-dev@lists.ozlabs.org |
Anatolij Gustschin | cba5b1c | 2014-10-02 16:16:59 -0700 | [diff] [blame] | 7659 | T: git git://git.denx.de/linux-denx-agust.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7660 | S: Maintained |
Joe Perches | 11c34c7 | 2009-12-04 07:16:59 +0000 | [diff] [blame] | 7661 | F: arch/powerpc/platforms/512x/ |
| 7662 | F: arch/powerpc/platforms/52xx/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7663 | |
| 7664 | LINUX FOR POWERPC EMBEDDED PPC4XX |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 7665 | M: Alistair Popple <alistair@popple.id.au> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7666 | M: Matt Porter <mporter@kernel.crashing.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7667 | W: http://www.penguinppc.org/ |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 7668 | L: linuxppc-dev@lists.ozlabs.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7669 | S: Maintained |
Joe Perches | 11c34c7 | 2009-12-04 07:16:59 +0000 | [diff] [blame] | 7670 | F: arch/powerpc/platforms/40x/ |
| 7671 | F: arch/powerpc/platforms/44x/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7672 | |
Grant Likely | 260c02a | 2007-10-02 12:15:34 +1000 | [diff] [blame] | 7673 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 7674 | L: linuxppc-dev@lists.ozlabs.org |
Grant Likely | cdeb899 | 2013-07-22 01:38:32 +0100 | [diff] [blame] | 7675 | S: Orphan |
Joe Perches | 11c34c7 | 2009-12-04 07:16:59 +0000 | [diff] [blame] | 7676 | F: arch/powerpc/*/*virtex* |
| 7677 | F: arch/powerpc/*/*/*virtex* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7678 | |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 7679 | LINUX FOR POWERPC EMBEDDED PPC8XX |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7680 | M: Vitaly Bordug <vitb@kernel.crashing.org> |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 7681 | W: http://www.penguinppc.org/ |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 7682 | L: linuxppc-dev@lists.ozlabs.org |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 7683 | S: Maintained |
Joe Perches | a2b1f7c | 2010-08-09 17:20:47 -0700 | [diff] [blame] | 7684 | F: arch/powerpc/platforms/8xx/ |
Tom Rini | e93adf1 | 2005-07-26 12:49:53 -0700 | [diff] [blame] | 7685 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7686 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
Scott Wood | 44451d4 | 2015-12-31 12:57:26 -0600 | [diff] [blame] | 7687 | M: Scott Wood <oss@buserror.net> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7688 | M: Kumar Gala <galak@kernel.crashing.org> |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 7689 | W: http://www.penguinppc.org/ |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 7690 | L: linuxppc-dev@lists.ozlabs.org |
Scott Wood | a1e0fb4 | 2014-05-05 20:46:43 -0500 | [diff] [blame] | 7691 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 7692 | S: Maintained |
Joe Perches | 11c34c7 | 2009-12-04 07:16:59 +0000 | [diff] [blame] | 7693 | F: arch/powerpc/platforms/83xx/ |
Baruch Siach | 4c8f581 | 2011-06-20 08:00:22 +0300 | [diff] [blame] | 7694 | F: arch/powerpc/platforms/85xx/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7695 | |
Olof Johansson | ab06ff3 | 2006-09-06 14:44:54 -0500 | [diff] [blame] | 7696 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 7697 | L: linuxppc-dev@lists.ozlabs.org |
Olof Johansson | 56a5b8da | 2016-09-13 14:48:38 -0700 | [diff] [blame] | 7698 | S: Orphan |
Joe Perches | 11c34c7 | 2009-12-04 07:16:59 +0000 | [diff] [blame] | 7699 | F: arch/powerpc/platforms/pasemi/ |
| 7700 | F: drivers/*/*pasemi* |
| 7701 | F: drivers/*/*/*pasemi* |
Olof Johansson | ab06ff3 | 2006-09-06 14:44:54 -0500 | [diff] [blame] | 7702 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7703 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7704 | M: Chris Wright <chrisw@sous-sol.org> |
Chris Wright | 1a4520b | 2006-03-11 03:27:20 -0800 | [diff] [blame] | 7705 | L: linux-security-module@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7706 | S: Supported |
| 7707 | |
Harry Wei | a23ce6d | 2011-02-11 16:52:20 +0100 | [diff] [blame] | 7708 | LIS3LV02D ACCELEROMETER DRIVER |
| 7709 | M: Eric Piel <eric.piel@tremplin-utc.net> |
| 7710 | S: Maintained |
Jean Delvare | ff60667 | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 7711 | F: Documentation/misc-devices/lis3lv02d |
| 7712 | F: drivers/misc/lis3lv02d/ |
Éric Piel | bd35665 | 2011-10-31 17:10:41 -0700 | [diff] [blame] | 7713 | F: drivers/platform/x86/hp_accel.c |
Harry Wei | a23ce6d | 2011-02-11 16:52:20 +0100 | [diff] [blame] | 7714 | |
Seth Jennings | b700e7f | 2014-12-16 11:58:19 -0600 | [diff] [blame] | 7715 | LIVE PATCHING |
| 7716 | M: Josh Poimboeuf <jpoimboe@redhat.com> |
Josh Poimboeuf | 06e1c17 | 2016-03-16 10:03:36 -0500 | [diff] [blame] | 7717 | M: Jessica Yu <jeyu@redhat.com> |
Jiri Kosina | e5f6450 | 2015-08-09 09:11:34 +0200 | [diff] [blame] | 7718 | M: Jiri Kosina <jikos@kernel.org> |
Josh Poimboeuf | 06e1c17 | 2016-03-16 10:03:36 -0500 | [diff] [blame] | 7719 | M: Miroslav Benes <mbenes@suse.cz> |
| 7720 | R: Petr Mladek <pmladek@suse.com> |
Seth Jennings | b700e7f | 2014-12-16 11:58:19 -0600 | [diff] [blame] | 7721 | S: Maintained |
| 7722 | F: kernel/livepatch/ |
| 7723 | F: include/linux/livepatch.h |
| 7724 | F: arch/x86/include/asm/livepatch.h |
| 7725 | F: arch/x86/kernel/livepatch.c |
Petr Mladek | 5e4e384 | 2016-04-25 17:14:35 +0200 | [diff] [blame] | 7726 | F: Documentation/livepatch/ |
Seth Jennings | b700e7f | 2014-12-16 11:58:19 -0600 | [diff] [blame] | 7727 | F: Documentation/ABI/testing/sysfs-kernel-livepatch |
Seth Jennings | 13d1cf7 | 2014-12-16 11:58:20 -0600 | [diff] [blame] | 7728 | F: samples/livepatch/ |
Seth Jennings | b700e7f | 2014-12-16 11:58:19 -0600 | [diff] [blame] | 7729 | L: live-patching@vger.kernel.org |
Jiri Kosina | 74d50da | 2014-12-22 13:40:20 +0100 | [diff] [blame] | 7730 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git |
Seth Jennings | b700e7f | 2014-12-16 11:58:19 -0600 | [diff] [blame] | 7731 | |
Kees Cook | ea861d7 | 2016-02-26 15:12:25 -0800 | [diff] [blame] | 7732 | LINUX KERNEL DUMP TEST MODULE (LKDTM) |
| 7733 | M: Kees Cook <keescook@chromium.org> |
| 7734 | S: Maintained |
Kees Cook | 426f3a5 | 2016-06-03 11:16:32 -0700 | [diff] [blame] | 7735 | F: drivers/misc/lkdtm* |
Kees Cook | ea861d7 | 2016-02-26 15:12:25 -0800 | [diff] [blame] | 7736 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7737 | LLC (802.2) |
Arnaldo Carvalho de Melo | 0c59d28 | 2017-02-13 14:15:44 -0300 | [diff] [blame] | 7738 | L: netdev@vger.kernel.org |
| 7739 | S: Odd fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7740 | F: include/linux/llc.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 7741 | F: include/uapi/linux/llc.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7742 | F: include/net/llc* |
| 7743 | F: net/llc/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 7744 | |
Adrien Demarez | 4e233cb | 2009-12-09 20:35:50 +0100 | [diff] [blame] | 7745 | LM73 HARDWARE MONITOR DRIVER |
| 7746 | M: Guillaume Ligneul <guillaume.ligneul@gmail.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 7747 | L: linux-hwmon@vger.kernel.org |
Adrien Demarez | 4e233cb | 2009-12-09 20:35:50 +0100 | [diff] [blame] | 7748 | S: Maintained |
| 7749 | F: drivers/hwmon/lm73.c |
| 7750 | |
Jean Delvare | 156e2d1 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 7751 | LM78 HARDWARE MONITOR DRIVER |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 7752 | M: Jean Delvare <jdelvare@suse.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 7753 | L: linux-hwmon@vger.kernel.org |
Jean Delvare | 156e2d1 | 2011-07-25 21:46:11 +0200 | [diff] [blame] | 7754 | S: Maintained |
| 7755 | F: Documentation/hwmon/lm78 |
| 7756 | F: drivers/hwmon/lm78.c |
| 7757 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7758 | LM83 HARDWARE MONITOR DRIVER |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 7759 | M: Jean Delvare <jdelvare@suse.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 7760 | L: linux-hwmon@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7761 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7762 | F: Documentation/hwmon/lm83 |
| 7763 | F: drivers/hwmon/lm83.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7764 | |
| 7765 | LM90 HARDWARE MONITOR DRIVER |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 7766 | M: Jean Delvare <jdelvare@suse.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 7767 | L: linux-hwmon@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7768 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7769 | F: Documentation/hwmon/lm90 |
Wei Ni | aae7bce | 2013-11-15 10:40:39 +0100 | [diff] [blame] | 7770 | F: Documentation/devicetree/bindings/hwmon/lm90.txt |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7771 | F: drivers/hwmon/lm90.c |
Christian Lamparter | 87d08b1 | 2017-02-10 17:12:29 +0100 | [diff] [blame] | 7772 | F: include/dt-bindings/thermal/lm90.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7773 | |
Guenter Roeck | 917cc4e | 2013-05-19 20:44:27 -0700 | [diff] [blame] | 7774 | LM95234 HARDWARE MONITOR DRIVER |
| 7775 | M: Guenter Roeck <linux@roeck-us.net> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 7776 | L: linux-hwmon@vger.kernel.org |
Guenter Roeck | 917cc4e | 2013-05-19 20:44:27 -0700 | [diff] [blame] | 7777 | S: Maintained |
| 7778 | F: Documentation/hwmon/lm95234 |
| 7779 | F: drivers/hwmon/lm95234.c |
| 7780 | |
Malcolm Priestley | 68620bd | 2012-11-04 19:16:31 +0100 | [diff] [blame] | 7781 | LME2510 MEDIA DRIVER |
| 7782 | M: Malcolm Priestley <tvboxspy@gmail.com> |
| 7783 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 7784 | W: https://linuxtv.org |
Malcolm Priestley | 68620bd | 2012-11-04 19:16:31 +0100 | [diff] [blame] | 7785 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 7786 | S: Maintained |
| 7787 | F: drivers/media/usb/dvb-usb-v2/lmedm04* |
| 7788 | |
Ingo Molnar | d4c3be7 | 2016-06-09 12:20:25 +0200 | [diff] [blame] | 7789 | LOCKING PRIMITIVES |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7790 | M: Peter Zijlstra <peterz@infradead.org> |
| 7791 | M: Ingo Molnar <mingo@redhat.com> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 7792 | L: linux-kernel@vger.kernel.org |
Ingo Molnar | d4c3be7 | 2016-06-09 12:20:25 +0200 | [diff] [blame] | 7793 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core |
Peter Zijlstra | 512e67f | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 7794 | S: Maintained |
Ingo Molnar | d4c3be7 | 2016-06-09 12:20:25 +0200 | [diff] [blame] | 7795 | F: Documentation/locking/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7796 | F: include/linux/lockdep.h |
Ingo Molnar | d4c3be7 | 2016-06-09 12:20:25 +0200 | [diff] [blame] | 7797 | F: include/linux/spinlock*.h |
| 7798 | F: arch/*/include/asm/spinlock*.h |
| 7799 | F: include/linux/rwlock*.h |
| 7800 | F: include/linux/mutex*.h |
| 7801 | F: arch/*/include/asm/mutex*.h |
| 7802 | F: include/linux/rwsem*.h |
| 7803 | F: arch/*/include/asm/rwsem.h |
| 7804 | F: include/linux/seqlock.h |
| 7805 | F: lib/locking*.[ch] |
Joe Perches | 7486d6d | 2013-11-14 14:59:45 -0800 | [diff] [blame] | 7806 | F: kernel/locking/ |
Peter Zijlstra | 512e67f | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 7807 | |
Anton Altaparmakov | dde3334 | 2007-05-21 09:37:42 +0100 | [diff] [blame] | 7808 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7809 | M: "Richard Russon (FlatCap)" <ldm@flatcap.org> |
Anton Altaparmakov | dde3334 | 2007-05-21 09:37:42 +0100 | [diff] [blame] | 7810 | L: linux-ntfs-dev@lists.sourceforge.net |
| 7811 | W: http://www.linux-ntfs.org/content/view/19/37/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7812 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7813 | F: Documentation/ldm.txt |
Joe Perches | 20d16fe | 2012-02-03 15:37:11 -0800 | [diff] [blame] | 7814 | F: block/partitions/ldm.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7815 | |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 7816 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
Suganath prabu Subramani | 9495e83 | 2016-02-18 14:09:46 +0530 | [diff] [blame] | 7817 | M: Sathya Prakash <sathya.prakash@broadcom.com> |
| 7818 | M: Chaitra P B <chaitra.basappa@broadcom.com> |
| 7819 | M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com> |
| 7820 | L: MPT-FusionLinux.pdl@broadcom.com |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 7821 | L: linux-scsi@vger.kernel.org |
Suganath prabu Subramani | 9495e83 | 2016-02-18 14:09:46 +0530 | [diff] [blame] | 7822 | W: http://www.avagotech.com/support/ |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 7823 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7824 | F: drivers/message/fusion/ |
sreekanth.reddy@lsi.com | 500c152 | 2012-10-09 11:04:22 +0530 | [diff] [blame] | 7825 | F: drivers/scsi/mpt2sas/ |
| 7826 | F: drivers/scsi/mpt3sas/ |
Moore, Eric Dean | c87e34e | 2005-12-01 11:06:25 -0700 | [diff] [blame] | 7827 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7828 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7829 | M: Matthew Wilcox <matthew@wil.cx> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7830 | L: linux-scsi@vger.kernel.org |
| 7831 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7832 | F: drivers/scsi/sym53c8xx_2/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7833 | |
Guenter Roeck | e5f5c99 | 2010-06-25 11:59:54 -0700 | [diff] [blame] | 7834 | LTC4261 HARDWARE MONITOR DRIVER |
| 7835 | M: Guenter Roeck <linux@roeck-us.net> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 7836 | L: linux-hwmon@vger.kernel.org |
Guenter Roeck | e5f5c99 | 2010-06-25 11:59:54 -0700 | [diff] [blame] | 7837 | S: Maintained |
| 7838 | F: Documentation/hwmon/ltc4261 |
| 7839 | F: drivers/hwmon/ltc4261.c |
| 7840 | |
Michael Hennerich | dbed8a8 | 2017-04-11 14:16:16 +0200 | [diff] [blame] | 7841 | LTC4306 I2C MULTIPLEXER DRIVER |
| 7842 | M: Michael Hennerich <michael.hennerich@analog.com> |
| 7843 | W: http://ez.analog.com/community/linux-device-drivers |
| 7844 | L: linux-i2c@vger.kernel.org |
| 7845 | S: Supported |
| 7846 | F: drivers/i2c/muxes/i2c-mux-ltc4306.c |
| 7847 | F: Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt |
| 7848 | |
Mike Frysinger | 81365c3 | 2008-10-29 14:01:12 -0700 | [diff] [blame] | 7849 | LTP (Linux Test Project) |
Joe Perches | 28b8e8d | 2010-03-23 13:35:20 -0700 | [diff] [blame] | 7850 | M: Mike Frysinger <vapier@gentoo.org> |
Wanlong Gao | 7d1ae8a | 2012-03-23 15:01:58 -0700 | [diff] [blame] | 7851 | M: Cyril Hrubis <chrubis@suse.cz> |
Cyril Hrubis | 0526109 | 2015-09-17 16:01:57 -0700 | [diff] [blame] | 7852 | M: Wanlong Gao <wanlong.gao@gmail.com> |
Cyril Hrubis | f2eb7f6 | 2014-05-09 15:36:58 -0700 | [diff] [blame] | 7853 | M: Jan Stancek <jstancek@redhat.com> |
| 7854 | M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com> |
| 7855 | M: Alexey Kodanev <alexey.kodanev@oracle.com> |
Cyril Hrubis | 0526109 | 2015-09-17 16:01:57 -0700 | [diff] [blame] | 7856 | L: ltp@lists.linux.it (subscribers-only) |
Cyril Hrubis | f2eb7f6 | 2014-05-09 15:36:58 -0700 | [diff] [blame] | 7857 | W: http://linux-test-project.github.io/ |
Wanlong Gao | 7d1ae8a | 2012-03-23 15:01:58 -0700 | [diff] [blame] | 7858 | T: git git://github.com/linux-test-project/ltp.git |
Mike Frysinger | 81365c3 | 2008-10-29 14:01:12 -0700 | [diff] [blame] | 7859 | S: Maintained |
| 7860 | |
Hirokazu Takata | c12a54b | 2007-07-15 23:38:45 -0700 | [diff] [blame] | 7861 | M32R ARCHITECTURE |
Hirokazu Takata | c12a54b | 2007-07-15 23:38:45 -0700 | [diff] [blame] | 7862 | W: http://www.linux-m32r.org/ |
Michael Opdenacker | b417486 | 2014-10-13 15:51:26 -0700 | [diff] [blame] | 7863 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7864 | F: arch/m32r/ |
Hirokazu Takata | c12a54b | 2007-07-15 23:38:45 -0700 | [diff] [blame] | 7865 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7866 | M68K ARCHITECTURE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7867 | M: Geert Uytterhoeven <geert@linux-m68k.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7868 | L: linux-m68k@lists.linux-m68k.org |
| 7869 | W: http://www.linux-m68k.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 7870 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7871 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7872 | F: arch/m68k/ |
Joe Perches | 9db3518 | 2009-04-08 08:39:56 -0700 | [diff] [blame] | 7873 | F: drivers/zorro/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7874 | |
| 7875 | M68K ON APPLE MACINTOSH |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7876 | M: Joshua Thompson <funaho@jurai.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7877 | W: http://www.mac.linux-m68k.org/ |
Finn Thain | 9bb9f22 | 2007-11-18 11:10:05 +0100 | [diff] [blame] | 7878 | L: linux-m68k@lists.linux-m68k.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7879 | S: Maintained |
Joe Perches | 9db3518 | 2009-04-08 08:39:56 -0700 | [diff] [blame] | 7880 | F: arch/m68k/mac/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7881 | |
| 7882 | M68K ON HP9000/300 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7883 | M: Philip Blundell <philb@gnu.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7884 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
| 7885 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7886 | F: arch/m68k/hp300/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7887 | |
Antti Palosaari | 7442554 | 2013-11-06 14:03:32 -0300 | [diff] [blame] | 7888 | M88DS3103 MEDIA DRIVER |
| 7889 | M: Antti Palosaari <crope@iki.fi> |
| 7890 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 7891 | W: https://linuxtv.org |
Antti Palosaari | 7442554 | 2013-11-06 14:03:32 -0300 | [diff] [blame] | 7892 | W: http://palosaari.fi/linux/ |
| 7893 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 7894 | T: git git://linuxtv.org/anttip/media_tree.git |
| 7895 | S: Maintained |
| 7896 | F: drivers/media/dvb-frontends/m88ds3103* |
| 7897 | |
Malcolm Priestley | 68620bd | 2012-11-04 19:16:31 +0100 | [diff] [blame] | 7898 | M88RS2000 MEDIA DRIVER |
| 7899 | M: Malcolm Priestley <tvboxspy@gmail.com> |
| 7900 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 7901 | W: https://linuxtv.org |
Malcolm Priestley | 68620bd | 2012-11-04 19:16:31 +0100 | [diff] [blame] | 7902 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 7903 | S: Maintained |
| 7904 | F: drivers/media/dvb-frontends/m88rs2000* |
| 7905 | |
Alexey Klimov | 07a092f | 2012-11-12 02:57:32 -0300 | [diff] [blame] | 7906 | MA901 MASTERKIT USB FM RADIO DRIVER |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 7907 | M: Alexey Klimov <klimov.linux@gmail.com> |
| 7908 | L: linux-media@vger.kernel.org |
| 7909 | T: git git://linuxtv.org/media_tree.git |
| 7910 | S: Maintained |
| 7911 | F: drivers/media/radio/radio-ma901.c |
Alexey Klimov | 07a092f | 2012-11-12 02:57:32 -0300 | [diff] [blame] | 7912 | |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 7913 | MAC80211 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7914 | M: Johannes Berg <johannes@sipsolutions.net> |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 7915 | L: linux-wireless@vger.kernel.org |
Johannes Berg | 491b26b | 2012-06-05 14:21:14 +0200 | [diff] [blame] | 7916 | W: http://wireless.kernel.org/ |
Johannes Berg | ce46657 | 2012-06-05 15:42:55 +0200 | [diff] [blame] | 7917 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
| 7918 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 7919 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7920 | F: Documentation/networking/mac80211-injection.txt |
| 7921 | F: include/net/mac80211.h |
| 7922 | F: net/mac80211/ |
Johannes Berg | 2af8c4d | 2016-02-26 10:50:34 +0100 | [diff] [blame] | 7923 | F: drivers/net/wireless/mac80211_hwsim.[ch] |
Jiri Benc | 64a327a | 2007-05-05 11:47:08 -0700 | [diff] [blame] | 7924 | |
Jassi Brar | 2b6d83e | 2014-06-12 22:31:19 +0530 | [diff] [blame] | 7925 | MAILBOX API |
| 7926 | M: Jassi Brar <jassisinghbrar@gmail.com> |
| 7927 | L: linux-kernel@vger.kernel.org |
| 7928 | S: Maintained |
| 7929 | F: drivers/mailbox/ |
| 7930 | F: include/linux/mailbox_client.h |
| 7931 | F: include/linux/mailbox_controller.h |
| 7932 | |
Michael Kerrisk | faf1668 | 2005-07-31 22:34:47 -0700 | [diff] [blame] | 7933 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 7934 | M: Michael Kerrisk <mtk.manpages@gmail.com> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 7935 | W: http://www.kernel.org/doc/man-pages |
Michael Kerrisk | bd7ebec | 2008-10-03 15:23:44 -0700 | [diff] [blame] | 7936 | L: linux-man@vger.kernel.org |
Michael Kerrisk | 1b53dc7 | 2009-03-12 14:31:32 -0700 | [diff] [blame] | 7937 | S: Maintained |
Michael Kerrisk | faf1668 | 2005-07-31 22:34:47 -0700 | [diff] [blame] | 7938 | |
Rahul Bedarkar | daa10170 | 2016-10-14 11:25:55 +0530 | [diff] [blame] | 7939 | MARDUK (CREATOR CI40) DEVICE TREE SUPPORT |
Rahul Bedarkar | 296f827 | 2017-04-18 14:04:36 +0530 | [diff] [blame] | 7940 | M: Rahul Bedarkar <rahulbedarkar89@gmail.com> |
Rahul Bedarkar | daa10170 | 2016-10-14 11:25:55 +0530 | [diff] [blame] | 7941 | L: linux-mips@linux-mips.org |
| 7942 | S: Maintained |
| 7943 | F: arch/mips/boot/dts/img/pistachio_marduk.dts |
| 7944 | |
Vivien Didelot | 0d3cd4b | 2016-06-21 12:28:19 -0400 | [diff] [blame] | 7945 | MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER |
| 7946 | M: Andrew Lunn <andrew@lunn.ch> |
| 7947 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> |
Andreas Färber | b26bff6 | 2016-11-27 23:59:51 +0100 | [diff] [blame] | 7948 | L: netdev@vger.kernel.org |
Vivien Didelot | 0d3cd4b | 2016-06-21 12:28:19 -0400 | [diff] [blame] | 7949 | S: Maintained |
| 7950 | F: drivers/net/dsa/mv88e6xxx/ |
Andreas Färber | b26bff6 | 2016-11-27 23:59:51 +0100 | [diff] [blame] | 7951 | F: Documentation/devicetree/bindings/net/dsa/marvell.txt |
Vivien Didelot | 0d3cd4b | 2016-06-21 12:28:19 -0400 | [diff] [blame] | 7952 | |
Russell King | 8427def | 2014-02-28 22:40:53 +0000 | [diff] [blame] | 7953 | MARVELL ARMADA DRM SUPPORT |
Russell King | 0d7f4f0 | 2016-11-01 20:27:13 +0000 | [diff] [blame] | 7954 | M: Russell King <linux@armlinux.org.uk> |
Russell King | 8427def | 2014-02-28 22:40:53 +0000 | [diff] [blame] | 7955 | S: Maintained |
Russell King | 0d7f4f0 | 2016-11-01 20:27:13 +0000 | [diff] [blame] | 7956 | T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel |
| 7957 | T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes |
Russell King | 8427def | 2014-02-28 22:40:53 +0000 | [diff] [blame] | 7958 | F: drivers/gpu/drm/armada/ |
Emil Velikov | 4418833 | 2016-04-22 00:03:55 +0100 | [diff] [blame] | 7959 | F: include/uapi/drm/armada_drm.h |
| 7960 | F: Documentation/devicetree/bindings/display/armada/ |
Russell King | 8427def | 2014-02-28 22:40:53 +0000 | [diff] [blame] | 7961 | |
Thomas Petazzoni | c4d007b | 2015-10-09 17:39:02 +0200 | [diff] [blame] | 7962 | MARVELL CRYPTO DRIVER |
| 7963 | M: Boris Brezillon <boris.brezillon@free-electrons.com> |
| 7964 | M: Arnaud Ebalard <arno@natisbad.org> |
| 7965 | F: drivers/crypto/marvell/ |
| 7966 | S: Maintained |
| 7967 | L: linux-crypto@vger.kernel.org |
| 7968 | |
stephen hemminger | 44c14c1 | 2012-04-02 12:59:47 +0000 | [diff] [blame] | 7969 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
| 7970 | M: Mirko Lindner <mlindner@marvell.com> |
Stephen Hemminger | adbbf69 | 2013-01-16 09:55:57 -0800 | [diff] [blame] | 7971 | M: Stephen Hemminger <stephen@networkplumber.org> |
stephen hemminger | 44c14c1 | 2012-04-02 12:59:47 +0000 | [diff] [blame] | 7972 | L: netdev@vger.kernel.org |
| 7973 | S: Maintained |
| 7974 | F: drivers/net/ethernet/marvell/sk* |
| 7975 | |
Stefano Brivio | 74cda16 | 2007-11-19 20:27:46 +0100 | [diff] [blame] | 7976 | MARVELL LIBERTAS WIRELESS DRIVER |
Stefano Brivio | 74cda16 | 2007-11-19 20:27:46 +0100 | [diff] [blame] | 7977 | L: libertas-dev@lists.infradead.org |
Dan Williams | 8ac3e99 | 2013-03-26 14:40:51 -0500 | [diff] [blame] | 7978 | S: Orphan |
Kalle Valo | f988d64 | 2015-11-17 21:07:19 +0200 | [diff] [blame] | 7979 | F: drivers/net/wireless/marvell/libertas/ |
Stefano Brivio | 74cda16 | 2007-11-19 20:27:46 +0100 | [diff] [blame] | 7980 | |
Dale Farnsworth | b60d697 | 2006-01-16 16:45:45 -0700 | [diff] [blame] | 7981 | MARVELL MV643XX ETHERNET DRIVER |
Sebastian Hesselbarth | 4e3faf8 | 2013-10-04 12:56:39 +0200 | [diff] [blame] | 7982 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 7983 | L: netdev@vger.kernel.org |
Lennert Buytenhek | f5ca850 | 2010-02-22 22:34:54 +0000 | [diff] [blame] | 7984 | S: Maintained |
Jeff Kirsher | 527a626 | 2011-05-20 20:18:55 -0700 | [diff] [blame] | 7985 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 7986 | F: include/linux/mv643xx.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7987 | |
Thomas Petazzoni | 370b8ed | 2012-09-04 15:06:42 +0200 | [diff] [blame] | 7988 | MARVELL MVNETA ETHERNET DRIVER |
| 7989 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> |
| 7990 | L: netdev@vger.kernel.org |
| 7991 | S: Maintained |
| 7992 | F: drivers/net/ethernet/marvell/mvneta.* |
| 7993 | |
Bing Zhao | fcad584 | 2011-07-13 13:11:58 -0700 | [diff] [blame] | 7994 | MARVELL MWIFIEX WIRELESS DRIVER |
Brian Norris | bf30171 | 2017-04-19 10:12:35 -0700 | [diff] [blame] | 7995 | M: Amitkumar Karwar <amitkarwar@gmail.com> |
Avinash Patil | 550795f | 2015-06-24 16:52:21 +0530 | [diff] [blame] | 7996 | M: Nishant Sarmukadam <nishants@marvell.com> |
Amitkumar Karwar | cf8c44d | 2017-02-28 18:54:31 +0530 | [diff] [blame] | 7997 | M: Ganapathi Bhat <gbhat@marvell.com> |
| 7998 | M: Xinming Hu <huxm@marvell.com> |
Bing Zhao | fcad584 | 2011-07-13 13:11:58 -0700 | [diff] [blame] | 7999 | L: linux-wireless@vger.kernel.org |
| 8000 | S: Maintained |
Kalle Valo | 277b024 | 2015-11-17 21:14:51 +0200 | [diff] [blame] | 8001 | F: drivers/net/wireless/marvell/mwifiex/ |
Bing Zhao | fcad584 | 2011-07-13 13:11:58 -0700 | [diff] [blame] | 8002 | |
Lennert Buytenhek | a2c3f65 | 2009-08-18 05:13:48 +0200 | [diff] [blame] | 8003 | MARVELL MWL8K WIRELESS DRIVER |
Lennert Buytenhek | a040d53 | 2010-02-23 09:34:38 +0100 | [diff] [blame] | 8004 | M: Lennert Buytenhek <buytenh@wantstofly.org> |
Lennert Buytenhek | a2c3f65 | 2009-08-18 05:13:48 +0200 | [diff] [blame] | 8005 | L: linux-wireless@vger.kernel.org |
Lennert Buytenhek | 1634591 | 2010-07-29 01:47:04 +0200 | [diff] [blame] | 8006 | S: Odd Fixes |
Kalle Valo | de60f1d | 2015-11-17 21:18:12 +0200 | [diff] [blame] | 8007 | F: drivers/net/wireless/marvell/mwl8k.c |
Lennert Buytenhek | a2c3f65 | 2009-08-18 05:13:48 +0200 | [diff] [blame] | 8008 | |
Pierre Ossman | 2a69567 | 2009-03-16 19:52:26 +0100 | [diff] [blame] | 8009 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
Nicolas Pitre | 2f82af0 | 2009-09-14 03:25:28 -0400 | [diff] [blame] | 8010 | M: Nicolas Pitre <nico@fluxnic.net> |
Nicolas Pitre | 18e2842 | 2010-05-03 16:43:47 -0400 | [diff] [blame] | 8011 | S: Odd Fixes |
Joe Perches | 1fa7e54 | 2010-10-26 14:23:02 -0700 | [diff] [blame] | 8012 | F: drivers/mmc/host/mvsdio.* |
Pierre Ossman | 2a69567 | 2009-03-16 19:52:26 +0100 | [diff] [blame] | 8013 | |
Hu Ziji | 511fc93 | 2017-03-30 17:23:02 +0200 | [diff] [blame] | 8014 | MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER |
| 8015 | M: Hu Ziji <huziji@marvell.com> |
| 8016 | L: linux-mmc@vger.kernel.org |
| 8017 | S: Supported |
| 8018 | F: drivers/mmc/host/sdhci-xenon* |
| 8019 | F: Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt |
| 8020 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8021 | MATROX FRAMEBUFFER DRIVER |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 8022 | L: linux-fbdev@vger.kernel.org |
Petr Vandrovec | 5265319 | 2010-09-30 15:15:34 -0700 | [diff] [blame] | 8023 | S: Orphan |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 8024 | F: drivers/video/fbdev/matrox/matroxfb_* |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 8025 | F: include/uapi/linux/matroxfb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8026 | |
Guenter Roeck | ca46208 | 2012-06-01 23:28:23 -0700 | [diff] [blame] | 8027 | MAX16065 HARDWARE MONITOR DRIVER |
| 8028 | M: Guenter Roeck <linux@roeck-us.net> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 8029 | L: linux-hwmon@vger.kernel.org |
Guenter Roeck | ca46208 | 2012-06-01 23:28:23 -0700 | [diff] [blame] | 8030 | S: Maintained |
| 8031 | F: Documentation/hwmon/max16065 |
| 8032 | F: drivers/hwmon/max16065.c |
| 8033 | |
Guenter Roeck | 1f61cab | 2015-06-08 11:15:23 -0700 | [diff] [blame] | 8034 | MAX20751 HARDWARE MONITOR DRIVER |
| 8035 | M: Guenter Roeck <linux@roeck-us.net> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 8036 | L: linux-hwmon@vger.kernel.org |
Guenter Roeck | 1f61cab | 2015-06-08 11:15:23 -0700 | [diff] [blame] | 8037 | S: Maintained |
| 8038 | F: Documentation/hwmon/max20751 |
| 8039 | F: drivers/hwmon/max20751.c |
| 8040 | |
Hans-Juergen Koch | d20620d | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 8041 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 8042 | L: linux-hwmon@vger.kernel.org |
Benedikt Spranger | 34924b2 | 2016-08-08 17:54:48 +0200 | [diff] [blame] | 8043 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8044 | F: Documentation/hwmon/max6650 |
| 8045 | F: drivers/hwmon/max6650.c |
Hans-Juergen Koch | d20620d | 2007-05-08 17:22:00 +0200 | [diff] [blame] | 8046 | |
Guenter Roeck | e89ab51 | 2013-03-08 08:13:09 -0800 | [diff] [blame] | 8047 | MAX6697 HARDWARE MONITOR DRIVER |
| 8048 | M: Guenter Roeck <linux@roeck-us.net> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 8049 | L: linux-hwmon@vger.kernel.org |
Guenter Roeck | e89ab51 | 2013-03-08 08:13:09 -0800 | [diff] [blame] | 8050 | S: Maintained |
| 8051 | F: Documentation/hwmon/max6697 |
| 8052 | F: Documentation/devicetree/bindings/i2c/max6697.txt |
| 8053 | F: drivers/hwmon/max6697.c |
| 8054 | F: include/linux/platform_data/max6697.h |
| 8055 | |
Peter Rosin | 3b2af7f | 2016-05-14 23:09:39 +0200 | [diff] [blame] | 8056 | MAX9860 MONO AUDIO VOICE CODEC DRIVER |
| 8057 | M: Peter Rosin <peda@axentia.se> |
| 8058 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 8059 | S: Maintained |
| 8060 | F: Documentation/devicetree/bindings/sound/max9860.txt |
| 8061 | F: sound/soc/codecs/max9860.* |
| 8062 | |
Krzysztof Kozlowski | f8f847b | 2015-01-20 11:00:56 +0100 | [diff] [blame] | 8063 | MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS |
Krzysztof Kozlowski | 326dce0 | 2016-08-16 18:50:42 +0200 | [diff] [blame] | 8064 | M: Krzysztof Kozlowski <krzk@kernel.org> |
| 8065 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
Krzysztof Kozlowski | f8f847b | 2015-01-20 11:00:56 +0100 | [diff] [blame] | 8066 | L: linux-pm@vger.kernel.org |
| 8067 | S: Supported |
Sebastian Reichel | 8c0984e | 2016-06-17 13:54:32 +0200 | [diff] [blame] | 8068 | F: drivers/power/supply/max14577_charger.c |
| 8069 | F: drivers/power/supply/max77693_charger.c |
Krzysztof Kozlowski | f8f847b | 2015-01-20 11:00:56 +0100 | [diff] [blame] | 8070 | |
Javier Martinez Canillas | 3811405 | 2015-07-17 10:17:58 +0200 | [diff] [blame] | 8071 | MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS |
| 8072 | M: Javier Martinez Canillas <javier@osg.samsung.com> |
| 8073 | L: linux-kernel@vger.kernel.org |
| 8074 | S: Supported |
Javier Martinez Canillas | 96173cc | 2016-02-12 01:14:23 -0300 | [diff] [blame] | 8075 | F: drivers/*/*max77802*.c |
Javier Martinez Canillas | 3811405 | 2015-07-17 10:17:58 +0200 | [diff] [blame] | 8076 | F: Documentation/devicetree/bindings/*/*max77802.txt |
| 8077 | F: include/dt-bindings/*/*max77802.h |
| 8078 | |
Krzysztof Kozlowski | befeb59 | 2015-02-16 16:00:23 -0800 | [diff] [blame] | 8079 | MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS |
| 8080 | M: Chanwoo Choi <cw00.choi@samsung.com> |
Krzysztof Kozlowski | 326dce0 | 2016-08-16 18:50:42 +0200 | [diff] [blame] | 8081 | M: Krzysztof Kozlowski <krzk@kernel.org> |
| 8082 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
Krzysztof Kozlowski | befeb59 | 2015-02-16 16:00:23 -0800 | [diff] [blame] | 8083 | L: linux-kernel@vger.kernel.org |
| 8084 | S: Supported |
Javier Martinez Canillas | 86cf635 | 2016-03-17 14:54:54 -0300 | [diff] [blame] | 8085 | F: drivers/*/max14577*.c |
Javier Martinez Canillas | 0998a43 | 2016-02-15 11:24:58 -0300 | [diff] [blame] | 8086 | F: drivers/*/max77686*.c |
Javier Martinez Canillas | 86cf635 | 2016-03-17 14:54:54 -0300 | [diff] [blame] | 8087 | F: drivers/*/max77693*.c |
Krzysztof Kozlowski | befeb59 | 2015-02-16 16:00:23 -0800 | [diff] [blame] | 8088 | F: drivers/extcon/extcon-max14577.c |
| 8089 | F: drivers/extcon/extcon-max77693.c |
| 8090 | F: drivers/rtc/rtc-max77686.c |
| 8091 | F: drivers/clk/clk-max77686.c |
| 8092 | F: Documentation/devicetree/bindings/mfd/max14577.txt |
Javier Martinez Canillas | 377452f | 2015-07-17 10:17:57 +0200 | [diff] [blame] | 8093 | F: Documentation/devicetree/bindings/*/max77686.txt |
Krzysztof Kozlowski | befeb59 | 2015-02-16 16:00:23 -0800 | [diff] [blame] | 8094 | F: Documentation/devicetree/bindings/mfd/max77693.txt |
| 8095 | F: Documentation/devicetree/bindings/clock/maxim,max77686.txt |
| 8096 | F: include/linux/mfd/max14577*.h |
| 8097 | F: include/linux/mfd/max77686*.h |
| 8098 | F: include/linux/mfd/max77693*.h |
| 8099 | |
Hans Verkuil | 9be3c9a | 2012-11-23 07:12:43 -0300 | [diff] [blame] | 8100 | MAXIRADIO FM RADIO RECEIVER DRIVER |
| 8101 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 8102 | L: linux-media@vger.kernel.org |
| 8103 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 8104 | W: https://linuxtv.org |
Hans Verkuil | 9be3c9a | 2012-11-23 07:12:43 -0300 | [diff] [blame] | 8105 | S: Maintained |
| 8106 | F: drivers/media/radio/radio-maxiradio* |
| 8107 | |
Peter Rosin | c05dc2c | 2015-09-23 16:26:23 +0200 | [diff] [blame] | 8108 | MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER |
| 8109 | M: Peter Rosin <peda@axentia.se> |
| 8110 | L: linux-iio@vger.kernel.org |
| 8111 | S: Maintained |
Peter Rosin | 2704e30 | 2016-11-08 12:58:53 +0100 | [diff] [blame] | 8112 | F: Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531 |
Peter Rosin | c05dc2c | 2015-09-23 16:26:23 +0200 | [diff] [blame] | 8113 | F: drivers/iio/potentiometer/mcp4531.c |
| 8114 | |
William Breathitt Gray | 3b8df5f | 2016-07-12 09:33:14 -0400 | [diff] [blame] | 8115 | MEASUREMENT COMPUTING CIO-DAC IIO DRIVER |
| 8116 | M: William Breathitt Gray <vilhelm.gray@gmail.com> |
| 8117 | L: linux-iio@vger.kernel.org |
| 8118 | S: Maintained |
| 8119 | F: drivers/iio/dac/cio-dac.c |
| 8120 | |
Laurent Pinchart | 7b49235 | 2016-02-11 22:29:58 -0200 | [diff] [blame] | 8121 | MEDIA DRIVERS FOR RENESAS - FCP |
| 8122 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 8123 | L: linux-media@vger.kernel.org |
| 8124 | L: linux-renesas-soc@vger.kernel.org |
| 8125 | T: git git://linuxtv.org/media_tree.git |
| 8126 | S: Supported |
| 8127 | F: Documentation/devicetree/bindings/media/renesas,fcp.txt |
| 8128 | F: drivers/media/platform/rcar-fcp.c |
| 8129 | F: include/media/rcar-fcp.h |
| 8130 | |
Kieran Bingham | 4710b75 | 2016-06-30 10:41:23 -0300 | [diff] [blame] | 8131 | MEDIA DRIVERS FOR RENESAS - FDP1 |
| 8132 | M: Kieran Bingham <kieran@bingham.xyz> |
| 8133 | L: linux-media@vger.kernel.org |
| 8134 | L: linux-renesas-soc@vger.kernel.org |
| 8135 | T: git git://linuxtv.org/media_tree.git |
| 8136 | S: Supported |
| 8137 | F: Documentation/devicetree/bindings/media/renesas,fdp1.txt |
| 8138 | F: drivers/media/platform/rcar_fdp1.c |
| 8139 | |
Niklas Söderlund | 474cde6 | 2016-09-15 09:18:36 -0300 | [diff] [blame] | 8140 | MEDIA DRIVERS FOR RENESAS - VIN |
| 8141 | M: Niklas Söderlund <niklas.soderlund@ragnatech.se> |
| 8142 | L: linux-media@vger.kernel.org |
| 8143 | L: linux-renesas-soc@vger.kernel.org |
| 8144 | T: git git://linuxtv.org/media_tree.git |
| 8145 | S: Supported |
| 8146 | F: Documentation/devicetree/bindings/media/rcar_vin.txt |
| 8147 | F: drivers/media/platform/rcar-vin/ |
| 8148 | |
Laurent Pinchart | 6f32a8c | 2015-03-04 09:12:20 -0300 | [diff] [blame] | 8149 | MEDIA DRIVERS FOR RENESAS - VSP1 |
| 8150 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 8151 | L: linux-media@vger.kernel.org |
Simon Horman | 4a12109 | 2016-01-18 10:04:33 +0900 | [diff] [blame] | 8152 | L: linux-renesas-soc@vger.kernel.org |
Laurent Pinchart | 6f32a8c | 2015-03-04 09:12:20 -0300 | [diff] [blame] | 8153 | T: git git://linuxtv.org/media_tree.git |
| 8154 | S: Supported |
| 8155 | F: Documentation/devicetree/bindings/media/renesas,vsp1.txt |
| 8156 | F: drivers/media/platform/vsp1/ |
| 8157 | |
Abylay Ospan | fae2080 | 2016-06-07 11:33:57 -0400 | [diff] [blame] | 8158 | MEDIA DRIVERS FOR HELENE |
| 8159 | M: Abylay Ospan <aospan@netup.ru> |
| 8160 | L: linux-media@vger.kernel.org |
| 8161 | W: https://linuxtv.org |
| 8162 | W: http://netup.tv/ |
| 8163 | T: git git://linuxtv.org/media_tree.git |
| 8164 | S: Supported |
| 8165 | F: drivers/media/dvb-frontends/helene* |
| 8166 | |
Kozlov Sergey | dacf9ce | 2015-07-28 11:33:01 -0300 | [diff] [blame] | 8167 | MEDIA DRIVERS FOR ASCOT2E |
| 8168 | M: Sergey Kozlov <serjk@netup.ru> |
Abylay Ospan | 1a76e1f | 2016-04-02 00:00:58 -0300 | [diff] [blame] | 8169 | M: Abylay Ospan <aospan@netup.ru> |
Kozlov Sergey | dacf9ce | 2015-07-28 11:33:01 -0300 | [diff] [blame] | 8170 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 8171 | W: https://linuxtv.org |
Kozlov Sergey | dacf9ce | 2015-07-28 11:33:01 -0300 | [diff] [blame] | 8172 | W: http://netup.tv/ |
| 8173 | T: git git://linuxtv.org/media_tree.git |
| 8174 | S: Supported |
| 8175 | F: drivers/media/dvb-frontends/ascot2e* |
| 8176 | |
Kozlov Sergey | a6dc60ff | 2015-07-28 11:33:03 -0300 | [diff] [blame] | 8177 | MEDIA DRIVERS FOR CXD2841ER |
| 8178 | M: Sergey Kozlov <serjk@netup.ru> |
Abylay Ospan | 1a76e1f | 2016-04-02 00:00:58 -0300 | [diff] [blame] | 8179 | M: Abylay Ospan <aospan@netup.ru> |
Kozlov Sergey | a6dc60ff | 2015-07-28 11:33:03 -0300 | [diff] [blame] | 8180 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 8181 | W: https://linuxtv.org |
Kozlov Sergey | a6dc60ff | 2015-07-28 11:33:03 -0300 | [diff] [blame] | 8182 | W: http://netup.tv/ |
| 8183 | T: git git://linuxtv.org/media_tree.git |
| 8184 | S: Supported |
| 8185 | F: drivers/media/dvb-frontends/cxd2841er* |
| 8186 | |
Kozlov Sergey | a5d32b3 | 2015-07-28 11:33:00 -0300 | [diff] [blame] | 8187 | MEDIA DRIVERS FOR HORUS3A |
| 8188 | M: Sergey Kozlov <serjk@netup.ru> |
Abylay Ospan | 1a76e1f | 2016-04-02 00:00:58 -0300 | [diff] [blame] | 8189 | M: Abylay Ospan <aospan@netup.ru> |
Kozlov Sergey | a5d32b3 | 2015-07-28 11:33:00 -0300 | [diff] [blame] | 8190 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 8191 | W: https://linuxtv.org |
Kozlov Sergey | a5d32b3 | 2015-07-28 11:33:00 -0300 | [diff] [blame] | 8192 | W: http://netup.tv/ |
| 8193 | T: git git://linuxtv.org/media_tree.git |
| 8194 | S: Supported |
| 8195 | F: drivers/media/dvb-frontends/horus3a* |
| 8196 | |
Kozlov Sergey | e025273 | 2015-07-28 11:33:02 -0300 | [diff] [blame] | 8197 | MEDIA DRIVERS FOR LNBH25 |
| 8198 | M: Sergey Kozlov <serjk@netup.ru> |
Abylay Ospan | 1a76e1f | 2016-04-02 00:00:58 -0300 | [diff] [blame] | 8199 | M: Abylay Ospan <aospan@netup.ru> |
Kozlov Sergey | e025273 | 2015-07-28 11:33:02 -0300 | [diff] [blame] | 8200 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 8201 | W: https://linuxtv.org |
Kozlov Sergey | e025273 | 2015-07-28 11:33:02 -0300 | [diff] [blame] | 8202 | W: http://netup.tv/ |
| 8203 | T: git git://linuxtv.org/media_tree.git |
| 8204 | S: Supported |
| 8205 | F: drivers/media/dvb-frontends/lnbh25* |
| 8206 | |
Kozlov Sergey | 52b1eaf | 2015-07-28 11:33:04 -0300 | [diff] [blame] | 8207 | MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices |
| 8208 | M: Sergey Kozlov <serjk@netup.ru> |
Abylay Ospan | 1a76e1f | 2016-04-02 00:00:58 -0300 | [diff] [blame] | 8209 | M: Abylay Ospan <aospan@netup.ru> |
Kozlov Sergey | 52b1eaf | 2015-07-28 11:33:04 -0300 | [diff] [blame] | 8210 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 8211 | W: https://linuxtv.org |
Kozlov Sergey | 52b1eaf | 2015-07-28 11:33:04 -0300 | [diff] [blame] | 8212 | W: http://netup.tv/ |
| 8213 | T: git git://linuxtv.org/media_tree.git |
| 8214 | S: Supported |
| 8215 | F: drivers/media/pci/netup_unidvb/* |
| 8216 | |
Joe Perches | 127c49a | 2009-04-08 08:34:04 -0700 | [diff] [blame] | 8217 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
Mauro Carvalho Chehab | 5dc8a86 | 2016-06-14 15:17:40 -0300 | [diff] [blame] | 8218 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
| 8219 | M: Mauro Carvalho Chehab <mchehab@kernel.org> |
Joe Perches | 127c49a | 2009-04-08 08:34:04 -0700 | [diff] [blame] | 8220 | P: LinuxTV.org Project |
| 8221 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 8222 | W: https://linuxtv.org |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 8223 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 8224 | T: git git://linuxtv.org/media_tree.git |
Joe Perches | 127c49a | 2009-04-08 08:34:04 -0700 | [diff] [blame] | 8225 | S: Maintained |
Geert Uytterhoeven | 0c4089f | 2017-03-12 10:16:56 -0300 | [diff] [blame] | 8226 | F: Documentation/devicetree/bindings/media/ |
Mauro Carvalho Chehab | 618cd93 | 2016-09-12 12:48:54 -0300 | [diff] [blame] | 8227 | F: Documentation/media/ |
Joe Perches | 127c49a | 2009-04-08 08:34:04 -0700 | [diff] [blame] | 8228 | F: drivers/media/ |
Mauro Carvalho Chehab | ffe0619 | 2011-11-24 19:22:10 -0200 | [diff] [blame] | 8229 | F: drivers/staging/media/ |
Mauro Carvalho Chehab | eb4b0ec | 2015-11-16 08:35:53 -0200 | [diff] [blame] | 8230 | F: include/linux/platform_data/media/ |
Joe Perches | 127c49a | 2009-04-08 08:34:04 -0700 | [diff] [blame] | 8231 | F: include/media/ |
Mauro Carvalho Chehab | 6c0f035 | 2012-11-02 11:56:03 -0200 | [diff] [blame] | 8232 | F: include/uapi/linux/dvb/ |
| 8233 | F: include/uapi/linux/videodev2.h |
| 8234 | F: include/uapi/linux/media.h |
| 8235 | F: include/uapi/linux/v4l2-* |
| 8236 | F: include/uapi/linux/meye.h |
| 8237 | F: include/uapi/linux/ivtv* |
| 8238 | F: include/uapi/linux/uvcvideo.h |
Steven Rostedt | 70ea91f | 2006-07-30 03:03:53 -0700 | [diff] [blame] | 8239 | |
John Crispin | 0c272fc | 2016-03-08 11:29:57 +0100 | [diff] [blame] | 8240 | MEDIATEK ETHERNET DRIVER |
| 8241 | M: Felix Fietkau <nbd@openwrt.org> |
| 8242 | M: John Crispin <blogic@openwrt.org> |
| 8243 | L: netdev@vger.kernel.org |
| 8244 | S: Maintained |
| 8245 | F: drivers/net/ethernet/mediatek/ |
| 8246 | |
Rick Chang | 105e844 | 2016-12-14 06:04:50 -0200 | [diff] [blame] | 8247 | MEDIATEK JPEG DRIVER |
| 8248 | M: Rick Chang <rick.chang@mediatek.com> |
| 8249 | M: Bin Liu <bin.liu@mediatek.com> |
| 8250 | S: Supported |
| 8251 | F: drivers/media/platform/mtk-jpeg/ |
| 8252 | F: Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt |
| 8253 | |
Tiffany Lin | 67712be | 2016-09-07 04:08:17 -0300 | [diff] [blame] | 8254 | MEDIATEK MEDIA DRIVER |
| 8255 | M: Tiffany Lin <tiffany.lin@mediatek.com> |
| 8256 | M: Andrew-CT Chen <andrew-ct.chen@mediatek.com> |
| 8257 | S: Supported |
| 8258 | F: drivers/media/platform/mtk-vcodec/ |
| 8259 | F: drivers/media/platform/mtk-vpu/ |
| 8260 | F: Documentation/devicetree/bindings/media/mediatek-vcodec.txt |
| 8261 | F: Documentation/devicetree/bindings/media/mediatek-vpu.txt |
| 8262 | |
Minghsiu Tsai | fc96ec0 | 2016-09-08 10:09:06 -0300 | [diff] [blame] | 8263 | MEDIATEK MDP DRIVER |
| 8264 | M: Minghsiu Tsai <minghsiu.tsai@mediatek.com> |
| 8265 | M: Houlong Wei <houlong.wei@mediatek.com> |
| 8266 | M: Andrew-CT Chen <andrew-ct.chen@mediatek.com> |
| 8267 | S: Supported |
| 8268 | F: drivers/media/platform/mtk-mdp/ |
| 8269 | F: drivers/media/platform/mtk-vpu/ |
| 8270 | F: Documentation/devicetree/bindings/media/mediatek-mdp.txt |
| 8271 | |
Jakub Kicinski | c869f77 | 2015-05-26 11:16:00 +0200 | [diff] [blame] | 8272 | MEDIATEK MT7601U WIRELESS LAN DRIVER |
| 8273 | M: Jakub Kicinski <kubakici@wp.pl> |
| 8274 | L: linux-wireless@vger.kernel.org |
| 8275 | S: Maintained |
| 8276 | F: drivers/net/wireless/mediatek/mt7601u/ |
| 8277 | |
Peter Senna Tschudin | 15a83f7 | 2017-03-03 16:57:08 +0100 | [diff] [blame] | 8278 | MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES |
| 8279 | M: Peter Senna Tschudin <peter.senna@collabora.com> |
| 8280 | M: Martin Donnelly <martin.donnelly@ge.com> |
| 8281 | M: Martyn Welch <martyn.welch@collabora.co.uk> |
| 8282 | S: Maintained |
| 8283 | F: drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c |
| 8284 | F: Documentation/devicetree/bindings/video/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt |
| 8285 | |
Sumit.Saxena@avagotech.com | e399065 | 2014-11-17 15:24:03 +0530 | [diff] [blame] | 8286 | MEGARAID SCSI/SAS DRIVERS |
Kashyap Desai | 295dde2 | 2016-10-21 06:33:34 -0700 | [diff] [blame] | 8287 | M: Kashyap Desai <kashyap.desai@broadcom.com> |
| 8288 | M: Sumit Saxena <sumit.saxena@broadcom.com> |
| 8289 | M: Shivasharan S <shivasharan.srikanteshwara@broadcom.com> |
| 8290 | L: megaraidlinux.pdl@broadcom.com |
Jean Delvare | baaea1d | 2008-09-20 12:34:33 +0200 | [diff] [blame] | 8291 | L: linux-scsi@vger.kernel.org |
Kashyap Desai | 295dde2 | 2016-10-21 06:33:34 -0700 | [diff] [blame] | 8292 | W: http://www.avagotech.com/support/ |
Kolli, Neela Syam | 757e010 | 2005-10-14 15:59:13 -0700 | [diff] [blame] | 8293 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8294 | F: Documentation/scsi/megaraid.txt |
| 8295 | F: drivers/scsi/megaraid.* |
| 8296 | F: drivers/scsi/megaraid/ |
Kolli, Neela Syam | 757e010 | 2005-10-14 15:59:13 -0700 | [diff] [blame] | 8297 | |
Sangwon Jee | ff43f43 | 2016-10-07 16:25:12 -0700 | [diff] [blame] | 8298 | MELFAS MIP4 TOUCHSCREEN DRIVER |
| 8299 | M: Sangwon Jee <jeesw@melfas.com> |
| 8300 | W: http://www.melfas.com |
| 8301 | S: Supported |
| 8302 | F: drivers/input/touchscreen/melfas_mip4.c |
| 8303 | F: Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt |
| 8304 | |
Amir Vadai | 2c46c9d | 2012-12-02 03:49:21 +0000 | [diff] [blame] | 8305 | MELLANOX ETHERNET DRIVER (mlx4_en) |
Or Gerlitz | c40e409 | 2016-06-21 16:36:06 +0300 | [diff] [blame] | 8306 | M: Tariq Toukan <tariqt@mellanox.com> |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 8307 | L: netdev@vger.kernel.org |
Amir Vadai | 2c46c9d | 2012-12-02 03:49:21 +0000 | [diff] [blame] | 8308 | S: Supported |
| 8309 | W: http://www.mellanox.com |
| 8310 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
| 8311 | F: drivers/net/ethernet/mellanox/mlx4/en_* |
| 8312 | |
Or Gerlitz | e7523a4 | 2015-11-17 18:25:07 +0200 | [diff] [blame] | 8313 | MELLANOX ETHERNET DRIVER (mlx5e) |
| 8314 | M: Saeed Mahameed <saeedm@mellanox.com> |
| 8315 | L: netdev@vger.kernel.org |
| 8316 | S: Supported |
| 8317 | W: http://www.mellanox.com |
| 8318 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
| 8319 | F: drivers/net/ethernet/mellanox/mlx5/core/en_* |
| 8320 | |
Jiri Pirko | 93c1edb | 2015-07-29 23:33:46 +0200 | [diff] [blame] | 8321 | MELLANOX ETHERNET SWITCH DRIVERS |
| 8322 | M: Jiri Pirko <jiri@mellanox.com> |
| 8323 | M: Ido Schimmel <idosch@mellanox.com> |
| 8324 | L: netdev@vger.kernel.org |
| 8325 | S: Supported |
| 8326 | W: http://www.mellanox.com |
| 8327 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
| 8328 | F: drivers/net/ethernet/mellanox/mlxsw/ |
| 8329 | |
Vadim Pasternak | 6bec23b | 2016-11-20 16:56:14 +0000 | [diff] [blame] | 8330 | MELLANOX MLXCPLD I2C AND MUX DRIVER |
Vadim Pasternak | c02b7bf | 2016-11-10 21:26:23 +0000 | [diff] [blame] | 8331 | M: Vadim Pasternak <vadimp@mellanox.com> |
| 8332 | M: Michael Shych <michaelsh@mellanox.com> |
| 8333 | L: linux-i2c@vger.kernel.org |
| 8334 | S: Supported |
Vadim Pasternak | 6bec23b | 2016-11-20 16:56:14 +0000 | [diff] [blame] | 8335 | F: drivers/i2c/busses/i2c-mlxcpld.c |
Vadim Pasternak | c02b7bf | 2016-11-10 21:26:23 +0000 | [diff] [blame] | 8336 | F: drivers/i2c/muxes/i2c-mux-mlxcpld.c |
Vadim Pasternak | 6bec23b | 2016-11-20 16:56:14 +0000 | [diff] [blame] | 8337 | F: Documentation/i2c/busses/i2c-mlxcpld |
Vadim Pasternak | c02b7bf | 2016-11-10 21:26:23 +0000 | [diff] [blame] | 8338 | |
Vadim Pasternak | be4fdf9 | 2016-09-08 07:25:53 +0000 | [diff] [blame] | 8339 | MELLANOX MLXCPLD LED DRIVER |
| 8340 | M: Vadim Pasternak <vadimp@mellanox.com> |
| 8341 | L: linux-leds@vger.kernel.org |
| 8342 | S: Supported |
| 8343 | F: drivers/leds/leds-mlxcpld.c |
| 8344 | F: Documentation/leds/leds-mlxcpld.txt |
| 8345 | |
Vadim Pasternak | 58cbbee | 2016-09-22 21:13:42 +0000 | [diff] [blame] | 8346 | MELLANOX PLATFORM DRIVER |
| 8347 | M: Vadim Pasternak <vadimp@mellanox.com> |
| 8348 | L: platform-driver-x86@vger.kernel.org |
| 8349 | S: Supported |
Vadim Pasternak | 6613d18 | 2016-10-31 07:22:33 +0000 | [diff] [blame] | 8350 | F: drivers/platform/x86/mlx-platform.c |
Vadim Pasternak | 58cbbee | 2016-09-22 21:13:42 +0000 | [diff] [blame] | 8351 | |
Vadim Pasternak | 3048870 | 2016-10-20 16:28:01 +0000 | [diff] [blame] | 8352 | MELLANOX MLX CPLD HOTPLUG DRIVER |
| 8353 | M: Vadim Pasternak <vadimp@mellanox.com> |
| 8354 | L: platform-driver-x86@vger.kernel.org |
| 8355 | S: Supported |
| 8356 | F: drivers/platform/x86/mlxcpld-hotplug.c |
| 8357 | F: include/linux/platform_data/mlxcpld-hotplug.h |
| 8358 | |
Moni Shoua | 8700e3e | 2016-06-16 16:45:23 +0300 | [diff] [blame] | 8359 | SOFT-ROCE DRIVER (rxe) |
| 8360 | M: Moni Shoua <monis@mellanox.com> |
| 8361 | L: linux-rdma@vger.kernel.org |
| 8362 | S: Supported |
| 8363 | W: https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home |
| 8364 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
Leon Romanovsky | 701b4bf | 2016-08-16 12:29:46 +0300 | [diff] [blame] | 8365 | F: drivers/infiniband/sw/rxe/ |
Moni Shoua | 8700e3e | 2016-06-16 16:45:23 +0300 | [diff] [blame] | 8366 | F: include/uapi/rdma/rdma_user_rxe.h |
| 8367 | |
Mathieu Desnoyers | 5b25b13 | 2015-09-11 13:07:39 -0700 | [diff] [blame] | 8368 | MEMBARRIER SUPPORT |
| 8369 | M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
| 8370 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
| 8371 | L: linux-kernel@vger.kernel.org |
| 8372 | S: Supported |
| 8373 | F: kernel/membarrier.c |
| 8374 | F: include/uapi/linux/membarrier.h |
| 8375 | |
Steven Rostedt | 70ea91f | 2006-07-30 03:03:53 -0700 | [diff] [blame] | 8376 | MEMORY MANAGEMENT |
| 8377 | L: linux-mm@kvack.org |
Steven Rostedt | 70ea91f | 2006-07-30 03:03:53 -0700 | [diff] [blame] | 8378 | W: http://www.linux-mm.org |
| 8379 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8380 | F: include/linux/mm.h |
Cody P Schafer | 551450b | 2013-02-21 16:43:13 -0800 | [diff] [blame] | 8381 | F: include/linux/gfp.h |
| 8382 | F: include/linux/mmzone.h |
| 8383 | F: include/linux/memory_hotplug.h |
| 8384 | F: include/linux/vmalloc.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8385 | F: mm/ |
Steven Rostedt | 70ea91f | 2006-07-30 03:03:53 -0700 | [diff] [blame] | 8386 | |
David Woodhouse | f4e9ce66c | 2006-04-11 19:29:07 -0400 | [diff] [blame] | 8387 | MEMORY TECHNOLOGY DEVICES (MTD) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8388 | M: David Woodhouse <dwmw2@infradead.org> |
Brian Norris | 242c325 | 2013-12-04 15:28:45 -0800 | [diff] [blame] | 8389 | M: Brian Norris <computersforpeace@gmail.com> |
Boris Brezillon | 3065616 | 2016-10-24 14:35:26 +0200 | [diff] [blame] | 8390 | M: Boris Brezillon <boris.brezillon@free-electrons.com> |
| 8391 | M: Marek Vasut <marek.vasut@gmail.com> |
| 8392 | M: Richard Weinberger <richard@nod.at> |
Cyrille Pitchen | b3bb6d6 | 2017-04-19 22:43:52 +0200 | [diff] [blame] | 8393 | M: Cyrille Pitchen <cyrille.pitchen@wedev4u.fr> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8394 | L: linux-mtd@lists.infradead.org |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 8395 | W: http://www.linux-mtd.infradead.org/ |
| 8396 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ |
Boris Brezillon | a940288 | 2017-05-03 08:48:55 +0200 | [diff] [blame] | 8397 | T: git git://git.infradead.org/linux-mtd.git master |
| 8398 | T: git git://git.infradead.org/l2-mtd.git master |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8399 | S: Maintained |
Geert Uytterhoeven | becc7ae | 2016-05-22 11:06:06 +0200 | [diff] [blame] | 8400 | F: Documentation/devicetree/bindings/mtd/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8401 | F: drivers/mtd/ |
| 8402 | F: include/linux/mtd/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 8403 | F: include/uapi/mtd/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8404 | |
Johannes Thumshirn | 26c57ef | 2013-06-18 17:19:45 +0200 | [diff] [blame] | 8405 | MEN A21 WATCHDOG DRIVER |
Johannes Thumshirn | 30c7469 | 2015-05-07 10:21:24 +0200 | [diff] [blame] | 8406 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
Johannes Thumshirn | 26c57ef | 2013-06-18 17:19:45 +0200 | [diff] [blame] | 8407 | L: linux-watchdog@vger.kernel.org |
Johannes Thumshirn | 30c7469 | 2015-05-07 10:21:24 +0200 | [diff] [blame] | 8408 | S: Maintained |
Johannes Thumshirn | 26c57ef | 2013-06-18 17:19:45 +0200 | [diff] [blame] | 8409 | F: drivers/watchdog/mena21_wdt.c |
| 8410 | |
Johannes Thumshirn | 3764e82 | 2014-02-26 17:29:05 +0100 | [diff] [blame] | 8411 | MEN CHAMELEON BUS (mcb) |
Johannes Thumshirn | 30c7469 | 2015-05-07 10:21:24 +0200 | [diff] [blame] | 8412 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
| 8413 | S: Maintained |
Johannes Thumshirn | 3764e82 | 2014-02-26 17:29:05 +0100 | [diff] [blame] | 8414 | F: drivers/mcb/ |
| 8415 | F: include/linux/mcb.h |
Johannes Thumshirn | b9f2f45 | 2015-07-17 12:23:01 +0200 | [diff] [blame] | 8416 | F: Documentation/men-chameleon-bus.txt |
Johannes Thumshirn | 3764e82 | 2014-02-26 17:29:05 +0100 | [diff] [blame] | 8417 | |
Andreas Werner | 48b490d | 2014-09-15 09:36:30 +0200 | [diff] [blame] | 8418 | MEN F21BMC (Board Management Controller) |
| 8419 | M: Andreas Werner <andreas.werner@men.de> |
| 8420 | S: Supported |
| 8421 | F: drivers/mfd/menf21bmc.c |
| 8422 | F: drivers/watchdog/menf21bmc_wdt.c |
| 8423 | F: drivers/leds/leds-menf21bmc.c |
| 8424 | F: drivers/hwmon/menf21bmc_hwmon.c |
| 8425 | F: Documentation/hwmon/menf21bmc |
| 8426 | |
James Hogan | 1228594 | 2012-10-10 12:59:49 +0100 | [diff] [blame] | 8427 | METAG ARCHITECTURE |
| 8428 | M: James Hogan <james.hogan@imgtec.com> |
James Hogan | d668d9e | 2013-07-22 09:51:38 +0100 | [diff] [blame] | 8429 | L: linux-metag@vger.kernel.org |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 8430 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git |
James Hogan | f23d0e2 | 2015-11-09 18:40:59 +0000 | [diff] [blame] | 8431 | S: Odd Fixes |
James Hogan | 1228594 | 2012-10-10 12:59:49 +0100 | [diff] [blame] | 8432 | F: arch/metag/ |
| 8433 | F: Documentation/metag/ |
| 8434 | F: Documentation/devicetree/bindings/metag/ |
Rob Herring | 2d799dd | 2015-11-05 13:40:40 -0600 | [diff] [blame] | 8435 | F: Documentation/devicetree/bindings/interrupt-controller/img,* |
James Hogan | a2c5d4e | 2012-10-09 10:54:39 +0100 | [diff] [blame] | 8436 | F: drivers/clocksource/metag_generic.c |
James Hogan | 5698c50 | 2012-10-09 10:54:47 +0100 | [diff] [blame] | 8437 | F: drivers/irqchip/irq-metag.c |
| 8438 | F: drivers/irqchip/irq-metag-ext.c |
James Hogan | ae85ac7 | 2012-09-21 17:38:15 +0100 | [diff] [blame] | 8439 | F: drivers/tty/metag_da.c |
James Hogan | 1228594 | 2012-10-10 12:59:49 +0100 | [diff] [blame] | 8440 | |
Michal Simek | c6375b0 | 2009-03-27 14:25:52 +0100 | [diff] [blame] | 8441 | MICROBLAZE ARCHITECTURE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8442 | M: Michal Simek <monstr@monstr.eu> |
Michal Simek | c6375b0 | 2009-03-27 14:25:52 +0100 | [diff] [blame] | 8443 | W: http://www.monstr.eu/fdt/ |
| 8444 | T: git git://git.monstr.eu/linux-2.6-microblaze.git |
| 8445 | S: Supported |
Michal Simek | 0a8c791 | 2009-04-14 11:38:57 +0200 | [diff] [blame] | 8446 | F: arch/microblaze/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8447 | |
Nicolas Ferre | 5615c37 | 2016-09-28 17:47:35 +0200 | [diff] [blame] | 8448 | MICROCHIP / ATMEL AT91 / AT32 SERIAL DRIVER |
| 8449 | M: Richard Genoud <richard.genoud@gmail.com> |
| 8450 | S: Maintained |
| 8451 | F: drivers/tty/serial/atmel_serial.c |
Richard Genoud | 8961df8 | 2017-03-03 15:13:44 +0100 | [diff] [blame] | 8452 | F: drivers/tty/serial/atmel_serial.h |
Nicolas Ferre | 5615c37 | 2016-09-28 17:47:35 +0200 | [diff] [blame] | 8453 | |
Nicolas Ferre | f53243b | 2017-01-02 17:42:08 +0100 | [diff] [blame] | 8454 | MICROCHIP / ATMEL DMA DRIVER |
| 8455 | M: Ludovic Desroches <ludovic.desroches@microchip.com> |
| 8456 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 8457 | L: dmaengine@vger.kernel.org |
| 8458 | S: Supported |
| 8459 | F: drivers/dma/at_hdmac.c |
| 8460 | F: drivers/dma/at_hdmac_regs.h |
| 8461 | F: include/linux/platform_data/dma-atmel.h |
| 8462 | |
Songjun Wu | 71fb2c7 | 2016-08-17 03:05:29 -0300 | [diff] [blame] | 8463 | MICROCHIP / ATMEL ISC DRIVER |
| 8464 | M: Songjun Wu <songjun.wu@microchip.com> |
| 8465 | L: linux-media@vger.kernel.org |
| 8466 | S: Supported |
| 8467 | F: drivers/media/platform/atmel/atmel-isc.c |
| 8468 | F: drivers/media/platform/atmel/atmel-isc-regs.h |
| 8469 | F: devicetree/bindings/media/atmel-isc.txt |
| 8470 | |
Richard Leitner | 3ec72a2 | 2017-02-10 09:19:27 +0100 | [diff] [blame] | 8471 | MICROCHIP USB251XB DRIVER |
| 8472 | M: Richard Leitner <richard.leitner@skidata.com> |
| 8473 | L: linux-usb@vger.kernel.org |
| 8474 | S: Maintained |
| 8475 | F: drivers/usb/misc/usb251xb.c |
Richard Leitner | 3ec72a2 | 2017-02-10 09:19:27 +0100 | [diff] [blame] | 8476 | F: Documentation/devicetree/bindings/usb/usb251xb.txt |
| 8477 | |
Chen Yu | 2508a45 | 2015-08-18 23:30:25 +0800 | [diff] [blame] | 8478 | MICROSOFT SURFACE PRO 3 BUTTON DRIVER |
| 8479 | M: Chen Yu <yu.c.chen@intel.com> |
| 8480 | L: platform-driver-x86@vger.kernel.org |
| 8481 | S: Supported |
| 8482 | F: drivers/platform/x86/surfacepro3_button.c |
| 8483 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8484 | MICROTEK X6 SCANNER |
Oliver Neukum | 61eee9a | 2012-08-01 14:32:55 +0200 | [diff] [blame] | 8485 | M: Oliver Neukum <oliver@neukum.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8486 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8487 | F: drivers/usb/image/microtek.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8488 | |
| 8489 | MIPS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8490 | M: Ralf Baechle <ralf@linux-mips.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8491 | L: linux-mips@linux-mips.org |
Ralf Baechle | 6097050 | 2011-06-09 10:32:22 +0100 | [diff] [blame] | 8492 | W: http://www.linux-mips.org/ |
Ralf Baechle | b05e988 | 2011-11-14 12:58:16 +0000 | [diff] [blame] | 8493 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
Ralf Baechle | 6097050 | 2011-06-09 10:32:22 +0100 | [diff] [blame] | 8494 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
Ralf Baechle | 7425b34 | 2006-03-10 13:47:21 +0000 | [diff] [blame] | 8495 | S: Supported |
Geert Uytterhoeven | f46d92e | 2016-05-22 11:06:07 +0200 | [diff] [blame] | 8496 | F: Documentation/devicetree/bindings/mips/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8497 | F: Documentation/mips/ |
| 8498 | F: arch/mips/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8499 | |
Kelvin Cheung | 413ef3f | 2016-04-06 20:34:55 +0800 | [diff] [blame] | 8500 | MIPS/LOONGSON1 ARCHITECTURE |
| 8501 | M: Keguang Zhang <keguang.zhang@gmail.com> |
| 8502 | L: linux-mips@linux-mips.org |
| 8503 | S: Maintained |
| 8504 | F: arch/mips/loongson32/ |
| 8505 | F: arch/mips/include/asm/mach-loongson32/ |
| 8506 | F: drivers/*/*loongson1* |
| 8507 | F: drivers/*/*/*loongson1* |
| 8508 | |
Hans Verkuil | 08b7620 | 2012-11-23 07:15:42 -0300 | [diff] [blame] | 8509 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
| 8510 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 8511 | L: linux-media@vger.kernel.org |
| 8512 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 8513 | W: https://linuxtv.org |
Hans Verkuil | 08b7620 | 2012-11-23 07:15:42 -0300 | [diff] [blame] | 8514 | S: Odd Fixes |
| 8515 | F: drivers/media/radio/radio-miropcm20* |
| 8516 | |
Or Gerlitz | c09befc | 2015-12-23 18:30:58 +0200 | [diff] [blame] | 8517 | MELLANOX MLX4 core VPI driver |
| 8518 | M: Yishai Hadas <yishaih@mellanox.com> |
Eli Cohen | e126ba9 | 2013-07-07 17:25:49 +0300 | [diff] [blame] | 8519 | L: netdev@vger.kernel.org |
| 8520 | L: linux-rdma@vger.kernel.org |
| 8521 | W: http://www.mellanox.com |
| 8522 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
Or Gerlitz | c09befc | 2015-12-23 18:30:58 +0200 | [diff] [blame] | 8523 | S: Supported |
| 8524 | F: drivers/net/ethernet/mellanox/mlx4/ |
| 8525 | F: include/linux/mlx4/ |
Leon Romanovsky | 9ce28a2 | 2016-09-22 17:31:14 +0300 | [diff] [blame] | 8526 | F: include/uapi/rdma/mlx4-abi.h |
Or Gerlitz | c09befc | 2015-12-23 18:30:58 +0200 | [diff] [blame] | 8527 | |
| 8528 | MELLANOX MLX4 IB driver |
| 8529 | M: Yishai Hadas <yishaih@mellanox.com> |
| 8530 | L: linux-rdma@vger.kernel.org |
| 8531 | W: http://www.mellanox.com |
Eli Cohen | e126ba9 | 2013-07-07 17:25:49 +0300 | [diff] [blame] | 8532 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
Or Gerlitz | c09befc | 2015-12-23 18:30:58 +0200 | [diff] [blame] | 8533 | S: Supported |
| 8534 | F: drivers/infiniband/hw/mlx4/ |
| 8535 | F: include/linux/mlx4/ |
| 8536 | |
Or Gerlitz | 595a4d8 | 2015-12-23 18:30:57 +0200 | [diff] [blame] | 8537 | MELLANOX MLX5 core VPI driver |
Saeed Mahameed | 45788f1 | 2016-11-01 15:09:58 +0200 | [diff] [blame] | 8538 | M: Saeed Mahameed <saeedm@mellanox.com> |
Or Gerlitz | 595a4d8 | 2015-12-23 18:30:57 +0200 | [diff] [blame] | 8539 | M: Matan Barak <matanb@mellanox.com> |
| 8540 | M: Leon Romanovsky <leonro@mellanox.com> |
Eli Cohen | e126ba9 | 2013-07-07 17:25:49 +0300 | [diff] [blame] | 8541 | L: netdev@vger.kernel.org |
| 8542 | L: linux-rdma@vger.kernel.org |
| 8543 | W: http://www.mellanox.com |
| 8544 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
Eli Cohen | e126ba9 | 2013-07-07 17:25:49 +0300 | [diff] [blame] | 8545 | S: Supported |
| 8546 | F: drivers/net/ethernet/mellanox/mlx5/core/ |
| 8547 | F: include/linux/mlx5/ |
Leon Romanovsky | 3085e29 | 2016-09-22 17:31:11 +0300 | [diff] [blame] | 8548 | F: include/uapi/rdma/mlx5-abi.h |
Eli Cohen | e126ba9 | 2013-07-07 17:25:49 +0300 | [diff] [blame] | 8549 | |
Or Gerlitz | 595a4d8 | 2015-12-23 18:30:57 +0200 | [diff] [blame] | 8550 | MELLANOX MLX5 IB driver |
| 8551 | M: Matan Barak <matanb@mellanox.com> |
| 8552 | M: Leon Romanovsky <leonro@mellanox.com> |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 8553 | L: linux-rdma@vger.kernel.org |
| 8554 | W: http://www.mellanox.com |
| 8555 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 8556 | S: Supported |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 8557 | F: drivers/infiniband/hw/mlx5/ |
Or Gerlitz | 595a4d8 | 2015-12-23 18:30:57 +0200 | [diff] [blame] | 8558 | F: include/linux/mlx5/ |
Eli Cohen | e126ba9 | 2013-07-07 17:25:49 +0300 | [diff] [blame] | 8559 | |
Crt Mori | 764589b | 2015-08-17 19:34:33 +0200 | [diff] [blame] | 8560 | MELEXIS MLX90614 DRIVER |
| 8561 | M: Crt Mori <cmo@melexis.com> |
| 8562 | L: linux-iio@vger.kernel.org |
| 8563 | W: http://www.melexis.com |
| 8564 | S: Supported |
| 8565 | F: drivers/iio/temperature/mlx90614.c |
| 8566 | |
Kevin Barnett | 6c22376 | 2016-06-27 16:41:00 -0500 | [diff] [blame] | 8567 | MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi) |
| 8568 | M: Don Brace <don.brace@microsemi.com> |
| 8569 | L: esc.storagedev@microsemi.com |
| 8570 | L: linux-scsi@vger.kernel.org |
| 8571 | S: Supported |
| 8572 | F: drivers/scsi/smartpqi/smartpqi*.[ch] |
| 8573 | F: drivers/scsi/smartpqi/Kconfig |
| 8574 | F: drivers/scsi/smartpqi/Makefile |
| 8575 | F: include/linux/cciss*.h |
| 8576 | F: include/uapi/linux/cciss*.h |
Don Brace | 425b490 | 2016-08-31 14:55:30 -0500 | [diff] [blame] | 8577 | F: Documentation/scsi/smartpqi.txt |
Kevin Barnett | 6c22376 | 2016-06-27 16:41:00 -0500 | [diff] [blame] | 8578 | |
Antti Palosaari | 0ce277e | 2014-11-12 00:35:42 -0300 | [diff] [blame] | 8579 | MN88472 MEDIA DRIVER |
| 8580 | M: Antti Palosaari <crope@iki.fi> |
| 8581 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 8582 | W: https://linuxtv.org |
Antti Palosaari | 0ce277e | 2014-11-12 00:35:42 -0300 | [diff] [blame] | 8583 | W: http://palosaari.fi/linux/ |
| 8584 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
Antti Palosaari | 0ce277e | 2014-11-12 00:35:42 -0300 | [diff] [blame] | 8585 | S: Maintained |
Antti Palosaari | 94d0eaa | 2016-05-14 08:08:15 +0300 | [diff] [blame] | 8586 | F: drivers/media/dvb-frontends/mn88472* |
Antti Palosaari | 0ce277e | 2014-11-12 00:35:42 -0300 | [diff] [blame] | 8587 | |
Antti Palosaari | 4f4d238 | 2014-11-12 00:53:57 -0300 | [diff] [blame] | 8588 | MN88473 MEDIA DRIVER |
| 8589 | M: Antti Palosaari <crope@iki.fi> |
| 8590 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 8591 | W: https://linuxtv.org |
Antti Palosaari | 4f4d238 | 2014-11-12 00:53:57 -0300 | [diff] [blame] | 8592 | W: http://palosaari.fi/linux/ |
| 8593 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
Antti Palosaari | 4f4d238 | 2014-11-12 00:53:57 -0300 | [diff] [blame] | 8594 | S: Maintained |
Antti Palosaari | 877ba50 | 2016-02-05 08:04:48 +0200 | [diff] [blame] | 8595 | F: drivers/media/dvb-frontends/mn88473* |
Antti Palosaari | 4f4d238 | 2014-11-12 00:53:57 -0300 | [diff] [blame] | 8596 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8597 | MODULE SUPPORT |
Rusty Russell | a467a67 | 2016-10-26 10:07:44 +1030 | [diff] [blame] | 8598 | M: Jessica Yu <jeyu@redhat.com> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8599 | M: Rusty Russell <rusty@rustcorp.com.au> |
Jessica Yu | 0d4ec78 | 2017-02-13 11:43:15 -0800 | [diff] [blame] | 8600 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8601 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8602 | F: include/linux/module.h |
| 8603 | F: kernel/module.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8604 | |
| 8605 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8606 | W: http://popies.net/meye/ |
Stelian Pop | b7788e1 | 2011-01-12 16:59:53 -0800 | [diff] [blame] | 8607 | S: Orphan |
Mauro Carvalho Chehab | 618cd93 | 2016-09-12 12:48:54 -0300 | [diff] [blame] | 8608 | F: Documentation/media/v4l-drivers/meye* |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 8609 | F: drivers/media/pci/meye/ |
Mauro Carvalho Chehab | 6c0f035 | 2012-11-02 11:56:03 -0200 | [diff] [blame] | 8610 | F: include/uapi/linux/meye.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8611 | |
Jiri Slaby | b9705b6 | 2008-04-30 00:53:48 -0700 | [diff] [blame] | 8612 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8613 | M: Jiri Slaby <jirislaby@gmail.com> |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 8614 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8615 | F: Documentation/serial/moxa-smartio |
Joe Perches | c897401 | 2011-04-14 15:22:05 -0700 | [diff] [blame] | 8616 | F: drivers/tty/mxser.* |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 8617 | |
Alexey Klimov | 889b2f8 | 2012-11-16 17:43:59 -0300 | [diff] [blame] | 8618 | MR800 AVERMEDIA USB FM RADIO DRIVER |
| 8619 | M: Alexey Klimov <klimov.linux@gmail.com> |
| 8620 | L: linux-media@vger.kernel.org |
| 8621 | T: git git://linuxtv.org/media_tree.git |
| 8622 | S: Maintained |
| 8623 | F: drivers/media/radio/radio-mr800.c |
| 8624 | |
Alan Ott | d715569 | 2014-08-16 17:09:03 -0400 | [diff] [blame] | 8625 | MRF24J40 IEEE 802.15.4 RADIO DRIVER |
| 8626 | M: Alan Ott <alan@signal11.us> |
| 8627 | L: linux-wpan@vger.kernel.org |
| 8628 | S: Maintained |
| 8629 | F: drivers/net/ieee802154/mrf24j40.c |
Alexander Aring | 2e6fd64 | 2015-09-21 11:24:26 +0200 | [diff] [blame] | 8630 | F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt |
Alan Ott | d715569 | 2014-08-16 17:09:03 -0400 | [diff] [blame] | 8631 | |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 8632 | MSI LAPTOP SUPPORT |
Lee, Chun-Yi | 182ae55 | 2012-12-14 16:14:24 +0800 | [diff] [blame] | 8633 | M: "Lee, Chun-Yi" <jlee@suse.com> |
Matthew Garrett | d0944853 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 8634 | L: platform-driver-x86@vger.kernel.org |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 8635 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8636 | F: drivers/platform/x86/msi-laptop.c |
Lennart Poettering | 8c4c731 | 2006-10-06 01:27:02 -0400 | [diff] [blame] | 8637 | |
Anisse Astier | 0f1006b | 2009-12-17 11:28:49 +0100 | [diff] [blame] | 8638 | MSI WMI SUPPORT |
Matthew Garrett | d0944853 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 8639 | L: platform-driver-x86@vger.kernel.org |
Anisse Astier | 5ee7041 | 2015-06-14 22:32:23 +0200 | [diff] [blame] | 8640 | S: Orphan |
Anisse Astier | 0f1006b | 2009-12-17 11:28:49 +0100 | [diff] [blame] | 8641 | F: drivers/platform/x86/msi-wmi.c |
| 8642 | |
Antti Palosaari | 19a628a | 2014-02-02 23:51:30 -0300 | [diff] [blame] | 8643 | MSI001 MEDIA DRIVER |
| 8644 | M: Antti Palosaari <crope@iki.fi> |
| 8645 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 8646 | W: https://linuxtv.org |
Antti Palosaari | 19a628a | 2014-02-02 23:51:30 -0300 | [diff] [blame] | 8647 | W: http://palosaari.fi/linux/ |
| 8648 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 8649 | T: git git://linuxtv.org/anttip/media_tree.git |
| 8650 | S: Maintained |
Antti Palosaari | 0185e19 | 2014-07-12 08:58:32 -0300 | [diff] [blame] | 8651 | F: drivers/media/tuners/msi001* |
Antti Palosaari | 19a628a | 2014-02-02 23:51:30 -0300 | [diff] [blame] | 8652 | |
Antti Palosaari | 7570589 | 2014-07-13 21:35:47 -0300 | [diff] [blame] | 8653 | MSI2500 MEDIA DRIVER |
Antti Palosaari | 2c57213 | 2014-02-02 23:55:12 -0300 | [diff] [blame] | 8654 | M: Antti Palosaari <crope@iki.fi> |
| 8655 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 8656 | W: https://linuxtv.org |
Antti Palosaari | 2c57213 | 2014-02-02 23:55:12 -0300 | [diff] [blame] | 8657 | W: http://palosaari.fi/linux/ |
| 8658 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 8659 | T: git git://linuxtv.org/anttip/media_tree.git |
| 8660 | S: Maintained |
Antti Palosaari | 7570589 | 2014-07-13 21:35:47 -0300 | [diff] [blame] | 8661 | F: drivers/media/usb/msi2500/ |
Antti Palosaari | 2c57213 | 2014-02-02 23:55:12 -0300 | [diff] [blame] | 8662 | |
Robert Jarzmik | 159eeea | 2015-06-25 19:14:18 +0200 | [diff] [blame] | 8663 | MSYSTEMS DISKONCHIP G3 MTD DRIVER |
| 8664 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
| 8665 | L: linux-mtd@lists.infradead.org |
| 8666 | S: Maintained |
| 8667 | F: drivers/mtd/devices/docg3* |
| 8668 | |
Laurent Pinchart | 62a37dc | 2013-08-09 08:46:11 -0300 | [diff] [blame] | 8669 | MT9M032 APTINA SENSOR DRIVER |
Laurent Pinchart | 0e837fb | 2012-12-10 20:38:23 -0300 | [diff] [blame] | 8670 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 8671 | L: linux-media@vger.kernel.org |
| 8672 | T: git git://linuxtv.org/media_tree.git |
| 8673 | S: Maintained |
| 8674 | F: drivers/media/i2c/mt9m032.c |
Mauro Carvalho Chehab | b5dcee2 | 2015-11-10 12:01:44 -0200 | [diff] [blame] | 8675 | F: include/media/i2c/mt9m032.h |
Laurent Pinchart | 0e837fb | 2012-12-10 20:38:23 -0300 | [diff] [blame] | 8676 | |
Laurent Pinchart | 62a37dc | 2013-08-09 08:46:11 -0300 | [diff] [blame] | 8677 | MT9P031 APTINA CAMERA SENSOR |
Laurent Pinchart | 0e837fb | 2012-12-10 20:38:23 -0300 | [diff] [blame] | 8678 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 8679 | L: linux-media@vger.kernel.org |
| 8680 | T: git git://linuxtv.org/media_tree.git |
| 8681 | S: Maintained |
| 8682 | F: drivers/media/i2c/mt9p031.c |
Mauro Carvalho Chehab | b5dcee2 | 2015-11-10 12:01:44 -0200 | [diff] [blame] | 8683 | F: include/media/i2c/mt9p031.h |
Laurent Pinchart | 0e837fb | 2012-12-10 20:38:23 -0300 | [diff] [blame] | 8684 | |
Laurent Pinchart | 62a37dc | 2013-08-09 08:46:11 -0300 | [diff] [blame] | 8685 | MT9T001 APTINA CAMERA SENSOR |
Laurent Pinchart | 0e837fb | 2012-12-10 20:38:23 -0300 | [diff] [blame] | 8686 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 8687 | L: linux-media@vger.kernel.org |
| 8688 | T: git git://linuxtv.org/media_tree.git |
| 8689 | S: Maintained |
| 8690 | F: drivers/media/i2c/mt9t001.c |
Mauro Carvalho Chehab | b5dcee2 | 2015-11-10 12:01:44 -0200 | [diff] [blame] | 8691 | F: include/media/i2c/mt9t001.h |
Laurent Pinchart | 0e837fb | 2012-12-10 20:38:23 -0300 | [diff] [blame] | 8692 | |
Laurent Pinchart | 62a37dc | 2013-08-09 08:46:11 -0300 | [diff] [blame] | 8693 | MT9V032 APTINA CAMERA SENSOR |
Laurent Pinchart | 0e837fb | 2012-12-10 20:38:23 -0300 | [diff] [blame] | 8694 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 8695 | L: linux-media@vger.kernel.org |
| 8696 | T: git git://linuxtv.org/media_tree.git |
| 8697 | S: Maintained |
Laurent Pinchart | f2272e1 | 2014-01-01 14:40:35 -0300 | [diff] [blame] | 8698 | F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt |
Laurent Pinchart | 0e837fb | 2012-12-10 20:38:23 -0300 | [diff] [blame] | 8699 | F: drivers/media/i2c/mt9v032.c |
Mauro Carvalho Chehab | b5dcee2 | 2015-11-10 12:01:44 -0200 | [diff] [blame] | 8700 | F: include/media/i2c/mt9v032.h |
Laurent Pinchart | 0e837fb | 2012-12-10 20:38:23 -0300 | [diff] [blame] | 8701 | |
Samuel Ortiz | 4e0d13c | 2008-07-04 09:59:53 -0700 | [diff] [blame] | 8702 | MULTIFUNCTION DEVICES (MFD) |
Samuel Ortiz | f7d3210 | 2013-05-17 00:53:42 +0200 | [diff] [blame] | 8703 | M: Lee Jones <lee.jones@linaro.org> |
Lee Jones | 7caa799 | 2014-07-22 13:24:38 +0100 | [diff] [blame] | 8704 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git |
Samuel Ortiz | 4e0d13c | 2008-07-04 09:59:53 -0700 | [diff] [blame] | 8705 | S: Supported |
Lee Jones | 8036612 | 2016-09-08 08:02:36 +0100 | [diff] [blame] | 8706 | F: Documentation/devicetree/bindings/mfd/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8707 | F: drivers/mfd/ |
Mark Brown | 55b5940 | 2013-06-28 15:14:11 +0100 | [diff] [blame] | 8708 | F: include/linux/mfd/ |
Lee Jones | 29a0729 | 2017-02-01 12:56:12 +0000 | [diff] [blame] | 8709 | F: include/dt-bindings/mfd/ |
Samuel Ortiz | 4e0d13c | 2008-07-04 09:59:53 -0700 | [diff] [blame] | 8710 | |
Pierre Ossman | 5c4e6f1 | 2007-05-21 20:23:20 +0200 | [diff] [blame] | 8711 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
Ulf Hansson | e18eaf8 | 2014-02-19 00:01:05 +0100 | [diff] [blame] | 8712 | M: Ulf Hansson <ulf.hansson@linaro.org> |
Andrew Morton | b2503a9 | 2009-08-18 14:11:12 -0700 | [diff] [blame] | 8713 | L: linux-mmc@vger.kernel.org |
Ulf Hansson | 82bb095 | 2016-10-17 12:19:38 +0200 | [diff] [blame] | 8714 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git |
Chris Ball | 245feaa | 2010-09-10 12:05:24 -0400 | [diff] [blame] | 8715 | S: Maintained |
Geert Uytterhoeven | 2810984 | 2016-05-22 11:06:08 +0200 | [diff] [blame] | 8716 | F: Documentation/devicetree/bindings/mmc/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8717 | F: drivers/mmc/ |
| 8718 | F: include/linux/mmc/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 8719 | F: include/uapi/linux/mmc/ |
Russell King | baca2da | 2006-06-04 17:36:31 +0100 | [diff] [blame] | 8720 | |
David Brownell | 15a0580 | 2007-08-08 09:12:54 -0700 | [diff] [blame] | 8721 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
Grant Likely | 22b174f | 2011-06-06 00:40:48 -0600 | [diff] [blame] | 8722 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8723 | F: drivers/mmc/host/mmc_spi.c |
| 8724 | F: include/linux/spi/mmc_spi.h |
David Brownell | 15a0580 | 2007-08-08 09:12:54 -0700 | [diff] [blame] | 8725 | |
Peter Rosin | 256ac03 | 2017-05-14 21:51:05 +0200 | [diff] [blame] | 8726 | MULTIPLEXER SUBSYSTEM |
| 8727 | M: Peter Rosin <peda@axentia.se> |
| 8728 | S: Maintained |
Peter Rosin | a3b02a9 | 2017-05-14 21:51:06 +0200 | [diff] [blame] | 8729 | F: Documentation/ABI/testing/mux/sysfs-class-mux* |
Peter Rosin | 256ac03 | 2017-05-14 21:51:05 +0200 | [diff] [blame] | 8730 | F: Documentation/devicetree/bindings/mux/ |
| 8731 | F: include/linux/dt-bindings/mux/ |
Peter Rosin | a3b02a9 | 2017-05-14 21:51:06 +0200 | [diff] [blame] | 8732 | F: include/linux/mux/ |
| 8733 | F: drivers/mux/ |
Peter Rosin | 256ac03 | 2017-05-14 21:51:05 +0200 | [diff] [blame] | 8734 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8735 | MULTISOUND SOUND DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8736 | M: Andrew Veliath <andrewtv@usa.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8737 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8738 | F: Documentation/sound/oss/MultiSound |
| 8739 | F: sound/oss/msnd* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8740 | |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 8741 | MULTITECH MULTIPORT CARD (ISICOM) |
Jiri Slaby | d86b300 | 2010-08-31 17:08:52 +0200 | [diff] [blame] | 8742 | S: Orphan |
Joe Perches | c897401 | 2011-04-14 15:22:05 -0700 | [diff] [blame] | 8743 | F: drivers/tty/isicom.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8744 | F: include/linux/isicom.h |
Jiri Slaby | d735410 | 2006-12-08 02:38:35 -0800 | [diff] [blame] | 8745 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 8746 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
Felipe Balbi | 3b24351 | 2016-02-19 11:04:55 +0200 | [diff] [blame] | 8747 | M: Bin Liu <b-liu@ti.com> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 8748 | L: linux-usb@vger.kernel.org |
Felipe Balbi | 43b416e | 2011-05-13 15:21:47 +0300 | [diff] [blame] | 8749 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 8750 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8751 | F: drivers/usb/musb/ |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 8752 | |
Michael Krufky | ea0af5f | 2012-10-02 00:55:41 -0300 | [diff] [blame] | 8753 | MXL5007T MEDIA DRIVER |
| 8754 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 8755 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 8756 | W: https://linuxtv.org |
Michael Krufky | ea0af5f | 2012-10-02 00:55:41 -0300 | [diff] [blame] | 8757 | W: http://github.com/mkrufky |
| 8758 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 8759 | T: git git://linuxtv.org/mkrufky/tuners.git |
| 8760 | S: Maintained |
| 8761 | F: drivers/media/tuners/mxl5007t.* |
| 8762 | |
Marek Vasut | 45d59d7 | 2016-08-18 20:23:01 +0200 | [diff] [blame] | 8763 | MXSFB DRM DRIVER |
| 8764 | M: Marek Vasut <marex@denx.de> |
| 8765 | S: Supported |
| 8766 | F: drivers/gpu/drm/mxsfb/ |
| 8767 | F: Documentation/devicetree/bindings/display/mxsfb-drm.txt |
| 8768 | |
Brice Goglin | 2d3cf58 | 2008-05-17 12:45:36 +0200 | [diff] [blame] | 8769 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
Hyong-Youb Kim | 205057a | 2013-08-12 02:20:02 -0700 | [diff] [blame] | 8770 | M: Hyong-Youb Kim <hykim@myri.com> |
Brice Goglin | 2d3cf58 | 2008-05-17 12:45:36 +0200 | [diff] [blame] | 8771 | L: netdev@vger.kernel.org |
Hyong-Youb Kim | 205057a | 2013-08-12 02:20:02 -0700 | [diff] [blame] | 8772 | W: https://www.myricom.com/support/downloads/myri10ge.html |
Brice Goglin | 2d3cf58 | 2008-05-17 12:45:36 +0200 | [diff] [blame] | 8773 | S: Supported |
Jeff Kirsher | 93f7848 | 2011-05-13 02:24:46 -0700 | [diff] [blame] | 8774 | F: drivers/net/ethernet/myricom/myri10ge/ |
Brice Goglin | 2d3cf58 | 2008-05-17 12:45:36 +0200 | [diff] [blame] | 8775 | |
Boris BREZILLON | 9df4f91 | 2016-03-09 21:57:24 +0100 | [diff] [blame] | 8776 | NAND FLASH SUBSYSTEM |
| 8777 | M: Boris Brezillon <boris.brezillon@free-electrons.com> |
| 8778 | R: Richard Weinberger <richard@nod.at> |
| 8779 | L: linux-mtd@lists.infradead.org |
| 8780 | W: http://www.linux-mtd.infradead.org/ |
| 8781 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ |
Boris Brezillon | a940288 | 2017-05-03 08:48:55 +0200 | [diff] [blame] | 8782 | T: git git://git.infradead.org/linux-mtd.git nand/fixes |
| 8783 | T: git git://git.infradead.org/l2-mtd.git nand/next |
Boris BREZILLON | 9df4f91 | 2016-03-09 21:57:24 +0100 | [diff] [blame] | 8784 | S: Maintained |
| 8785 | F: drivers/mtd/nand/ |
| 8786 | F: include/linux/mtd/nand*.h |
| 8787 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8788 | NATSEMI ETHERNET DRIVER (DP8381x) |
David S. Miller | 09d208e | 2012-04-10 21:10:43 -0400 | [diff] [blame] | 8789 | S: Orphan |
Jeff Kirsher | d9fb9f3 | 2011-05-18 05:14:22 -0700 | [diff] [blame] | 8790 | F: drivers/net/ethernet/natsemi/natsemi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8791 | |
Daniel Mack | 23dc05a | 2011-05-18 11:28:38 +0200 | [diff] [blame] | 8792 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
| 8793 | M: Daniel Mack <zonque@gmail.com> |
| 8794 | S: Maintained |
Jim Davis | e5747e4 | 2015-06-25 15:01:58 -0700 | [diff] [blame] | 8795 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Daniel Mack | 23dc05a | 2011-05-18 11:28:38 +0200 | [diff] [blame] | 8796 | W: http://www.native-instruments.com |
| 8797 | F: sound/usb/caiaq/ |
| 8798 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8799 | NCP FILESYSTEM |
Petr Vandrovec | 5265319 | 2010-09-30 15:15:34 -0700 | [diff] [blame] | 8800 | M: Petr Vandrovec <petr@vandrovec.name> |
| 8801 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8802 | F: fs/ncpfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8803 | |
Finn Thain | a79b032 | 2014-05-05 15:35:30 +1000 | [diff] [blame] | 8804 | NCR 5380 SCSI DRIVERS |
| 8805 | M: Finn Thain <fthain@telegraphics.com.au> |
| 8806 | M: Michael Schmitz <schmitzmic@gmail.com> |
| 8807 | L: linux-scsi@vger.kernel.org |
| 8808 | S: Maintained |
| 8809 | F: Documentation/scsi/g_NCR5380.txt |
| 8810 | F: drivers/scsi/NCR5380.* |
| 8811 | F: drivers/scsi/arm/cumana_1.c |
| 8812 | F: drivers/scsi/arm/oak.c |
Finn Thain | a79b032 | 2014-05-05 15:35:30 +1000 | [diff] [blame] | 8813 | F: drivers/scsi/atari_scsi.* |
| 8814 | F: drivers/scsi/dmx3191d.c |
Finn Thain | a79b032 | 2014-05-05 15:35:30 +1000 | [diff] [blame] | 8815 | F: drivers/scsi/g_NCR5380.* |
Finn Thain | a79b032 | 2014-05-05 15:35:30 +1000 | [diff] [blame] | 8816 | F: drivers/scsi/mac_scsi.* |
Finn Thain | a79b032 | 2014-05-05 15:35:30 +1000 | [diff] [blame] | 8817 | F: drivers/scsi/sun3_scsi.* |
| 8818 | F: drivers/scsi/sun3_scsi_vme.c |
Finn Thain | a79b032 | 2014-05-05 15:35:30 +1000 | [diff] [blame] | 8819 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8820 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8821 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8822 | L: linux-scsi@vger.kernel.org |
| 8823 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8824 | F: drivers/scsi/NCR_D700.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8825 | |
Guenter Roeck | 4aa3eb4 | 2013-04-03 14:12:11 -0700 | [diff] [blame] | 8826 | NCT6775 HARDWARE MONITOR DRIVER |
| 8827 | M: Guenter Roeck <linux@roeck-us.net> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 8828 | L: linux-hwmon@vger.kernel.org |
Guenter Roeck | 4aa3eb4 | 2013-04-03 14:12:11 -0700 | [diff] [blame] | 8829 | S: Maintained |
| 8830 | F: Documentation/hwmon/nct6775 |
| 8831 | F: drivers/hwmon/nct6775.c |
| 8832 | |
Glenn Streiff | 3c2d774 | 2008-02-04 20:20:45 -0800 | [diff] [blame] | 8833 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8834 | M: Faisal Latif <faisal.latif@intel.com> |
Roland Dreier | e6cc0fd | 2009-09-07 21:54:38 -0700 | [diff] [blame] | 8835 | L: linux-rdma@vger.kernel.org |
Chien Tung | e3d33cb | 2010-11-02 16:29:54 +0000 | [diff] [blame] | 8836 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
Glenn Streiff | 3c2d774 | 2008-02-04 20:20:45 -0800 | [diff] [blame] | 8837 | S: Supported |
| 8838 | F: drivers/infiniband/hw/nes/ |
Leon Romanovsky | c546b2a | 2016-09-22 17:31:16 +0300 | [diff] [blame] | 8839 | F: include/uapi/rdma/nes-abi.h |
Glenn Streiff | 3c2d774 | 2008-02-04 20:20:45 -0800 | [diff] [blame] | 8840 | |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 8841 | NETEM NETWORK EMULATOR |
Stephen Hemminger | adbbf69 | 2013-01-16 09:55:57 -0800 | [diff] [blame] | 8842 | M: Stephen Hemminger <stephen@networkplumber.org> |
stephen hemminger | 3430284 | 2016-04-05 13:43:53 -0700 | [diff] [blame] | 8843 | L: netem@lists.linux-foundation.org (moderated for non-subscribers) |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 8844 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8845 | F: net/sched/sch_netem.c |
Stephen Hemminger | be2f2e8 | 2006-05-25 16:14:43 -0700 | [diff] [blame] | 8846 | |
Jon Mason | b2f5a05 | 2010-07-15 08:47:27 +0000 | [diff] [blame] | 8847 | NETERION 10GbE DRIVERS (s2io/vxge) |
Jon Mason | e380688 | 2011-03-07 07:02:01 +0000 | [diff] [blame] | 8848 | M: Jon Mason <jdmason@kudzu.us> |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 8849 | L: netdev@vger.kernel.org |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 8850 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8851 | F: Documentation/networking/s2io.txt |
Jon Mason | b2f5a05 | 2010-07-15 08:47:27 +0000 | [diff] [blame] | 8852 | F: Documentation/networking/vxge.txt |
Jeff Kirsher | 86387e1 | 2011-05-13 02:51:01 -0700 | [diff] [blame] | 8853 | F: drivers/net/ethernet/neterion/ |
Jiri Slaby | 4a58448 | 2007-08-30 23:56:39 -0700 | [diff] [blame] | 8854 | |
Pablo Neira Ayuso | fc52497 | 2017-02-10 12:08:29 +0100 | [diff] [blame] | 8855 | NETFILTER |
Pablo Neira Ayuso | 0e05e19 | 2011-11-01 09:44:56 +0100 | [diff] [blame] | 8856 | M: Pablo Neira Ayuso <pablo@netfilter.org> |
Pablo Neira Ayuso | 42010ed | 2013-05-06 12:22:57 +0200 | [diff] [blame] | 8857 | M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> |
Pablo Neira Ayuso | 1519fcc | 2017-04-28 16:54:37 +0200 | [diff] [blame] | 8858 | M: Florian Westphal <fw@strlen.de> |
Patrick McHardy | 1a03b81 | 2007-09-18 13:19:26 -0700 | [diff] [blame] | 8859 | L: netfilter-devel@vger.kernel.org |
Patrick McHardy | 82b9854 | 2006-10-12 14:08:55 -0700 | [diff] [blame] | 8860 | L: coreteam@netfilter.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8861 | W: http://www.netfilter.org/ |
| 8862 | W: http://www.iptables.org/ |
Pablo Neira Ayuso | 1519fcc | 2017-04-28 16:54:37 +0200 | [diff] [blame] | 8863 | W: http://www.nftables.org/ |
Pablo Neira Ayuso | 42010ed | 2013-05-06 12:22:57 +0200 | [diff] [blame] | 8864 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
| 8865 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git |
| 8866 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git |
Pablo Neira Ayuso | 1519fcc | 2017-04-28 16:54:37 +0200 | [diff] [blame] | 8867 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8868 | F: include/linux/netfilter* |
| 8869 | F: include/linux/netfilter/ |
| 8870 | F: include/net/netfilter/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 8871 | F: include/uapi/linux/netfilter* |
| 8872 | F: include/uapi/linux/netfilter/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8873 | F: net/*/netfilter.c |
| 8874 | F: net/*/netfilter/ |
| 8875 | F: net/netfilter/ |
Pablo Neira Ayuso | 91c269a | 2015-07-06 20:55:35 +0200 | [diff] [blame] | 8876 | F: net/bridge/br_netfilter*.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8877 | |
Paul Moore | 4cc6773 | 2006-09-25 15:57:13 -0700 | [diff] [blame] | 8878 | NETLABEL |
Paul Moore | 87a0874 | 2011-08-01 11:10:26 +0000 | [diff] [blame] | 8879 | M: Paul Moore <paul@paul-moore.com> |
Paul Moore | 4cc6773 | 2006-09-25 15:57:13 -0700 | [diff] [blame] | 8880 | W: http://netlabel.sf.net |
| 8881 | L: netdev@vger.kernel.org |
Paul Moore | 87a0874 | 2011-08-01 11:10:26 +0000 | [diff] [blame] | 8882 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 8883 | F: Documentation/netlabel/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8884 | F: include/net/netlabel.h |
| 8885 | F: net/netlabel/ |
Paul Moore | 4cc6773 | 2006-09-25 15:57:13 -0700 | [diff] [blame] | 8886 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8887 | NETROM NETWORK LAYER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8888 | M: Ralf Baechle <ralf@linux-mips.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8889 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 8890 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8891 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8892 | F: include/net/netrom.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 8893 | F: include/uapi/linux/netrom.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8894 | F: net/netrom/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8895 | |
Jakub Kicinski | 4c35236 | 2015-12-01 14:55:22 +0000 | [diff] [blame] | 8896 | NETRONOME ETHERNET DRIVERS |
| 8897 | M: Jakub Kicinski <jakub.kicinski@netronome.com> |
Jakub Kicinski | 4c35236 | 2015-12-01 14:55:22 +0000 | [diff] [blame] | 8898 | L: oss-drivers@netronome.com |
| 8899 | S: Maintained |
| 8900 | F: drivers/net/ethernet/netronome/ |
| 8901 | |
Pavel Machek | 5ddb88c | 2006-09-29 02:01:29 -0700 | [diff] [blame] | 8902 | NETWORK BLOCK DEVICE (NBD) |
Josef Bacik | 1e668f4 | 2017-01-11 15:41:40 -0500 | [diff] [blame] | 8903 | M: Josef Bacik <jbacik@fb.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8904 | S: Maintained |
Josef Bacik | 1e668f4 | 2017-01-11 15:41:40 -0500 | [diff] [blame] | 8905 | L: linux-block@vger.kernel.org |
Wouter Verhelst | 5e4b269 | 2013-02-27 17:05:27 -0800 | [diff] [blame] | 8906 | L: nbd-general@lists.sourceforge.net |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8907 | F: Documentation/blockdev/nbd.txt |
| 8908 | F: drivers/block/nbd.c |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 8909 | F: include/uapi/linux/nbd.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8910 | |
Neil Horman | 6e43650 | 2009-10-05 03:56:55 +0000 | [diff] [blame] | 8911 | NETWORK DROP MONITOR |
| 8912 | M: Neil Horman <nhorman@tuxdriver.com> |
| 8913 | L: netdev@vger.kernel.org |
| 8914 | S: Maintained |
| 8915 | W: https://fedorahosted.org/dropwatch/ |
| 8916 | F: net/core/drop_monitor.c |
| 8917 | |
Andrew Lunn | 3ed6e49 | 2016-09-18 21:17:19 +0200 | [diff] [blame] | 8918 | NETWORKING [DSA] |
| 8919 | M: Andrew Lunn <andrew@lunn.ch> |
| 8920 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> |
| 8921 | M: Florian Fainelli <f.fainelli@gmail.com> |
| 8922 | S: Maintained |
| 8923 | F: net/dsa/ |
| 8924 | F: include/net/dsa.h |
| 8925 | F: drivers/net/dsa/ |
| 8926 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8927 | NETWORKING [GENERAL] |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8928 | M: "David S. Miller" <davem@davemloft.net> |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 8929 | L: netdev@vger.kernel.org |
Joe Perches | b1e8fd5 | 2009-04-16 09:38:46 +0000 | [diff] [blame] | 8930 | W: http://www.linuxfoundation.org/en/Net |
Joe Perches | 11e9802 | 2012-11-24 11:18:25 +0000 | [diff] [blame] | 8931 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
Nicolas de Pesloüan | 814fd60 | 2011-08-23 23:31:42 +0000 | [diff] [blame] | 8932 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
| 8933 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git |
David S. Miller | b0522e1 | 2017-04-21 10:44:47 -0400 | [diff] [blame] | 8934 | B: mailto:netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8935 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8936 | F: net/ |
| 8937 | F: include/net/ |
Joe Perches | 018d21e | 2009-08-07 06:43:01 +0000 | [diff] [blame] | 8938 | F: include/linux/in.h |
| 8939 | F: include/linux/net.h |
| 8940 | F: include/linux/netdevice.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 8941 | F: include/uapi/linux/in.h |
| 8942 | F: include/uapi/linux/net.h |
| 8943 | F: include/uapi/linux/netdevice.h |
Nicolas Dichtel | 0c7aecd | 2015-01-15 15:11:15 +0100 | [diff] [blame] | 8944 | F: include/uapi/linux/net_namespace.h |
Tobias Klauser | 7e814a6 | 2014-03-11 12:06:24 +0100 | [diff] [blame] | 8945 | F: tools/net/ |
Daniel Borkmann | f4e53f9 | 2014-03-13 10:18:53 +0100 | [diff] [blame] | 8946 | F: tools/testing/selftests/net/ |
Sasha Levin | 335a67d | 2014-03-27 02:01:34 -0400 | [diff] [blame] | 8947 | F: lib/random32.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8948 | |
| 8949 | NETWORKING [IPv4/IPv6] |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8950 | M: "David S. Miller" <davem@davemloft.net> |
| 8951 | M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 8952 | M: James Morris <jmorris@namei.org> |
| 8953 | M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> |
| 8954 | M: Patrick McHardy <kaber@trash.net> |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 8955 | L: netdev@vger.kernel.org |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 8956 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8957 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 8958 | F: net/ipv4/ |
| 8959 | F: net/ipv6/ |
| 8960 | F: include/net/ip* |
Eric Dumazet | 0a14842 | 2011-04-20 09:27:32 +0000 | [diff] [blame] | 8961 | F: arch/x86/net/* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8962 | |
David S. Miller | 73b7656 | 2012-10-16 14:08:40 -0400 | [diff] [blame] | 8963 | NETWORKING [IPSEC] |
| 8964 | M: Steffen Klassert <steffen.klassert@secunet.com> |
| 8965 | M: Herbert Xu <herbert@gondor.apana.org.au> |
| 8966 | M: "David S. Miller" <davem@davemloft.net> |
| 8967 | L: netdev@vger.kernel.org |
Steffen Klassert | d1fc502 | 2013-12-13 12:56:05 +0100 | [diff] [blame] | 8968 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git |
| 8969 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git |
David S. Miller | 73b7656 | 2012-10-16 14:08:40 -0400 | [diff] [blame] | 8970 | S: Maintained |
Fan Du | 5826bdd | 2014-01-18 09:55:28 +0800 | [diff] [blame] | 8971 | F: net/core/flow.c |
David S. Miller | 73b7656 | 2012-10-16 14:08:40 -0400 | [diff] [blame] | 8972 | F: net/xfrm/ |
| 8973 | F: net/key/ |
| 8974 | F: net/ipv4/xfrm* |
Steffen Klassert | 7799932 | 2017-04-20 10:36:32 +0200 | [diff] [blame] | 8975 | F: net/ipv4/esp4* |
Steffen Klassert | d1fc502 | 2013-12-13 12:56:05 +0100 | [diff] [blame] | 8976 | F: net/ipv4/ah4.c |
| 8977 | F: net/ipv4/ipcomp.c |
| 8978 | F: net/ipv4/ip_vti.c |
David S. Miller | 73b7656 | 2012-10-16 14:08:40 -0400 | [diff] [blame] | 8979 | F: net/ipv6/xfrm* |
Steffen Klassert | 7799932 | 2017-04-20 10:36:32 +0200 | [diff] [blame] | 8980 | F: net/ipv6/esp6* |
Steffen Klassert | d1fc502 | 2013-12-13 12:56:05 +0100 | [diff] [blame] | 8981 | F: net/ipv6/ah6.c |
| 8982 | F: net/ipv6/ipcomp6.c |
| 8983 | F: net/ipv6/ip6_vti.c |
David S. Miller | 73b7656 | 2012-10-16 14:08:40 -0400 | [diff] [blame] | 8984 | F: include/uapi/linux/xfrm.h |
| 8985 | F: include/net/xfrm.h |
| 8986 | |
James Morris | 10e2ff1 | 2007-08-25 14:41:28 -0700 | [diff] [blame] | 8987 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
Paul Moore | 87a0874 | 2011-08-01 11:10:26 +0000 | [diff] [blame] | 8988 | M: Paul Moore <paul@paul-moore.com> |
James Morris | 10e2ff1 | 2007-08-25 14:41:28 -0700 | [diff] [blame] | 8989 | L: netdev@vger.kernel.org |
| 8990 | S: Maintained |
| 8991 | |
John W. Linville | 29f8f63 | 2006-01-18 14:52:48 -0800 | [diff] [blame] | 8992 | NETWORKING [WIRELESS] |
Randy Dunlap | 2cb4abd | 2007-02-07 15:52:36 -0800 | [diff] [blame] | 8993 | L: linux-wireless@vger.kernel.org |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 8994 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
John W. Linville | 29f8f63 | 2006-01-18 14:52:48 -0800 | [diff] [blame] | 8995 | |
Joe Perches | 788873a | 2009-04-16 09:38:45 +0000 | [diff] [blame] | 8996 | NETWORKING DRIVERS |
| 8997 | L: netdev@vger.kernel.org |
| 8998 | W: http://www.linuxfoundation.org/en/Net |
Joe Perches | 11e9802 | 2012-11-24 11:18:25 +0000 | [diff] [blame] | 8999 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 9000 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
| 9001 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git |
Joe Perches | 788873a | 2009-04-16 09:38:45 +0000 | [diff] [blame] | 9002 | S: Odd Fixes |
Geert Uytterhoeven | 156f4fb | 2016-05-22 11:06:09 +0200 | [diff] [blame] | 9003 | F: Documentation/devicetree/bindings/net/ |
Joe Perches | 788873a | 2009-04-16 09:38:45 +0000 | [diff] [blame] | 9004 | F: drivers/net/ |
Joe Perches | 018d21e | 2009-08-07 06:43:01 +0000 | [diff] [blame] | 9005 | F: include/linux/if_* |
Jean Delvare | 0b63bf1 | 2012-10-18 22:11:38 +0200 | [diff] [blame] | 9006 | F: include/linux/netdevice.h |
Jean Delvare | 0b63bf1 | 2012-10-18 22:11:38 +0200 | [diff] [blame] | 9007 | F: include/linux/etherdevice.h |
| 9008 | F: include/linux/fcdevice.h |
| 9009 | F: include/linux/fddidevice.h |
| 9010 | F: include/linux/hippidevice.h |
| 9011 | F: include/linux/inetdevice.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 9012 | F: include/uapi/linux/if_* |
| 9013 | F: include/uapi/linux/netdevice.h |
Joe Perches | 788873a | 2009-04-16 09:38:45 +0000 | [diff] [blame] | 9014 | |
John W. Linville | 0e324cf | 2014-12-17 12:07:05 -0500 | [diff] [blame] | 9015 | NETWORKING DRIVERS (WIRELESS) |
| 9016 | M: Kalle Valo <kvalo@codeaurora.org> |
| 9017 | L: linux-wireless@vger.kernel.org |
| 9018 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 9019 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git |
| 9020 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git |
John W. Linville | 0e324cf | 2014-12-17 12:07:05 -0500 | [diff] [blame] | 9021 | S: Maintained |
Geert Uytterhoeven | 182fd9e | 2016-05-22 11:06:10 +0200 | [diff] [blame] | 9022 | F: Documentation/devicetree/bindings/net/wireless/ |
John W. Linville | 0e324cf | 2014-12-17 12:07:05 -0500 | [diff] [blame] | 9023 | F: drivers/net/wireless/ |
| 9024 | |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 9025 | NETXEN (1/10) GbE SUPPORT |
Mintz, Yuval | 67f0160 | 2016-10-24 08:48:09 +0300 | [diff] [blame] | 9026 | M: Manish Chopra <manish.chopra@cavium.com> |
| 9027 | M: Rahul Verma <rahul.verma@cavium.com> |
| 9028 | M: Dept-GELinuxNICDev@cavium.com |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 9029 | L: netdev@vger.kernel.org |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 9030 | S: Supported |
Jeff Kirsher | aa43c21 | 2011-04-08 19:06:30 -0700 | [diff] [blame] | 9031 | F: drivers/net/ethernet/qlogic/netxen/ |
Amit S. Kale | 3d396eb | 2006-10-21 15:33:03 -0400 | [diff] [blame] | 9032 | |
Aloisio Almeida Jr | 6423d30 | 2011-08-19 16:09:49 -0300 | [diff] [blame] | 9033 | NFC SUBSYSTEM |
Aloisio Almeida Jr | 6423d30 | 2011-08-19 16:09:49 -0300 | [diff] [blame] | 9034 | M: Samuel Ortiz <sameo@linux.intel.com> |
| 9035 | L: linux-wireless@vger.kernel.org |
Dan Carpenter | 1eb3b21 | 2014-08-11 13:14:25 +0300 | [diff] [blame] | 9036 | L: linux-nfc@lists.01.org (subscribers-only) |
Samuel Ortiz | 0293ba2 | 2013-06-24 14:39:35 +0200 | [diff] [blame] | 9037 | S: Supported |
Aloisio Almeida Jr | 6423d30 | 2011-08-19 16:09:49 -0300 | [diff] [blame] | 9038 | F: net/nfc/ |
Ilan Elias | 55eb94f | 2011-09-18 11:19:34 +0300 | [diff] [blame] | 9039 | F: include/net/nfc/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 9040 | F: include/uapi/linux/nfc.h |
Aloisio Almeida Jr | 6423d30 | 2011-08-19 16:09:49 -0300 | [diff] [blame] | 9041 | F: drivers/nfc/ |
Christophe Ricard | 397d649 | 2015-12-23 23:45:21 +0100 | [diff] [blame] | 9042 | F: include/linux/platform_data/nfcmrvl.h |
| 9043 | F: include/linux/platform_data/nxp-nci.h |
Marcel Holtmann | 08eaa1e | 2012-10-24 11:45:38 -0700 | [diff] [blame] | 9044 | F: include/linux/platform_data/pn544.h |
Christophe Ricard | 397d649 | 2015-12-23 23:45:21 +0100 | [diff] [blame] | 9045 | F: include/linux/platform_data/st21nfca.h |
| 9046 | F: include/linux/platform_data/st-nci.h |
Mark A. Greer | 7ebb88e | 2014-03-10 11:56:25 -0700 | [diff] [blame] | 9047 | F: Documentation/devicetree/bindings/net/nfc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9048 | |
J. Bruce Fields | e8b4355 | 2008-07-23 08:49:50 -0400 | [diff] [blame] | 9049 | NFS, SUNRPC, AND LOCKD CLIENTS |
Trond Myklebust | cd7b996 | 2013-12-04 12:29:49 -0500 | [diff] [blame] | 9050 | M: Trond Myklebust <trond.myklebust@primarydata.com> |
Trond Myklebust | 0e3b137 | 2015-02-03 17:13:58 -0500 | [diff] [blame] | 9051 | M: Anna Schumaker <anna.schumaker@netapp.com> |
Trond Myklebust | 78f5815 | 2007-12-12 20:16:06 -0500 | [diff] [blame] | 9052 | L: linux-nfs@vger.kernel.org |
| 9053 | W: http://client.linux-nfs.org |
Trond Myklebust | cd7b996 | 2013-12-04 12:29:49 -0500 | [diff] [blame] | 9054 | T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9055 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9056 | F: fs/lockd/ |
| 9057 | F: fs/nfs/ |
| 9058 | F: fs/nfs_common/ |
| 9059 | F: net/sunrpc/ |
| 9060 | F: include/linux/lockd/ |
| 9061 | F: include/linux/nfs* |
| 9062 | F: include/linux/sunrpc/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 9063 | F: include/uapi/linux/nfs* |
| 9064 | F: include/uapi/linux/sunrpc/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9065 | |
Ryusuke Konishi | 85ef9ce | 2009-04-06 19:01:46 -0700 | [diff] [blame] | 9066 | NILFS2 FILESYSTEM |
Ryusuke Konishi | e212693 | 2014-04-03 14:50:25 -0700 | [diff] [blame] | 9067 | M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> |
Ryusuke Konishi | 6aff43f | 2010-01-02 21:41:53 +0900 | [diff] [blame] | 9068 | L: linux-nilfs@vger.kernel.org |
Ryusuke Konishi | f947226 | 2014-04-03 14:50:32 -0700 | [diff] [blame] | 9069 | W: http://nilfs.sourceforge.net/ |
Ryusuke Konishi | 9e92e51 | 2016-05-23 16:23:11 -0700 | [diff] [blame] | 9070 | W: http://nilfs.osdn.jp/ |
Ryusuke Konishi | e212693 | 2014-04-03 14:50:25 -0700 | [diff] [blame] | 9071 | T: git git://github.com/konis/nilfs2.git |
Ryusuke Konishi | 85ef9ce | 2009-04-06 19:01:46 -0700 | [diff] [blame] | 9072 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9073 | F: Documentation/filesystems/nilfs2.txt |
| 9074 | F: fs/nilfs2/ |
Ryusuke Konishi | c35c7ac | 2015-11-06 16:32:11 -0800 | [diff] [blame] | 9075 | F: include/trace/events/nilfs2.h |
Ryusuke Konishi | e63e88b | 2016-08-02 14:05:30 -0700 | [diff] [blame] | 9076 | F: include/uapi/linux/nilfs2_api.h |
| 9077 | F: include/uapi/linux/nilfs2_ondisk.h |
Ryusuke Konishi | 85ef9ce | 2009-04-06 19:01:46 -0700 | [diff] [blame] | 9078 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9079 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9080 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9081 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
| 9082 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9083 | F: Documentation/scsi/NinjaSCSI.txt |
| 9084 | F: drivers/scsi/pcmcia/nsp_* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9085 | |
| 9086 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9087 | M: GOTO Masanori <gotom@debian.or.jp> |
| 9088 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9089 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
| 9090 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9091 | F: Documentation/scsi/NinjaSCSI.txt |
| 9092 | F: drivers/scsi/nsp32* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9093 | |
Ley Foon Tan | 383b8fb | 2014-11-06 15:20:14 +0800 | [diff] [blame] | 9094 | NIOS2 ARCHITECTURE |
| 9095 | M: Ley Foon Tan <lftan@altera.com> |
| 9096 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
Ley Foon Tan | 0094dc4 | 2015-09-08 01:50:05 +0800 | [diff] [blame] | 9097 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git |
Ley Foon Tan | 383b8fb | 2014-11-06 15:20:14 +0800 | [diff] [blame] | 9098 | S: Maintained |
| 9099 | F: arch/nios2/ |
| 9100 | |
Pavel Machek | 21b5a1c | 2016-12-27 18:59:23 -0200 | [diff] [blame] | 9101 | NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS) |
| 9102 | M: Pavel Machek <pavel@ucw.cz> |
| 9103 | M: Sakari Ailus <sakari.ailus@iki.fi> |
| 9104 | L: linux-media@vger.kernel.org |
| 9105 | S: Maintained |
| 9106 | F: drivers/media/i2c/et8ek8 |
| 9107 | F: drivers/media/i2c/ad5820.c |
| 9108 | |
Pavel Machek | e536022 | 2016-12-27 18:59:23 -0200 | [diff] [blame] | 9109 | NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS) |
| 9110 | M: Pavel Machek <pavel@ucw.cz> |
| 9111 | M: Sakari Ailus <sakari.ailus@iki.fi> |
| 9112 | L: linux-media@vger.kernel.org |
| 9113 | S: Maintained |
| 9114 | F: drivers/media/i2c/et8ek8 |
| 9115 | F: drivers/media/i2c/ad5820.c |
| 9116 | |
Pali Rohár | 2a6afdd | 2015-03-29 15:35:54 +0200 | [diff] [blame] | 9117 | NOKIA N900 POWER SUPPLY DRIVERS |
Sebastian Reichel | e35a49b | 2016-01-17 21:36:03 +0100 | [diff] [blame] | 9118 | R: Pali Rohár <pali.rohar@gmail.com> |
Pali Rohár | 2a6afdd | 2015-03-29 15:35:54 +0200 | [diff] [blame] | 9119 | F: include/linux/power/bq2415x_charger.h |
Andrew F. Davis | 081bab2 | 2015-09-22 14:35:06 -0500 | [diff] [blame] | 9120 | F: include/linux/power/bq27xxx_battery.h |
Pali Rohár | 2a6afdd | 2015-03-29 15:35:54 +0200 | [diff] [blame] | 9121 | F: include/linux/power/isp1704_charger.h |
Sebastian Reichel | 8c0984e | 2016-06-17 13:54:32 +0200 | [diff] [blame] | 9122 | F: drivers/power/supply/bq2415x_charger.c |
| 9123 | F: drivers/power/supply/bq27xxx_battery.c |
| 9124 | F: drivers/power/supply/bq27xxx_battery_i2c.c |
| 9125 | F: drivers/power/supply/isp1704_charger.c |
| 9126 | F: drivers/power/supply/rx51_battery.c |
Pali Rohár | 2a6afdd | 2015-03-29 15:35:54 +0200 | [diff] [blame] | 9127 | |
Allen Hubbe | a1bd3ba | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 9128 | NTB DRIVER CORE |
Jon Mason | 9ef6bf6 | 2014-06-19 10:44:24 -0700 | [diff] [blame] | 9129 | M: Jon Mason <jdmason@kudzu.us> |
| 9130 | M: Dave Jiang <dave.jiang@intel.com> |
Allen Hubbe | a1bd3ba | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 9131 | M: Allen Hubbe <Allen.Hubbe@emc.com> |
Jon Mason | 5e9fd73 | 2015-07-04 14:48:33 -0400 | [diff] [blame] | 9132 | L: linux-ntb@googlegroups.com |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 9133 | S: Supported |
Jon Mason | 2984411 | 2013-07-30 16:29:48 -0700 | [diff] [blame] | 9134 | W: https://github.com/jonmason/ntb/wiki |
| 9135 | T: git git://github.com/jonmason/ntb.git |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 9136 | F: drivers/ntb/ |
Jon Mason | 548c237 | 2012-11-16 19:27:13 -0700 | [diff] [blame] | 9137 | F: drivers/net/ntb_netdev.c |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 9138 | F: include/linux/ntb.h |
Allen Hubbe | a1bd3ba | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 9139 | F: include/linux/ntb_transport.h |
Logan Gunthorpe | a9c59ef | 2016-06-20 13:15:12 -0600 | [diff] [blame] | 9140 | F: tools/testing/selftests/ntb/ |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 9141 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 9142 | NTB INTEL DRIVER |
| 9143 | M: Jon Mason <jdmason@kudzu.us> |
| 9144 | M: Dave Jiang <dave.jiang@intel.com> |
Jon Mason | 5e9fd73 | 2015-07-04 14:48:33 -0400 | [diff] [blame] | 9145 | L: linux-ntb@googlegroups.com |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 9146 | S: Supported |
| 9147 | W: https://github.com/jonmason/ntb/wiki |
| 9148 | T: git git://github.com/jonmason/ntb.git |
| 9149 | F: drivers/ntb/hw/intel/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9150 | |
Xiangliang Yu | a1b3695 | 2016-01-21 19:47:05 +0800 | [diff] [blame] | 9151 | NTB AMD DRIVER |
Shyam Sundar S K | bc034e5 | 2016-12-07 22:48:39 +0530 | [diff] [blame] | 9152 | M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com> |
Xiangliang Yu | a1b3695 | 2016-01-21 19:47:05 +0800 | [diff] [blame] | 9153 | L: linux-ntb@googlegroups.com |
| 9154 | S: Supported |
| 9155 | F: drivers/ntb/hw/amd/ |
| 9156 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9157 | NTFS FILESYSTEM |
| 9158 | M: Anton Altaparmakov <anton@tuxera.com> |
| 9159 | L: linux-ntfs-dev@lists.sourceforge.net |
Adrian Bunk | 169ccbd | 2008-09-02 14:35:37 -0700 | [diff] [blame] | 9160 | W: http://www.tuxera.com/ |
Josh Boyer | 1adc123 | 2005-11-23 15:44:15 -0800 | [diff] [blame] | 9161 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9162 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9163 | F: Documentation/filesystems/ntfs.txt |
| 9164 | F: fs/ntfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9165 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 9166 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9167 | M: Antonino Daplas <adaplas@gmail.com> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 9168 | L: linux-fbdev@vger.kernel.org |
Jim Cromie | ce00f85 | 2006-11-30 04:49:44 +0100 | [diff] [blame] | 9169 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 9170 | F: drivers/video/fbdev/riva/ |
| 9171 | F: drivers/video/fbdev/nvidia/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9172 | |
Matthew Wilcox | 7946168 | 2012-11-10 08:54:53 -0500 | [diff] [blame] | 9173 | NVM EXPRESS DRIVER |
Jay Freyensee | b3975e9 | 2015-10-28 16:37:51 +0900 | [diff] [blame] | 9174 | M: Keith Busch <keith.busch@intel.com> |
| 9175 | M: Jens Axboe <axboe@fb.com> |
Christoph Hellwig | b508fc3 | 2016-12-21 11:20:45 +0100 | [diff] [blame] | 9176 | M: Christoph Hellwig <hch@lst.de> |
| 9177 | M: Sagi Grimberg <sagi@grimberg.me> |
Matthew Wilcox | 7946168 | 2012-11-10 08:54:53 -0500 | [diff] [blame] | 9178 | L: linux-nvme@lists.infradead.org |
Christoph Hellwig | b508fc3 | 2016-12-21 11:20:45 +0100 | [diff] [blame] | 9179 | T: git://git.infradead.org/nvme.git |
| 9180 | W: http://git.infradead.org/nvme.git |
Matthew Wilcox | 7946168 | 2012-11-10 08:54:53 -0500 | [diff] [blame] | 9181 | S: Supported |
Jay Sternberg | 57dacad | 2015-10-09 18:17:06 +0200 | [diff] [blame] | 9182 | F: drivers/nvme/host/ |
Matthew Wilcox | 7946168 | 2012-11-10 08:54:53 -0500 | [diff] [blame] | 9183 | F: include/linux/nvme.h |
Christoph Hellwig | b508fc3 | 2016-12-21 11:20:45 +0100 | [diff] [blame] | 9184 | F: include/uapi/linux/nvme_ioctl.h |
Matthew Wilcox | 7946168 | 2012-11-10 08:54:53 -0500 | [diff] [blame] | 9185 | |
Christoph Hellwig | a07b497 | 2016-06-21 18:04:20 +0200 | [diff] [blame] | 9186 | NVM EXPRESS TARGET DRIVER |
| 9187 | M: Christoph Hellwig <hch@lst.de> |
| 9188 | M: Sagi Grimberg <sagi@grimberg.me> |
| 9189 | L: linux-nvme@lists.infradead.org |
Christoph Hellwig | b508fc3 | 2016-12-21 11:20:45 +0100 | [diff] [blame] | 9190 | T: git://git.infradead.org/nvme.git |
| 9191 | W: http://git.infradead.org/nvme.git |
Christoph Hellwig | a07b497 | 2016-06-21 18:04:20 +0200 | [diff] [blame] | 9192 | S: Supported |
| 9193 | F: drivers/nvme/target/ |
| 9194 | |
James Smart | b1ad1475 | 2016-12-02 00:28:40 -0800 | [diff] [blame] | 9195 | NVM EXPRESS FC TRANSPORT DRIVERS |
| 9196 | M: James Smart <james.smart@broadcom.com> |
| 9197 | L: linux-nvme@lists.infradead.org |
| 9198 | S: Supported |
| 9199 | F: include/linux/nvme-fc.h |
James Smart | d6d2001 | 2016-12-02 00:28:41 -0800 | [diff] [blame] | 9200 | F: include/linux/nvme-fc-driver.h |
James Smart | e399441 | 2016-12-02 00:28:42 -0800 | [diff] [blame] | 9201 | F: drivers/nvme/host/fc.c |
James Smart | c534320 | 2016-12-02 00:28:43 -0800 | [diff] [blame] | 9202 | F: drivers/nvme/target/fc.c |
James Smart | 475d0fe | 2016-12-02 00:28:44 -0800 | [diff] [blame] | 9203 | F: drivers/nvme/target/fcloop.c |
James Smart | b1ad1475 | 2016-12-02 00:28:40 -0800 | [diff] [blame] | 9204 | |
Srinivas Kandagatla | aee4b9b | 2015-07-27 12:17:24 +0100 | [diff] [blame] | 9205 | NVMEM FRAMEWORK |
| 9206 | M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> |
Srinivas Kandagatla | aee4b9b | 2015-07-27 12:17:24 +0100 | [diff] [blame] | 9207 | S: Maintained |
| 9208 | F: drivers/nvmem/ |
| 9209 | F: Documentation/devicetree/bindings/nvmem/ |
| 9210 | F: include/linux/nvmem-consumer.h |
| 9211 | F: include/linux/nvmem-provider.h |
| 9212 | |
Clément Perrochaud | dece458 | 2015-03-09 11:12:04 +0100 | [diff] [blame] | 9213 | NXP-NCI NFC DRIVER |
| 9214 | M: Clément Perrochaud <clement.perrochaud@effinnov.com> |
| 9215 | R: Charles Gorand <charles.gorand@effinnov.com> |
| 9216 | L: linux-nfc@lists.01.org (moderated for non-subscribers) |
| 9217 | S: Supported |
| 9218 | F: drivers/nfc/nxp-nci |
| 9219 | |
Russell King | f50d714 | 2014-03-03 12:18:14 +0000 | [diff] [blame] | 9220 | NXP TDA998X DRM DRIVER |
Russell King | 0d7f4f0 | 2016-11-01 20:27:13 +0000 | [diff] [blame] | 9221 | M: Russell King <linux@armlinux.org.uk> |
Russell King | f50d714 | 2014-03-03 12:18:14 +0000 | [diff] [blame] | 9222 | S: Supported |
Russell King | 0d7f4f0 | 2016-11-01 20:27:13 +0000 | [diff] [blame] | 9223 | T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel |
| 9224 | T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes |
Russell King | f50d714 | 2014-03-03 12:18:14 +0000 | [diff] [blame] | 9225 | F: drivers/gpu/drm/i2c/tda998x_drv.c |
| 9226 | F: include/drm/i2c/tda998x.h |
| 9227 | |
Peter Rosin | fbace43 | 2014-11-08 14:40:17 +0100 | [diff] [blame] | 9228 | NXP TFA9879 DRIVER |
| 9229 | M: Peter Rosin <peda@axentia.se> |
| 9230 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 9231 | S: Maintained |
| 9232 | F: sound/soc/codecs/tfa9879* |
| 9233 | |
Josh Poimboeuf | 442f04c | 2016-02-28 22:22:41 -0600 | [diff] [blame] | 9234 | OBJTOOL |
| 9235 | M: Josh Poimboeuf <jpoimboe@redhat.com> |
| 9236 | S: Supported |
| 9237 | F: tools/objtool/ |
| 9238 | |
Tony Lindgren | 57b6bfc | 2017-01-05 13:41:01 -0800 | [diff] [blame] | 9239 | OMAP1 SUPPORT |
| 9240 | M: Aaro Koskinen <aaro.koskinen@iki.fi> |
| 9241 | M: Tony Lindgren <tony@atomide.com> |
| 9242 | L: linux-omap@vger.kernel.org |
| 9243 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
| 9244 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
| 9245 | S: Maintained |
| 9246 | F: arch/arm/mach-omap1/ |
| 9247 | F: arch/arm/plat-omap/ |
| 9248 | F: arch/arm/configs/omap1_defconfig |
| 9249 | F: drivers/i2c/busses/i2c-omap.c |
| 9250 | F: include/linux/i2c-omap.h |
| 9251 | |
| 9252 | OMAP2+ SUPPORT |
Joe Perches | 0e24bdd | 2009-10-26 16:49:40 -0700 | [diff] [blame] | 9253 | M: Tony Lindgren <tony@atomide.com> |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 9254 | L: linux-omap@vger.kernel.org |
| 9255 | W: http://www.muru.com/linux/omap/ |
| 9256 | W: http://linux.omap.com/ |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 9257 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
Jarkko Nikula | 30bd012 | 2011-11-04 13:18:02 +0200 | [diff] [blame] | 9258 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 9259 | S: Maintained |
Tony Lindgren | 57b6bfc | 2017-01-05 13:41:01 -0800 | [diff] [blame] | 9260 | F: arch/arm/mach-omap2/ |
| 9261 | F: arch/arm/plat-omap/ |
Felipe Balbi | 026da81 | 2015-01-19 16:13:53 -0600 | [diff] [blame] | 9262 | F: arch/arm/configs/omap2plus_defconfig |
Jean Delvare | 046d0a3 | 2012-01-12 20:32:05 +0100 | [diff] [blame] | 9263 | F: drivers/i2c/busses/i2c-omap.c |
Felipe Balbi | dc68cd1 | 2014-11-06 08:37:19 -0600 | [diff] [blame] | 9264 | F: drivers/irqchip/irq-omap-intc.c |
| 9265 | F: drivers/mfd/*omap*.c |
| 9266 | F: drivers/mfd/menelaus.c |
| 9267 | F: drivers/mfd/palmas.c |
| 9268 | F: drivers/mfd/tps65217.c |
| 9269 | F: drivers/mfd/tps65218.c |
| 9270 | F: drivers/mfd/tps65910.c |
| 9271 | F: drivers/mfd/twl-core.[ch] |
| 9272 | F: drivers/mfd/twl4030*.c |
| 9273 | F: drivers/mfd/twl6030*.c |
| 9274 | F: drivers/mfd/twl6040*.c |
| 9275 | F: drivers/regulator/palmas-regulator*.c |
| 9276 | F: drivers/regulator/pbias-regulator.c |
| 9277 | F: drivers/regulator/tps65217-regulator.c |
| 9278 | F: drivers/regulator/tps65218-regulator.c |
| 9279 | F: drivers/regulator/tps65910-regulator.c |
| 9280 | F: drivers/regulator/twl-regulator.c |
Nicolae Rosia | cac28ae | 2016-11-12 14:42:15 +0200 | [diff] [blame] | 9281 | F: drivers/regulator/twl6030-regulator.c |
Jean Delvare | 046d0a3 | 2012-01-12 20:32:05 +0100 | [diff] [blame] | 9282 | F: include/linux/i2c-omap.h |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 9283 | |
Tony Lindgren | 50f29fb | 2012-12-16 11:29:59 -0800 | [diff] [blame] | 9284 | OMAP DEVICE TREE SUPPORT |
Benoit Cousson | cdb55ab | 2013-08-09 23:19:15 +0200 | [diff] [blame] | 9285 | M: Benoît Cousson <bcousson@baylibre.com> |
Tony Lindgren | 50f29fb | 2012-12-16 11:29:59 -0800 | [diff] [blame] | 9286 | M: Tony Lindgren <tony@atomide.com> |
| 9287 | L: linux-omap@vger.kernel.org |
Grant Likely | d0fb18c | 2013-07-19 20:10:12 -0700 | [diff] [blame] | 9288 | L: devicetree@vger.kernel.org |
Tony Lindgren | 50f29fb | 2012-12-16 11:29:59 -0800 | [diff] [blame] | 9289 | S: Maintained |
| 9290 | F: arch/arm/boot/dts/*omap* |
| 9291 | F: arch/arm/boot/dts/*am3* |
Nishanth Menon | 05eb20f | 2014-10-21 09:24:22 -0500 | [diff] [blame] | 9292 | F: arch/arm/boot/dts/*am4* |
| 9293 | F: arch/arm/boot/dts/*am5* |
| 9294 | F: arch/arm/boot/dts/*dra7* |
Tony Lindgren | 50f29fb | 2012-12-16 11:29:59 -0800 | [diff] [blame] | 9295 | |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 9296 | OMAP CLOCK FRAMEWORK SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9297 | M: Paul Walmsley <paul@pwsan.com> |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 9298 | L: linux-omap@vger.kernel.org |
| 9299 | S: Maintained |
| 9300 | F: arch/arm/*omap*/*clock* |
| 9301 | |
| 9302 | OMAP POWER MANAGEMENT SUPPORT |
Kevin Hilman | 3cf2efd | 2016-02-24 14:57:36 -0800 | [diff] [blame] | 9303 | M: Kevin Hilman <khilman@kernel.org> |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 9304 | L: linux-omap@vger.kernel.org |
| 9305 | S: Maintained |
| 9306 | F: arch/arm/*omap*/*pm* |
Kevin Hilman | c46938d | 2012-07-11 14:02:40 -0700 | [diff] [blame] | 9307 | F: drivers/cpufreq/omap-cpufreq.c |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 9308 | |
Joe Perches | d21db56 | 2013-09-11 14:23:35 -0700 | [diff] [blame] | 9309 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
Eric Engestrom | ff2de82 | 2016-05-05 16:22:17 -0700 | [diff] [blame] | 9310 | M: Rajendra Nayak <rnayak@codeaurora.org> |
Paul Walmsley | 692ab1f | 2011-03-09 18:44:28 -0700 | [diff] [blame] | 9311 | M: Paul Walmsley <paul@pwsan.com> |
| 9312 | L: linux-omap@vger.kernel.org |
| 9313 | S: Maintained |
Joe Perches | d21db56 | 2013-09-11 14:23:35 -0700 | [diff] [blame] | 9314 | F: arch/arm/mach-omap2/prm* |
Paul Walmsley | 692ab1f | 2011-03-09 18:44:28 -0700 | [diff] [blame] | 9315 | |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 9316 | OMAP AUDIO SUPPORT |
Jarkko Nikula | 6c28490 | 2012-04-03 09:45:43 +0300 | [diff] [blame] | 9317 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
Jarkko Nikula | 7ec41ee | 2011-08-11 15:44:57 +0300 | [diff] [blame] | 9318 | M: Jarkko Nikula <jarkko.nikula@bitmer.com> |
Jim Davis | e5747e4 | 2015-06-25 15:01:58 -0700 | [diff] [blame] | 9319 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 9320 | L: linux-omap@vger.kernel.org |
| 9321 | S: Maintained |
| 9322 | F: sound/soc/omap/ |
| 9323 | |
Tony Lindgren | 1864019 | 2014-11-20 09:13:42 -0800 | [diff] [blame] | 9324 | OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT |
| 9325 | M: Roger Quadros <rogerq@ti.com> |
| 9326 | M: Tony Lindgren <tony@atomide.com> |
| 9327 | L: linux-omap@vger.kernel.org |
| 9328 | S: Maintained |
| 9329 | F: drivers/memory/omap-gpmc.c |
| 9330 | F: arch/arm/mach-omap2/*gpmc* |
| 9331 | |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 9332 | OMAP FRAMEBUFFER SUPPORT |
Tomi Valkeinen | 830e638 | 2011-02-23 16:34:17 +0200 | [diff] [blame] | 9333 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 9334 | L: linux-fbdev@vger.kernel.org |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 9335 | L: linux-omap@vger.kernel.org |
| 9336 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 9337 | F: drivers/video/fbdev/omap/ |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 9338 | |
Tomi Valkeinen | 676eec0 | 2010-01-07 13:18:04 +0200 | [diff] [blame] | 9339 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
Tomi Valkeinen | 830e638 | 2011-02-23 16:34:17 +0200 | [diff] [blame] | 9340 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
Tomi Valkeinen | 178ff4c | 2009-09-22 13:30:24 +0300 | [diff] [blame] | 9341 | L: linux-omap@vger.kernel.org |
Tomi Valkeinen | 676eec0 | 2010-01-07 13:18:04 +0200 | [diff] [blame] | 9342 | L: linux-fbdev@vger.kernel.org |
Tomi Valkeinen | 178ff4c | 2009-09-22 13:30:24 +0300 | [diff] [blame] | 9343 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 9344 | F: drivers/video/fbdev/omap2/ |
Tomi Valkeinen | 178ff4c | 2009-09-22 13:30:24 +0300 | [diff] [blame] | 9345 | F: Documentation/arm/OMAP/DSS |
| 9346 | |
Ohad Ben-Cohen | 8b37fcf | 2011-09-12 10:43:01 +0300 | [diff] [blame] | 9347 | OMAP HARDWARE SPINLOCK SUPPORT |
| 9348 | M: Ohad Ben-Cohen <ohad@wizery.com> |
| 9349 | L: linux-omap@vger.kernel.org |
| 9350 | S: Maintained |
| 9351 | F: drivers/hwspinlock/omap_hwspinlock.c |
Ohad Ben-Cohen | 8b37fcf | 2011-09-12 10:43:01 +0300 | [diff] [blame] | 9352 | |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 9353 | OMAP MMC SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9354 | M: Jarkko Lavinen <jarkko.lavinen@nokia.com> |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 9355 | L: linux-omap@vger.kernel.org |
| 9356 | S: Maintained |
Madhusudhan Chikkature | 653f41b | 2009-09-22 16:45:06 -0700 | [diff] [blame] | 9357 | F: drivers/mmc/host/omap.c |
| 9358 | |
| 9359 | OMAP HS MMC SUPPORT |
Venkatraman S | 0a4585c | 2012-08-17 23:59:53 +0530 | [diff] [blame] | 9360 | L: linux-mmc@vger.kernel.org |
Madhusudhan Chikkature | 653f41b | 2009-09-22 16:45:06 -0700 | [diff] [blame] | 9361 | L: linux-omap@vger.kernel.org |
Balaji T K | dfa5d19 | 2014-09-17 22:50:11 +0530 | [diff] [blame] | 9362 | S: Orphan |
Madhusudhan Chikkature | 653f41b | 2009-09-22 16:45:06 -0700 | [diff] [blame] | 9363 | F: drivers/mmc/host/omap_hsmmc.c |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 9364 | |
| 9365 | OMAP RANDOM NUMBER GENERATOR SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9366 | M: Deepak Saxena <dsaxena@plexity.net> |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 9367 | S: Maintained |
| 9368 | F: drivers/char/hw_random/omap-rng.c |
| 9369 | |
Paul Walmsley | f400c82 | 2010-12-06 19:08:54 -0700 | [diff] [blame] | 9370 | OMAP HWMOD SUPPORT |
Benoit Cousson | cdb55ab | 2013-08-09 23:19:15 +0200 | [diff] [blame] | 9371 | M: Benoît Cousson <bcousson@baylibre.com> |
Paul Walmsley | f400c82 | 2010-12-06 19:08:54 -0700 | [diff] [blame] | 9372 | M: Paul Walmsley <paul@pwsan.com> |
| 9373 | L: linux-omap@vger.kernel.org |
| 9374 | S: Maintained |
Zhang Yanfei | 8fc8b12 | 2013-01-11 14:32:03 -0800 | [diff] [blame] | 9375 | F: arch/arm/mach-omap2/omap_hwmod.* |
Paul Walmsley | f400c82 | 2010-12-06 19:08:54 -0700 | [diff] [blame] | 9376 | |
Paul Walmsley | 8633fb3 | 2015-01-19 23:49:50 -0700 | [diff] [blame] | 9377 | OMAP HWMOD DATA |
| 9378 | M: Paul Walmsley <paul@pwsan.com> |
| 9379 | L: linux-omap@vger.kernel.org |
| 9380 | S: Maintained |
| 9381 | F: arch/arm/mach-omap2/omap_hwmod*data* |
| 9382 | |
Paul Walmsley | f400c82 | 2010-12-06 19:08:54 -0700 | [diff] [blame] | 9383 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES |
Benoit Cousson | cdb55ab | 2013-08-09 23:19:15 +0200 | [diff] [blame] | 9384 | M: Benoît Cousson <bcousson@baylibre.com> |
Paul Walmsley | f400c82 | 2010-12-06 19:08:54 -0700 | [diff] [blame] | 9385 | L: linux-omap@vger.kernel.org |
| 9386 | S: Maintained |
| 9387 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c |
| 9388 | |
Laurent Pinchart | 0db83ce | 2014-06-06 12:08:59 -0300 | [diff] [blame] | 9389 | OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS) |
Laurent Pinchart | 7e8970e | 2011-02-12 18:05:06 -0300 | [diff] [blame] | 9390 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 9391 | L: linux-media@vger.kernel.org |
| 9392 | S: Maintained |
Sakari Ailus | 7eec52d | 2015-03-19 01:50:22 +0200 | [diff] [blame] | 9393 | F: Documentation/devicetree/bindings/media/ti,omap3isp.txt |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 9394 | F: drivers/media/platform/omap3isp/ |
Laurent Pinchart | 0db83ce | 2014-06-06 12:08:59 -0300 | [diff] [blame] | 9395 | F: drivers/staging/media/omap4iss/ |
Laurent Pinchart | 7e8970e | 2011-02-12 18:05:06 -0300 | [diff] [blame] | 9396 | |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 9397 | OMAP USB SUPPORT |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 9398 | L: linux-usb@vger.kernel.org |
| 9399 | L: linux-omap@vger.kernel.org |
Felipe Balbi | 3b24351 | 2016-02-19 11:04:55 +0200 | [diff] [blame] | 9400 | S: Orphan |
Joe Perches | a16fbd6 | 2010-08-09 17:20:48 -0700 | [diff] [blame] | 9401 | F: drivers/usb/*/*omap* |
| 9402 | F: arch/arm/*omap*/usb* |
Tony Lindgren | f552578 | 2009-05-28 13:23:53 -0700 | [diff] [blame] | 9403 | |
Kevin Hilman | 6d99471 | 2012-07-16 10:05:07 -0700 | [diff] [blame] | 9404 | OMAP GPIO DRIVER |
Javier Martinez Canillas | fe64352 | 2015-11-13 10:35:29 -0300 | [diff] [blame] | 9405 | M: Grygorii Strashko <grygorii.strashko@ti.com> |
Santosh Shilimkar | 9721580 | 2014-10-13 14:16:28 -0400 | [diff] [blame] | 9406 | M: Santosh Shilimkar <ssantosh@kernel.org> |
Kevin Hilman | 3cf2efd | 2016-02-24 14:57:36 -0800 | [diff] [blame] | 9407 | M: Kevin Hilman <khilman@kernel.org> |
Kevin Hilman | 6d99471 | 2012-07-16 10:05:07 -0700 | [diff] [blame] | 9408 | L: linux-omap@vger.kernel.org |
| 9409 | S: Maintained |
Javier Martinez Canillas | fe64352 | 2015-11-13 10:35:29 -0300 | [diff] [blame] | 9410 | F: Documentation/devicetree/bindings/gpio/gpio-omap.txt |
Kevin Hilman | 6d99471 | 2012-07-16 10:05:07 -0700 | [diff] [blame] | 9411 | F: drivers/gpio/gpio-omap.c |
| 9412 | |
Mark Jackson | c351e29 | 2013-10-04 09:15:01 +0100 | [diff] [blame] | 9413 | OMAP/NEWFLOW NANOBONE MACHINE SUPPORT |
| 9414 | M: Mark Jackson <mpfj@newflow.co.uk> |
| 9415 | L: linux-omap@vger.kernel.org |
| 9416 | S: Maintained |
| 9417 | F: arch/arm/boot/dts/am335x-nano.dts |
| 9418 | |
Bob Copeland | 0ad122d | 2008-07-25 19:45:18 -0700 | [diff] [blame] | 9419 | OMFS FILESYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9420 | M: Bob Copeland <me@bobcopeland.com> |
Bob Copeland | 0ad122d | 2008-07-25 19:45:18 -0700 | [diff] [blame] | 9421 | L: linux-karma-devel@lists.sourceforge.net |
| 9422 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9423 | F: Documentation/filesystems/omfs.txt |
| 9424 | F: fs/omfs/ |
Bob Copeland | 0ad122d | 2008-07-25 19:45:18 -0700 | [diff] [blame] | 9425 | |
Harald Welte | c1986ee | 2005-11-13 16:06:29 -0800 | [diff] [blame] | 9426 | OMNIKEY CARDMAN 4000 DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9427 | M: Harald Welte <laforge@gnumonks.org> |
Harald Welte | c1986ee | 2005-11-13 16:06:29 -0800 | [diff] [blame] | 9428 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9429 | F: drivers/char/pcmcia/cm4000_cs.c |
| 9430 | F: include/linux/cm4000_cs.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 9431 | F: include/uapi/linux/cm4000_cs.h |
Harald Welte | c1986ee | 2005-11-13 16:06:29 -0800 | [diff] [blame] | 9432 | |
Harald Welte | 77c44ab | 2005-11-13 16:06:26 -0800 | [diff] [blame] | 9433 | OMNIKEY CARDMAN 4040 DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9434 | M: Harald Welte <laforge@gnumonks.org> |
Harald Welte | 77c44ab | 2005-11-13 16:06:26 -0800 | [diff] [blame] | 9435 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9436 | F: drivers/char/pcmcia/cm4040_cs.* |
Harald Welte | 77c44ab | 2005-11-13 16:06:26 -0800 | [diff] [blame] | 9437 | |
Ramiro Oliveira | 3c2472a | 2017-03-22 09:30:27 -0300 | [diff] [blame] | 9438 | OMNIVISION OV5647 SENSOR DRIVER |
| 9439 | M: Ramiro Oliveira <roliveir@synopsys.com> |
| 9440 | L: linux-media@vger.kernel.org |
| 9441 | T: git git://linuxtv.org/media_tree.git |
| 9442 | S: Maintained |
| 9443 | F: drivers/media/i2c/ov5647.c |
| 9444 | |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 9445 | OMNIVISION OV7670 SENSOR DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9446 | M: Jonathan Corbet <corbet@lwn.net> |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 9447 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 9448 | T: git git://linuxtv.org/media_tree.git |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 9449 | S: Maintained |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 9450 | F: drivers/media/i2c/ov7670.c |
Hans Verkuil | bba5828 | 2016-12-12 12:08:30 -0200 | [diff] [blame] | 9451 | F: Documentation/devicetree/bindings/media/i2c/ov7670.txt |
Jonathan Corbet | 77d5140 | 2007-03-22 19:44:17 -0300 | [diff] [blame] | 9452 | |
Thomas Gleixner | 431bca7 | 2007-05-02 09:31:35 +0200 | [diff] [blame] | 9453 | ONENAND FLASH DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9454 | M: Kyungmin Park <kyungmin.park@samsung.com> |
Thomas Gleixner | 431bca7 | 2007-05-02 09:31:35 +0200 | [diff] [blame] | 9455 | L: linux-mtd@lists.infradead.org |
| 9456 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9457 | F: drivers/mtd/onenand/ |
| 9458 | F: include/linux/mtd/onenand*.h |
Thomas Gleixner | 431bca7 | 2007-05-02 09:31:35 +0200 | [diff] [blame] | 9459 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9460 | ONSTREAM SCSI TAPE DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9461 | M: Willem Riede <osst@riede.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9462 | L: osst-users@lists.sourceforge.net |
| 9463 | L: linux-scsi@vger.kernel.org |
| 9464 | S: Maintained |
Jean Delvare | f7269cf | 2013-07-03 15:05:08 -0700 | [diff] [blame] | 9465 | F: Documentation/scsi/osst.txt |
| 9466 | F: drivers/scsi/osst.* |
| 9467 | F: drivers/scsi/osst_*.h |
| 9468 | F: drivers/scsi/st.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9469 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9470 | OPENCORES I2C BUS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9471 | M: Peter Korsgaard <jacmet@sunsite.dk> |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 9472 | L: linux-i2c@vger.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9473 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9474 | F: Documentation/i2c/busses/i2c-ocores |
| 9475 | F: drivers/i2c/busses/i2c-ocores.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9476 | |
Grant Likely | 860c44c | 2009-10-26 16:49:49 -0700 | [diff] [blame] | 9477 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
Rob Herring | 5d3ad8a | 2013-12-03 10:20:16 -0600 | [diff] [blame] | 9478 | M: Rob Herring <robh+dt@kernel.org> |
Grant Likely | c8fb70a | 2015-08-23 13:34:08 -0700 | [diff] [blame] | 9479 | M: Frank Rowand <frowand.list@gmail.com> |
Grant Likely | d0fb18c | 2013-07-19 20:10:12 -0700 | [diff] [blame] | 9480 | L: devicetree@vger.kernel.org |
Rob Herring | a7fefe9 | 2014-12-26 14:05:54 -0600 | [diff] [blame] | 9481 | W: http://www.devicetree.org/ |
Rob Herring | fcdec35 | 2016-03-24 15:40:25 -0500 | [diff] [blame] | 9482 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git |
Grant Likely | 860c44c | 2009-10-26 16:49:49 -0700 | [diff] [blame] | 9483 | S: Maintained |
Grant Likely | f882820 | 2013-07-19 18:57:39 -0700 | [diff] [blame] | 9484 | F: drivers/of/ |
Grant Likely | 860c44c | 2009-10-26 16:49:49 -0700 | [diff] [blame] | 9485 | F: include/linux/of*.h |
Grant Likely | f882820 | 2013-07-19 18:57:39 -0700 | [diff] [blame] | 9486 | F: scripts/dtc/ |
Grant Likely | 860c44c | 2009-10-26 16:49:49 -0700 | [diff] [blame] | 9487 | |
Grant Likely | f882820 | 2013-07-19 18:57:39 -0700 | [diff] [blame] | 9488 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
Rob Herring | 5d3ad8a | 2013-12-03 10:20:16 -0600 | [diff] [blame] | 9489 | M: Rob Herring <robh+dt@kernel.org> |
Grant Likely | f882820 | 2013-07-19 18:57:39 -0700 | [diff] [blame] | 9490 | M: Mark Rutland <mark.rutland@arm.com> |
Grant Likely | f882820 | 2013-07-19 18:57:39 -0700 | [diff] [blame] | 9491 | L: devicetree@vger.kernel.org |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 9492 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git |
Rob Herring | fcdec35 | 2016-03-24 15:40:25 -0500 | [diff] [blame] | 9493 | Q: http://patchwork.ozlabs.org/project/devicetree-bindings/list/ |
Grant Likely | f882820 | 2013-07-19 18:57:39 -0700 | [diff] [blame] | 9494 | S: Maintained |
| 9495 | F: Documentation/devicetree/ |
| 9496 | F: arch/*/boot/dts/ |
| 9497 | F: include/dt-bindings/ |
| 9498 | |
Pantelis Antoniou | 2bb65f5 | 2015-03-17 22:30:57 +0200 | [diff] [blame] | 9499 | OPEN FIRMWARE AND DEVICE TREE OVERLAYS |
| 9500 | M: Pantelis Antoniou <pantelis.antoniou@konsulko.com> |
| 9501 | L: devicetree@vger.kernel.org |
| 9502 | S: Maintained |
| 9503 | F: Documentation/devicetree/dynamic-resolution-notes.txt |
| 9504 | F: Documentation/devicetree/overlay-notes.txt |
| 9505 | F: drivers/of/overlay.c |
| 9506 | F: drivers/of/resolver.c |
| 9507 | |
Jonas Bonn | 19f9d39 | 2011-06-04 22:00:38 +0300 | [diff] [blame] | 9508 | OPENRISC ARCHITECTURE |
| 9509 | M: Jonas Bonn <jonas@southpole.se> |
Stafford Horne | d01e1f3 | 2016-03-21 17:11:10 +0900 | [diff] [blame] | 9510 | M: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi> |
| 9511 | M: Stafford Horne <shorne@gmail.com> |
Stafford Horne | 9dfc96d | 2016-12-31 20:33:20 +0900 | [diff] [blame] | 9512 | T: git git://github.com/openrisc/linux.git |
Stafford Horne | d01e1f3 | 2016-03-21 17:11:10 +0900 | [diff] [blame] | 9513 | L: openrisc@lists.librecores.org |
| 9514 | W: http://openrisc.io |
Jonas Bonn | 19f9d39 | 2011-06-04 22:00:38 +0300 | [diff] [blame] | 9515 | S: Maintained |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 9516 | F: arch/openrisc/ |
Jonas Bonn | 19f9d39 | 2011-06-04 22:00:38 +0300 | [diff] [blame] | 9517 | |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 9518 | OPENVSWITCH |
Jesse Gross | 4f337ed | 2014-05-16 15:57:59 -0700 | [diff] [blame] | 9519 | M: Pravin Shelar <pshelar@nicira.com> |
Pravin B Shelar | b422da7 | 2015-01-02 11:18:21 -0800 | [diff] [blame] | 9520 | L: netdev@vger.kernel.org |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 9521 | L: dev@openvswitch.org |
| 9522 | W: http://openvswitch.org |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 9523 | S: Maintained |
| 9524 | F: net/openvswitch/ |
Pravin B Shelar | b422da7 | 2015-01-02 11:18:21 -0800 | [diff] [blame] | 9525 | F: include/uapi/linux/openvswitch.h |
Jesse Gross | ccb1352 | 2011-10-25 19:26:31 -0700 | [diff] [blame] | 9526 | |
Viresh Kumar | 875fa6f | 2015-11-20 15:57:27 -0800 | [diff] [blame] | 9527 | OPERATING PERFORMANCE POINTS (OPP) |
| 9528 | M: Viresh Kumar <vireshk@kernel.org> |
| 9529 | M: Nishanth Menon <nm@ti.com> |
| 9530 | M: Stephen Boyd <sboyd@codeaurora.org> |
| 9531 | L: linux-pm@vger.kernel.org |
| 9532 | S: Maintained |
| 9533 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git |
| 9534 | F: drivers/base/power/opp/ |
| 9535 | F: include/linux/pm_opp.h |
| 9536 | F: Documentation/power/opp.txt |
| 9537 | F: Documentation/devicetree/bindings/opp/ |
| 9538 | |
Clemens Ladisch | af39917 | 2011-01-10 16:32:54 +0100 | [diff] [blame] | 9539 | OPL4 DRIVER |
| 9540 | M: Clemens Ladisch <clemens@ladisch.de> |
| 9541 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 9542 | T: git git://git.alsa-project.org/alsa-kernel.git |
| 9543 | S: Maintained |
| 9544 | F: sound/drivers/opl4/ |
| 9545 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9546 | OPROFILE |
Robert Richter | 4cf7e71 | 2012-10-29 18:53:25 +0100 | [diff] [blame] | 9547 | M: Robert Richter <rric@kernel.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9548 | L: oprofile-list@lists.sf.net |
| 9549 | S: Maintained |
Robert Richter | 81c4a8a | 2010-04-22 19:14:49 +0200 | [diff] [blame] | 9550 | F: arch/*/include/asm/oprofile*.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9551 | F: arch/*/oprofile/ |
| 9552 | F: drivers/oprofile/ |
| 9553 | F: include/linux/oprofile.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9554 | |
Jens Wiklander | 4fb0a5e | 2015-04-14 14:33:20 +0200 | [diff] [blame] | 9555 | OP-TEE DRIVER |
| 9556 | M: Jens Wiklander <jens.wiklander@linaro.org> |
| 9557 | S: Maintained |
| 9558 | F: drivers/tee/optee/ |
| 9559 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9560 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
Mark Fasheh | 0a966fa | 2016-09-28 12:51:04 -0700 | [diff] [blame] | 9561 | M: Mark Fasheh <mfasheh@versity.com> |
Joel Becker | d6351db | 2011-01-07 18:10:32 -0800 | [diff] [blame] | 9562 | M: Joel Becker <jlbec@evilplan.org> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9563 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
Mark Fasheh | 01945fa | 2015-02-27 15:51:40 -0800 | [diff] [blame] | 9564 | W: http://ocfs2.wiki.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9565 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9566 | F: Documentation/filesystems/ocfs2.txt |
| 9567 | F: Documentation/filesystems/dlmfs.txt |
| 9568 | F: fs/ocfs2/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9569 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9570 | ORINOCO DRIVER |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 9571 | L: linux-wireless@vger.kernel.org |
Johannes Berg | 491b26b | 2012-06-05 14:21:14 +0200 | [diff] [blame] | 9572 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
Pavel Roskin | ecffdde | 2005-05-05 16:16:01 -0700 | [diff] [blame] | 9573 | W: http://www.nongnu.org/orinoco/ |
David Kilroy | 3a59bab | 2010-08-21 12:13:45 +0100 | [diff] [blame] | 9574 | S: Orphan |
Kalle Valo | 2be45b6 | 2015-11-18 09:57:18 +0200 | [diff] [blame] | 9575 | F: drivers/net/wireless/intersil/orinoco/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9576 | |
Boaz Harrosh | 42c55aa | 2009-06-17 16:54:34 +0300 | [diff] [blame] | 9577 | OSD LIBRARY and FILESYSTEM |
Boaz Harrosh | fadc075 | 2014-10-19 19:19:57 +0300 | [diff] [blame] | 9578 | M: Boaz Harrosh <ooo@electrozaur.com> |
Boaz Harrosh | 6827479 | 2009-01-25 17:24:14 +0200 | [diff] [blame] | 9579 | S: Maintained |
Boaz Harrosh | 42c55aa | 2009-06-17 16:54:34 +0300 | [diff] [blame] | 9580 | F: drivers/scsi/osd/ |
Joe Perches | 6b6f0b6 | 2009-08-18 14:11:06 -0700 | [diff] [blame] | 9581 | F: include/scsi/osd_* |
Boaz Harrosh | 42c55aa | 2009-06-17 16:54:34 +0300 | [diff] [blame] | 9582 | F: fs/exofs/ |
Boaz Harrosh | 6827479 | 2009-01-25 17:24:14 +0200 | [diff] [blame] | 9583 | |
Miklos Szeredi | ef94b18 | 2014-11-20 16:39:59 +0100 | [diff] [blame] | 9584 | OVERLAY FILESYSTEM |
Neil Brown | 7c37fbd | 2014-10-24 00:14:39 +0200 | [diff] [blame] | 9585 | M: Miklos Szeredi <miklos@szeredi.hu> |
Miklos Szeredi | 1d11373 | 2014-11-20 16:40:01 +0100 | [diff] [blame] | 9586 | L: linux-unionfs@vger.kernel.org |
| 9587 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git |
Neil Brown | 7c37fbd | 2014-10-24 00:14:39 +0200 | [diff] [blame] | 9588 | S: Supported |
Miklos Szeredi | 1d11373 | 2014-11-20 16:40:01 +0100 | [diff] [blame] | 9589 | F: fs/overlayfs/ |
Neil Brown | 7c37fbd | 2014-10-24 00:14:39 +0200 | [diff] [blame] | 9590 | F: Documentation/filesystems/overlayfs.txt |
| 9591 | |
Mike Marshall | 8509616 | 2016-01-04 16:38:00 -0500 | [diff] [blame] | 9592 | ORANGEFS FILESYSTEM |
| 9593 | M: Mike Marshall <hubcap@omnibond.com> |
Joe Perches | b39c3cf | 2016-04-01 14:31:12 -0700 | [diff] [blame] | 9594 | L: pvfs2-developers@beowulf-underground.org (subscribers-only) |
Mike Marshall | 8509616 | 2016-01-04 16:38:00 -0500 | [diff] [blame] | 9595 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git |
| 9596 | S: Supported |
| 9597 | F: fs/orangefs/ |
| 9598 | F: Documentation/filesystems/orangefs.txt |
| 9599 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9600 | P54 WIRELESS DRIVER |
Christian Lamparter | 084cb0f | 2010-07-12 19:01:41 +0200 | [diff] [blame] | 9601 | M: Christian Lamparter <chunkeey@googlemail.com> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9602 | L: linux-wireless@vger.kernel.org |
Christian Lamparter | 084cb0f | 2010-07-12 19:01:41 +0200 | [diff] [blame] | 9603 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9604 | S: Maintained |
Kalle Valo | d346683 | 2015-11-18 09:49:59 +0200 | [diff] [blame] | 9605 | F: drivers/net/wireless/intersil/p54/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9606 | |
Olof Johansson | f5cd787 | 2007-01-31 21:43:54 -0600 | [diff] [blame] | 9607 | PA SEMI ETHERNET DRIVER |
Olof Johansson | f5cd787 | 2007-01-31 21:43:54 -0600 | [diff] [blame] | 9608 | L: netdev@vger.kernel.org |
Olof Johansson | 56a5b8da | 2016-09-13 14:48:38 -0700 | [diff] [blame] | 9609 | S: Orphan |
Jeff Kirsher | ded19ad | 2011-05-15 20:56:37 -0700 | [diff] [blame] | 9610 | F: drivers/net/ethernet/pasemi/* |
Olof Johansson | f5cd787 | 2007-01-31 21:43:54 -0600 | [diff] [blame] | 9611 | |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 9612 | PA SEMI SMBUS DRIVER |
Jean Delvare | 846557d | 2008-10-30 15:55:47 +0100 | [diff] [blame] | 9613 | L: linux-i2c@vger.kernel.org |
Olof Johansson | 56a5b8da | 2016-09-13 14:48:38 -0700 | [diff] [blame] | 9614 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9615 | F: drivers/i2c/busses/i2c-pasemi.c |
Olof Johansson | beb58aa | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 9616 | |
Steffen Klassert | 48fc267 | 2010-08-13 10:10:46 -0400 | [diff] [blame] | 9617 | PADATA PARALLEL EXECUTION MECHANISM |
| 9618 | M: Steffen Klassert <steffen.klassert@secunet.com> |
Steffen Klassert | 48fc267 | 2010-08-13 10:10:46 -0400 | [diff] [blame] | 9619 | L: linux-crypto@vger.kernel.org |
| 9620 | S: Maintained |
| 9621 | F: kernel/padata.c |
| 9622 | F: include/linux/padata.h |
| 9623 | F: Documentation/padata.txt |
| 9624 | |
Harald Welte | 709ee53 | 2008-09-23 17:46:57 +0200 | [diff] [blame] | 9625 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9626 | M: Harald Welte <laforge@gnumonks.org> |
Matthew Garrett | d0944853 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 9627 | L: platform-driver-x86@vger.kernel.org |
Harald Welte | 709ee53 | 2008-09-23 17:46:57 +0200 | [diff] [blame] | 9628 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9629 | F: drivers/platform/x86/panasonic-laptop.c |
Harald Welte | 709ee53 | 2008-09-23 17:46:57 +0200 | [diff] [blame] | 9630 | |
Akira Takeuchi | 368dd5a | 2010-10-27 17:28:55 +0100 | [diff] [blame] | 9631 | PANASONIC MN10300/AM33/AM34 PORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9632 | M: David Howells <dhowells@redhat.com> |
David Howells | 4fa9718 | 2008-10-13 10:42:44 +0100 | [diff] [blame] | 9633 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
| 9634 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ |
| 9635 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9636 | F: Documentation/mn10300/ |
| 9637 | F: arch/mn10300/ |
David Howells | 4fa9718 | 2008-10-13 10:42:44 +0100 | [diff] [blame] | 9638 | |
Ksenija Stanojevic | 305b37b | 2016-02-03 12:31:49 +0100 | [diff] [blame] | 9639 | PARALLEL LCD/KEYPAD PANEL DRIVER |
| 9640 | M: Willy Tarreau <willy@haproxy.com> |
| 9641 | M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com> |
| 9642 | S: Odd Fixes |
| 9643 | F: Documentation/misc-devices/lcd-panel-cgram.txt |
| 9644 | F: drivers/misc/panel.c |
| 9645 | |
Sudip Mukherjee | 64dfff0 | 2015-05-20 20:57:02 +0530 | [diff] [blame] | 9646 | PARALLEL PORT SUBSYSTEM |
| 9647 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> |
Sudip Mukherjee | 8056756 | 2016-11-10 22:12:00 +0000 | [diff] [blame] | 9648 | M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk> |
Randy Dunlap | 3dd1a32 | 2007-05-16 22:11:12 -0700 | [diff] [blame] | 9649 | L: linux-parport@lists.infradead.org (subscribers-only) |
Sudip Mukherjee | 64dfff0 | 2015-05-20 20:57:02 +0530 | [diff] [blame] | 9650 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9651 | F: drivers/parport/ |
| 9652 | F: include/linux/parport*.h |
| 9653 | F: drivers/char/ppdev.c |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 9654 | F: include/uapi/linux/ppdev.h |
Sudip Mukherjee | 64dfff0 | 2015-05-20 20:57:02 +0530 | [diff] [blame] | 9655 | F: Documentation/parport*.txt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9656 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9657 | PARAVIRT_OPS INTERFACE |
Jeremy Fitzhardinge | d633180 | 2011-11-18 15:56:06 -0800 | [diff] [blame] | 9658 | M: Jeremy Fitzhardinge <jeremy@goop.org> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9659 | M: Chris Wright <chrisw@sous-sol.org> |
| 9660 | M: Alok Kataria <akataria@vmware.com> |
| 9661 | M: Rusty Russell <rusty@rustcorp.com.au> |
Michael Witten | c996d8b | 2010-11-15 19:55:34 +0000 | [diff] [blame] | 9662 | L: virtualization@lists.linux-foundation.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9663 | S: Supported |
Luis R. Rodriguez | a2e1999 | 2015-02-13 17:13:40 +1030 | [diff] [blame] | 9664 | F: Documentation/virtual/paravirt_ops.txt |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9665 | F: arch/*/kernel/paravirt* |
| 9666 | F: arch/*/include/asm/paravirt.h |
Juergen Gross | 47ae4b0 | 2016-08-29 08:48:43 +0200 | [diff] [blame] | 9667 | F: include/linux/hypervisor.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 9668 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9669 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9670 | M: Tim Waugh <tim@cyberelk.net> |
Randy Dunlap | 3dd1a32 | 2007-05-16 22:11:12 -0700 | [diff] [blame] | 9671 | L: linux-parport@lists.infradead.org (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9672 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9673 | F: Documentation/blockdev/paride.txt |
| 9674 | F: drivers/block/paride/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9675 | |
| 9676 | PARISC ARCHITECTURE |
James Bottomley | b882877 | 2009-08-04 23:59:55 +0000 | [diff] [blame] | 9677 | M: "James E.J. Bottomley" <jejb@parisc-linux.org> |
Kyle McMartin | b38a03b | 2012-02-24 10:36:16 -0500 | [diff] [blame] | 9678 | M: Helge Deller <deller@gmx.de> |
Kyle McMartin | ac6aecb | 2007-12-03 22:04:34 +0000 | [diff] [blame] | 9679 | L: linux-parisc@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9680 | W: http://www.parisc-linux.org/ |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 9681 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 9682 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
Helge Deller | fbb46caa | 2013-05-16 21:00:16 +0000 | [diff] [blame] | 9683 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9684 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9685 | F: arch/parisc/ |
Helge Deller | 2b6bac9 | 2013-05-30 13:48:07 +0000 | [diff] [blame] | 9686 | F: Documentation/parisc/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9687 | F: drivers/parisc/ |
Helge Deller | 2b6bac9 | 2013-05-30 13:48:07 +0000 | [diff] [blame] | 9688 | F: drivers/char/agp/parisc-agp.c |
| 9689 | F: drivers/input/serio/gscps2.c |
| 9690 | F: drivers/parport/parport_gsc.* |
| 9691 | F: drivers/tty/serial/8250/8250_gsc.c |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 9692 | F: drivers/video/fbdev/sti* |
Helge Deller | 2b6bac9 | 2013-05-30 13:48:07 +0000 | [diff] [blame] | 9693 | F: drivers/video/console/sti* |
| 9694 | F: drivers/video/logo/logo_parisc* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9695 | |
Jiri Pirko | 44091d2 | 2017-02-03 10:29:06 +0100 | [diff] [blame] | 9696 | PARMAN |
| 9697 | M: Jiri Pirko <jiri@mellanox.com> |
| 9698 | L: netdev@vger.kernel.org |
| 9699 | S: Supported |
| 9700 | F: lib/parman.c |
| 9701 | F: lib/test_parman.c |
| 9702 | F: include/linux/parman.h |
| 9703 | |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 9704 | PC87360 HARDWARE MONITORING DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9705 | M: Jim Cromie <jim.cromie@gmail.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 9706 | L: linux-hwmon@vger.kernel.org |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 9707 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9708 | F: Documentation/hwmon/pc87360 |
| 9709 | F: drivers/hwmon/pc87360.c |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 9710 | |
| 9711 | PC8736x GPIO DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9712 | M: Jim Cromie <jim.cromie@gmail.com> |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 9713 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9714 | F: drivers/char/pc8736x_gpio.c |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 9715 | |
Jean Delvare | 1ad107f | 2010-08-14 21:09:00 +0200 | [diff] [blame] | 9716 | PC87427 HARDWARE MONITORING DRIVER |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 9717 | M: Jean Delvare <jdelvare@suse.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 9718 | L: linux-hwmon@vger.kernel.org |
Jean Delvare | 1ad107f | 2010-08-14 21:09:00 +0200 | [diff] [blame] | 9719 | S: Maintained |
| 9720 | F: Documentation/hwmon/pc87427 |
| 9721 | F: drivers/hwmon/pc87427.c |
| 9722 | |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 9723 | PCA9532 LED DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 9724 | M: Riku Voipio <riku.voipio@iki.fi> |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 9725 | S: Maintained |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 9726 | F: drivers/leds/leds-pca9532.c |
| 9727 | F: include/linux/leds-pca9532.h |
Riku Voipio | b26e0ed | 2009-03-03 21:37:17 +0200 | [diff] [blame] | 9728 | |
Guenter Roeck | 5ce914a | 2010-10-24 18:16:59 +0200 | [diff] [blame] | 9729 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
Guenter Roeck | ca46208 | 2012-06-01 23:28:23 -0700 | [diff] [blame] | 9730 | M: Guenter Roeck <linux@roeck-us.net> |
Guenter Roeck | 5ce914a | 2010-10-24 18:16:59 +0200 | [diff] [blame] | 9731 | L: linux-i2c@vger.kernel.org |
| 9732 | S: Maintained |
Wolfram Sang | b4f0b74 | 2012-04-25 22:29:43 +0200 | [diff] [blame] | 9733 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
Guenter Roeck | 5ce914a | 2010-10-24 18:16:59 +0200 | [diff] [blame] | 9734 | |
Khalid Aziz | 3971dae | 2012-04-12 12:49:13 -0700 | [diff] [blame] | 9735 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
Khalid Aziz | 055e72f | 2012-10-04 17:12:40 -0700 | [diff] [blame] | 9736 | M: Khalid Aziz <khalid@gonehiking.org> |
Khalid Aziz | 3971dae | 2012-04-12 12:49:13 -0700 | [diff] [blame] | 9737 | S: Maintained |
| 9738 | F: drivers/firmware/pcdp.* |
| 9739 | |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 9740 | PCI ERROR RECOVERY |
Joe Perches | 6305902 | 2012-06-07 14:21:10 -0700 | [diff] [blame] | 9741 | M: Linas Vepstas <linasvepstas@gmail.com> |
Jesse Barnes | c1f69db | 2008-05-19 15:28:16 -0700 | [diff] [blame] | 9742 | L: linux-pci@vger.kernel.org |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 9743 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9744 | F: Documentation/PCI/pci-error-recovery.txt |
linas@austin.ibm.com | 065c635 | 2005-12-02 19:16:18 -0600 | [diff] [blame] | 9745 | |
Russell Currey | 78c1cff | 2016-02-17 17:06:04 +1100 | [diff] [blame] | 9746 | PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC |
| 9747 | M: Russell Currey <ruscur@russell.cc> |
| 9748 | L: linuxppc-dev@lists.ozlabs.org |
| 9749 | S: Supported |
| 9750 | F: Documentation/powerpc/eeh-pci-error-recovery.txt |
| 9751 | F: arch/powerpc/kernel/eeh*.c |
| 9752 | F: arch/powerpc/platforms/*/eeh*.c |
| 9753 | F: arch/powerpc/include/*/eeh*.h |
| 9754 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9755 | PCI SUBSYSTEM |
Jesse Barnes | 5ac3a6d | 2012-03-20 11:55:20 -0700 | [diff] [blame] | 9756 | M: Bjorn Helgaas <bhelgaas@google.com> |
Jesse Barnes | 2905474 | 2008-05-03 08:35:49 -0700 | [diff] [blame] | 9757 | L: linux-pci@vger.kernel.org |
Bjorn Helgaas | 99662dd | 2012-05-07 08:36:08 -0600 | [diff] [blame] | 9758 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
Bjorn Helgaas | c0233ed | 2012-05-24 14:18:14 -0600 | [diff] [blame] | 9759 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9760 | S: Supported |
Geert Uytterhoeven | 92a1fe2 | 2016-05-22 11:06:12 +0200 | [diff] [blame] | 9761 | F: Documentation/devicetree/bindings/pci/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9762 | F: Documentation/PCI/ |
| 9763 | F: drivers/pci/ |
| 9764 | F: include/linux/pci* |
Bjorn Helgaas | 6b49ee4 | 2013-10-09 14:39:08 -0600 | [diff] [blame] | 9765 | F: arch/x86/pci/ |
Bjorn Helgaas | cad01f9 | 2014-04-05 15:07:00 -0600 | [diff] [blame] | 9766 | F: arch/x86/kernel/quirks.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9767 | |
Kishon Vijay Abraham I | f60b15b | 2017-03-27 15:15:19 +0530 | [diff] [blame] | 9768 | PCI ENDPOINT SUBSYSTEM |
| 9769 | M: Kishon Vijay Abraham I <kishon@ti.com> |
| 9770 | L: linux-pci@vger.kernel.org |
| 9771 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git |
| 9772 | S: Supported |
| 9773 | F: drivers/pci/endpoint/ |
| 9774 | F: drivers/misc/pci_endpoint_test.c |
| 9775 | F: tools/pci/ |
| 9776 | |
Ley Foon Tan | eaa6111 | 2015-10-23 18:27:12 +0800 | [diff] [blame] | 9777 | PCI DRIVER FOR ALTERA PCIE IP |
| 9778 | M: Ley Foon Tan <lftan@altera.com> |
| 9779 | L: rfi@lists.rocketboards.org (moderated for non-subscribers) |
| 9780 | L: linux-pci@vger.kernel.org |
| 9781 | S: Supported |
| 9782 | F: Documentation/devicetree/bindings/pci/altera-pcie.txt |
| 9783 | F: drivers/pci/host/pcie-altera.c |
| 9784 | |
Rob Herring | b7e7817 | 2015-01-28 10:16:18 -0600 | [diff] [blame] | 9785 | PCI DRIVER FOR ARM VERSATILE PLATFORM |
| 9786 | M: Rob Herring <robh@kernel.org> |
| 9787 | L: linux-pci@vger.kernel.org |
| 9788 | L: linux-arm-kernel@lists.infradead.org |
| 9789 | S: Maintained |
| 9790 | F: Documentation/devicetree/bindings/pci/versatile.txt |
| 9791 | F: drivers/pci/host/pci-versatile.c |
| 9792 | |
Thomas Petazzoni | 3dc9d38 | 2016-10-07 22:30:30 +0200 | [diff] [blame] | 9793 | PCI DRIVER FOR ARMADA 8K |
| 9794 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> |
| 9795 | L: linux-pci@vger.kernel.org |
| 9796 | L: linux-arm-kernel@lists.infradead.org |
| 9797 | S: Maintained |
| 9798 | F: Documentation/devicetree/bindings/pci/pci-armada8k.txt |
Kishon Vijay Abraham I | 950bf63 | 2017-01-06 18:22:48 +0530 | [diff] [blame] | 9799 | F: drivers/pci/dwc/pcie-armada8k.c |
Thomas Petazzoni | 3dc9d38 | 2016-10-07 22:30:30 +0200 | [diff] [blame] | 9800 | |
Tanmay Inamdar | 5f6b6cc | 2014-10-01 13:01:35 -0600 | [diff] [blame] | 9801 | PCI DRIVER FOR APPLIEDMICRO XGENE |
| 9802 | M: Tanmay Inamdar <tinamdar@apm.com> |
| 9803 | L: linux-pci@vger.kernel.org |
| 9804 | L: linux-arm-kernel@lists.infradead.org |
| 9805 | S: Maintained |
| 9806 | F: Documentation/devicetree/bindings/pci/xgene-pci.txt |
| 9807 | F: drivers/pci/host/pci-xgene.c |
| 9808 | |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 9809 | PCI DRIVER FOR FREESCALE LAYERSCAPE |
| 9810 | M: Minghuan Lian <minghuan.Lian@freescale.com> |
| 9811 | M: Mingkai Hu <mingkai.hu@freescale.com> |
| 9812 | M: Roy Zang <tie-fei.zang@freescale.com> |
| 9813 | L: linuxppc-dev@lists.ozlabs.org |
| 9814 | L: linux-pci@vger.kernel.org |
| 9815 | L: linux-arm-kernel@lists.infradead.org |
| 9816 | S: Maintained |
Kishon Vijay Abraham I | 950bf63 | 2017-01-06 18:22:48 +0530 | [diff] [blame] | 9817 | F: drivers/pci/dwc/*layerscape* |
Minghuan Lian | 62d0ff83 | 2014-11-05 16:45:11 +0800 | [diff] [blame] | 9818 | |
Bjorn Helgaas | f0b7569 | 2013-12-11 10:40:59 -0700 | [diff] [blame] | 9819 | PCI DRIVER FOR IMX6 |
Fabio Estevam | 286fbae | 2016-11-11 16:52:38 -0600 | [diff] [blame] | 9820 | M: Richard Zhu <hongxing.zhu@nxp.com> |
Lucas Stach | 1ba55f5 | 2014-07-31 20:16:04 +0200 | [diff] [blame] | 9821 | M: Lucas Stach <l.stach@pengutronix.de> |
Bjorn Helgaas | f0b7569 | 2013-12-11 10:40:59 -0700 | [diff] [blame] | 9822 | L: linux-pci@vger.kernel.org |
| 9823 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 9824 | S: Maintained |
Fabio Estevam | 12e4606 | 2016-11-11 16:52:46 -0600 | [diff] [blame] | 9825 | F: Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt |
Kishon Vijay Abraham I | 950bf63 | 2017-01-06 18:22:48 +0530 | [diff] [blame] | 9826 | F: drivers/pci/dwc/*imx6* |
Bjorn Helgaas | f0b7569 | 2013-12-11 10:40:59 -0700 | [diff] [blame] | 9827 | |
Murali Karicheri | 0c4ffcf | 2014-09-02 17:26:19 -0600 | [diff] [blame] | 9828 | PCI DRIVER FOR TI KEYSTONE |
| 9829 | M: Murali Karicheri <m-karicheri2@ti.com> |
| 9830 | L: linux-pci@vger.kernel.org |
| 9831 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 9832 | S: Maintained |
Kishon Vijay Abraham I | 950bf63 | 2017-01-06 18:22:48 +0530 | [diff] [blame] | 9833 | F: drivers/pci/dwc/*keystone* |
Murali Karicheri | 0c4ffcf | 2014-09-02 17:26:19 -0600 | [diff] [blame] | 9834 | |
Bjorn Helgaas | f0b7569 | 2013-12-11 10:40:59 -0700 | [diff] [blame] | 9835 | PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support) |
| 9836 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> |
| 9837 | M: Jason Cooper <jason@lakedaemon.net> |
| 9838 | L: linux-pci@vger.kernel.org |
| 9839 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 9840 | S: Maintained |
| 9841 | F: drivers/pci/host/*mvebu* |
| 9842 | |
Thomas Petazzoni | 8c39d71 | 2016-06-30 11:32:31 +0200 | [diff] [blame] | 9843 | PCI DRIVER FOR AARDVARK (Marvell Armada 3700) |
| 9844 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> |
| 9845 | L: linux-pci@vger.kernel.org |
| 9846 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 9847 | S: Maintained |
Thomas Petazzoni | 441106d | 2016-10-07 22:30:31 +0200 | [diff] [blame] | 9848 | F: Documentation/devicetree/bindings/pci/aardvark-pci.txt |
Thomas Petazzoni | 8c39d71 | 2016-06-30 11:32:31 +0200 | [diff] [blame] | 9849 | F: drivers/pci/host/pci-aardvark.c |
| 9850 | |
Logan Gunthorpe | 080b47d | 2017-03-06 18:30:54 -0600 | [diff] [blame] | 9851 | PCI DRIVER FOR MICROSEMI SWITCHTEC |
| 9852 | M: Kurt Schwemmer <kurt.schwemmer@microsemi.com> |
| 9853 | M: Stephen Bates <stephen.bates@microsemi.com> |
| 9854 | M: Logan Gunthorpe <logang@deltatee.com> |
| 9855 | L: linux-pci@vger.kernel.org |
| 9856 | S: Maintained |
Logan Gunthorpe | 44fc691 | 2017-03-02 16:24:32 -0700 | [diff] [blame] | 9857 | F: Documentation/switchtec.txt |
Logan Gunthorpe | 5d8e188 | 2017-03-02 16:24:33 -0700 | [diff] [blame] | 9858 | F: Documentation/ABI/testing/sysfs-class-switchtec |
Logan Gunthorpe | 080b47d | 2017-03-06 18:30:54 -0600 | [diff] [blame] | 9859 | F: drivers/pci/switch/switchtec* |
Logan Gunthorpe | 52eabba | 2017-03-02 16:24:34 -0700 | [diff] [blame] | 9860 | F: include/uapi/linux/switchtec_ioctl.h |
Logan Gunthorpe | 080b47d | 2017-03-06 18:30:54 -0600 | [diff] [blame] | 9861 | |
Thierry Reding | 0447cfd | 2013-08-09 16:49:32 +0200 | [diff] [blame] | 9862 | PCI DRIVER FOR NVIDIA TEGRA |
| 9863 | M: Thierry Reding <thierry.reding@gmail.com> |
| 9864 | L: linux-tegra@vger.kernel.org |
Bjorn Helgaas | f0b7569 | 2013-12-11 10:40:59 -0700 | [diff] [blame] | 9865 | L: linux-pci@vger.kernel.org |
Thierry Reding | 0447cfd | 2013-08-09 16:49:32 +0200 | [diff] [blame] | 9866 | S: Supported |
| 9867 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt |
| 9868 | F: drivers/pci/host/pci-tegra.c |
| 9869 | |
Kishon Vijay Abraham I | 47ff3de | 2014-07-22 15:23:45 -0600 | [diff] [blame] | 9870 | PCI DRIVER FOR TI DRA7XX |
| 9871 | M: Kishon Vijay Abraham I <kishon@ti.com> |
| 9872 | L: linux-omap@vger.kernel.org |
| 9873 | L: linux-pci@vger.kernel.org |
| 9874 | S: Supported |
| 9875 | F: Documentation/devicetree/bindings/pci/ti-pci.txt |
Kishon Vijay Abraham I | 950bf63 | 2017-01-06 18:22:48 +0530 | [diff] [blame] | 9876 | F: drivers/pci/dwc/pci-dra7xx.c |
Kishon Vijay Abraham I | 47ff3de | 2014-07-22 15:23:45 -0600 | [diff] [blame] | 9877 | |
Bjorn Helgaas | f0b7569 | 2013-12-11 10:40:59 -0700 | [diff] [blame] | 9878 | PCI DRIVER FOR RENESAS R-CAR |
| 9879 | M: Simon Horman <horms@verge.net.au> |
| 9880 | L: linux-pci@vger.kernel.org |
Simon Horman | 4a12109 | 2016-01-18 10:04:33 +0900 | [diff] [blame] | 9881 | L: linux-renesas-soc@vger.kernel.org |
Bjorn Helgaas | f0b7569 | 2013-12-11 10:40:59 -0700 | [diff] [blame] | 9882 | S: Maintained |
| 9883 | F: drivers/pci/host/*rcar* |
| 9884 | |
Jingoo Han | 4af8225 | 2013-09-12 20:29:24 +0900 | [diff] [blame] | 9885 | PCI DRIVER FOR SAMSUNG EXYNOS |
Jingoo Han | b770175 | 2015-05-14 15:17:07 -0700 | [diff] [blame] | 9886 | M: Jingoo Han <jingoohan1@gmail.com> |
Jingoo Han | 4af8225 | 2013-09-12 20:29:24 +0900 | [diff] [blame] | 9887 | L: linux-pci@vger.kernel.org |
Bjorn Helgaas | f0b7569 | 2013-12-11 10:40:59 -0700 | [diff] [blame] | 9888 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 9889 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
Jingoo Han | 4af8225 | 2013-09-12 20:29:24 +0900 | [diff] [blame] | 9890 | S: Maintained |
Kishon Vijay Abraham I | 950bf63 | 2017-01-06 18:22:48 +0530 | [diff] [blame] | 9891 | F: drivers/pci/dwc/pci-exynos.c |
Jingoo Han | 4af8225 | 2013-09-12 20:29:24 +0900 | [diff] [blame] | 9892 | |
Bjorn Helgaas | f0b7569 | 2013-12-11 10:40:59 -0700 | [diff] [blame] | 9893 | PCI DRIVER FOR SYNOPSIS DESIGNWARE |
Jingoo Han | b770175 | 2015-05-14 15:17:07 -0700 | [diff] [blame] | 9894 | M: Jingoo Han <jingoohan1@gmail.com> |
Joao Pinto | fc2480f | 2016-11-15 16:10:46 +0000 | [diff] [blame] | 9895 | M: Joao Pinto <Joao.Pinto@synopsys.com> |
Joao Pinto | 5a3aa2a | 2016-03-10 14:44:52 -0600 | [diff] [blame] | 9896 | L: linux-pci@vger.kernel.org |
| 9897 | S: Maintained |
| 9898 | F: Documentation/devicetree/bindings/pci/designware-pcie.txt |
Kishon Vijay Abraham I | 950bf63 | 2017-01-06 18:22:48 +0530 | [diff] [blame] | 9899 | F: drivers/pci/dwc/*designware* |
Joao Pinto | 5a3aa2a | 2016-03-10 14:44:52 -0600 | [diff] [blame] | 9900 | |
Will Deacon | cf28855 | 2014-05-01 12:04:28 +0100 | [diff] [blame] | 9901 | PCI DRIVER FOR GENERIC OF HOSTS |
| 9902 | M: Will Deacon <will.deacon@arm.com> |
| 9903 | L: linux-pci@vger.kernel.org |
| 9904 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 9905 | S: Maintained |
| 9906 | F: Documentation/devicetree/bindings/pci/host-generic-pci.txt |
David Daney | 4e64dbe | 2016-03-11 15:35:55 -0600 | [diff] [blame] | 9907 | F: drivers/pci/host/pci-host-common.c |
Will Deacon | cf28855 | 2014-05-01 12:04:28 +0100 | [diff] [blame] | 9908 | F: drivers/pci/host/pci-host-generic.c |
| 9909 | |
Keith Busch | 185a383 | 2016-01-12 13:18:10 -0700 | [diff] [blame] | 9910 | PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD) |
| 9911 | M: Keith Busch <keith.busch@intel.com> |
| 9912 | L: linux-pci@vger.kernel.org |
| 9913 | S: Supported |
Keith Busch | bc79c98 | 2016-11-10 16:10:44 -0500 | [diff] [blame] | 9914 | F: drivers/pci/host/vmd.c |
Keith Busch | 185a383 | 2016-01-12 13:18:10 -0700 | [diff] [blame] | 9915 | |
Pratyush Anand | 51b66a6 | 2014-02-11 11:39:26 +0530 | [diff] [blame] | 9916 | PCIE DRIVER FOR ST SPEAR13XX |
Pratyush Anand | 110baab | 2015-04-30 09:46:07 +0530 | [diff] [blame] | 9917 | M: Pratyush Anand <pratyush.anand@gmail.com> |
Pratyush Anand | 51b66a6 | 2014-02-11 11:39:26 +0530 | [diff] [blame] | 9918 | L: linux-pci@vger.kernel.org |
Pratyush Anand | 110baab | 2015-04-30 09:46:07 +0530 | [diff] [blame] | 9919 | S: Maintained |
Kishon Vijay Abraham I | 950bf63 | 2017-01-06 18:22:48 +0530 | [diff] [blame] | 9920 | F: drivers/pci/dwc/*spear* |
Pratyush Anand | 51b66a6 | 2014-02-11 11:39:26 +0530 | [diff] [blame] | 9921 | |
Ley Foon Tan | af1169b | 2015-10-23 18:27:13 +0800 | [diff] [blame] | 9922 | PCI MSI DRIVER FOR ALTERA MSI IP |
| 9923 | M: Ley Foon Tan <lftan@altera.com> |
| 9924 | L: rfi@lists.rocketboards.org (moderated for non-subscribers) |
| 9925 | L: linux-pci@vger.kernel.org |
| 9926 | S: Supported |
| 9927 | F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt |
| 9928 | F: drivers/pci/host/pcie-altera-msi.c |
| 9929 | |
Duc Dang | dcd19de | 2015-06-05 15:56:34 -0500 | [diff] [blame] | 9930 | PCI MSI DRIVER FOR APPLIEDMICRO XGENE |
| 9931 | M: Duc Dang <dhdang@apm.com> |
| 9932 | L: linux-pci@vger.kernel.org |
| 9933 | L: linux-arm-kernel@lists.infradead.org |
| 9934 | S: Maintained |
| 9935 | F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt |
| 9936 | F: drivers/pci/host/pci-xgene-msi.c |
| 9937 | |
Niklas Cassel | a3cbfae | 2016-05-09 13:49:03 +0200 | [diff] [blame] | 9938 | PCIE DRIVER FOR AXIS ARTPEC |
| 9939 | M: Niklas Cassel <niklas.cassel@axis.com> |
| 9940 | M: Jesper Nilsson <jesper.nilsson@axis.com> |
| 9941 | L: linux-arm-kernel@axis.com |
| 9942 | L: linux-pci@vger.kernel.org |
| 9943 | S: Maintained |
| 9944 | F: Documentation/devicetree/bindings/pci/axis,artpec* |
Kishon Vijay Abraham I | 950bf63 | 2017-01-06 18:22:48 +0530 | [diff] [blame] | 9945 | F: drivers/pci/dwc/*artpec* |
Niklas Cassel | a3cbfae | 2016-05-09 13:49:03 +0200 | [diff] [blame] | 9946 | |
Zhou Wang | 500a1d9 | 2015-10-29 20:02:51 -0500 | [diff] [blame] | 9947 | PCIE DRIVER FOR HISILICON |
| 9948 | M: Zhou Wang <wangzhou1@hisilicon.com> |
Gabriele Paoloni | 5930fe4 | 2015-11-27 01:17:05 +0800 | [diff] [blame] | 9949 | M: Gabriele Paoloni <gabriele.paoloni@huawei.com> |
Zhou Wang | 500a1d9 | 2015-10-29 20:02:51 -0500 | [diff] [blame] | 9950 | L: linux-pci@vger.kernel.org |
| 9951 | S: Maintained |
| 9952 | F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt |
Kishon Vijay Abraham I | 950bf63 | 2017-01-06 18:22:48 +0530 | [diff] [blame] | 9953 | F: drivers/pci/dwc/pcie-hisi.c |
Zhou Wang | 500a1d9 | 2015-10-29 20:02:51 -0500 | [diff] [blame] | 9954 | |
Shawn Lin | e77f847 | 2016-09-03 11:41:09 -0500 | [diff] [blame] | 9955 | PCIE DRIVER FOR ROCKCHIP |
| 9956 | M: Shawn Lin <shawn.lin@rock-chips.com> |
| 9957 | M: Wenrui Li <wenrui.li@rock-chips.com> |
| 9958 | L: linux-pci@vger.kernel.org |
| 9959 | L: linux-rockchip@lists.infradead.org |
| 9960 | S: Maintained |
| 9961 | F: Documentation/devicetree/bindings/pci/rockchip-pcie.txt |
| 9962 | F: drivers/pci/host/pcie-rockchip.c |
| 9963 | |
Stanimir Varbanov | 82a8238 | 2015-12-18 14:38:57 +0200 | [diff] [blame] | 9964 | PCIE DRIVER FOR QUALCOMM MSM |
| 9965 | M: Stanimir Varbanov <svarbanov@mm-sol.com> |
| 9966 | L: linux-pci@vger.kernel.org |
| 9967 | L: linux-arm-msm@vger.kernel.org |
| 9968 | S: Maintained |
Kishon Vijay Abraham I | 950bf63 | 2017-01-06 18:22:48 +0530 | [diff] [blame] | 9969 | F: drivers/pci/dwc/*qcom* |
Stanimir Varbanov | 82a8238 | 2015-12-18 14:38:57 +0200 | [diff] [blame] | 9970 | |
David Daney | f12b76e | 2016-03-04 14:31:47 -0800 | [diff] [blame] | 9971 | PCIE DRIVER FOR CAVIUM THUNDERX |
| 9972 | M: David Daney <david.daney@cavium.com> |
| 9973 | L: linux-pci@vger.kernel.org |
| 9974 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 9975 | S: Supported |
| 9976 | F: Documentation/devicetree/bindings/pci/pci-thunder-* |
| 9977 | F: drivers/pci/host/pci-thunder-* |
| 9978 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9979 | PCMCIA SUBSYSTEM |
Dominik Brodowski | 4230dfc | 2005-07-07 17:59:06 -0700 | [diff] [blame] | 9980 | P: Linux PCMCIA Team |
Randy Dunlap | f5df5881 | 2006-07-14 00:24:29 -0700 | [diff] [blame] | 9981 | L: linux-pcmcia@lists.infradead.org |
Joe Perches | 6650e0a | 2007-12-10 15:49:32 -0800 | [diff] [blame] | 9982 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 9983 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git |
Dominik Brodowski | 4230dfc | 2005-07-07 17:59:06 -0700 | [diff] [blame] | 9984 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9985 | F: Documentation/pcmcia/ |
Shuah Khan | a67cd54 | 2016-09-21 16:54:36 -0600 | [diff] [blame] | 9986 | F: tools/pcmcia/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 9987 | F: drivers/pcmcia/ |
| 9988 | F: include/pcmcia/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9989 | |
| 9990 | PCNET32 NETWORK DRIVER |
Don Fry | 227fb92 | 2010-12-21 19:58:15 -0800 | [diff] [blame] | 9991 | M: Don Fry <pcnet32@frontier.com> |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 9992 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9993 | S: Maintained |
Jeff Kirsher | b955f6c | 2011-03-30 07:46:36 -0700 | [diff] [blame] | 9994 | F: drivers/net/ethernet/amd/pcnet32.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9995 | |
Steffen Klassert | 48fc267 | 2010-08-13 10:10:46 -0400 | [diff] [blame] | 9996 | PCRYPT PARALLEL CRYPTO ENGINE |
| 9997 | M: Steffen Klassert <steffen.klassert@secunet.com> |
| 9998 | L: linux-crypto@vger.kernel.org |
| 9999 | S: Maintained |
| 10000 | F: crypto/pcrypt.c |
| 10001 | F: include/crypto/pcrypt.h |
| 10002 | |
Tejun Heo | e72df0b | 2010-12-10 17:02:49 +0100 | [diff] [blame] | 10003 | PER-CPU MEMORY ALLOCATOR |
| 10004 | M: Tejun Heo <tj@kernel.org> |
Christoph Lameter | 93e205a | 2016-03-17 14:21:15 -0700 | [diff] [blame] | 10005 | M: Christoph Lameter <cl@linux.com> |
Tejun Heo | e72df0b | 2010-12-10 17:02:49 +0100 | [diff] [blame] | 10006 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
| 10007 | S: Maintained |
| 10008 | F: include/linux/percpu*.h |
| 10009 | F: mm/percpu*.c |
| 10010 | F: arch/*/include/asm/percpu.h |
| 10011 | |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 10012 | PER-TASK DELAY ACCOUNTING |
Balbir Singh | 185e595 | 2011-06-15 15:08:30 -0700 | [diff] [blame] | 10013 | M: Balbir Singh <bsingharora@gmail.com> |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 10014 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10015 | F: include/linux/delayacct.h |
| 10016 | F: kernel/delayacct.c |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 10017 | |
Ingo Molnar | 57c0c15 | 2009-09-21 12:20:38 +0200 | [diff] [blame] | 10018 | PERFORMANCE EVENTS SUBSYSTEM |
Peter Zijlstra | daecbd267 | 2015-11-16 11:07:44 +0100 | [diff] [blame] | 10019 | M: Peter Zijlstra <peterz@infradead.org> |
Ingo Molnar | dd9b238 | 2012-03-19 21:03:46 +0100 | [diff] [blame] | 10020 | M: Ingo Molnar <mingo@redhat.com> |
Arnaldo Carvalho de Melo | f80c539 | 2014-03-27 17:36:14 -0300 | [diff] [blame] | 10021 | M: Arnaldo Carvalho de Melo <acme@kernel.org> |
Peter Zijlstra | a54d690 | 2016-02-26 10:35:45 +0100 | [diff] [blame] | 10022 | R: Alexander Shishkin <alexander.shishkin@linux.intel.com> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 10023 | L: linux-kernel@vger.kernel.org |
Peter Zijlstra | 75fc2d3 | 2011-12-05 17:27:08 +0100 | [diff] [blame] | 10024 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
Paul Mackerras | 6c0b324 | 2009-04-09 09:27:37 +1000 | [diff] [blame] | 10025 | S: Supported |
Geunsik Lim | d53e836 | 2011-08-18 16:44:57 +0900 | [diff] [blame] | 10026 | F: kernel/events/* |
Vincent Legoll | a003236 | 2009-10-13 14:48:14 +0200 | [diff] [blame] | 10027 | F: include/linux/perf_event.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10028 | F: include/uapi/linux/perf_event.h |
Robert Richter | 141c429 | 2010-03-17 12:49:11 +0100 | [diff] [blame] | 10029 | F: arch/*/kernel/perf_event*.c |
| 10030 | F: arch/*/kernel/*/perf_event*.c |
| 10031 | F: arch/*/kernel/*/*/perf_event*.c |
Vincent Legoll | a003236 | 2009-10-13 14:48:14 +0200 | [diff] [blame] | 10032 | F: arch/*/include/asm/perf_event.h |
Vincent Legoll | a003236 | 2009-10-13 14:48:14 +0200 | [diff] [blame] | 10033 | F: arch/*/kernel/perf_callchain.c |
Peter Zijlstra | b0a434f | 2016-05-19 12:30:19 +0200 | [diff] [blame] | 10034 | F: arch/*/events/* |
Vincent Legoll | a003236 | 2009-10-13 14:48:14 +0200 | [diff] [blame] | 10035 | F: tools/perf/ |
Paul Mackerras | 6c0b324 | 2009-04-09 09:27:37 +1000 | [diff] [blame] | 10036 | |
Jim Cromie | dd49d0f | 2006-03-24 18:08:17 +0100 | [diff] [blame] | 10037 | PERSONALITY HANDLING |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10038 | M: Christoph Hellwig <hch@infradead.org> |
Jim Cromie | dd49d0f | 2006-03-24 18:08:17 +0100 | [diff] [blame] | 10039 | L: linux-abi-devel@lists.sourceforge.net |
| 10040 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10041 | F: include/linux/personality.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10042 | F: include/uapi/linux/personality.h |
Jim Cromie | dd49d0f | 2006-03-24 18:08:17 +0100 | [diff] [blame] | 10043 | |
Rémi Denis-Courmont | 838e7a0 | 2010-10-08 04:02:00 +0000 | [diff] [blame] | 10044 | PHONET PROTOCOL |
Rémi Denis-Courmont | 2a06b40 | 2012-04-12 03:39:18 +0000 | [diff] [blame] | 10045 | M: Remi Denis-Courmont <courmisch@gmail.com> |
Rémi Denis-Courmont | 838e7a0 | 2010-10-08 04:02:00 +0000 | [diff] [blame] | 10046 | S: Supported |
| 10047 | F: Documentation/networking/phonet.txt |
| 10048 | F: include/linux/phonet.h |
| 10049 | F: include/net/phonet/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10050 | F: include/uapi/linux/phonet.h |
Rémi Denis-Courmont | 838e7a0 | 2010-10-08 04:02:00 +0000 | [diff] [blame] | 10051 | F: net/phonet/ |
| 10052 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10053 | PHRAM MTD DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10054 | M: Joern Engel <joern@lazybastard.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10055 | L: linux-mtd@lists.infradead.org |
| 10056 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10057 | F: drivers/mtd/devices/phram.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10058 | |
Bruno Prémont | efdbb10 | 2012-07-30 21:39:03 +0200 | [diff] [blame] | 10059 | PICOLCD HID DRIVER |
| 10060 | M: Bruno Prémont <bonbons@linux-vserver.org> |
| 10061 | L: linux-input@vger.kernel.org |
| 10062 | S: Maintained |
| 10063 | F: drivers/hid/hid-picolcd* |
| 10064 | |
Jamie Iles | a53bfa0 | 2011-12-12 20:28:42 +0000 | [diff] [blame] | 10065 | PICOXCELL SUPPORT |
| 10066 | M: Jamie Iles <jamie@jamieiles.com> |
| 10067 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 10068 | T: git git://github.com/jamieiles/linux-2.6-ji.git |
| 10069 | S: Supported |
Joe Perches | b873398 | 2014-08-08 14:25:12 -0700 | [diff] [blame] | 10070 | F: arch/arm/boot/dts/picoxcell* |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 10071 | F: arch/arm/mach-picoxcell/ |
Joe Perches | b873398 | 2014-08-08 14:25:12 -0700 | [diff] [blame] | 10072 | F: drivers/crypto/picoxcell* |
Jamie Iles | a53bfa0 | 2011-12-12 20:28:42 +0000 | [diff] [blame] | 10073 | |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 10074 | PIN CONTROL SUBSYSTEM |
| 10075 | M: Linus Walleij <linus.walleij@linaro.org> |
David Cohen | c11f042 | 2014-10-16 19:06:59 -0700 | [diff] [blame] | 10076 | L: linux-gpio@vger.kernel.org |
Linus Walleij | dbe752a | 2015-01-19 11:27:19 +0100 | [diff] [blame] | 10077 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 10078 | S: Maintained |
Geert Uytterhoeven | 9feeed9 | 2016-05-22 11:06:13 +0200 | [diff] [blame] | 10079 | F: Documentation/devicetree/bindings/pinctrl/ |
Andy Shevchenko | fefb624 | 2016-06-21 01:52:36 +0300 | [diff] [blame] | 10080 | F: Documentation/pinctrl.txt |
Stephen Warren | 07f29ba | 2011-12-08 15:16:19 -0700 | [diff] [blame] | 10081 | F: drivers/pinctrl/ |
Uwe Kleine-König | 8e406fe | 2012-07-30 18:38:34 +0200 | [diff] [blame] | 10082 | F: include/linux/pinctrl/ |
Linus Walleij | 2744e8a | 2011-05-02 20:50:54 +0200 | [diff] [blame] | 10083 | |
Jean-Christophe PLAGNIOL-VILLARD | 2201bbb | 2012-10-27 19:53:12 +0200 | [diff] [blame] | 10084 | PIN CONTROLLER - ATMEL AT91 |
| 10085 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
| 10086 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 10087 | S: Maintained |
Alexandre Belloni | c654b6b | 2014-10-17 11:49:40 +0200 | [diff] [blame] | 10088 | F: drivers/pinctrl/pinctrl-at91.* |
Jean-Christophe PLAGNIOL-VILLARD | 2201bbb | 2012-10-27 19:53:12 +0200 | [diff] [blame] | 10089 | |
Ludovic Desroches | 33d3690 | 2015-09-16 17:36:59 +0200 | [diff] [blame] | 10090 | PIN CONTROLLER - ATMEL AT91 PIO4 |
Ludovic Desroches | 420a387 | 2017-01-27 14:33:44 +0100 | [diff] [blame] | 10091 | M: Ludovic Desroches <ludovic.desroches@microchip.com> |
Ludovic Desroches | 33d3690 | 2015-09-16 17:36:59 +0200 | [diff] [blame] | 10092 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 10093 | L: linux-gpio@vger.kernel.org |
| 10094 | S: Supported |
| 10095 | F: drivers/pinctrl/pinctrl-at91-pio4.* |
| 10096 | |
Mika Westerberg | cbd1b65 | 2014-10-24 15:16:53 +0300 | [diff] [blame] | 10097 | PIN CONTROLLER - INTEL |
| 10098 | M: Mika Westerberg <mika.westerberg@linux.intel.com> |
| 10099 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> |
| 10100 | S: Maintained |
| 10101 | F: drivers/pinctrl/intel/ |
Viresh Kumar | deda828 | 2012-03-28 22:27:07 +0530 | [diff] [blame] | 10102 | |
Laurent Pinchart | 9963b53 | 2014-07-02 16:33:31 +0200 | [diff] [blame] | 10103 | PIN CONTROLLER - RENESAS |
| 10104 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
Geert Uytterhoeven | 1a4ca6d | 2015-12-16 08:47:11 +0100 | [diff] [blame] | 10105 | M: Geert Uytterhoeven <geert+renesas@glider.be> |
Simon Horman | 4a12109 | 2016-01-18 10:04:33 +0900 | [diff] [blame] | 10106 | L: linux-renesas-soc@vger.kernel.org |
Laurent Pinchart | 9963b53 | 2014-07-02 16:33:31 +0200 | [diff] [blame] | 10107 | S: Maintained |
| 10108 | F: drivers/pinctrl/sh-pfc/ |
| 10109 | |
Doug Anderson | b75e60d | 2013-06-16 15:17:46 -0700 | [diff] [blame] | 10110 | PIN CONTROLLER - SAMSUNG |
Tomasz Figa | fea685e | 2014-08-26 16:30:53 +0200 | [diff] [blame] | 10111 | M: Tomasz Figa <tomasz.figa@gmail.com> |
Krzysztof Kozlowski | 326dce0 | 2016-08-16 18:50:42 +0200 | [diff] [blame] | 10112 | M: Krzysztof Kozlowski <krzk@kernel.org> |
Krzysztof Kozlowski | 44b03c1 | 2016-03-16 09:02:01 +0900 | [diff] [blame] | 10113 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
Doug Anderson | b75e60d | 2013-06-16 15:17:46 -0700 | [diff] [blame] | 10114 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 10115 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
Krzysztof Kozlowski | 5fb7edb | 2017-03-20 18:48:51 +0200 | [diff] [blame] | 10116 | Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/ |
| 10117 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git |
Doug Anderson | b75e60d | 2013-06-16 15:17:46 -0700 | [diff] [blame] | 10118 | S: Maintained |
Sachin Kamat | 9b5b33f | 2014-07-11 14:29:50 +0530 | [diff] [blame] | 10119 | F: drivers/pinctrl/samsung/ |
Krzysztof Kozlowski | 5db7e3b | 2016-09-04 13:04:04 +0200 | [diff] [blame] | 10120 | F: include/dt-bindings/pinctrl/samsung.h |
| 10121 | F: Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt |
Doug Anderson | b75e60d | 2013-06-16 15:17:46 -0700 | [diff] [blame] | 10122 | |
Tony Lindgren | 13cbd90 | 2015-12-10 14:27:32 -0800 | [diff] [blame] | 10123 | PIN CONTROLLER - SINGLE |
| 10124 | M: Tony Lindgren <tony@atomide.com> |
| 10125 | M: Haojian Zhuang <haojian.zhuang@linaro.org> |
| 10126 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 10127 | L: linux-omap@vger.kernel.org |
| 10128 | S: Maintained |
| 10129 | F: drivers/pinctrl/pinctrl-single.c |
| 10130 | |
Viresh Kumar | deda828 | 2012-03-28 22:27:07 +0530 | [diff] [blame] | 10131 | PIN CONTROLLER - ST SPEAR |
Viresh Kumar | da89947 | 2015-07-17 16:23:50 -0700 | [diff] [blame] | 10132 | M: Viresh Kumar <vireshk@kernel.org> |
Viresh Kumar | deda828 | 2012-03-28 22:27:07 +0530 | [diff] [blame] | 10133 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 10134 | W: http://www.st.com/spear |
| 10135 | S: Maintained |
Uwe Kleine-König | 8e406fe | 2012-07-30 18:38:34 +0200 | [diff] [blame] | 10136 | F: drivers/pinctrl/spear/ |
Viresh Kumar | deda828 | 2012-03-28 22:27:07 +0530 | [diff] [blame] | 10137 | |
James Hartley | 11a1cf3 | 2016-07-07 16:00:21 +0100 | [diff] [blame] | 10138 | PISTACHIO SOC SUPPORT |
| 10139 | M: James Hartley <james.hartley@imgtec.com> |
| 10140 | M: Ionela Voinescu <ionela.voinescu@imgtec.com> |
| 10141 | L: linux-mips@linux-mips.org |
| 10142 | S: Maintained |
| 10143 | F: arch/mips/pistachio/ |
| 10144 | F: arch/mips/include/asm/mach-pistachio/ |
Rahul Bedarkar | d774a58 | 2016-10-14 11:25:54 +0530 | [diff] [blame] | 10145 | F: arch/mips/boot/dts/img/pistachio* |
James Hartley | 11a1cf3 | 2016-07-07 16:00:21 +0100 | [diff] [blame] | 10146 | F: arch/mips/configs/pistachio*_defconfig |
| 10147 | |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 10148 | PKTCDVD DRIVER |
Jens Axboe | 5a8b187 | 2016-11-21 09:33:17 -0700 | [diff] [blame] | 10149 | S: Orphan |
| 10150 | M: linux-block@vger.kernel.org |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10151 | F: drivers/block/pktcdvd.c |
| 10152 | F: include/linux/pktcdvd.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10153 | F: include/uapi/linux/pktcdvd.h |
Peter Osterlund | 249a677 | 2005-09-27 21:45:30 -0700 | [diff] [blame] | 10154 | |
GuanXuetao | b31d827 | 2011-01-16 00:35:49 +0800 | [diff] [blame] | 10155 | PKUNITY SOC DRIVERS |
| 10156 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> |
| 10157 | W: http://mprc.pku.edu.cn/~guanxuetao/linux |
| 10158 | S: Maintained |
Guan Xuetao | ceebf4d | 2014-05-27 07:53:10 +0800 | [diff] [blame] | 10159 | T: git git://github.com/gxt/linux.git |
GuanXuetao | b31d827 | 2011-01-16 00:35:49 +0800 | [diff] [blame] | 10160 | F: drivers/input/serio/i8042-unicore32io.h |
GuanXuetao | d10e4a6 | 2011-02-26 21:29:29 +0800 | [diff] [blame] | 10161 | F: drivers/i2c/busses/i2c-puv3.c |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 10162 | F: drivers/video/fbdev/fb-puv3.c |
Guan Xuetao | 2809e80 | 2011-05-26 16:43:27 +0800 | [diff] [blame] | 10163 | F: drivers/rtc/rtc-puv3.c |
GuanXuetao | b31d827 | 2011-01-16 00:35:49 +0800 | [diff] [blame] | 10164 | |
Guenter Roeck | 9d2ecfb | 2011-07-12 07:15:19 -0700 | [diff] [blame] | 10165 | PMBUS HARDWARE MONITORING DRIVERS |
Guenter Roeck | ca46208 | 2012-06-01 23:28:23 -0700 | [diff] [blame] | 10166 | M: Guenter Roeck <linux@roeck-us.net> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 10167 | L: linux-hwmon@vger.kernel.org |
| 10168 | W: http://hwmon.wiki.kernel.org/ |
Guenter Roeck | 9d2ecfb | 2011-07-12 07:15:19 -0700 | [diff] [blame] | 10169 | W: http://www.roeck-us.net/linux/drivers/ |
| 10170 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
| 10171 | S: Maintained |
| 10172 | F: Documentation/hwmon/pmbus |
| 10173 | F: drivers/hwmon/pmbus/ |
| 10174 | F: include/linux/i2c/pmbus.h |
| 10175 | |
Anil Ravindranath | 89a3681 | 2009-08-25 17:35:18 -0700 | [diff] [blame] | 10176 | PMC SIERRA MaxRAID DRIVER |
Anil Ravindranath | 89a3681 | 2009-08-25 17:35:18 -0700 | [diff] [blame] | 10177 | L: linux-scsi@vger.kernel.org |
| 10178 | W: http://www.pmc-sierra.com/ |
Joe Perches | 3cdea4d71 | 2015-09-09 15:36:14 -0700 | [diff] [blame] | 10179 | S: Orphan |
Anil Ravindranath | 89a3681 | 2009-08-25 17:35:18 -0700 | [diff] [blame] | 10180 | F: drivers/scsi/pmcraid.* |
| 10181 | |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 10182 | PMC SIERRA PM8001 DRIVER |
Jack Wang | d32477e | 2015-07-29 12:02:50 +0200 | [diff] [blame] | 10183 | M: Jack Wang <jinpu.wang@profitbricks.com> |
jack wang | dbf9bfe | 2009-10-14 16:19:21 +0800 | [diff] [blame] | 10184 | M: lindar_liu@usish.com |
| 10185 | L: linux-scsi@vger.kernel.org |
| 10186 | S: Supported |
| 10187 | F: drivers/scsi/pm8001/ |
| 10188 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10189 | POSIX CLOCKS and TIMERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10190 | M: Thomas Gleixner <tglx@linutronix.de> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 10191 | L: linux-kernel@vger.kernel.org |
Peter Zijlstra | 75fc2d3 | 2011-12-05 17:27:08 +0100 | [diff] [blame] | 10192 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
Thomas Gleixner | 5cee964 | 2014-06-22 12:06:40 +0200 | [diff] [blame] | 10193 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10194 | F: fs/timerfd.c |
| 10195 | F: include/linux/timer* |
Thomas Gleixner | 5cee964 | 2014-06-22 12:06:40 +0200 | [diff] [blame] | 10196 | F: kernel/time/*timer* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10197 | |
Rafael J. Wysocki | 7b06a6d | 2015-12-05 01:54:47 +0100 | [diff] [blame] | 10198 | POWER MANAGEMENT CORE |
| 10199 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
| 10200 | L: linux-pm@vger.kernel.org |
| 10201 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm |
Rafael J. Wysocki | 6865644 | 2016-11-25 00:13:56 +0100 | [diff] [blame] | 10202 | B: https://bugzilla.kernel.org |
Rafael J. Wysocki | 7b06a6d | 2015-12-05 01:54:47 +0100 | [diff] [blame] | 10203 | S: Supported |
| 10204 | F: drivers/base/power/ |
| 10205 | F: include/linux/pm.h |
| 10206 | F: include/linux/pm_* |
| 10207 | F: include/linux/powercap.h |
| 10208 | F: drivers/powercap/ |
| 10209 | |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 10210 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
Sebastian Reichel | ad8464a | 2014-07-16 20:14:30 +0200 | [diff] [blame] | 10211 | M: Sebastian Reichel <sre@kernel.org> |
Sebastian Reichel | ad8464a | 2014-07-16 20:14:30 +0200 | [diff] [blame] | 10212 | L: linux-pm@vger.kernel.org |
Sebastian Reichel | 58db950 | 2016-08-17 14:23:05 +0200 | [diff] [blame] | 10213 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 10214 | S: Maintained |
Sebastian Reichel | f333253 | 2016-06-17 14:12:47 +0200 | [diff] [blame] | 10215 | F: Documentation/devicetree/bindings/power/supply/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10216 | F: include/linux/power_supply.h |
Sebastian Reichel | 8c0984e | 2016-06-17 13:54:32 +0200 | [diff] [blame] | 10217 | F: drivers/power/supply/ |
Anton Vorontsov | 3be8614 | 2007-07-15 04:43:36 +0400 | [diff] [blame] | 10218 | |
Mark Rutland | 514f161 | 2015-07-31 15:46:20 +0100 | [diff] [blame] | 10219 | POWER STATE COORDINATION INTERFACE (PSCI) |
| 10220 | M: Mark Rutland <mark.rutland@arm.com> |
| 10221 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
| 10222 | L: linux-arm-kernel@lists.infradead.org |
| 10223 | S: Maintained |
Sudeep Holla | 32d53d1 | 2017-01-03 12:32:48 +0000 | [diff] [blame] | 10224 | F: drivers/firmware/psci*.c |
Mark Rutland | 514f161 | 2015-07-31 15:46:20 +0100 | [diff] [blame] | 10225 | F: include/linux/psci.h |
| 10226 | F: include/uapi/linux/psci.h |
| 10227 | |
Suraj Jitindar Singh | 43a1dd9 | 2016-06-29 13:38:39 +1000 | [diff] [blame] | 10228 | POWERNV OPERATOR PANEL LCD DISPLAY DRIVER |
| 10229 | M: Suraj Jitindar Singh <sjitindarsingh@gmail.com> |
| 10230 | L: linuxppc-dev@lists.ozlabs.org |
| 10231 | S: Maintained |
| 10232 | F: drivers/char/powernv-op-panel.c |
| 10233 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10234 | PNP SUPPORT |
Joe Perches | 9c3646d | 2015-06-25 15:02:00 -0700 | [diff] [blame] | 10235 | M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10236 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10237 | F: drivers/pnp/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10238 | |
| 10239 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10240 | M: Paul Mackerras <paulus@samba.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10241 | L: linux-ppp@vger.kernel.org |
| 10242 | S: Maintained |
Jeff Kirsher | 224cf5a | 2011-07-31 02:38:19 -0700 | [diff] [blame] | 10243 | F: drivers/net/ppp/ppp_* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10244 | |
| 10245 | PPP OVER ATM (RFC 2364) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10246 | M: Mitchell Blank Jr <mitch@sfgoth.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10247 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10248 | F: net/atm/pppoatm.c |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10249 | F: include/uapi/linux/atmppp.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10250 | |
| 10251 | PPP OVER ETHERNET |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10252 | M: Michal Ostrowski <mostrows@earthlink.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10253 | S: Maintained |
Jeff Kirsher | 224cf5a | 2011-07-31 02:38:19 -0700 | [diff] [blame] | 10254 | F: drivers/net/ppp/pppoe.c |
| 10255 | F: drivers/net/ppp/pppox.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10256 | |
James Chapman | a6d2370 | 2007-06-27 15:53:17 -0700 | [diff] [blame] | 10257 | PPP OVER L2TP |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10258 | M: James Chapman <jchapman@katalix.com> |
James Chapman | a6d2370 | 2007-06-27 15:53:17 -0700 | [diff] [blame] | 10259 | S: Maintained |
Joe Perches | 90ca28d | 2010-08-09 17:20:40 -0700 | [diff] [blame] | 10260 | F: net/l2tp/l2tp_ppp.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10261 | F: include/linux/if_pppol2tp.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10262 | F: include/uapi/linux/if_pppol2tp.h |
James Chapman | a6d2370 | 2007-06-27 15:53:17 -0700 | [diff] [blame] | 10263 | |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 10264 | PPS SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10265 | M: Rodolfo Giometti <giometti@enneenne.com> |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 10266 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
| 10267 | L: linuxpps@ml.enneenne.com (subscribers-only) |
| 10268 | S: Maintained |
Joe Perches | cabaaf4 | 2009-07-29 15:04:24 -0700 | [diff] [blame] | 10269 | F: Documentation/pps/ |
| 10270 | F: drivers/pps/ |
| 10271 | F: include/linux/pps*.h |
Rodolfo Giometti | eae9d2b | 2009-06-17 16:28:37 -0700 | [diff] [blame] | 10272 | |
Harry Wei | 71a6d0a | 2011-05-11 15:13:33 -0700 | [diff] [blame] | 10273 | PPTP DRIVER |
| 10274 | M: Dmitry Kozlov <xeb@mail.ru> |
| 10275 | L: netdev@vger.kernel.org |
| 10276 | S: Maintained |
Jeff Kirsher | 224cf5a | 2011-07-31 02:38:19 -0700 | [diff] [blame] | 10277 | F: drivers/net/ppp/pptp.c |
Harry Wei | 71a6d0a | 2011-05-11 15:13:33 -0700 | [diff] [blame] | 10278 | W: http://sourceforge.net/projects/accel-pptp |
| 10279 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10280 | PREEMPTIBLE KERNEL |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10281 | M: Robert Love <rml@tech9.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10282 | L: kpreempt-tech@lists.sourceforge.net |
SeongJae Park | 4f6cce3 | 2017-03-27 21:44:06 +0900 | [diff] [blame] | 10283 | W: https://www.kernel.org/pub/linux/kernel/people/rml/preempt-kernel |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10284 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10285 | F: Documentation/preempt-locking.txt |
| 10286 | F: include/linux/preempt.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10287 | |
Petr Mladek | 548cf34 | 2016-12-15 11:47:58 +0100 | [diff] [blame] | 10288 | PRINTK |
| 10289 | M: Petr Mladek <pmladek@suse.com> |
| 10290 | M: Sergey Senozhatsky <sergey.senozhatsky@gmail.com> |
| 10291 | R: Steven Rostedt <rostedt@goodmis.org> |
| 10292 | S: Maintained |
| 10293 | F: kernel/printk/ |
| 10294 | F: include/linux/printk.h |
| 10295 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10296 | PRISM54 WIRELESS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10297 | M: "Luis R. Rodriguez" <mcgrof@gmail.com> |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 10298 | L: linux-wireless@vger.kernel.org |
John W. Linville | 9ef8080 | 2010-08-27 09:44:12 -0400 | [diff] [blame] | 10299 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
John W. Linville | 1d89cae | 2010-07-22 14:25:40 -0400 | [diff] [blame] | 10300 | S: Obsolete |
Kalle Valo | c12edfe | 2015-11-18 09:56:45 +0200 | [diff] [blame] | 10301 | F: drivers/net/wireless/intersil/prism54/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10302 | |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 10303 | PS3 NETWORK SUPPORT |
Geoff Levand | b809b9c | 2010-04-15 09:11:34 +0000 | [diff] [blame] | 10304 | M: Geoff Levand <geoff@infradead.org> |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 10305 | L: netdev@vger.kernel.org |
Michael Ellerman | a14ab6b | 2015-05-01 13:20:25 +1000 | [diff] [blame] | 10306 | L: linuxppc-dev@lists.ozlabs.org |
Geoff Levand | b809b9c | 2010-04-15 09:11:34 +0000 | [diff] [blame] | 10307 | S: Maintained |
Jeff Kirsher | 8df158a | 2011-07-30 00:36:02 -0700 | [diff] [blame] | 10308 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
Masakazu Mokuno | 02c1889 | 2007-07-05 20:11:16 +0900 | [diff] [blame] | 10309 | |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 10310 | PS3 PLATFORM SUPPORT |
Geoff Levand | b809b9c | 2010-04-15 09:11:34 +0000 | [diff] [blame] | 10311 | M: Geoff Levand <geoff@infradead.org> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 10312 | L: linuxppc-dev@lists.ozlabs.org |
Geoff Levand | b809b9c | 2010-04-15 09:11:34 +0000 | [diff] [blame] | 10313 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10314 | F: arch/powerpc/boot/ps3* |
| 10315 | F: arch/powerpc/include/asm/lv1call.h |
| 10316 | F: arch/powerpc/include/asm/ps3*.h |
| 10317 | F: arch/powerpc/platforms/ps3/ |
| 10318 | F: drivers/*/ps3* |
| 10319 | F: drivers/ps3/ |
Geoff Levand | fec629b | 2009-04-16 09:05:40 +0000 | [diff] [blame] | 10320 | F: drivers/rtc/rtc-ps3.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10321 | F: drivers/usb/host/*ps3.c |
Geoff Levand | fec629b | 2009-04-16 09:05:40 +0000 | [diff] [blame] | 10322 | F: sound/ppc/snd_ps3* |
Geoff Levand | f58a9d1 | 2006-11-23 00:46:51 +0100 | [diff] [blame] | 10323 | |
Jim Paris | cffb4add | 2009-01-06 11:32:10 +0000 | [diff] [blame] | 10324 | PS3VRAM DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10325 | M: Jim Paris <jim@jtan.com> |
Geoff Levand | 3715a5d | 2015-06-10 18:00:18 +0000 | [diff] [blame] | 10326 | M: Geoff Levand <geoff@infradead.org> |
Michael Ellerman | a14ab6b | 2015-05-01 13:20:25 +1000 | [diff] [blame] | 10327 | L: linuxppc-dev@lists.ozlabs.org |
Jim Paris | cffb4add | 2009-01-06 11:32:10 +0000 | [diff] [blame] | 10328 | S: Maintained |
Joe Perches | 8a3977c | 2010-08-09 17:20:49 -0700 | [diff] [blame] | 10329 | F: drivers/block/ps3vram.c |
Jim Paris | cffb4add | 2009-01-06 11:32:10 +0000 | [diff] [blame] | 10330 | |
Yotam Gigi | 6ae0a62 | 2017-01-23 11:07:08 +0100 | [diff] [blame] | 10331 | PSAMPLE PACKET SAMPLING SUPPORT: |
| 10332 | M: Yotam Gigi <yotamg@mellanox.com> |
| 10333 | S: Maintained |
| 10334 | F: net/psample |
| 10335 | F: include/net/psample.h |
| 10336 | F: include/uapi/linux/psample.h |
| 10337 | |
Anton Vorontsov | 8defe59 | 2012-08-03 18:07:20 -0700 | [diff] [blame] | 10338 | PSTORE FILESYSTEM |
Kees Cook | fc1b326 | 2017-02-10 10:19:07 -0800 | [diff] [blame] | 10339 | M: Kees Cook <keescook@chromium.org> |
Anton Vorontsov | 9d5e2a0 | 2013-06-09 09:41:23 -0700 | [diff] [blame] | 10340 | M: Anton Vorontsov <anton@enomsg.org> |
Anton Vorontsov | 8defe59 | 2012-08-03 18:07:20 -0700 | [diff] [blame] | 10341 | M: Colin Cross <ccross@android.com> |
Anton Vorontsov | 8defe59 | 2012-08-03 18:07:20 -0700 | [diff] [blame] | 10342 | M: Tony Luck <tony.luck@intel.com> |
| 10343 | S: Maintained |
Kees Cook | fc1b326 | 2017-02-10 10:19:07 -0800 | [diff] [blame] | 10344 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore |
Anton Vorontsov | 8defe59 | 2012-08-03 18:07:20 -0700 | [diff] [blame] | 10345 | F: fs/pstore/ |
| 10346 | F: include/linux/pstore* |
Matt Fleming | 0485177 | 2013-02-08 15:48:51 +0000 | [diff] [blame] | 10347 | F: drivers/firmware/efi/efi-pstore.c |
Anton Vorontsov | 8defe59 | 2012-08-03 18:07:20 -0700 | [diff] [blame] | 10348 | F: drivers/acpi/apei/erst.c |
Kees Cook | fc1b326 | 2017-02-10 10:19:07 -0800 | [diff] [blame] | 10349 | F: Documentation/admin-guide/ramoops.rst |
| 10350 | F: Documentation/devicetree/bindings/reserved-memory/ramoops.txt |
| 10351 | K: \b(pstore|ramoops) |
Anton Vorontsov | 8defe59 | 2012-08-03 18:07:20 -0700 | [diff] [blame] | 10352 | |
Richard Cochran | 7fbc415 | 2012-03-10 01:55:53 +0000 | [diff] [blame] | 10353 | PTP HARDWARE CLOCK SUPPORT |
| 10354 | M: Richard Cochran <richardcochran@gmail.com> |
Jiri Benc | e7333e3 | 2013-03-26 04:01:12 +0000 | [diff] [blame] | 10355 | L: netdev@vger.kernel.org |
Richard Cochran | 7fbc415 | 2012-03-10 01:55:53 +0000 | [diff] [blame] | 10356 | S: Maintained |
| 10357 | W: http://linuxptp.sourceforge.net/ |
| 10358 | F: Documentation/ABI/testing/sysfs-ptp |
| 10359 | F: Documentation/ptp/* |
Joe Perches | 0ecb3cd | 2012-10-04 17:12:37 -0700 | [diff] [blame] | 10360 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
Richard Cochran | 7fbc415 | 2012-03-10 01:55:53 +0000 | [diff] [blame] | 10361 | F: drivers/net/phy/dp83640* |
| 10362 | F: drivers/ptp/* |
| 10363 | F: include/linux/ptp_cl* |
| 10364 | |
Christoph Hellwig | cf94a4d | 2009-04-30 15:08:12 -0700 | [diff] [blame] | 10365 | PTRACE SUPPORT |
Richard Weinberger | e846ee5 | 2014-08-08 14:23:46 -0700 | [diff] [blame] | 10366 | M: Roland McGrath <roland@hack.frob.com> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10367 | M: Oleg Nesterov <oleg@redhat.com> |
Christoph Hellwig | cf94a4d | 2009-04-30 15:08:12 -0700 | [diff] [blame] | 10368 | S: Maintained |
| 10369 | F: include/asm-generic/syscall.h |
| 10370 | F: include/linux/ptrace.h |
| 10371 | F: include/linux/regset.h |
| 10372 | F: include/linux/tracehook.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10373 | F: include/uapi/linux/ptrace.h |
Christoph Hellwig | cf94a4d | 2009-04-30 15:08:12 -0700 | [diff] [blame] | 10374 | F: kernel/ptrace.c |
| 10375 | |
Hans Verkuil | 3e9d7ba | 2016-07-10 07:13:34 -0300 | [diff] [blame] | 10376 | PULSE8-CEC DRIVER |
| 10377 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 10378 | L: linux-media@vger.kernel.org |
| 10379 | T: git git://linuxtv.org/media_tree.git |
| 10380 | S: Maintained |
Hans Verkuil | 104eda6 | 2016-11-02 08:47:16 -0200 | [diff] [blame] | 10381 | F: drivers/media/usb/pulse8-cec/* |
Hans Verkuil | 3e9d7ba | 2016-07-10 07:13:34 -0300 | [diff] [blame] | 10382 | |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 10383 | PVRUSB2 VIDEO4LINUX DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10384 | M: Mike Isely <isely@pobox.com> |
Mike Isely | 16e9495 | 2007-01-03 18:08:06 -0300 | [diff] [blame] | 10385 | L: pvrusb2@isely.net (subscribers-only) |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 10386 | L: linux-media@vger.kernel.org |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 10387 | W: http://www.isely.net/pvrusb2/ |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 10388 | T: git git://linuxtv.org/media_tree.git |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 10389 | S: Maintained |
Mauro Carvalho Chehab | 618cd93 | 2016-09-12 12:48:54 -0300 | [diff] [blame] | 10390 | F: Documentation/media/v4l-drivers/pvrusb2* |
Mauro Carvalho Chehab | 0c0d06c | 2012-08-14 00:13:22 -0300 | [diff] [blame] | 10391 | F: drivers/media/usb/pvrusb2/ |
Michael Krufky | 8320204 | 2006-07-03 00:24:18 -0700 | [diff] [blame] | 10392 | |
Hans de Goede | 39532e6 | 2012-11-04 17:05:59 -0300 | [diff] [blame] | 10393 | PWC WEBCAM DRIVER |
Hans Verkuil | c0936df | 2016-07-04 10:18:10 -0300 | [diff] [blame] | 10394 | M: Hans Verkuil <hverkuil@xs4all.nl> |
Hans de Goede | 39532e6 | 2012-11-04 17:05:59 -0300 | [diff] [blame] | 10395 | L: linux-media@vger.kernel.org |
| 10396 | T: git git://linuxtv.org/media_tree.git |
Hans Verkuil | c0936df | 2016-07-04 10:18:10 -0300 | [diff] [blame] | 10397 | S: Odd Fixes |
Hans de Goede | 39532e6 | 2012-11-04 17:05:59 -0300 | [diff] [blame] | 10398 | F: drivers/media/usb/pwc/* |
| 10399 | |
Kamil Debski | 93c090b | 2014-08-20 11:29:23 +0200 | [diff] [blame] | 10400 | PWM FAN DRIVER |
Kamil Debski | 774e036 | 2016-08-03 13:46:18 -0700 | [diff] [blame] | 10401 | M: Kamil Debski <kamil@wypas.org> |
Lukasz Majewski | 0faf7dd | 2016-12-12 16:09:45 +0100 | [diff] [blame] | 10402 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 10403 | L: linux-hwmon@vger.kernel.org |
Kamil Debski | 93c090b | 2014-08-20 11:29:23 +0200 | [diff] [blame] | 10404 | S: Supported |
| 10405 | F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt |
| 10406 | F: Documentation/hwmon/pwm-fan |
| 10407 | F: drivers/hwmon/pwm-fan.c |
| 10408 | |
Thierry Reding | 200efed | 2012-03-27 13:16:18 +0200 | [diff] [blame] | 10409 | PWM SUBSYSTEM |
Thierry Reding | aa3495f | 2013-05-06 12:50:36 +0200 | [diff] [blame] | 10410 | M: Thierry Reding <thierry.reding@gmail.com> |
| 10411 | L: linux-pwm@vger.kernel.org |
Sascha Hauer | 0c2498f | 2011-01-28 09:40:40 +0100 | [diff] [blame] | 10412 | S: Maintained |
Thierry Reding | 006e854 | 2013-11-01 11:15:05 +0100 | [diff] [blame] | 10413 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git |
Thierry Reding | 200efed | 2012-03-27 13:16:18 +0200 | [diff] [blame] | 10414 | F: Documentation/pwm.txt |
| 10415 | F: Documentation/devicetree/bindings/pwm/ |
| 10416 | F: include/linux/pwm.h |
Sascha Hauer | 0c2498f | 2011-01-28 09:40:40 +0100 | [diff] [blame] | 10417 | F: drivers/pwm/ |
Thierry Reding | a140b98 | 2012-09-24 17:17:30 -0700 | [diff] [blame] | 10418 | F: drivers/video/backlight/pwm_bl.c |
| 10419 | F: include/linux/pwm_backlight.h |
Andrew Lunn | 757642f | 2017-04-14 17:40:52 +0200 | [diff] [blame] | 10420 | F: drivers/gpio/gpio-mvebu.c |
| 10421 | F: Documentation/devicetree/bindings/gpio/gpio-mvebu.txt |
Sascha Hauer | 0c2498f | 2011-01-28 09:40:40 +0100 | [diff] [blame] | 10422 | |
Eric Miao | 30ec261 | 2008-06-12 15:21:41 -0700 | [diff] [blame] | 10423 | PXA2xx/PXA3xx SUPPORT |
Robert Jarzmik | 8da5e30 | 2014-09-24 23:08:00 +0200 | [diff] [blame] | 10424 | M: Daniel Mack <daniel@zonque.org> |
Haojian Zhuang | a323f66 | 2012-03-14 18:33:07 +0800 | [diff] [blame] | 10425 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
Robert Jarzmik | 8da5e30 | 2014-09-24 23:08:00 +0200 | [diff] [blame] | 10426 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 10427 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Haojian Zhuang | 3f640c6 | 2011-12-09 09:58:41 +0800 | [diff] [blame] | 10428 | T: git git://github.com/hzhuang1/linux.git |
Robert Jarzmik | 8da5e30 | 2014-09-24 23:08:00 +0200 | [diff] [blame] | 10429 | T: git git://github.com/rjarzmik/linux.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10430 | S: Maintained |
Rob Herring | e68d7c1 | 2015-12-10 17:38:23 -0600 | [diff] [blame] | 10431 | F: arch/arm/boot/dts/pxa* |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10432 | F: arch/arm/mach-pxa/ |
Robert Jarzmik | 820439f | 2015-05-25 23:29:19 +0200 | [diff] [blame] | 10433 | F: drivers/dma/pxa* |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10434 | F: drivers/pcmcia/pxa2xx* |
Robert Jarzmik | 1403ead | 2015-11-21 19:04:48 +0100 | [diff] [blame] | 10435 | F: drivers/pinctrl/pxa/ |
Joe Perches | 9df92e6 | 2012-01-10 15:09:06 -0800 | [diff] [blame] | 10436 | F: drivers/spi/spi-pxa2xx* |
Joe Perches | faf2e1d | 2014-08-08 14:26:18 -0700 | [diff] [blame] | 10437 | F: drivers/usb/gadget/udc/pxa2* |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10438 | F: include/sound/pxa2xx-lib.h |
Mark Brown | bec4c99 | 2009-05-06 10:36:34 +0100 | [diff] [blame] | 10439 | F: sound/arm/pxa* |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 10440 | F: sound/soc/pxa/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10441 | |
Robert Jarzmik | f3154a4 | 2015-12-18 22:41:34 +0100 | [diff] [blame] | 10442 | PXA GPIO DRIVER |
| 10443 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
| 10444 | L: linux-gpio@vger.kernel.org |
| 10445 | S: Maintained |
| 10446 | F: drivers/gpio/gpio-pxa.c |
| 10447 | |
Ezequiel Garcia | ec64d3b | 2013-12-04 15:28:46 -0800 | [diff] [blame] | 10448 | PXA3xx NAND FLASH DRIVER |
| 10449 | M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> |
| 10450 | L: linux-mtd@lists.infradead.org |
| 10451 | S: Maintained |
Joe Perches | 9a67f09 | 2014-08-08 14:25:10 -0700 | [diff] [blame] | 10452 | F: drivers/mtd/nand/pxa3xx_nand.c |
Ezequiel Garcia | ec64d3b | 2013-12-04 15:28:46 -0800 | [diff] [blame] | 10453 | |
Haojian Zhuang | 3f640c6 | 2011-12-09 09:58:41 +0800 | [diff] [blame] | 10454 | MMP SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10455 | M: Eric Miao <eric.y.miao@gmail.com> |
Haojian Zhuang | a323f66 | 2012-03-14 18:33:07 +0800 | [diff] [blame] | 10456 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
Eric Miao | e8e6cb3 | 2010-01-05 15:28:26 +0800 | [diff] [blame] | 10457 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Haojian Zhuang | 3f640c6 | 2011-12-09 09:58:41 +0800 | [diff] [blame] | 10458 | T: git git://github.com/hzhuang1/linux.git |
| 10459 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git |
Eric Miao | e8e6cb3 | 2010-01-05 15:28:26 +0800 | [diff] [blame] | 10460 | S: Maintained |
Rob Herring | e68d7c1 | 2015-12-10 17:38:23 -0600 | [diff] [blame] | 10461 | F: arch/arm/boot/dts/mmp* |
Haojian Zhuang | 3f640c6 | 2011-12-09 09:58:41 +0800 | [diff] [blame] | 10462 | F: arch/arm/mach-mmp/ |
Eric Miao | e8e6cb3 | 2010-01-05 15:28:26 +0800 | [diff] [blame] | 10463 | |
Pierre Ossman | 272f133 | 2007-05-14 21:25:26 +0200 | [diff] [blame] | 10464 | PXA MMCI DRIVER |
| 10465 | S: Orphan |
| 10466 | |
Robert Jarzmik | 57f63bc | 2009-02-11 13:04:19 -0800 | [diff] [blame] | 10467 | PXA RTC DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10468 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
Robert Jarzmik | 57f63bc | 2009-02-11 13:04:19 -0800 | [diff] [blame] | 10469 | L: rtc-linux@googlegroups.com |
| 10470 | S: Maintained |
| 10471 | |
Tadeusz Struk | cea4001 | 2014-06-05 13:44:39 -0700 | [diff] [blame] | 10472 | QAT DRIVER |
Tadeusz Struk | 90ab5a8 | 2016-06-24 07:01:33 -0700 | [diff] [blame] | 10473 | M: Giovanni Cabiddu <giovanni.cabiddu@intel.com> |
| 10474 | M: Salvatore Benedetto <salvatore.benedetto@intel.com> |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 10475 | L: qat-linux@intel.com |
| 10476 | S: Supported |
| 10477 | F: drivers/crypto/qat/ |
Tadeusz Struk | cea4001 | 2014-06-05 13:44:39 -0700 | [diff] [blame] | 10478 | |
Mike Marciniszyn | 52a09a0 | 2011-07-13 09:19:10 -0700 | [diff] [blame] | 10479 | QIB DRIVER |
Mike Marciniszyn | 8473c60 | 2012-05-10 09:25:20 -0400 | [diff] [blame] | 10480 | M: Mike Marciniszyn <infinipath@intel.com> |
Mike Marciniszyn | 52a09a0 | 2011-07-13 09:19:10 -0700 | [diff] [blame] | 10481 | L: linux-rdma@vger.kernel.org |
| 10482 | S: Supported |
| 10483 | F: drivers/infiniband/hw/qib/ |
| 10484 | |
Jes Sorensen | 5e9772b | 2010-06-30 15:37:38 +0200 | [diff] [blame] | 10485 | QLOGIC QLA1280 SCSI DRIVER |
| 10486 | M: Michael Reed <mdr@sgi.com> |
| 10487 | L: linux-scsi@vger.kernel.org |
| 10488 | S: Maintained |
| 10489 | F: drivers/scsi/qla1280.[ch] |
| 10490 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10491 | QLOGIC QLA2XXX FC-SCSI DRIVER |
Saurav Kashyap | 2c804eb | 2013-10-30 03:38:28 -0400 | [diff] [blame] | 10492 | M: qla2xxx-upstream@qlogic.com |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10493 | L: linux-scsi@vger.kernel.org |
| 10494 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10495 | F: Documentation/scsi/LICENSE.qla2xxx |
| 10496 | F: drivers/scsi/qla2xxx/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10497 | |
Ravi Anand | 883c98f | 2010-04-28 11:45:49 +0530 | [diff] [blame] | 10498 | QLOGIC QLA4XXX iSCSI DRIVER |
Nilesh Javali | 1018b8b | 2015-01-07 00:49:23 -0500 | [diff] [blame] | 10499 | M: QLogic-Storage-Upstream@qlogic.com |
Ravi Anand | 883c98f | 2010-04-28 11:45:49 +0530 | [diff] [blame] | 10500 | L: linux-scsi@vger.kernel.org |
| 10501 | S: Supported |
Vikas Chaudhary | bacfb81 | 2013-07-11 02:09:43 -0400 | [diff] [blame] | 10502 | F: Documentation/scsi/LICENSE.qla4xxx |
Ravi Anand | 883c98f | 2010-04-28 11:45:49 +0530 | [diff] [blame] | 10503 | F: drivers/scsi/qla4xxx/ |
| 10504 | |
Ron Mercer | 5a4faa87 | 2006-07-25 00:40:21 -0700 | [diff] [blame] | 10505 | QLOGIC QLA3XXX NETWORK DRIVER |
Mintz, Yuval | 67f0160 | 2016-10-24 08:48:09 +0300 | [diff] [blame] | 10506 | M: Dept-GELinuxNICDev@cavium.com |
Ron Mercer | 5a4faa87 | 2006-07-25 00:40:21 -0700 | [diff] [blame] | 10507 | L: netdev@vger.kernel.org |
| 10508 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10509 | F: Documentation/networking/LICENSE.qla3xxx |
Jeff Kirsher | aa43c21 | 2011-04-08 19:06:30 -0700 | [diff] [blame] | 10510 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
Ron Mercer | 5a4faa87 | 2006-07-25 00:40:21 -0700 | [diff] [blame] | 10511 | |
Amit Kumar Salecha | 0ec00f0 | 2010-01-13 00:37:26 +0000 | [diff] [blame] | 10512 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
Mintz, Yuval | 67f0160 | 2016-10-24 08:48:09 +0300 | [diff] [blame] | 10513 | M: Harish Patil <harish.patil@cavium.com> |
| 10514 | M: Manish Chopra <manish.chopra@cavium.com> |
| 10515 | M: Dept-GELinuxNICDev@cavium.com |
Amit Kumar Salecha | 0ec00f0 | 2010-01-13 00:37:26 +0000 | [diff] [blame] | 10516 | L: netdev@vger.kernel.org |
| 10517 | S: Supported |
Jeff Kirsher | aa43c21 | 2011-04-08 19:06:30 -0700 | [diff] [blame] | 10518 | F: drivers/net/ethernet/qlogic/qlcnic/ |
Amit Kumar Salecha | 0ec00f0 | 2010-01-13 00:37:26 +0000 | [diff] [blame] | 10519 | |
Ron Mercer | c4e84bd | 2008-09-18 11:56:28 -0400 | [diff] [blame] | 10520 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
Mintz, Yuval | 67f0160 | 2016-10-24 08:48:09 +0300 | [diff] [blame] | 10521 | M: Harish Patil <harish.patil@cavium.com> |
| 10522 | M: Manish Chopra <manish.chopra@cavium.com> |
| 10523 | M: Dept-GELinuxNICDev@cavium.com |
Ron Mercer | c4e84bd | 2008-09-18 11:56:28 -0400 | [diff] [blame] | 10524 | L: netdev@vger.kernel.org |
| 10525 | S: Supported |
Jeff Kirsher | aa43c21 | 2011-04-08 19:06:30 -0700 | [diff] [blame] | 10526 | F: drivers/net/ethernet/qlogic/qlge/ |
Ron Mercer | c4e84bd | 2008-09-18 11:56:28 -0400 | [diff] [blame] | 10527 | |
Yuval Mintz | fe56b9e | 2015-10-26 11:02:25 +0200 | [diff] [blame] | 10528 | QLOGIC QL4xxx ETHERNET DRIVER |
Mintz, Yuval | 67f0160 | 2016-10-24 08:48:09 +0300 | [diff] [blame] | 10529 | M: Yuval Mintz <Yuval.Mintz@cavium.com> |
| 10530 | M: Ariel Elior <Ariel.Elior@cavium.com> |
| 10531 | M: everest-linux-l2@cavium.com |
Yuval Mintz | fe56b9e | 2015-10-26 11:02:25 +0200 | [diff] [blame] | 10532 | L: netdev@vger.kernel.org |
| 10533 | S: Supported |
| 10534 | F: drivers/net/ethernet/qlogic/qed/ |
| 10535 | F: include/linux/qed/ |
| 10536 | F: drivers/net/ethernet/qlogic/qede/ |
| 10537 | |
Manish Rangankar | ace7f46 | 2016-12-01 00:21:08 -0800 | [diff] [blame] | 10538 | QLOGIC QL41xxx ISCSI DRIVER |
| 10539 | M: QLogic-Storage-Upstream@cavium.com |
| 10540 | L: linux-scsi@vger.kernel.org |
| 10541 | S: Supported |
| 10542 | F: drivers/scsi/qedi/ |
| 10543 | |
Dupuis, Chad | 61d8658 | 2017-02-15 06:28:23 -0800 | [diff] [blame] | 10544 | QLOGIC QL41xxx FCOE DRIVER |
| 10545 | M: QLogic-Storage-Upstream@cavium.com |
| 10546 | L: linux-scsi@vger.kernel.org |
| 10547 | S: Supported |
| 10548 | F: drivers/scsi/qedf/ |
| 10549 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10550 | QNX4 FILESYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10551 | M: Anders Larsen <al@alarsen.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10552 | W: http://www.alarsen.net/linux/qnx4fs/ |
| 10553 | S: Maintained |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 10554 | F: fs/qnx4/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10555 | F: include/uapi/linux/qnx4_fs.h |
| 10556 | F: include/uapi/linux/qnxtypes.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10557 | |
Stuart Yoder | d8b9756 | 2016-10-26 11:20:23 -0500 | [diff] [blame] | 10558 | QORIQ DPAA2 FSL-MC BUS DRIVER |
Stuart Yoder | f40c60d | 2017-02-09 08:32:31 -0600 | [diff] [blame] | 10559 | M: Stuart Yoder <stuyoder@gmail.com> |
| 10560 | M: Laurentiu Tudor <laurentiu.tudor@nxp.com> |
Stuart Yoder | d8b9756 | 2016-10-26 11:20:23 -0500 | [diff] [blame] | 10561 | L: linux-kernel@vger.kernel.org |
| 10562 | S: Maintained |
| 10563 | F: drivers/staging/fsl-mc/ |
| 10564 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 10565 | QT1010 MEDIA DRIVER |
| 10566 | M: Antti Palosaari <crope@iki.fi> |
| 10567 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 10568 | W: https://linuxtv.org |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 10569 | W: http://palosaari.fi/linux/ |
| 10570 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 10571 | T: git git://linuxtv.org/anttip/media_tree.git |
| 10572 | S: Maintained |
| 10573 | F: drivers/media/tuners/qt1010* |
| 10574 | |
Sujith Manoharan | 966fb5e | 2013-11-06 10:43:27 +0530 | [diff] [blame] | 10575 | QUALCOMM ATHEROS ATH9K WIRELESS DRIVER |
| 10576 | M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com> |
| 10577 | L: linux-wireless@vger.kernel.org |
Sujith Manoharan | 966fb5e | 2013-11-06 10:43:27 +0530 | [diff] [blame] | 10578 | W: http://wireless.kernel.org/en/users/Drivers/ath9k |
| 10579 | S: Supported |
| 10580 | F: drivers/net/wireless/ath/ath9k/ |
| 10581 | |
Kalle Valo | 2ea0ffc | 2013-07-22 12:22:19 +0300 | [diff] [blame] | 10582 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
| 10583 | M: Kalle Valo <kvalo@qca.qualcomm.com> |
| 10584 | L: ath10k@lists.infradead.org |
| 10585 | W: http://wireless.kernel.org/en/users/Drivers/ath10k |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 10586 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git |
Kalle Valo | 2ea0ffc | 2013-07-22 12:22:19 +0300 | [diff] [blame] | 10587 | S: Supported |
| 10588 | F: drivers/net/wireless/ath/ath10k/ |
| 10589 | |
Timur Tabi | b9b17de | 2016-08-31 18:22:08 -0500 | [diff] [blame] | 10590 | QUALCOMM EMAC GIGABIT ETHERNET DRIVER |
| 10591 | M: Timur Tabi <timur@codeaurora.org> |
| 10592 | L: netdev@vger.kernel.org |
| 10593 | S: Supported |
| 10594 | F: drivers/net/ethernet/qualcomm/emac/ |
| 10595 | |
Richard Kuo | 4f4567c | 2011-10-31 18:56:38 -0500 | [diff] [blame] | 10596 | QUALCOMM HEXAGON ARCHITECTURE |
| 10597 | M: Richard Kuo <rkuo@codeaurora.org> |
| 10598 | L: linux-hexagon@vger.kernel.org |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 10599 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git |
Richard Kuo | 4f4567c | 2011-10-31 18:56:38 -0500 | [diff] [blame] | 10600 | S: Supported |
| 10601 | F: arch/hexagon/ |
| 10602 | |
Eugene Krasnikov | 8e84c25 | 2013-10-08 21:25:58 +0100 | [diff] [blame] | 10603 | QUALCOMM WCN36XX WIRELESS DRIVER |
| 10604 | M: Eugene Krasnikov <k.eugene.e@gmail.com> |
| 10605 | L: wcn36xx@lists.infradead.org |
| 10606 | W: http://wireless.kernel.org/en/users/Drivers/wcn36xx |
| 10607 | T: git git://github.com/KrasnikovEugene/wcn36xx.git |
| 10608 | S: Supported |
| 10609 | F: drivers/net/wireless/ath/wcn36xx/ |
| 10610 | |
Michael S. Tsirkin | eeca9a6 | 2016-04-05 11:26:44 +0300 | [diff] [blame] | 10611 | QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT |
| 10612 | M: Gabriel Somlo <somlo@cmu.edu> |
| 10613 | M: "Michael S. Tsirkin" <mst@redhat.com> |
| 10614 | L: qemu-devel@nongnu.org |
| 10615 | S: Maintained |
| 10616 | F: drivers/firmware/qemu_fw_cfg.c |
| 10617 | |
Yehuda Sadeh | 602adf4 | 2010-08-12 16:11:25 -0700 | [diff] [blame] | 10618 | RADOS BLOCK DEVICE (RBD) |
Sage Weil | 0f5417c | 2015-02-19 10:10:40 -0800 | [diff] [blame] | 10619 | M: Ilya Dryomov <idryomov@gmail.com> |
| 10620 | M: Sage Weil <sage@redhat.com> |
Alex Elder | 527a88b | 2013-12-26 08:37:43 -0600 | [diff] [blame] | 10621 | M: Alex Elder <elder@kernel.org> |
Sage Weil | 398ecff5 | 2015-07-09 11:46:14 -0400 | [diff] [blame] | 10622 | L: ceph-devel@vger.kernel.org |
Sage Weil | 09d9032 | 2012-07-30 16:27:48 -0700 | [diff] [blame] | 10623 | W: http://ceph.com/ |
| 10624 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
Sage Weil | 6e67b7a | 2015-07-09 11:47:37 -0400 | [diff] [blame] | 10625 | T: git git://github.com/ceph/ceph-client.git |
Yehuda Sadeh | 602adf4 | 2010-08-12 16:11:25 -0700 | [diff] [blame] | 10626 | S: Supported |
Sage Weil | 398ecff5 | 2015-07-09 11:46:14 -0400 | [diff] [blame] | 10627 | F: Documentation/ABI/testing/sysfs-bus-rbd |
Yehuda Sadeh | 602adf4 | 2010-08-12 16:11:25 -0700 | [diff] [blame] | 10628 | F: drivers/block/rbd.c |
| 10629 | F: drivers/block/rbd_types.h |
| 10630 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10631 | RADEON FRAMEBUFFER DISPLAY DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10632 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 10633 | L: linux-fbdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10634 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 10635 | F: drivers/video/fbdev/aty/radeon* |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10636 | F: include/uapi/linux/radeonfb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10637 | |
Hans de Goede | c6c9b34 | 2012-11-04 17:03:58 -0300 | [diff] [blame] | 10638 | RADIOSHARK RADIO DRIVER |
Hans Verkuil | c0936df | 2016-07-04 10:18:10 -0300 | [diff] [blame] | 10639 | M: Hans Verkuil <hverkuil@xs4all.nl> |
Hans de Goede | c6c9b34 | 2012-11-04 17:03:58 -0300 | [diff] [blame] | 10640 | L: linux-media@vger.kernel.org |
| 10641 | T: git git://linuxtv.org/media_tree.git |
| 10642 | S: Maintained |
| 10643 | F: drivers/media/radio/radio-shark.c |
| 10644 | |
| 10645 | RADIOSHARK2 RADIO DRIVER |
Hans Verkuil | c0936df | 2016-07-04 10:18:10 -0300 | [diff] [blame] | 10646 | M: Hans Verkuil <hverkuil@xs4all.nl> |
Hans de Goede | c6c9b34 | 2012-11-04 17:03:58 -0300 | [diff] [blame] | 10647 | L: linux-media@vger.kernel.org |
| 10648 | T: git git://linuxtv.org/media_tree.git |
| 10649 | S: Maintained |
| 10650 | F: drivers/media/radio/radio-shark2.c |
| 10651 | F: drivers/media/radio/radio-tea5777.c |
| 10652 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10653 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10654 | M: Paul Mackerras <paulus@samba.org> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 10655 | L: linux-fbdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10656 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 10657 | F: drivers/video/fbdev/aty/aty128fb.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10658 | |
Hans Verkuil | 0f314f6 | 2016-11-05 08:39:58 -0200 | [diff] [blame] | 10659 | RAINSHADOW-CEC DRIVER |
| 10660 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 10661 | L: linux-media@vger.kernel.org |
| 10662 | T: git git://linuxtv.org/media_tree.git |
| 10663 | S: Maintained |
| 10664 | F: drivers/media/usb/rainshadow-cec/* |
| 10665 | |
John Crispin | a0fd81a | 2016-01-04 20:28:13 +0100 | [diff] [blame] | 10666 | RALINK MIPS ARCHITECTURE |
John Crispin | bdb40e8 | 2016-05-05 09:57:55 +0200 | [diff] [blame] | 10667 | M: John Crispin <john@phrozen.org> |
John Crispin | a0fd81a | 2016-01-04 20:28:13 +0100 | [diff] [blame] | 10668 | L: linux-mips@linux-mips.org |
| 10669 | S: Maintained |
| 10670 | F: arch/mips/ralink |
| 10671 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 10672 | RALINK RT2X00 WIRELESS LAN DRIVER |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 10673 | P: rt2x00 project |
Stanislaw Gruszka | b182427 | 2014-09-28 14:03:06 +0200 | [diff] [blame] | 10674 | M: Stanislaw Gruszka <sgruszka@redhat.com> |
Helmut Schaa | f198f98 | 2011-01-30 13:21:41 +0100 | [diff] [blame] | 10675 | M: Helmut Schaa <helmut.schaa@googlemail.com> |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 10676 | L: linux-wireless@vger.kernel.org |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 10677 | S: Maintained |
Kalle Valo | 33aca94 | 2015-11-18 10:18:44 +0200 | [diff] [blame] | 10678 | F: drivers/net/wireless/ralink/rt2x00/ |
Ivo van Doorn | 95ea362 | 2007-09-25 17:57:13 -0700 | [diff] [blame] | 10679 | |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 10680 | RAMDISK RAM BLOCK DEVICE DRIVER |
Ross Zwisler | ea7618e | 2015-03-17 12:56:30 -0600 | [diff] [blame] | 10681 | M: Jens Axboe <axboe@kernel.dk> |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 10682 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10683 | F: Documentation/blockdev/ramdisk.txt |
| 10684 | F: drivers/block/brd.c |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 10685 | |
Matt Mackall | 9e95ce2 | 2005-04-16 15:25:56 -0700 | [diff] [blame] | 10686 | RANDOM NUMBER DRIVER |
Christoph Hellwig | 0624bca | 2014-04-25 01:12:01 -0700 | [diff] [blame] | 10687 | M: "Theodore Ts'o" <tytso@mit.edu> |
Matt Mackall | 9e95ce2 | 2005-04-16 15:25:56 -0700 | [diff] [blame] | 10688 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10689 | F: drivers/char/random.c |
Matt Mackall | 9e95ce2 | 2005-04-16 15:25:56 -0700 | [diff] [blame] | 10690 | |
Matt Porter | 394b701 | 2005-11-07 01:00:15 -0800 | [diff] [blame] | 10691 | RAPIDIO SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10692 | M: Matt Porter <mporter@kernel.crashing.org> |
Alexandre Bounine | b8bc1dd | 2011-03-04 17:36:28 -0800 | [diff] [blame] | 10693 | M: Alexandre Bounine <alexandre.bounine@idt.com> |
Matt Porter | 394b701 | 2005-11-07 01:00:15 -0800 | [diff] [blame] | 10694 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10695 | F: drivers/rapidio/ |
Matt Porter | 394b701 | 2005-11-07 01:00:15 -0800 | [diff] [blame] | 10696 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 10697 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 10698 | L: linux-wireless@vger.kernel.org |
John W. Linville | f52a549 | 2010-07-22 14:36:52 -0400 | [diff] [blame] | 10699 | S: Orphan |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10700 | F: drivers/net/wireless/ray* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 10701 | |
| 10702 | RCUTORTURE MODULE |
Josh Triplett | e0198b2 | 2014-07-30 16:08:42 -0700 | [diff] [blame] | 10703 | M: Josh Triplett <josh@joshtriplett.org> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10704 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 10705 | L: linux-kernel@vger.kernel.org |
Paul E. McKenney | f9094d8 | 2010-01-04 16:04:00 -0800 | [diff] [blame] | 10706 | S: Supported |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 10707 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10708 | F: Documentation/RCU/torture.txt |
Joe Perches | 34e2d56 | 2014-07-03 15:08:00 -0700 | [diff] [blame] | 10709 | F: kernel/rcu/rcutorture.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 10710 | |
Paul E. McKenney | c87b9c6 | 2013-09-28 14:12:21 -0700 | [diff] [blame] | 10711 | RCUTORTURE TEST FRAMEWORK |
| 10712 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
Paul E. McKenney | ab0afd6 | 2014-06-03 08:17:06 -0700 | [diff] [blame] | 10713 | M: Josh Triplett <josh@joshtriplett.org> |
Paul E. McKenney | 4632a19 | 2014-05-30 15:37:24 -0700 | [diff] [blame] | 10714 | R: Steven Rostedt <rostedt@goodmis.org> |
| 10715 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
Lai Jiangshan | 96a39bc | 2015-07-01 15:26:27 +0800 | [diff] [blame] | 10716 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 10717 | L: linux-kernel@vger.kernel.org |
Paul E. McKenney | c87b9c6 | 2013-09-28 14:12:21 -0700 | [diff] [blame] | 10718 | S: Supported |
| 10719 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
| 10720 | F: tools/testing/selftests/rcutorture |
| 10721 | |
Florian Fainelli | c1f766b | 2008-02-06 22:39:44 +0100 | [diff] [blame] | 10722 | RDC R-321X SoC |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10723 | M: Florian Fainelli <florian@openwrt.org> |
Florian Fainelli | c1f766b | 2008-02-06 22:39:44 +0100 | [diff] [blame] | 10724 | S: Maintained |
| 10725 | |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 10726 | RDC R6040 FAST ETHERNET DRIVER |
Florian Fainelli | 35566e9 | 2016-07-04 14:36:08 -0700 | [diff] [blame] | 10727 | M: Florian Fainelli <f.fainelli@gmail.com> |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 10728 | L: netdev@vger.kernel.org |
| 10729 | S: Maintained |
Jeff Kirsher | 58565a3 | 2011-07-23 23:26:01 -0700 | [diff] [blame] | 10730 | F: drivers/net/ethernet/rdc/r6040.c |
Florian Fainelli | db17f39 | 2007-12-19 11:30:30 +0100 | [diff] [blame] | 10731 | |
Andy Grover | a09ed66 | 2009-02-24 15:30:41 +0000 | [diff] [blame] | 10732 | RDS - RELIABLE DATAGRAM SOCKETS |
santosh.shilimkar@oracle.com | 72f26ee | 2016-03-01 15:20:44 -0800 | [diff] [blame] | 10733 | M: Santosh Shilimkar <santosh.shilimkar@oracle.com> |
| 10734 | L: netdev@vger.kernel.org |
| 10735 | L: linux-rdma@vger.kernel.org |
Kyle McMartin | fbb5a55 | 2009-04-09 14:09:47 +0000 | [diff] [blame] | 10736 | L: rds-devel@oss.oracle.com (moderated for non-subscribers) |
santosh.shilimkar@oracle.com | 72f26ee | 2016-03-01 15:20:44 -0800 | [diff] [blame] | 10737 | W: https://oss.oracle.com/projects/rds/ |
Andy Grover | a09ed66 | 2009-02-24 15:30:41 +0000 | [diff] [blame] | 10738 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10739 | F: net/rds/ |
santosh.shilimkar@oracle.com | 72f26ee | 2016-03-01 15:20:44 -0800 | [diff] [blame] | 10740 | F: Documentation/networking/rds.txt |
Andy Grover | a09ed66 | 2009-02-24 15:30:41 +0000 | [diff] [blame] | 10741 | |
Dennis Dalessandro | 0194621 | 2016-01-06 09:50:24 -0800 | [diff] [blame] | 10742 | RDMAVT - RDMA verbs software |
| 10743 | M: Dennis Dalessandro <dennis.dalessandro@intel.com> |
| 10744 | L: linux-rdma@vger.kernel.org |
| 10745 | S: Supported |
| 10746 | F: drivers/infiniband/sw/rdmavt |
| 10747 | |
Fenghua Yu | 48553d1 | 2016-10-28 15:04:49 -0700 | [diff] [blame] | 10748 | RDT - RESOURCE ALLOCATION |
| 10749 | M: Fenghua Yu <fenghua.yu@intel.com> |
| 10750 | L: linux-kernel@vger.kernel.org |
| 10751 | S: Supported |
| 10752 | F: arch/x86/kernel/cpu/intel_rdt* |
| 10753 | F: arch/x86/include/asm/intel_rdt* |
| 10754 | F: Documentation/x86/intel_rdt* |
| 10755 | |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 10756 | READ-COPY UPDATE (RCU) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10757 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
Paul E. McKenney | ab0afd6 | 2014-06-03 08:17:06 -0700 | [diff] [blame] | 10758 | M: Josh Triplett <josh@joshtriplett.org> |
Paul E. McKenney | 4632a19 | 2014-05-30 15:37:24 -0700 | [diff] [blame] | 10759 | R: Steven Rostedt <rostedt@goodmis.org> |
| 10760 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
Lai Jiangshan | 96a39bc | 2015-07-01 15:26:27 +0800 | [diff] [blame] | 10761 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 10762 | L: linux-kernel@vger.kernel.org |
Paul E. McKenney | 9fab9787 | 2012-05-07 09:36:34 -0700 | [diff] [blame] | 10763 | W: http://www.rdrop.com/users/paulmck/RCU/ |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 10764 | S: Supported |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 10765 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
Paul E. McKenney | f9094d8 | 2010-01-04 16:04:00 -0800 | [diff] [blame] | 10766 | F: Documentation/RCU/ |
Paul E. McKenney | 9fab9787 | 2012-05-07 09:36:34 -0700 | [diff] [blame] | 10767 | X: Documentation/RCU/torture.txt |
Paul E. McKenney | f9094d8 | 2010-01-04 16:04:00 -0800 | [diff] [blame] | 10768 | F: include/linux/rcu* |
Paul E. McKenney | 4102ada | 2013-10-08 20:23:47 -0700 | [diff] [blame] | 10769 | X: include/linux/srcu.h |
| 10770 | F: kernel/rcu/ |
Joe Perches | 34e2d56 | 2014-07-03 15:08:00 -0700 | [diff] [blame] | 10771 | X: kernel/torture.c |
Josh Triplett | 595182b | 2006-10-04 02:17:21 -0700 | [diff] [blame] | 10772 | |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 10773 | REAL TIME CLOCK (RTC) SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10774 | M: Alessandro Zummo <a.zummo@towertech.it> |
Alexandre Belloni | 7c6f84f | 2015-04-16 12:45:43 -0700 | [diff] [blame] | 10775 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
Alessandro Zummo | 7646549 | 2006-12-10 02:19:06 -0800 | [diff] [blame] | 10776 | L: rtc-linux@googlegroups.com |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 10777 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
Alexandre Belloni | 4733f39 | 2015-05-26 11:13:04 +0200 | [diff] [blame] | 10778 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 10779 | S: Maintained |
Geert Uytterhoeven | 7af6a2e | 2016-05-22 11:06:16 +0200 | [diff] [blame] | 10780 | F: Documentation/devicetree/bindings/rtc/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10781 | F: Documentation/rtc.txt |
| 10782 | F: drivers/rtc/ |
| 10783 | F: include/linux/rtc.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10784 | F: include/uapi/linux/rtc.h |
Alexandre Belloni | fe23c33 | 2016-06-27 21:58:40 +0200 | [diff] [blame] | 10785 | F: include/linux/rtc/ |
| 10786 | F: include/linux/platform_data/rtc-* |
| 10787 | F: tools/testing/selftests/timers/rtctest.c |
Alessandro Zummo | 0c86edc | 2006-03-27 01:16:37 -0800 | [diff] [blame] | 10788 | |
Mark Brown | 0e400c5 | 2014-07-31 12:38:31 +0100 | [diff] [blame] | 10789 | REALTEK AUDIO CODECS |
| 10790 | M: Bard Liao <bardliao@realtek.com> |
| 10791 | M: Oder Chiou <oder_chiou@realtek.com> |
| 10792 | S: Maintained |
| 10793 | F: sound/soc/codecs/rt* |
| 10794 | F: include/sound/rt*.h |
| 10795 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10796 | REISERFS FILE SYSTEM |
Jeff Mahoney | 76c4e5e | 2007-06-08 13:47:02 -0700 | [diff] [blame] | 10797 | L: reiserfs-devel@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10798 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10799 | F: fs/reiserfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10800 | |
Mark Brown | b83a313 | 2011-05-11 19:59:58 +0200 | [diff] [blame] | 10801 | REGISTER MAP ABSTRACTION |
Mark Brown | b02e48f | 2013-04-12 11:39:57 +0100 | [diff] [blame] | 10802 | M: Mark Brown <broonie@kernel.org> |
Mark Brown | dd060bc | 2014-08-16 12:30:58 +0100 | [diff] [blame] | 10803 | L: linux-kernel@vger.kernel.org |
Mark Brown | b83a313 | 2011-05-11 19:59:58 +0200 | [diff] [blame] | 10804 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
| 10805 | S: Supported |
Geert Uytterhoeven | 9398a63 | 2016-05-22 11:06:17 +0200 | [diff] [blame] | 10806 | F: Documentation/devicetree/bindings/regmap/ |
Mark Brown | b83a313 | 2011-05-11 19:59:58 +0200 | [diff] [blame] | 10807 | F: drivers/base/regmap/ |
| 10808 | F: include/linux/regmap.h |
| 10809 | |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 10810 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
| 10811 | M: Ohad Ben-Cohen <ohad@wizery.com> |
Bjorn Andersson | 69ae989 | 2016-02-13 17:35:19 -0800 | [diff] [blame] | 10812 | M: Bjorn Andersson <bjorn.andersson@linaro.org> |
Bjorn Andersson | d758684 | 2016-03-21 22:43:54 -0700 | [diff] [blame] | 10813 | L: linux-remoteproc@vger.kernel.org |
Ohad Ben-Cohen | 6bb697b | 2012-06-19 10:22:35 +0300 | [diff] [blame] | 10814 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 10815 | S: Maintained |
Geert Uytterhoeven | 15ebc72 | 2016-05-22 11:06:18 +0200 | [diff] [blame] | 10816 | F: Documentation/devicetree/bindings/remoteproc/ |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 10817 | F: Documentation/remoteproc.txt |
Geert Uytterhoeven | 15ebc72 | 2016-05-22 11:06:18 +0200 | [diff] [blame] | 10818 | F: drivers/remoteproc/ |
Joe Perches | 6fc2648 | 2012-04-05 14:25:13 -0700 | [diff] [blame] | 10819 | F: include/linux/remoteproc.h |
Ohad Ben-Cohen | 400e64d | 2011-10-20 16:52:46 +0200 | [diff] [blame] | 10820 | |
Ohad Ben-Cohen | d8115db | 2013-04-16 20:34:49 +0300 | [diff] [blame] | 10821 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
| 10822 | M: Ohad Ben-Cohen <ohad@wizery.com> |
Bjorn Andersson | 69ae989 | 2016-02-13 17:35:19 -0800 | [diff] [blame] | 10823 | M: Bjorn Andersson <bjorn.andersson@linaro.org> |
Bjorn Andersson | d758684 | 2016-03-21 22:43:54 -0700 | [diff] [blame] | 10824 | L: linux-remoteproc@vger.kernel.org |
Ohad Ben-Cohen | d8115db | 2013-04-16 20:34:49 +0300 | [diff] [blame] | 10825 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git |
| 10826 | S: Maintained |
| 10827 | F: drivers/rpmsg/ |
| 10828 | F: Documentation/rpmsg.txt |
| 10829 | F: include/linux/rpmsg.h |
Bjorn Andersson | 38c6fc3 | 2017-01-30 09:00:22 -0800 | [diff] [blame] | 10830 | F: include/linux/rpmsg/ |
Ohad Ben-Cohen | d8115db | 2013-04-16 20:34:49 +0300 | [diff] [blame] | 10831 | |
Geert Uytterhoeven | fedc81e | 2016-08-31 11:49:30 +0200 | [diff] [blame] | 10832 | RENESAS CLOCK DRIVERS |
| 10833 | M: Geert Uytterhoeven <geert+renesas@glider.be> |
| 10834 | L: linux-renesas-soc@vger.kernel.org |
| 10835 | S: Supported |
| 10836 | F: drivers/clk/renesas/ |
| 10837 | |
Sergei Shtylyov | 8e6569a | 2015-12-05 04:50:48 +0300 | [diff] [blame] | 10838 | RENESAS ETHERNET DRIVERS |
| 10839 | R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> |
| 10840 | L: netdev@vger.kernel.org |
Simon Horman | 4a12109 | 2016-01-18 10:04:33 +0900 | [diff] [blame] | 10841 | L: linux-renesas-soc@vger.kernel.org |
Sergei Shtylyov | 8e6569a | 2015-12-05 04:50:48 +0300 | [diff] [blame] | 10842 | F: drivers/net/ethernet/renesas/ |
| 10843 | F: include/linux/sh_eth.h |
| 10844 | |
Marek Vasut | 059c53b | 2017-01-28 00:08:37 +0100 | [diff] [blame] | 10845 | RENESAS R-CAR GYROADC DRIVER |
| 10846 | M: Marek Vasut <marek.vasut@gmail.com> |
| 10847 | L: linux-iio@vger.kernel.org |
| 10848 | S: Supported |
| 10849 | F: drivers/iio/adc/rcar_gyro_adc.c |
| 10850 | |
Yoshihiro Shimoda | 3e46c39 | 2015-11-30 10:44:33 +0900 | [diff] [blame] | 10851 | RENESAS USB2 PHY DRIVER |
| 10852 | M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> |
Simon Horman | 4a12109 | 2016-01-18 10:04:33 +0900 | [diff] [blame] | 10853 | L: linux-renesas-soc@vger.kernel.org |
Yoshihiro Shimoda | 3e46c39 | 2015-11-30 10:44:33 +0900 | [diff] [blame] | 10854 | S: Maintained |
| 10855 | F: drivers/phy/phy-rcar-gen3-usb2.c |
| 10856 | |
Philipp Zabel | 1b0fe6b | 2014-05-27 15:58:09 +0200 | [diff] [blame] | 10857 | RESET CONTROLLER FRAMEWORK |
| 10858 | M: Philipp Zabel <p.zabel@pengutronix.de> |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 10859 | T: git git://git.pengutronix.de/git/pza/linux |
Philipp Zabel | 1b0fe6b | 2014-05-27 15:58:09 +0200 | [diff] [blame] | 10860 | S: Maintained |
| 10861 | F: drivers/reset/ |
| 10862 | F: Documentation/devicetree/bindings/reset/ |
Philipp Zabel | b2f6dd7 | 2015-02-13 12:14:40 +0100 | [diff] [blame] | 10863 | F: include/dt-bindings/reset/ |
Philipp Zabel | 1b0fe6b | 2014-05-27 15:58:09 +0200 | [diff] [blame] | 10864 | F: include/linux/reset.h |
| 10865 | F: include/linux/reset-controller.h |
| 10866 | |
Ivo van Doorn | e0897645 | 2008-04-12 19:23:55 +0200 | [diff] [blame] | 10867 | RFKILL |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10868 | M: Johannes Berg <johannes@sipsolutions.net> |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 10869 | L: linux-wireless@vger.kernel.org |
Johannes Berg | ce46657 | 2012-06-05 15:42:55 +0200 | [diff] [blame] | 10870 | W: http://wireless.kernel.org/ |
| 10871 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
| 10872 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git |
Ivo van Doorn | e0897645 | 2008-04-12 19:23:55 +0200 | [diff] [blame] | 10873 | S: Maintained |
Joe Perches | 505c924 | 2009-11-12 14:55:00 -0800 | [diff] [blame] | 10874 | F: Documentation/rfkill.txt |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 10875 | F: net/rfkill/ |
Ivo van Doorn | e0897645 | 2008-04-12 19:23:55 +0200 | [diff] [blame] | 10876 | |
Thomas Graf | 933685c | 2015-01-13 01:01:24 +0100 | [diff] [blame] | 10877 | RHASHTABLE |
| 10878 | M: Thomas Graf <tgraf@suug.ch> |
Herbert Xu | 39ec406 | 2016-08-18 16:50:57 +0800 | [diff] [blame] | 10879 | M: Herbert Xu <herbert@gondor.apana.org.au> |
Thomas Graf | 933685c | 2015-01-13 01:01:24 +0100 | [diff] [blame] | 10880 | L: netdev@vger.kernel.org |
| 10881 | S: Maintained |
| 10882 | F: lib/rhashtable.c |
| 10883 | F: include/linux/rhashtable.h |
| 10884 | |
Maxim Levitsky | 67e054e | 2010-02-22 20:39:42 +0200 | [diff] [blame] | 10885 | RICOH SMARTMEDIA/XD DRIVER |
| 10886 | M: Maxim Levitsky <maximlevitsky@gmail.com> |
| 10887 | S: Maintained |
Joe Perches | 21c26f5 | 2010-08-09 17:20:40 -0700 | [diff] [blame] | 10888 | F: drivers/mtd/nand/r852.c |
| 10889 | F: drivers/mtd/nand/r852.h |
Maxim Levitsky | 67e054e | 2010-02-22 20:39:42 +0200 | [diff] [blame] | 10890 | |
Maxim Levitsky | 9263412 | 2011-03-25 01:56:59 -0700 | [diff] [blame] | 10891 | RICOH R5C592 MEMORYSTICK DRIVER |
| 10892 | M: Maxim Levitsky <maximlevitsky@gmail.com> |
| 10893 | S: Maintained |
| 10894 | F: drivers/memstick/host/r592.* |
| 10895 | |
Stefan Achatz | 27f1d2f | 2013-09-05 06:36:01 +0200 | [diff] [blame] | 10896 | ROCCAT DRIVERS |
| 10897 | M: Stefan Achatz <erazor_de@users.sourceforge.net> |
| 10898 | W: http://sourceforge.net/projects/roccat/ |
| 10899 | S: Maintained |
| 10900 | F: drivers/hid/hid-roccat* |
| 10901 | F: include/linux/hid-roccat* |
| 10902 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* |
| 10903 | |
Jiri Pirko | 4b8ac96 | 2014-11-28 14:34:26 +0100 | [diff] [blame] | 10904 | ROCKER DRIVER |
| 10905 | M: Jiri Pirko <jiri@resnulli.us> |
Jiri Pirko | 4b8ac96 | 2014-11-28 14:34:26 +0100 | [diff] [blame] | 10906 | L: netdev@vger.kernel.org |
| 10907 | S: Supported |
| 10908 | F: drivers/net/ethernet/rocker/ |
| 10909 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10910 | ROCKETPORT DRIVER |
| 10911 | P: Comtrol Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10912 | W: http://www.comtrol.com |
| 10913 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10914 | F: Documentation/serial/rocket.txt |
Joe Perches | c897401 | 2011-04-14 15:22:05 -0700 | [diff] [blame] | 10915 | F: drivers/tty/rocket* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10916 | |
Kevin Cernekee | 7645c2f | 2014-10-21 15:23:06 -0700 | [diff] [blame] | 10917 | ROCKETPORT EXPRESS/INFINITY DRIVER |
| 10918 | M: Kevin Cernekee <cernekee@gmail.com> |
| 10919 | L: linux-serial@vger.kernel.org |
| 10920 | S: Odd Fixes |
| 10921 | F: drivers/tty/serial/rp2.* |
| 10922 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10923 | ROSE NETWORK LAYER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10924 | M: Ralf Baechle <ralf@linux-mips.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10925 | L: linux-hams@vger.kernel.org |
Ralf Baechle | d34cb28 | 2006-04-19 04:14:30 +0200 | [diff] [blame] | 10926 | W: http://www.linux-ax25.org/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10927 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10928 | F: include/net/rose.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 10929 | F: include/uapi/linux/rose.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 10930 | F: net/rose/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10931 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 10932 | RTL2830 MEDIA DRIVER |
| 10933 | M: Antti Palosaari <crope@iki.fi> |
| 10934 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 10935 | W: https://linuxtv.org |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 10936 | W: http://palosaari.fi/linux/ |
| 10937 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 10938 | T: git git://linuxtv.org/anttip/media_tree.git |
| 10939 | S: Maintained |
| 10940 | F: drivers/media/dvb-frontends/rtl2830* |
| 10941 | |
Antti Palosaari | 27a0aac | 2013-04-09 20:30:43 -0300 | [diff] [blame] | 10942 | RTL2832 MEDIA DRIVER |
| 10943 | M: Antti Palosaari <crope@iki.fi> |
| 10944 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 10945 | W: https://linuxtv.org |
Antti Palosaari | 27a0aac | 2013-04-09 20:30:43 -0300 | [diff] [blame] | 10946 | W: http://palosaari.fi/linux/ |
| 10947 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 10948 | T: git git://linuxtv.org/anttip/media_tree.git |
| 10949 | S: Maintained |
| 10950 | F: drivers/media/dvb-frontends/rtl2832* |
| 10951 | |
Antti Palosaari | ba6e6f6 | 2014-02-03 00:00:32 -0300 | [diff] [blame] | 10952 | RTL2832_SDR MEDIA DRIVER |
| 10953 | M: Antti Palosaari <crope@iki.fi> |
| 10954 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 10955 | W: https://linuxtv.org |
Antti Palosaari | ba6e6f6 | 2014-02-03 00:00:32 -0300 | [diff] [blame] | 10956 | W: http://palosaari.fi/linux/ |
| 10957 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 10958 | T: git git://linuxtv.org/anttip/media_tree.git |
| 10959 | S: Maintained |
Antti Palosaari | b4bb1c2 | 2014-07-14 21:19:29 -0300 | [diff] [blame] | 10960 | F: drivers/media/dvb-frontends/rtl2832_sdr* |
Antti Palosaari | ba6e6f6 | 2014-02-03 00:00:32 -0300 | [diff] [blame] | 10961 | |
Larry Finger | 5984048 | 2008-11-12 17:13:09 -0600 | [diff] [blame] | 10962 | RTL8180 WIRELESS DRIVER |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 10963 | L: linux-wireless@vger.kernel.org |
Johannes Berg | 491b26b | 2012-06-05 14:21:14 +0200 | [diff] [blame] | 10964 | W: http://wireless.kernel.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 10965 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
John W. Linville | 7be6ff6 | 2014-12-04 16:52:41 -0500 | [diff] [blame] | 10966 | S: Orphan |
Kalle Valo | 6214172 | 2015-11-18 10:09:24 +0200 | [diff] [blame] | 10967 | F: drivers/net/wireless/realtek/rtl818x/rtl8180/ |
Michael Wu | 605bebe | 2007-05-14 01:41:02 -0400 | [diff] [blame] | 10968 | |
Larry Finger | 5984048 | 2008-11-12 17:13:09 -0600 | [diff] [blame] | 10969 | RTL8187 WIRELESS DRIVER |
Herton Ronaldo Krzesinski | 9f0939b | 2011-02-24 15:18:07 -0300 | [diff] [blame] | 10970 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10971 | M: Hin-Tak Leung <htl10@users.sourceforge.net> |
| 10972 | M: Larry Finger <Larry.Finger@lwfinger.net> |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 10973 | L: linux-wireless@vger.kernel.org |
Johannes Berg | 491b26b | 2012-06-05 14:21:14 +0200 | [diff] [blame] | 10974 | W: http://wireless.kernel.org/ |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 10975 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 10976 | S: Maintained |
Kalle Valo | 6214172 | 2015-11-18 10:09:24 +0200 | [diff] [blame] | 10977 | F: drivers/net/wireless/realtek/rtl818x/rtl8187/ |
Larry Finger | 5984048 | 2008-11-12 17:13:09 -0600 | [diff] [blame] | 10978 | |
Larry Finger | 3cf0c8a | 2010-12-16 09:13:21 -0600 | [diff] [blame] | 10979 | RTL8192CE WIRELESS DRIVER |
| 10980 | M: Larry Finger <Larry.Finger@lwfinger.net> |
| 10981 | M: Chaoming Li <chaoming_li@realsil.com.cn> |
| 10982 | L: linux-wireless@vger.kernel.org |
Johannes Berg | 491b26b | 2012-06-05 14:21:14 +0200 | [diff] [blame] | 10983 | W: http://wireless.kernel.org/ |
Larry Finger | 3cf0c8a | 2010-12-16 09:13:21 -0600 | [diff] [blame] | 10984 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
| 10985 | S: Maintained |
Kalle Valo | 6214172 | 2015-11-18 10:09:24 +0200 | [diff] [blame] | 10986 | F: drivers/net/wireless/realtek/rtlwifi/ |
| 10987 | F: drivers/net/wireless/realtek/rtlwifi/rtl8192ce/ |
Martin Schwidefsky | 8301425 | 2006-09-20 15:58:58 +0200 | [diff] [blame] | 10988 | |
Jes Sorensen | 26f1fad | 2015-10-14 20:44:51 -0400 | [diff] [blame] | 10989 | RTL8XXXU WIRELESS DRIVER (rtl8xxxu) |
Jes Sorensen | 1ee8378 | 2017-01-17 18:18:56 -0500 | [diff] [blame] | 10990 | M: Jes Sorensen <Jes.Sorensen@gmail.com> |
Jes Sorensen | 26f1fad | 2015-10-14 20:44:51 -0400 | [diff] [blame] | 10991 | L: linux-wireless@vger.kernel.org |
Jes Sorensen | 171a900 | 2016-04-14 16:37:21 -0400 | [diff] [blame] | 10992 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel |
Jes Sorensen | 26f1fad | 2015-10-14 20:44:51 -0400 | [diff] [blame] | 10993 | S: Maintained |
| 10994 | F: drivers/net/wireless/realtek/rtl8xxxu/ |
| 10995 | |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 10996 | S3 SAVAGE FRAMEBUFFER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 10997 | M: Antonino Daplas <adaplas@gmail.com> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 10998 | L: linux-fbdev@vger.kernel.org |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 10999 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 11000 | F: drivers/video/fbdev/savage/ |
Antonino A. Daplas | 9eb8ef7 | 2006-01-14 13:21:26 -0800 | [diff] [blame] | 11001 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11002 | S390 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11003 | M: Martin Schwidefsky <schwidefsky@de.ibm.com> |
| 11004 | M: Heiko Carstens <heiko.carstens@de.ibm.com> |
Martin Schwidefsky | d58140c | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 11005 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 11006 | W: http://www.ibm.com/developerworks/linux/linux390/ |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 11007 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 11008 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11009 | F: arch/s390/ |
Joe Perches | a968cd3 | 2009-12-07 12:52:10 +0100 | [diff] [blame] | 11010 | F: drivers/s390/ |
Jonathan Nieder | 3bfe685 | 2010-05-26 23:27:13 +0200 | [diff] [blame] | 11011 | F: Documentation/s390/ |
| 11012 | F: Documentation/DocBook/s390* |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 11013 | |
Sebastian Ott | 322986c | 2014-02-17 15:16:30 +0100 | [diff] [blame] | 11014 | S390 COMMON I/O LAYER |
| 11015 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> |
| 11016 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> |
| 11017 | L: linux-s390@vger.kernel.org |
| 11018 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 11019 | S: Supported |
| 11020 | F: drivers/s390/cio/ |
| 11021 | |
| 11022 | S390 DASD DRIVER |
Stefan Haberland | 38b7f07 | 2016-09-29 12:13:53 +0200 | [diff] [blame] | 11023 | M: Stefan Haberland <sth@linux.vnet.ibm.com> |
| 11024 | M: Jan Hoeppner <hoeppner@linux.vnet.ibm.com> |
Sebastian Ott | 322986c | 2014-02-17 15:16:30 +0100 | [diff] [blame] | 11025 | L: linux-s390@vger.kernel.org |
| 11026 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 11027 | S: Supported |
| 11028 | F: drivers/s390/block/dasd* |
| 11029 | F: block/partitions/ibm.c |
| 11030 | |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 11031 | S390 NETWORK DRIVERS |
Ursula Braun | 90b14dc | 2017-03-23 14:55:10 +0100 | [diff] [blame] | 11032 | M: Julian Wiedmann <jwi@linux.vnet.ibm.com> |
Ursula Braun | f0c59af | 2015-12-11 12:27:52 +0100 | [diff] [blame] | 11033 | M: Ursula Braun <ubraun@linux.vnet.ibm.com> |
Martin Schwidefsky | d58140c | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 11034 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 11035 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 11036 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11037 | F: drivers/s390/net/ |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 11038 | |
Sebastian Ott | 322986c | 2014-02-17 15:16:30 +0100 | [diff] [blame] | 11039 | S390 PCI SUBSYSTEM |
| 11040 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> |
| 11041 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> |
| 11042 | L: linux-s390@vger.kernel.org |
| 11043 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 11044 | S: Supported |
| 11045 | F: arch/s390/pci/ |
| 11046 | F: drivers/pci/hotplug/s390_pci_hpc.c |
| 11047 | |
Felix Beck | feed9b6 | 2009-03-26 15:24:23 +0100 | [diff] [blame] | 11048 | S390 ZCRYPT DRIVER |
Harald Freudenberger | cb9c638 | 2016-11-25 09:35:09 +0100 | [diff] [blame] | 11049 | M: Harald Freudenberger <freude@de.ibm.com> |
Felix Beck | feed9b6 | 2009-03-26 15:24:23 +0100 | [diff] [blame] | 11050 | L: linux-s390@vger.kernel.org |
Joe Perches | a968cd3 | 2009-12-07 12:52:10 +0100 | [diff] [blame] | 11051 | W: http://www.ibm.com/developerworks/linux/linux390/ |
Felix Beck | feed9b6 | 2009-03-26 15:24:23 +0100 | [diff] [blame] | 11052 | S: Supported |
Joe Perches | d5ca691 | 2009-04-09 02:42:01 -0700 | [diff] [blame] | 11053 | F: drivers/s390/crypto/ |
Felix Beck | feed9b6 | 2009-03-26 15:24:23 +0100 | [diff] [blame] | 11054 | |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 11055 | S390 ZFCP DRIVER |
Christof Schmitt | d38e19d | 2011-01-10 11:12:40 +0100 | [diff] [blame] | 11056 | M: Steffen Maier <maier@linux.vnet.ibm.com> |
Martin Schwidefsky | d58140c | 2007-02-05 21:17:27 +0100 | [diff] [blame] | 11057 | L: linux-s390@vger.kernel.org |
Heiko Carstens | 5238da4 | 2006-02-11 17:56:01 -0800 | [diff] [blame] | 11058 | W: http://www.ibm.com/developerworks/linux/linux390/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11059 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11060 | F: drivers/s390/scsi/zfcp_* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11061 | |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 11062 | S390 IUCV NETWORK LAYER |
Ursula Braun | 90b14dc | 2017-03-23 14:55:10 +0100 | [diff] [blame] | 11063 | M: Julian Wiedmann <jwi@linux.vnet.ibm.com> |
Ursula Braun | f0c59af | 2015-12-11 12:27:52 +0100 | [diff] [blame] | 11064 | M: Ursula Braun <ubraun@linux.vnet.ibm.com> |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 11065 | L: linux-s390@vger.kernel.org |
| 11066 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 11067 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11068 | F: drivers/s390/net/*iucv* |
| 11069 | F: include/net/iucv/ |
| 11070 | F: net/iucv/ |
Ursula Braun | dd96df2 | 2007-09-19 13:09:02 +0200 | [diff] [blame] | 11071 | |
Gerald Schaefer | 8128f23c | 2015-08-27 15:33:03 +0200 | [diff] [blame] | 11072 | S390 IOMMU (PCI) |
| 11073 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> |
| 11074 | L: linux-s390@vger.kernel.org |
| 11075 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 11076 | S: Supported |
| 11077 | F: drivers/iommu/s390-iommu.c |
| 11078 | |
Dong Jia Shi | 1877888 | 2017-03-17 04:17:43 +0100 | [diff] [blame] | 11079 | S390 VFIO-CCW DRIVER |
| 11080 | M: Cornelia Huck <cornelia.huck@de.ibm.com> |
| 11081 | M: Dong Jia Shi <bjsdjshi@linux.vnet.ibm.com> |
| 11082 | L: linux-s390@vger.kernel.org |
| 11083 | L: kvm@vger.kernel.org |
| 11084 | S: Supported |
| 11085 | F: drivers/s390/cio/vfio_ccw* |
| 11086 | F: Documentation/s390/vfio-ccw.txt |
| 11087 | F: include/uapi/linux/vfio_ccw.h |
| 11088 | |
Ben Dooks | 4dde7f7 | 2008-06-30 22:40:38 +0100 | [diff] [blame] | 11089 | S3C24XX SD/MMC Driver |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11090 | M: Ben Dooks <ben-linux@fluff.org> |
Joe Perches | efc03ec | 2009-09-21 17:04:27 -0700 | [diff] [blame] | 11091 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
Ben Dooks | 4dde7f7 | 2008-06-30 22:40:38 +0100 | [diff] [blame] | 11092 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11093 | F: drivers/mmc/host/s3cmci.* |
Ben Dooks | 4dde7f7 | 2008-06-30 22:40:38 +0100 | [diff] [blame] | 11094 | |
Hans Verkuil | 1f15a22 | 2012-11-23 07:45:29 -0300 | [diff] [blame] | 11095 | SAA6588 RDS RECEIVER DRIVER |
| 11096 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 11097 | L: linux-media@vger.kernel.org |
| 11098 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 11099 | W: https://linuxtv.org |
Hans Verkuil | 1f15a22 | 2012-11-23 07:45:29 -0300 | [diff] [blame] | 11100 | S: Odd Fixes |
| 11101 | F: drivers/media/i2c/saa6588* |
| 11102 | |
Mauro Carvalho Chehab | 98ed12e | 2012-11-02 11:34:14 -0200 | [diff] [blame] | 11103 | SAA7134 VIDEO4LINUX DRIVER |
Mauro Carvalho Chehab | 5dc8a86 | 2016-06-14 15:17:40 -0300 | [diff] [blame] | 11104 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
| 11105 | M: Mauro Carvalho Chehab <mchehab@kernel.org> |
Mauro Carvalho Chehab | 98ed12e | 2012-11-02 11:34:14 -0200 | [diff] [blame] | 11106 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 11107 | W: https://linuxtv.org |
Mauro Carvalho Chehab | 98ed12e | 2012-11-02 11:34:14 -0200 | [diff] [blame] | 11108 | T: git git://linuxtv.org/media_tree.git |
| 11109 | S: Odd fixes |
Mauro Carvalho Chehab | 618cd93 | 2016-09-12 12:48:54 -0300 | [diff] [blame] | 11110 | F: Documentation/media/v4l-drivers/saa7134* |
Mauro Carvalho Chehab | 98ed12e | 2012-11-02 11:34:14 -0200 | [diff] [blame] | 11111 | F: drivers/media/pci/saa7134/ |
| 11112 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11113 | SAA7146 VIDEO4LINUX-2 DRIVER |
Hans Verkuil | 566b815 | 2012-11-23 09:58:12 -0300 | [diff] [blame] | 11114 | M: Hans Verkuil <hverkuil@xs4all.nl> |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 11115 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 11116 | T: git git://linuxtv.org/media_tree.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11117 | S: Maintained |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 11118 | F: drivers/media/common/saa7146/ |
| 11119 | F: drivers/media/pci/saa7146/ |
| 11120 | F: include/media/saa7146* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11121 | |
Corentin Chary | 92304a4 | 2011-12-05 12:38:35 -0500 | [diff] [blame] | 11122 | SAMSUNG LAPTOP DRIVER |
Corentin Chary | 5909c65 | 2012-12-17 16:00:05 -0800 | [diff] [blame] | 11123 | M: Corentin Chary <corentin.chary@gmail.com> |
Corentin Chary | 92304a4 | 2011-12-05 12:38:35 -0500 | [diff] [blame] | 11124 | L: platform-driver-x86@vger.kernel.org |
| 11125 | S: Maintained |
| 11126 | F: drivers/platform/x86/samsung-laptop.c |
| 11127 | |
Mark Brown | 4a109cc | 2010-09-24 10:50:46 +0100 | [diff] [blame] | 11128 | SAMSUNG AUDIO (ASoC) DRIVERS |
Krzysztof Kozlowski | 326dce0 | 2016-08-16 18:50:42 +0200 | [diff] [blame] | 11129 | M: Krzysztof Kozlowski <krzk@kernel.org> |
Sangbeom Kim | 250b685 | 2011-08-23 19:36:59 +0900 | [diff] [blame] | 11130 | M: Sangbeom Kim <sbkim73@samsung.com> |
Krzysztof Kozlowski | 09a0102 | 2016-05-24 15:35:42 +0200 | [diff] [blame] | 11131 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
Mark Brown | 4a109cc | 2010-09-24 10:50:46 +0100 | [diff] [blame] | 11132 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 11133 | S: Supported |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 11134 | F: sound/soc/samsung/ |
Mark Brown | 4a109cc | 2010-09-24 10:50:46 +0100 | [diff] [blame] | 11135 | |
Krzysztof Kozlowski | c46ea13 | 2017-04-11 20:08:35 +0200 | [diff] [blame] | 11136 | SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER |
| 11137 | M: Krzysztof Kozlowski <krzk@kernel.org> |
| 11138 | L: linux-crypto@vger.kernel.org |
| 11139 | L: linux-samsung-soc@vger.kernel.org |
| 11140 | S: Maintained |
| 11141 | F: drivers/crypto/exynos-rng.c |
| 11142 | F: Documentation/devicetree/bindings/rng/samsung,exynos-rng4.txt |
| 11143 | |
Jingoo Han | 0d89a28 | 2011-12-19 11:09:35 +0900 | [diff] [blame] | 11144 | SAMSUNG FRAMEBUFFER DRIVER |
Jingoo Han | b770175 | 2015-05-14 15:17:07 -0700 | [diff] [blame] | 11145 | M: Jingoo Han <jingoohan1@gmail.com> |
Jingoo Han | 0d89a28 | 2011-12-19 11:09:35 +0900 | [diff] [blame] | 11146 | L: linux-fbdev@vger.kernel.org |
| 11147 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 11148 | F: drivers/video/fbdev/s3c-fb.c |
Jingoo Han | 0d89a28 | 2011-12-19 11:09:35 +0900 | [diff] [blame] | 11149 | |
Krzysztof Kozlowski | b40f063 | 2015-05-06 14:19:36 +0900 | [diff] [blame] | 11150 | SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS |
Sangbeom Kim | f69d3a1 | 2012-07-11 21:08:22 +0900 | [diff] [blame] | 11151 | M: Sangbeom Kim <sbkim73@samsung.com> |
Krzysztof Kozlowski | 326dce0 | 2016-08-16 18:50:42 +0200 | [diff] [blame] | 11152 | M: Krzysztof Kozlowski <krzk@kernel.org> |
| 11153 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
Sangbeom Kim | f69d3a1 | 2012-07-11 21:08:22 +0900 | [diff] [blame] | 11154 | L: linux-kernel@vger.kernel.org |
Krzysztof Kozlowski | b40f063 | 2015-05-06 14:19:36 +0900 | [diff] [blame] | 11155 | L: linux-samsung-soc@vger.kernel.org |
Sangbeom Kim | f69d3a1 | 2012-07-11 21:08:22 +0900 | [diff] [blame] | 11156 | S: Supported |
| 11157 | F: drivers/mfd/sec*.c |
| 11158 | F: drivers/regulator/s2m*.c |
| 11159 | F: drivers/regulator/s5m*.c |
Krzysztof Kozlowski | b40f063 | 2015-05-06 14:19:36 +0900 | [diff] [blame] | 11160 | F: drivers/clk/clk-s2mps11.c |
| 11161 | F: drivers/rtc/rtc-s5m.c |
Sangbeom Kim | f69d3a1 | 2012-07-11 21:08:22 +0900 | [diff] [blame] | 11162 | F: include/linux/mfd/samsung/ |
Krzysztof Kozlowski | a13c7c5 | 2015-12-04 10:10:03 +0900 | [diff] [blame] | 11163 | F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt |
| 11164 | F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt |
Krzysztof Kozlowski | 27383ca | 2015-12-04 10:10:04 +0900 | [diff] [blame] | 11165 | F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt |
Krzysztof Kozlowski | a13c7c5 | 2015-12-04 10:10:03 +0900 | [diff] [blame] | 11166 | F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt |
Sangbeom Kim | f69d3a1 | 2012-07-11 21:08:22 +0900 | [diff] [blame] | 11167 | |
Krzysztof Kozlowski | 28845b0 | 2017-03-11 08:11:00 +0200 | [diff] [blame] | 11168 | SAMSUNG S5P Security SubSystem (SSS) DRIVER |
| 11169 | M: Krzysztof Kozlowski <krzk@kernel.org> |
| 11170 | M: Vladimir Zapolskiy <vz@mleia.com> |
| 11171 | L: linux-crypto@vger.kernel.org |
| 11172 | L: linux-samsung-soc@vger.kernel.org |
| 11173 | S: Maintained |
| 11174 | F: drivers/crypto/s5p-sss.c |
| 11175 | |
Sylwester Nawrocki | 038f5c4 | 2013-05-28 18:26:20 -0300 | [diff] [blame] | 11176 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
| 11177 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 11178 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
| 11179 | L: linux-media@vger.kernel.org |
| 11180 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ |
| 11181 | S: Supported |
| 11182 | F: drivers/media/platform/exynos4-is/ |
Sylwester Nawrocki | 038f5c4 | 2013-05-28 18:26:20 -0300 | [diff] [blame] | 11183 | |
Sylwester Nawrocki | 6fd86ab | 2012-11-15 18:05:15 -0300 | [diff] [blame] | 11184 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
| 11185 | M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com> |
| 11186 | L: linux-media@vger.kernel.org |
| 11187 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
| 11188 | S: Maintained |
| 11189 | F: drivers/media/platform/s3c-camif/ |
Mauro Carvalho Chehab | d647f0b | 2015-11-13 19:40:07 -0200 | [diff] [blame] | 11190 | F: include/media/drv-intf/s3c_camif.h |
Sylwester Nawrocki | 6fd86ab | 2012-11-15 18:05:15 -0300 | [diff] [blame] | 11191 | |
Andrzej Hajda | b84ef24 | 2013-01-31 07:03:05 -0300 | [diff] [blame] | 11192 | SAMSUNG S5C73M3 CAMERA DRIVER |
| 11193 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 11194 | M: Andrzej Hajda <a.hajda@samsung.com> |
| 11195 | L: linux-media@vger.kernel.org |
| 11196 | S: Supported |
| 11197 | F: drivers/media/i2c/s5c73m3/* |
| 11198 | |
Andrzej Hajda | 7d459937 | 2013-12-05 08:38:39 -0300 | [diff] [blame] | 11199 | SAMSUNG S5K5BAF CAMERA DRIVER |
| 11200 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 11201 | M: Andrzej Hajda <a.hajda@samsung.com> |
| 11202 | L: linux-media@vger.kernel.org |
| 11203 | S: Supported |
| 11204 | F: drivers/media/i2c/s5k5baf.c |
| 11205 | |
Robert Baldyga | c04c674 | 2015-08-20 17:26:02 +0200 | [diff] [blame] | 11206 | SAMSUNG S3FWRN5 NFC DRIVER |
| 11207 | M: Robert Baldyga <r.baldyga@samsung.com> |
Robert Baldyga | 079c265 | 2016-03-10 15:22:43 +0100 | [diff] [blame] | 11208 | M: Krzysztof Opasiak <k.opasiak@samsung.com> |
Robert Baldyga | c04c674 | 2015-08-20 17:26:02 +0200 | [diff] [blame] | 11209 | L: linux-nfc@lists.01.org (moderated for non-subscribers) |
| 11210 | S: Supported |
| 11211 | F: drivers/nfc/s3fwrn5 |
| 11212 | |
Tomasz Figa | 310e39c | 2013-11-09 03:17:34 +0100 | [diff] [blame] | 11213 | SAMSUNG SOC CLOCK DRIVERS |
Tomasz Figa | fea685e | 2014-08-26 16:30:53 +0200 | [diff] [blame] | 11214 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
| 11215 | M: Tomasz Figa <tomasz.figa@gmail.com> |
Chanwoo Choi | 490583f | 2016-08-18 21:47:19 +0900 | [diff] [blame] | 11216 | M: Chanwoo Choi <cw00.choi@samsung.com> |
Tomasz Figa | 310e39c | 2013-11-09 03:17:34 +0100 | [diff] [blame] | 11217 | S: Supported |
| 11218 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
| 11219 | F: drivers/clk/samsung/ |
Chanwoo Choi | 490583f | 2016-08-18 21:47:19 +0900 | [diff] [blame] | 11220 | F: include/dt-bindings/clock/exynos*.h |
| 11221 | F: Documentation/devicetree/bindings/clock/exynos*.txt |
Tomasz Figa | 310e39c | 2013-11-09 03:17:34 +0100 | [diff] [blame] | 11222 | |
Andi Shyti | 2e365a7 | 2016-08-18 16:25:55 +0900 | [diff] [blame] | 11223 | SAMSUNG SPI DRIVERS |
| 11224 | M: Kukjin Kim <kgene@kernel.org> |
| 11225 | M: Krzysztof Kozlowski <krzk@kernel.org> |
| 11226 | M: Andi Shyti <andi.shyti@samsung.com> |
| 11227 | L: linux-spi@vger.kernel.org |
| 11228 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
| 11229 | S: Maintained |
| 11230 | F: Documentation/devicetree/bindings/spi/spi-samsung.txt |
| 11231 | F: drivers/spi/spi-s3c* |
| 11232 | F: include/linux/platform_data/spi-s3c64xx.h |
| 11233 | |
Byungho An | 66890ed | 2014-03-25 12:11:07 -0700 | [diff] [blame] | 11234 | SAMSUNG SXGBE DRIVERS |
| 11235 | M: Byungho An <bh74.an@samsung.com> |
| 11236 | M: Girish K S <ks.giri@samsung.com> |
Byungho An | 66890ed | 2014-03-25 12:11:07 -0700 | [diff] [blame] | 11237 | M: Vipul Pandya <vipul.pandya@samsung.com> |
| 11238 | S: Supported |
| 11239 | L: netdev@vger.kernel.org |
| 11240 | F: drivers/net/ethernet/samsung/sxgbe/ |
| 11241 | |
Lukasz Majewski | 93c537a | 2015-02-24 16:31:28 +0100 | [diff] [blame] | 11242 | SAMSUNG THERMAL DRIVER |
Lukasz Majewski | 0faf7dd | 2016-12-12 16:09:45 +0100 | [diff] [blame] | 11243 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
Lukasz Majewski | 93c537a | 2015-02-24 16:31:28 +0100 | [diff] [blame] | 11244 | L: linux-pm@vger.kernel.org |
| 11245 | L: linux-samsung-soc@vger.kernel.org |
| 11246 | S: Supported |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 11247 | T: git https://github.com/lmajewski/linux-samsung-thermal.git |
Lukasz Majewski | 93c537a | 2015-02-24 16:31:28 +0100 | [diff] [blame] | 11248 | F: drivers/thermal/samsung/ |
| 11249 | |
Kamil Debski | e296cd3 | 2014-08-21 11:33:37 +0200 | [diff] [blame] | 11250 | SAMSUNG USB2 PHY DRIVER |
Kamil Debski | 774e036 | 2016-08-03 13:46:18 -0700 | [diff] [blame] | 11251 | M: Kamil Debski <kamil@wypas.org> |
| 11252 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
Kamil Debski | e296cd3 | 2014-08-21 11:33:37 +0200 | [diff] [blame] | 11253 | L: linux-kernel@vger.kernel.org |
| 11254 | S: Supported |
| 11255 | F: Documentation/devicetree/bindings/phy/samsung-phy.txt |
| 11256 | F: Documentation/phy/samsung-usb2.txt |
| 11257 | F: drivers/phy/phy-exynos4210-usb2.c |
| 11258 | F: drivers/phy/phy-exynos4x12-usb2.c |
| 11259 | F: drivers/phy/phy-exynos5250-usb2.c |
| 11260 | F: drivers/phy/phy-s5pv210-usb2.c |
| 11261 | F: drivers/phy/phy-samsung-usb2.c |
| 11262 | F: drivers/phy/phy-samsung-usb2.h |
| 11263 | |
Alan Cox | ca749e2 | 2011-03-18 13:56:14 +0000 | [diff] [blame] | 11264 | SERIAL DRIVERS |
Greg Kroah-Hartman | 5e30bbb | 2013-01-23 15:45:23 -0800 | [diff] [blame] | 11265 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
Alan Cox | ca749e2 | 2011-03-18 13:56:14 +0000 | [diff] [blame] | 11266 | L: linux-serial@vger.kernel.org |
Greg Kroah-Hartman | 5e30bbb | 2013-01-23 15:45:23 -0800 | [diff] [blame] | 11267 | S: Maintained |
Geert Uytterhoeven | 3074325 | 2016-05-22 11:06:25 +0200 | [diff] [blame] | 11268 | F: Documentation/devicetree/bindings/serial/ |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 11269 | F: drivers/tty/serial/ |
Alan Cox | ca749e2 | 2011-03-18 13:56:14 +0000 | [diff] [blame] | 11270 | |
Rob Herring | cd6484e | 2017-02-02 13:48:07 -0600 | [diff] [blame] | 11271 | SERIAL DEVICE BUS |
| 11272 | M: Rob Herring <robh@kernel.org> |
| 11273 | L: linux-serial@vger.kernel.org |
| 11274 | S: Maintained |
| 11275 | F: Documentation/devicetree/bindings/serial/slave-device.txt |
| 11276 | F: drivers/tty/serdev/ |
| 11277 | F: include/linux/serdev.h |
| 11278 | |
Sean Young | fa5dc29 | 2016-11-21 19:55:53 -0200 | [diff] [blame] | 11279 | SERIAL IR RECEIVER |
| 11280 | M: Sean Young <sean@mess.org> |
| 11281 | L: linux-media@vger.kernel.org |
| 11282 | S: Maintained |
| 11283 | F: drivers/media/rc/serial_ir.c |
| 11284 | |
Benjamin Gaignard | 49fc936 | 2016-09-15 04:37:46 -0300 | [diff] [blame] | 11285 | STI CEC DRIVER |
| 11286 | M: Benjamin Gaignard <benjamin.gaignard@linaro.org> |
| 11287 | L: kernel@stlinux.com |
| 11288 | S: Maintained |
| 11289 | F: drivers/staging/media/st-cec/ |
| 11290 | F: Documentation/devicetree/bindings/media/stih-cec.txt |
| 11291 | |
Ursula Braun | ac71387 | 2017-01-09 16:55:13 +0100 | [diff] [blame] | 11292 | SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS |
| 11293 | M: Ursula Braun <ubraun@linux.vnet.ibm.com> |
| 11294 | L: linux-s390@vger.kernel.org |
| 11295 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 11296 | S: Supported |
| 11297 | F: net/smc/ |
| 11298 | |
Viresh Kumar | aecb7b6 | 2011-05-24 14:04:09 +0530 | [diff] [blame] | 11299 | SYNOPSYS DESIGNWARE DMAC DRIVER |
Viresh Kumar | da89947 | 2015-07-17 16:23:50 -0700 | [diff] [blame] | 11300 | M: Viresh Kumar <vireshk@kernel.org> |
Viresh Kumar | 337ae47 | 2013-07-19 09:13:58 +0530 | [diff] [blame] | 11301 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
Viresh Kumar | aecb7b6 | 2011-05-24 14:04:09 +0530 | [diff] [blame] | 11302 | S: Maintained |
Andy Shevchenko | 1fb200d | 2015-01-19 18:23:06 +0200 | [diff] [blame] | 11303 | F: include/linux/dma/dw.h |
Andy Shevchenko | 3d598f4 | 2014-08-19 20:29:12 +0300 | [diff] [blame] | 11304 | F: include/linux/platform_data/dma-dw.h |
Andy Shevchenko | 61a7649 | 2013-06-05 15:26:44 +0300 | [diff] [blame] | 11305 | F: drivers/dma/dw/ |
Viresh Kumar | aecb7b6 | 2011-05-24 14:04:09 +0530 | [diff] [blame] | 11306 | |
Jie Deng | 65e0ace | 2017-03-08 14:06:18 +0800 | [diff] [blame] | 11307 | SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER |
| 11308 | M: Jie Deng <jiedeng@synopsys.com> |
| 11309 | L: netdev@vger.kernel.org |
| 11310 | S: Supported |
| 11311 | F: drivers/net/ethernet/synopsys/ |
| 11312 | |
Wolfram Sang | fc531d9 | 2015-10-15 15:50:15 +0200 | [diff] [blame] | 11313 | SYNOPSYS DESIGNWARE I2C DRIVER |
Wolfram Sang | fc531d9 | 2015-10-15 15:50:15 +0200 | [diff] [blame] | 11314 | M: Jarkko Nikula <jarkko.nikula@linux.intel.com> |
Andy Shevchenko | d0781b9 | 2016-03-08 11:19:24 +0200 | [diff] [blame] | 11315 | R: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
| 11316 | R: Mika Westerberg <mika.westerberg@linux.intel.com> |
Wolfram Sang | fc531d9 | 2015-10-15 15:50:15 +0200 | [diff] [blame] | 11317 | L: linux-i2c@vger.kernel.org |
| 11318 | S: Maintained |
| 11319 | F: drivers/i2c/busses/i2c-designware-* |
| 11320 | F: include/linux/platform_data/i2c-designware.h |
| 11321 | |
Seungwon Jeon | f9e3713 | 2013-01-17 21:33:23 +0900 | [diff] [blame] | 11322 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
Seungwon Jeon | f9e3713 | 2013-01-17 21:33:23 +0900 | [diff] [blame] | 11323 | M: Jaehoon Chung <jh80.chung@samsung.com> |
| 11324 | L: linux-mmc@vger.kernel.org |
| 11325 | S: Maintained |
Seungwon Jeon | f9e3713 | 2013-01-17 21:33:23 +0900 | [diff] [blame] | 11326 | F: drivers/mmc/host/dw_mmc* |
| 11327 | |
Alexander Shishkin | a961e69 | 2015-09-22 15:47:11 +0300 | [diff] [blame] | 11328 | SYSTEM TRACE MODULE CLASS |
| 11329 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> |
| 11330 | S: Maintained |
Alexander Shishkin | e787bc4 | 2016-03-31 16:30:15 +0300 | [diff] [blame] | 11331 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git |
Alexander Shishkin | a961e69 | 2015-09-22 15:47:11 +0300 | [diff] [blame] | 11332 | F: Documentation/trace/stm.txt |
| 11333 | F: drivers/hwtracing/stm/ |
| 11334 | F: include/linux/stm.h |
| 11335 | F: include/uapi/linux/stm.h |
| 11336 | |
Jens Wiklander | 967c9cc | 2015-03-11 14:39:39 +0100 | [diff] [blame] | 11337 | TEE SUBSYSTEM |
| 11338 | M: Jens Wiklander <jens.wiklander@linaro.org> |
| 11339 | S: Maintained |
| 11340 | F: include/linux/tee_drv.h |
| 11341 | F: include/uapi/linux/tee.h |
| 11342 | F: drivers/tee/ |
Jens Wiklander | 6a6e770 | 2015-06-01 16:15:25 +0200 | [diff] [blame] | 11343 | F: Documentation/tee.txt |
Jens Wiklander | 967c9cc | 2015-03-11 14:39:39 +0100 | [diff] [blame] | 11344 | |
Andreas Noever | 1db121d | 2014-07-10 18:58:04 +0200 | [diff] [blame] | 11345 | THUNDERBOLT DRIVER |
| 11346 | M: Andreas Noever <andreas.noever@gmail.com> |
| 11347 | S: Maintained |
| 11348 | F: drivers/thunderbolt/ |
| 11349 | |
Sebastian Reichel | e35a49b | 2016-01-17 21:36:03 +0100 | [diff] [blame] | 11350 | TI BQ27XXX POWER SUPPLY DRIVER |
| 11351 | R: Andrew F. Davis <afd@ti.com> |
| 11352 | F: include/linux/power/bq27xxx_battery.h |
Sebastian Reichel | 8c0984e | 2016-06-17 13:54:32 +0200 | [diff] [blame] | 11353 | F: drivers/power/supply/bq27xxx_battery.c |
| 11354 | F: drivers/power/supply/bq27xxx_battery_i2c.c |
Sebastian Reichel | e35a49b | 2016-01-17 21:36:03 +0100 | [diff] [blame] | 11355 | |
John Stultz | 34db37c | 2015-11-13 13:07:31 -0800 | [diff] [blame] | 11356 | TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER |
John Stultz | 5036373 | 2012-12-13 13:08:47 -0500 | [diff] [blame] | 11357 | M: John Stultz <john.stultz@linaro.org> |
Thomas Gleixner | 88606e8 | 2010-12-14 21:37:13 +0100 | [diff] [blame] | 11358 | M: Thomas Gleixner <tglx@linutronix.de> |
John Stultz | e1c0921 | 2017-02-22 14:04:13 -0800 | [diff] [blame] | 11359 | R: Stephen Boyd <sboyd@codeaurora.org> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 11360 | L: linux-kernel@vger.kernel.org |
Peter Zijlstra | 75fc2d3 | 2011-12-05 17:27:08 +0100 | [diff] [blame] | 11361 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
Thomas Gleixner | 88606e8 | 2010-12-14 21:37:13 +0100 | [diff] [blame] | 11362 | S: Supported |
| 11363 | F: include/linux/clocksource.h |
| 11364 | F: include/linux/time.h |
| 11365 | F: include/linux/timex.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 11366 | F: include/uapi/linux/time.h |
| 11367 | F: include/uapi/linux/timex.h |
Thomas Gleixner | 88606e8 | 2010-12-14 21:37:13 +0100 | [diff] [blame] | 11368 | F: kernel/time/clocksource.c |
| 11369 | F: kernel/time/time*.c |
John Stultz | 34db37c | 2015-11-13 13:07:31 -0800 | [diff] [blame] | 11370 | F: kernel/time/alarmtimer.c |
Thomas Gleixner | 88606e8 | 2010-12-14 21:37:13 +0100 | [diff] [blame] | 11371 | F: kernel/time/ntp.c |
John Stultz | 7fe5f1c | 2015-03-11 17:40:15 -0700 | [diff] [blame] | 11372 | F: tools/testing/selftests/timers/ |
Thomas Gleixner | 88606e8 | 2010-12-14 21:37:13 +0100 | [diff] [blame] | 11373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11374 | SC1200 WDT DRIVER |
Jean Delvare | b300645 | 2013-11-12 15:08:56 -0800 | [diff] [blame] | 11375 | M: Zwane Mwaikambo <zwanem@gmail.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11376 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11377 | F: drivers/watchdog/sc1200wdt.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11378 | |
| 11379 | SCHEDULER |
Ingo Molnar | dd9b238 | 2012-03-19 21:03:46 +0100 | [diff] [blame] | 11380 | M: Ingo Molnar <mingo@redhat.com> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11381 | M: Peter Zijlstra <peterz@infradead.org> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 11382 | L: linux-kernel@vger.kernel.org |
Peter Zijlstra | 75fc2d3 | 2011-12-05 17:27:08 +0100 | [diff] [blame] | 11383 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11384 | S: Maintained |
Namhyung Kim | 95c0d71 | 2012-07-03 23:37:31 +0900 | [diff] [blame] | 11385 | F: kernel/sched/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11386 | F: include/linux/sched.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 11387 | F: include/uapi/linux/sched.h |
Peter Zijlstra | c2eb505 | 2013-10-02 11:49:47 +0200 | [diff] [blame] | 11388 | F: include/linux/wait.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11389 | |
Chen Liqin | 6bcf673 | 2009-06-13 15:24:33 +0800 | [diff] [blame] | 11390 | SCORE ARCHITECTURE |
Lennox Wu | ed38665 | 2013-09-26 01:41:22 +0800 | [diff] [blame] | 11391 | M: Chen Liqin <liqin.linux@gmail.com> |
Joe Perches | a2681a7 | 2009-10-26 16:49:43 -0700 | [diff] [blame] | 11392 | M: Lennox Wu <lennox.wu@gmail.com> |
Lennox Wu | ed38665 | 2013-09-26 01:41:22 +0800 | [diff] [blame] | 11393 | W: http://www.sunplus.com |
Chen Liqin | 6bcf673 | 2009-06-13 15:24:33 +0800 | [diff] [blame] | 11394 | S: Supported |
Joe Perches | a2681a7 | 2009-10-26 16:49:43 -0700 | [diff] [blame] | 11395 | F: arch/score/ |
Chen Liqin | 6bcf673 | 2009-06-13 15:24:33 +0800 | [diff] [blame] | 11396 | |
Lubomir Rintel | f2ed287 | 2016-10-25 16:28:10 +0200 | [diff] [blame] | 11397 | SCR24X CHIP CARD INTERFACE DRIVER |
| 11398 | M: Lubomir Rintel <lkundrak@v3.sk> |
| 11399 | S: Supported |
| 11400 | F: drivers/char/pcmcia/scr24x_cs.c |
| 11401 | |
Sudeep Holla | 80f390e | 2015-05-14 11:26:11 +0100 | [diff] [blame] | 11402 | SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers |
| 11403 | M: Sudeep Holla <sudeep.holla@arm.com> |
| 11404 | L: linux-arm-kernel@lists.infradead.org |
| 11405 | S: Maintained |
| 11406 | F: Documentation/devicetree/bindings/arm/arm,scpi.txt |
Sudeep Holla | cd52c2a | 2015-03-30 10:59:52 +0100 | [diff] [blame] | 11407 | F: drivers/clk/clk-scpi.c |
Sudeep Holla | 8def310 | 2015-03-30 10:59:52 +0100 | [diff] [blame] | 11408 | F: drivers/cpufreq/scpi-cpufreq.c |
Sudeep Holla | 8cb7cf5 | 2015-03-30 10:59:52 +0100 | [diff] [blame] | 11409 | F: drivers/firmware/arm_scpi.c |
| 11410 | F: include/linux/scpi_protocol.h |
Sudeep Holla | 80f390e | 2015-05-14 11:26:11 +0100 | [diff] [blame] | 11411 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11412 | SCSI CDROM DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11413 | M: Jens Axboe <axboe@kernel.dk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11414 | L: linux-scsi@vger.kernel.org |
| 11415 | W: http://www.kernel.dk |
| 11416 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11417 | F: drivers/scsi/sr* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11418 | |
Roland Dreier | fb50a83 | 2010-10-07 09:54:53 -0700 | [diff] [blame] | 11419 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
Bart Van Assche | 3453bddb | 2015-02-06 15:27:56 +0100 | [diff] [blame] | 11420 | M: Bart Van Assche <bart.vanassche@sandisk.com> |
Roland Dreier | fb50a83 | 2010-10-07 09:54:53 -0700 | [diff] [blame] | 11421 | L: linux-rdma@vger.kernel.org |
| 11422 | S: Supported |
| 11423 | W: http://www.openfabrics.org |
| 11424 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
| 11425 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git |
| 11426 | F: drivers/infiniband/ulp/srp/ |
| 11427 | F: include/scsi/srp.h |
| 11428 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11429 | SCSI SG DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11430 | M: Doug Gilbert <dgilbert@interlog.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11431 | L: linux-scsi@vger.kernel.org |
Douglas Gilbert | 59ab3c9 | 2013-10-31 09:10:46 -0400 | [diff] [blame] | 11432 | W: http://sg.danny.cz/sg |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11433 | S: Maintained |
Douglas Gilbert | 59ab3c9 | 2013-10-31 09:10:46 -0400 | [diff] [blame] | 11434 | F: Documentation/scsi/scsi-generic.txt |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11435 | F: drivers/scsi/sg.c |
| 11436 | F: include/scsi/sg.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11437 | |
| 11438 | SCSI SUBSYSTEM |
James Bottomley | 7ee7895 | 2016-03-14 12:42:27 -0700 | [diff] [blame] | 11439 | M: "James E.J. Bottomley" <jejb@linux.vnet.ibm.com> |
James Bottomley | 0351b8f | 2015-04-01 09:09:36 +0000 | [diff] [blame] | 11440 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git |
Martin K. Petersen | f4ab421 | 2015-11-13 16:46:49 -0500 | [diff] [blame] | 11441 | M: "Martin K. Petersen" <martin.petersen@oracle.com> |
| 11442 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git |
| 11443 | L: linux-scsi@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11444 | S: Maintained |
Geert Uytterhoeven | 2c99a31 | 2016-05-22 11:06:19 +0200 | [diff] [blame] | 11445 | F: Documentation/devicetree/bindings/scsi/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11446 | F: drivers/scsi/ |
| 11447 | F: include/scsi/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11448 | |
| 11449 | SCSI TAPE DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11450 | M: Kai Mäkisara <Kai.Makisara@kolumbus.fi> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11451 | L: linux-scsi@vger.kernel.org |
| 11452 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11453 | F: Documentation/scsi/st.txt |
Jean Delvare | f7269cf | 2013-07-03 15:05:08 -0700 | [diff] [blame] | 11454 | F: drivers/scsi/st.* |
| 11455 | F: drivers/scsi/st_*.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11456 | |
| 11457 | SCTP PROTOCOL |
Vlad Yasevich | 8b6efb7 | 2012-04-26 10:27:18 +0000 | [diff] [blame] | 11458 | M: Vlad Yasevich <vyasevich@gmail.com> |
Neil Horman | 02c38d0 | 2012-10-24 09:26:51 +0000 | [diff] [blame] | 11459 | M: Neil Horman <nhorman@tuxdriver.com> |
Vlad Yasevich | 1a41879 | 2008-04-12 18:55:42 -0700 | [diff] [blame] | 11460 | L: linux-sctp@vger.kernel.org |
Sridhar Samudrala | 5f85813 | 2007-03-23 11:39:51 -0700 | [diff] [blame] | 11461 | W: http://lksctp.sourceforge.net |
Vlad Yasevich | 8b6efb7 | 2012-04-26 10:27:18 +0000 | [diff] [blame] | 11462 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11463 | F: Documentation/networking/sctp.txt |
| 11464 | F: include/linux/sctp.h |
Daniel Borkmann | 4d58c02 | 2013-07-23 14:51:48 +0200 | [diff] [blame] | 11465 | F: include/uapi/linux/sctp.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11466 | F: include/net/sctp/ |
| 11467 | F: net/sctp/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11468 | |
| 11469 | SCx200 CPU SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11470 | M: Jim Cromie <jim.cromie@gmail.com> |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 11471 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11472 | F: Documentation/i2c/busses/scx200_acb |
Joe Perches | 390889b | 2011-03-22 16:34:34 -0700 | [diff] [blame] | 11473 | F: arch/x86/platform/scx200/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11474 | F: drivers/watchdog/scx200_wdt.c |
| 11475 | F: drivers/i2c/busses/scx200* |
| 11476 | F: drivers/mtd/maps/scx200_docflash.c |
| 11477 | F: include/linux/scx200.h |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 11478 | |
| 11479 | SCx200 GPIO DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11480 | M: Jim Cromie <jim.cromie@gmail.com> |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 11481 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11482 | F: drivers/char/scx200_gpio.c |
| 11483 | F: include/linux/scx200_gpio.h |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 11484 | |
| 11485 | SCx200 HRT CLOCKSOURCE DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11486 | M: Jim Cromie <jim.cromie@gmail.com> |
Jim Cromie | 1662d32 | 2006-10-06 00:43:59 -0700 | [diff] [blame] | 11487 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11488 | F: drivers/clocksource/scx200_hrt.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11489 | |
Sascha Sommer | 6a36913 | 2008-07-15 14:21:29 +0200 | [diff] [blame] | 11490 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11491 | M: Sascha Sommer <saschasommer@freenet.de> |
Sascha Sommer | 6a36913 | 2008-07-15 14:21:29 +0200 | [diff] [blame] | 11492 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
| 11493 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11494 | F: drivers/mmc/host/sdricoh_cs.c |
Sascha Sommer | 6a36913 | 2008-07-15 14:21:29 +0200 | [diff] [blame] | 11495 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 11496 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
Ulf Hansson | ddfe954 | 2016-02-11 15:14:59 +0100 | [diff] [blame] | 11497 | M: Adrian Hunter <adrian.hunter@intel.com> |
Joe Perches | 7a241d6 | 2009-10-26 16:49:42 -0700 | [diff] [blame] | 11498 | L: linux-mmc@vger.kernel.org |
Ulf Hansson | ddfe954 | 2016-02-11 15:14:59 +0100 | [diff] [blame] | 11499 | T: git git://git.infradead.org/users/ahunter/linux-sdhci.git |
| 11500 | S: Maintained |
| 11501 | F: drivers/mmc/host/sdhci* |
| 11502 | F: include/linux/mmc/sdhci* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 11503 | |
Kees Cook | c04f9d6 | 2014-07-18 11:28:33 -0700 | [diff] [blame] | 11504 | SECURE COMPUTING |
| 11505 | M: Kees Cook <keescook@chromium.org> |
Kees Cook | a0cfd75 | 2014-08-12 15:41:17 -0700 | [diff] [blame] | 11506 | R: Andy Lutomirski <luto@amacapital.net> |
| 11507 | R: Will Drewry <wad@chromium.org> |
Kees Cook | c04f9d6 | 2014-07-18 11:28:33 -0700 | [diff] [blame] | 11508 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp |
| 11509 | S: Supported |
| 11510 | F: kernel/seccomp.c |
| 11511 | F: include/uapi/linux/seccomp.h |
| 11512 | F: include/linux/seccomp.h |
Kees Cook | c99ee51 | 2015-06-16 10:54:14 -0700 | [diff] [blame] | 11513 | F: tools/testing/selftests/seccomp/* |
Kees Cook | c04f9d6 | 2014-07-18 11:28:33 -0700 | [diff] [blame] | 11514 | K: \bsecure_computing |
| 11515 | K: \bTIF_SECCOMP\b |
| 11516 | |
Al Cooper | 476bf3d | 2016-06-16 12:47:16 -0400 | [diff] [blame] | 11517 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER |
| 11518 | M: Al Cooper <alcooperx@gmail.com> |
| 11519 | L: linux-mmc@vger.kernel.org |
| 11520 | L: bcm-kernel-feedback-list@broadcom.com |
| 11521 | S: Maintained |
| 11522 | F: drivers/mmc/host/sdhci-brcmstb* |
| 11523 | |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 11524 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11525 | M: Ben Dooks <ben-linux@fluff.org> |
Ulf Hansson | dc52488 | 2015-03-20 10:15:29 +0100 | [diff] [blame] | 11526 | M: Jaehoon Chung <jh80.chung@samsung.com> |
Joe Perches | 7a241d6 | 2009-10-26 16:49:42 -0700 | [diff] [blame] | 11527 | L: linux-mmc@vger.kernel.org |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 11528 | S: Maintained |
Ulf Hansson | dc52488 | 2015-03-20 10:15:29 +0100 | [diff] [blame] | 11529 | F: drivers/mmc/host/sdhci-s3c* |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 11530 | |
Viresh KUMAR | c63b3cb | 2010-05-26 14:42:10 -0700 | [diff] [blame] | 11531 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
Viresh Kumar | da89947 | 2015-07-17 16:23:50 -0700 | [diff] [blame] | 11532 | M: Viresh Kumar <vireshk@kernel.org> |
Viresh KUMAR | c63b3cb | 2010-05-26 14:42:10 -0700 | [diff] [blame] | 11533 | L: linux-mmc@vger.kernel.org |
| 11534 | S: Maintained |
| 11535 | F: drivers/mmc/host/sdhci-spear.c |
| 11536 | |
Scott Bauer | 455a7b2 | 2017-02-03 12:50:31 -0700 | [diff] [blame] | 11537 | SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER |
| 11538 | M: Scott Bauer <scott.bauer@intel.com> |
| 11539 | M: Jonathan Derrick <jonathan.derrick@intel.com> |
| 11540 | M: Rafael Antognolli <rafael.antognolli@intel.com> |
Scott Bauer | 0222967 | 2017-02-14 17:29:37 -0700 | [diff] [blame] | 11541 | L: linux-block@vger.kernel.org |
Scott Bauer | 455a7b2 | 2017-02-03 12:50:31 -0700 | [diff] [blame] | 11542 | S: Supported |
| 11543 | F: block/sed* |
| 11544 | F: block/opal_proto.h |
| 11545 | F: include/linux/sed* |
| 11546 | F: include/uapi/linux/sed* |
| 11547 | |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 11548 | SECURITY SUBSYSTEM |
James Morris | 9b45c0d | 2012-02-22 12:45:07 +1100 | [diff] [blame] | 11549 | M: James Morris <james.l.morris@oracle.com> |
Joe Perches | 9c3646d | 2015-06-25 15:02:00 -0700 | [diff] [blame] | 11550 | M: "Serge E. Hallyn" <serge@hallyn.com> |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 11551 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
James Morris | 89879a7 | 2012-01-18 10:40:44 +1100 | [diff] [blame] | 11552 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
James Morris | 9ccf010 | 2012-04-09 15:48:07 +1000 | [diff] [blame] | 11553 | W: http://kernsec.org/ |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 11554 | S: Supported |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 11555 | F: security/ |
James Morris | 8711cca | 2008-12-04 03:19:45 +1100 | [diff] [blame] | 11556 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11557 | SECURITY CONTACT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11558 | M: Security Officers <security@kernel.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11559 | S: Supported |
| 11560 | |
| 11561 | SELINUX SECURITY MODULE |
Paul Moore | 5a5f2ac | 2013-09-18 13:14:04 -0400 | [diff] [blame] | 11562 | M: Paul Moore <paul@paul-moore.com> |
Paul Moore | e0238b4 | 2014-02-06 07:51:54 -0500 | [diff] [blame] | 11563 | M: Stephen Smalley <sds@tycho.nsa.gov> |
| 11564 | M: Eric Paris <eparis@parisplace.org> |
| 11565 | L: selinux@tycho.nsa.gov (moderated for non-subscribers) |
Stephen Smalley | f058925 | 2008-09-11 09:20:26 -0400 | [diff] [blame] | 11566 | W: http://selinuxproject.org |
Paul Moore | 5a5f2ac | 2013-09-18 13:14:04 -0400 | [diff] [blame] | 11567 | T: git git://git.infradead.org/users/pcmoore/selinux |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11568 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11569 | F: include/linux/selinux* |
| 11570 | F: security/selinux/ |
Eric Paris | 6bde95c | 2011-04-01 17:09:41 -0400 | [diff] [blame] | 11571 | F: scripts/selinux/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11572 | |
John Johansen | c1c124e | 2010-07-29 14:48:09 -0700 | [diff] [blame] | 11573 | APPARMOR SECURITY MODULE |
| 11574 | M: John Johansen <john.johansen@canonical.com> |
| 11575 | L: apparmor@lists.ubuntu.com (subscribers-only, general discussion) |
| 11576 | W: apparmor.wiki.kernel.org |
| 11577 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git |
| 11578 | S: Supported |
| 11579 | F: security/apparmor/ |
| 11580 | |
Kees Cook | 9b09155 | 2016-04-20 15:46:28 -0700 | [diff] [blame] | 11581 | LOADPIN SECURITY MODULE |
| 11582 | M: Kees Cook <keescook@chromium.org> |
| 11583 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin |
| 11584 | S: Supported |
| 11585 | F: security/loadpin/ |
| 11586 | |
Kees Cook | 730daa1 | 2015-07-23 18:02:48 -0700 | [diff] [blame] | 11587 | YAMA SECURITY MODULE |
| 11588 | M: Kees Cook <keescook@chromium.org> |
| 11589 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip |
| 11590 | S: Supported |
| 11591 | F: security/yama/ |
| 11592 | |
Jiri Slaby | cef2cf0 | 2007-05-08 00:31:45 -0700 | [diff] [blame] | 11593 | SENSABLE PHANTOM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11594 | M: Jiri Slaby <jirislaby@gmail.com> |
Jiri Slaby | cef2cf0 | 2007-05-08 00:31:45 -0700 | [diff] [blame] | 11595 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11596 | F: drivers/misc/phantom.c |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 11597 | F: include/uapi/linux/phantom.h |
Jiri Slaby | cef2cf0 | 2007-05-08 00:31:45 -0700 | [diff] [blame] | 11598 | |
Jitendra Bhivare | 2a1e844 | 2016-08-19 15:20:26 +0530 | [diff] [blame] | 11599 | Emulex 10Gbps iSCSI - OneConnect DRIVER |
| 11600 | M: Subbu Seetharaman <subbu.seetharaman@broadcom.com> |
| 11601 | M: Ketan Mukadam <ketan.mukadam@broadcom.com> |
| 11602 | M: Jitendra Bhivare <jitendra.bhivare@broadcom.com> |
Joe Perches | 3387f65 | 2009-11-11 14:26:11 -0800 | [diff] [blame] | 11603 | L: linux-scsi@vger.kernel.org |
Jitendra Bhivare | 2a1e844 | 2016-08-19 15:20:26 +0530 | [diff] [blame] | 11604 | W: http://www.broadcom.com |
Joe Perches | 3387f65 | 2009-11-11 14:26:11 -0800 | [diff] [blame] | 11605 | S: Supported |
| 11606 | F: drivers/scsi/be2iscsi/ |
Jayamohan Kallickal | 6733b39 | 2009-09-05 07:36:35 +0530 | [diff] [blame] | 11607 | |
Sathya Perla | d2ee76f | 2016-06-22 08:54:57 -0400 | [diff] [blame] | 11608 | Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net) |
Sathya Perla | aa7b453 | 2016-02-02 08:10:10 -0500 | [diff] [blame] | 11609 | M: Sathya Perla <sathya.perla@broadcom.com> |
| 11610 | M: Ajit Khaparde <ajit.khaparde@broadcom.com> |
Sathya Perla | aa7b453 | 2016-02-02 08:10:10 -0500 | [diff] [blame] | 11611 | M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com> |
| 11612 | M: Somnath Kotur <somnath.kotur@broadcom.com> |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 11613 | L: netdev@vger.kernel.org |
Ajit Khaparde | fea3af6 | 2011-02-04 13:03:35 -0800 | [diff] [blame] | 11614 | W: http://www.emulex.com |
Joe Perches | 7d2c86b | 2009-04-07 20:59:01 -0700 | [diff] [blame] | 11615 | S: Supported |
Jeff Kirsher | 9aebddd | 2011-05-13 00:37:27 -0700 | [diff] [blame] | 11616 | F: drivers/net/ethernet/emulex/benet/ |
Sathya Perla | 6b7c5b9 | 2009-03-11 23:32:03 -0700 | [diff] [blame] | 11617 | |
Selvin Xavier | d2928a8 | 2015-03-15 00:09:41 +0530 | [diff] [blame] | 11618 | EMULEX ONECONNECT ROCE DRIVER |
Selvin Xavier | 2c15b73 | 2017-04-04 01:30:38 -0700 | [diff] [blame] | 11619 | M: Selvin Xavier <selvin.xavier@broadcom.com> |
| 11620 | M: Devesh Sharma <devesh.sharma@broadcom.com> |
Selvin Xavier | d2928a8 | 2015-03-15 00:09:41 +0530 | [diff] [blame] | 11621 | L: linux-rdma@vger.kernel.org |
Selvin Xavier | 2c15b73 | 2017-04-04 01:30:38 -0700 | [diff] [blame] | 11622 | W: http://www.broadcom.com |
| 11623 | S: Odd Fixes |
Selvin Xavier | d2928a8 | 2015-03-15 00:09:41 +0530 | [diff] [blame] | 11624 | F: drivers/infiniband/hw/ocrdma/ |
Leon Romanovsky | a7fe738 | 2016-09-22 17:31:15 +0300 | [diff] [blame] | 11625 | F: include/uapi/rdma/ocrdma-abi.h |
Selvin Xavier | d2928a8 | 2015-03-15 00:09:41 +0530 | [diff] [blame] | 11626 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 11627 | SFC NETWORK DRIVER |
Joe Perches | c06f51e | 2009-08-26 08:47:47 +0000 | [diff] [blame] | 11628 | M: Solarflare linux maintainers <linux-net-drivers@solarflare.com> |
Bert Kenward | e00f801 | 2016-04-25 17:42:12 +0100 | [diff] [blame] | 11629 | M: Edward Cree <ecree@solarflare.com> |
| 11630 | M: Bert Kenward <bkenward@solarflare.com> |
Joe Perches | c06f51e | 2009-08-26 08:47:47 +0000 | [diff] [blame] | 11631 | L: netdev@vger.kernel.org |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 11632 | S: Supported |
Jeff Kirsher | 874aeea | 2011-05-13 00:17:42 -0700 | [diff] [blame] | 11633 | F: drivers/net/ethernet/sfc/ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 11634 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 11635 | SGI GRU DRIVER |
Bjorn Helgaas | cc883af | 2013-01-29 15:48:37 -0700 | [diff] [blame] | 11636 | M: Dimitri Sivanich <sivanich@sgi.com> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 11637 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11638 | F: drivers/misc/sgi-gru/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 11639 | |
| 11640 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11641 | M: Pat Gefre <pfg@sgi.com> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 11642 | L: linux-ia64@vger.kernel.org |
| 11643 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11644 | F: Documentation/ia64/serial.txt |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 11645 | F: drivers/tty/serial/ioc?_serial.c |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11646 | F: include/linux/ioc?.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 11647 | |
Jack Steiner | 7531261 | 2008-08-15 00:40:42 -0700 | [diff] [blame] | 11648 | SGI XP/XPC/XPNET DRIVER |
Robin Holt | e180383 | 2013-08-16 18:01:42 -0500 | [diff] [blame] | 11649 | M: Cliff Whickman <cpw@sgi.com> |
| 11650 | M: Robin Holt <robinmholt@gmail.com> |
Jack Steiner | 7531261 | 2008-08-15 00:40:42 -0700 | [diff] [blame] | 11651 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11652 | F: drivers/misc/sgi-xp/ |
Jack Steiner | 7531261 | 2008-08-15 00:40:42 -0700 | [diff] [blame] | 11653 | |
Antti Palosaari | 46eacf3 | 2014-04-15 06:21:03 -0300 | [diff] [blame] | 11654 | SI2157 MEDIA DRIVER |
| 11655 | M: Antti Palosaari <crope@iki.fi> |
| 11656 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 11657 | W: https://linuxtv.org |
Antti Palosaari | 46eacf3 | 2014-04-15 06:21:03 -0300 | [diff] [blame] | 11658 | W: http://palosaari.fi/linux/ |
| 11659 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 11660 | T: git git://linuxtv.org/anttip/media_tree.git |
| 11661 | S: Maintained |
| 11662 | F: drivers/media/tuners/si2157* |
| 11663 | |
Antti Palosaari | 75e2d5b | 2014-04-15 06:17:53 -0300 | [diff] [blame] | 11664 | SI2168 MEDIA DRIVER |
| 11665 | M: Antti Palosaari <crope@iki.fi> |
| 11666 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 11667 | W: https://linuxtv.org |
Antti Palosaari | 75e2d5b | 2014-04-15 06:17:53 -0300 | [diff] [blame] | 11668 | W: http://palosaari.fi/linux/ |
| 11669 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 11670 | T: git git://linuxtv.org/anttip/media_tree.git |
| 11671 | S: Maintained |
| 11672 | F: drivers/media/dvb-frontends/si2168* |
| 11673 | |
Hans Verkuil | 49cc629 | 2012-11-30 07:13:29 -0300 | [diff] [blame] | 11674 | SI470X FM RADIO RECEIVER I2C DRIVER |
| 11675 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 11676 | L: linux-media@vger.kernel.org |
| 11677 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 11678 | W: https://linuxtv.org |
Hans Verkuil | 49cc629 | 2012-11-30 07:13:29 -0300 | [diff] [blame] | 11679 | S: Odd Fixes |
| 11680 | F: drivers/media/radio/si470x/radio-si470x-i2c.c |
| 11681 | |
| 11682 | SI470X FM RADIO RECEIVER USB DRIVER |
| 11683 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 11684 | L: linux-media@vger.kernel.org |
| 11685 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 11686 | W: https://linuxtv.org |
Hans Verkuil | 49cc629 | 2012-11-30 07:13:29 -0300 | [diff] [blame] | 11687 | S: Maintained |
| 11688 | F: drivers/media/radio/si470x/radio-si470x-common.c |
| 11689 | F: drivers/media/radio/si470x/radio-si470x.h |
| 11690 | F: drivers/media/radio/si470x/radio-si470x-usb.c |
| 11691 | |
Eduardo Valentin | c937ca0 | 2013-02-27 10:37:39 -0300 | [diff] [blame] | 11692 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
| 11693 | M: Eduardo Valentin <edubezval@gmail.com> |
| 11694 | L: linux-media@vger.kernel.org |
| 11695 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 11696 | W: https://linuxtv.org |
Eduardo Valentin | c937ca0 | 2013-02-27 10:37:39 -0300 | [diff] [blame] | 11697 | S: Odd Fixes |
Dinesh Ram | 99995de | 2013-10-15 12:24:43 -0300 | [diff] [blame] | 11698 | F: drivers/media/radio/si4713/si4713.? |
Eduardo Valentin | c937ca0 | 2013-02-27 10:37:39 -0300 | [diff] [blame] | 11699 | |
| 11700 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER |
| 11701 | M: Eduardo Valentin <edubezval@gmail.com> |
| 11702 | L: linux-media@vger.kernel.org |
| 11703 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 11704 | W: https://linuxtv.org |
Eduardo Valentin | c937ca0 | 2013-02-27 10:37:39 -0300 | [diff] [blame] | 11705 | S: Odd Fixes |
Dinesh Ram | 99995de | 2013-10-15 12:24:43 -0300 | [diff] [blame] | 11706 | F: drivers/media/radio/si4713/radio-platform-si4713.c |
| 11707 | |
| 11708 | SI4713 FM RADIO TRANSMITTER USB DRIVER |
| 11709 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 11710 | L: linux-media@vger.kernel.org |
| 11711 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 11712 | W: https://linuxtv.org |
Dinesh Ram | 99995de | 2013-10-15 12:24:43 -0300 | [diff] [blame] | 11713 | S: Maintained |
| 11714 | F: drivers/media/radio/si4713/radio-usb-si4713.c |
Eduardo Valentin | c937ca0 | 2013-02-27 10:37:39 -0300 | [diff] [blame] | 11715 | |
Mauro Carvalho Chehab | beb91d4 | 2013-03-19 12:42:45 -0300 | [diff] [blame] | 11716 | SIANO DVB DRIVER |
Mauro Carvalho Chehab | 5dc8a86 | 2016-06-14 15:17:40 -0300 | [diff] [blame] | 11717 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
| 11718 | M: Mauro Carvalho Chehab <mchehab@kernel.org> |
Mauro Carvalho Chehab | beb91d4 | 2013-03-19 12:42:45 -0300 | [diff] [blame] | 11719 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 11720 | W: https://linuxtv.org |
Mauro Carvalho Chehab | beb91d4 | 2013-03-19 12:42:45 -0300 | [diff] [blame] | 11721 | T: git git://linuxtv.org/media_tree.git |
| 11722 | S: Odd fixes |
| 11723 | F: drivers/media/common/siano/ |
Mauro Carvalho Chehab | beb91d4 | 2013-03-19 12:42:45 -0300 | [diff] [blame] | 11724 | F: drivers/media/usb/siano/ |
Mauro Carvalho Chehab | beb91d4 | 2013-03-19 12:42:45 -0300 | [diff] [blame] | 11725 | F: drivers/media/usb/siano/ |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 11726 | F: drivers/media/mmc/siano/ |
Mauro Carvalho Chehab | beb91d4 | 2013-03-19 12:42:45 -0300 | [diff] [blame] | 11727 | |
Hans de Goede | cef9dd8 | 2017-01-23 18:35:30 +0100 | [diff] [blame] | 11728 | SILEAD TOUCHSCREEN DRIVER |
| 11729 | M: Hans de Goede <hdegoede@redhat.com> |
| 11730 | L: linux-input@vger.kernel.org |
| 11731 | L: platform-driver-x86@vger.kernel.org |
| 11732 | S: Maintained |
| 11733 | F: drivers/input/touchscreen/silead.c |
| 11734 | F: drivers/platform/x86/silead_dmi.c |
| 11735 | |
Hans de Goede | 6f15b60 | 2014-11-14 13:26:46 +0100 | [diff] [blame] | 11736 | SIMPLEFB FB DRIVER |
| 11737 | M: Hans de Goede <hdegoede@redhat.com> |
| 11738 | L: linux-fbdev@vger.kernel.org |
| 11739 | S: Maintained |
Rob Herring | 2d799dd | 2015-11-05 13:40:40 -0600 | [diff] [blame] | 11740 | F: Documentation/devicetree/bindings/display/simple-framebuffer.txt |
Hans de Goede | 6f15b60 | 2014-11-14 13:26:46 +0100 | [diff] [blame] | 11741 | F: drivers/video/fbdev/simplefb.c |
| 11742 | F: include/linux/platform_data/simplefb.h |
| 11743 | |
Guennadi Liakhovetski | b618b69 | 2012-11-29 06:57:30 -0300 | [diff] [blame] | 11744 | SH_VEU V4L2 MEM2MEM DRIVER |
Guennadi Liakhovetski | b618b69 | 2012-11-29 06:57:30 -0300 | [diff] [blame] | 11745 | L: linux-media@vger.kernel.org |
Guennadi Liakhovetski | bb60fcb | 2013-11-24 17:44:08 -0300 | [diff] [blame] | 11746 | S: Orphan |
Guennadi Liakhovetski | b618b69 | 2012-11-29 06:57:30 -0300 | [diff] [blame] | 11747 | F: drivers/media/platform/sh_veu.c |
Guennadi Liakhovetski | b618b69 | 2012-11-29 06:57:30 -0300 | [diff] [blame] | 11748 | |
| 11749 | SH_VOU V4L2 OUTPUT DRIVER |
Guennadi Liakhovetski | b618b69 | 2012-11-29 06:57:30 -0300 | [diff] [blame] | 11750 | L: linux-media@vger.kernel.org |
Guennadi Liakhovetski | bb60fcb | 2013-11-24 17:44:08 -0300 | [diff] [blame] | 11751 | S: Orphan |
Guennadi Liakhovetski | b618b69 | 2012-11-29 06:57:30 -0300 | [diff] [blame] | 11752 | F: drivers/media/platform/sh_vou.c |
Mauro Carvalho Chehab | d647f0b | 2015-11-13 19:40:07 -0200 | [diff] [blame] | 11753 | F: include/media/drv-intf/sh_vou.h |
Guennadi Liakhovetski | b618b69 | 2012-11-29 06:57:30 -0300 | [diff] [blame] | 11754 | |
Len Brown | 6349d99 | 2009-08-14 15:07:14 -0400 | [diff] [blame] | 11755 | SIMPLE FIRMWARE INTERFACE (SFI) |
Joe Perches | 2bf822d | 2009-10-26 16:49:44 -0700 | [diff] [blame] | 11756 | M: Len Brown <lenb@kernel.org> |
Len Brown | 6349d99 | 2009-08-14 15:07:14 -0400 | [diff] [blame] | 11757 | L: sfi-devel@simplefirmware.org |
| 11758 | W: http://simplefirmware.org/ |
| 11759 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 11760 | S: Supported |
Joe Perches | 943fc81 | 2011-03-22 16:34:36 -0700 | [diff] [blame] | 11761 | F: arch/x86/platform/sfi/ |
Len Brown | 6349d99 | 2009-08-14 15:07:14 -0400 | [diff] [blame] | 11762 | F: drivers/sfi/ |
| 11763 | F: include/linux/sfi*.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 11764 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11765 | SIMTEC EB110ATX (Chalice CATS) |
| 11766 | P: Ben Dooks |
Ben Dooks | b16957c | 2011-02-01 15:52:38 -0800 | [diff] [blame] | 11767 | P: Vincent Sanders <vince@simtec.co.uk> |
| 11768 | M: Simtec Linux Team <linux@simtec.co.uk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11769 | W: http://www.simtec.co.uk/products/EB110ATX/ |
| 11770 | S: Supported |
| 11771 | |
| 11772 | SIMTEC EB2410ITX (BAST) |
| 11773 | P: Ben Dooks |
Ben Dooks | b16957c | 2011-02-01 15:52:38 -0800 | [diff] [blame] | 11774 | P: Vincent Sanders <vince@simtec.co.uk> |
| 11775 | M: Simtec Linux Team <linux@simtec.co.uk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11776 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
| 11777 | S: Supported |
Joe Perches | 15dba38 | 2013-09-11 14:23:36 -0700 | [diff] [blame] | 11778 | F: arch/arm/mach-s3c24xx/mach-bast.c |
| 11779 | F: arch/arm/mach-s3c24xx/bast-ide.c |
| 11780 | F: arch/arm/mach-s3c24xx/bast-irq.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11781 | |
Jason A. Donenfeld | 2c956a6 | 2017-01-08 13:54:00 +0100 | [diff] [blame] | 11782 | SIPHASH PRF ROUTINES |
| 11783 | M: Jason A. Donenfeld <Jason@zx2c4.com> |
| 11784 | S: Maintained |
| 11785 | F: lib/siphash.c |
| 11786 | F: lib/test_siphash.c |
| 11787 | F: include/linux/siphash.h |
| 11788 | |
Kevin Hilman | 4c5adde | 2009-06-19 12:02:33 -0700 | [diff] [blame] | 11789 | TI DAVINCI MACHINE SUPPORT |
Kevin Hilman | 3ba789c | 2011-02-08 13:23:09 -0800 | [diff] [blame] | 11790 | M: Sekhar Nori <nsekhar@ti.com> |
Kevin Hilman | 3cf2efd | 2016-02-24 14:57:36 -0800 | [diff] [blame] | 11791 | M: Kevin Hilman <khilman@kernel.org> |
Sekhar Nori | 42c031d | 2016-04-15 14:00:34 +0530 | [diff] [blame] | 11792 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 11793 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git |
Kevin Hilman | 4c5adde | 2009-06-19 12:02:33 -0700 | [diff] [blame] | 11794 | S: Supported |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 11795 | F: arch/arm/mach-davinci/ |
Jean Delvare | 046d0a3 | 2012-01-12 20:32:05 +0100 | [diff] [blame] | 11796 | F: drivers/i2c/busses/i2c-davinci.c |
Kevin Hilman | 4c5adde | 2009-06-19 12:02:33 -0700 | [diff] [blame] | 11797 | |
Lad, Prabhakar | 8d4b3f0 | 2012-11-19 05:48:21 -0300 | [diff] [blame] | 11798 | TI DAVINCI SERIES MEDIA DRIVER |
Joe Perches | e43cdb5 | 2015-06-25 15:02:03 -0700 | [diff] [blame] | 11799 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
Lad, Prabhakar | 8d4b3f0 | 2012-11-19 05:48:21 -0300 | [diff] [blame] | 11800 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 11801 | W: https://linuxtv.org |
Lad, Prabhakar | 8d4b3f0 | 2012-11-19 05:48:21 -0300 | [diff] [blame] | 11802 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 11803 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git |
Lad, Prabhakar | 9ce5eca | 2013-04-15 01:32:44 -0300 | [diff] [blame] | 11804 | S: Maintained |
Lad, Prabhakar | 8d4b3f0 | 2012-11-19 05:48:21 -0300 | [diff] [blame] | 11805 | F: drivers/media/platform/davinci/ |
| 11806 | F: include/media/davinci/ |
| 11807 | |
Benoit Parrot | 417d2e5 | 2014-12-09 16:43:44 -0300 | [diff] [blame] | 11808 | TI AM437X VPFE DRIVER |
Joe Perches | e43cdb5 | 2015-06-25 15:02:03 -0700 | [diff] [blame] | 11809 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
Benoit Parrot | 417d2e5 | 2014-12-09 16:43:44 -0300 | [diff] [blame] | 11810 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 11811 | W: https://linuxtv.org |
Benoit Parrot | 417d2e5 | 2014-12-09 16:43:44 -0300 | [diff] [blame] | 11812 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 11813 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git |
| 11814 | S: Maintained |
| 11815 | F: drivers/media/platform/am437x/ |
| 11816 | |
Benoit Parrot | c4c0283 | 2015-03-20 18:03:52 -0300 | [diff] [blame] | 11817 | OV2659 OMNIVISION SENSOR DRIVER |
Joe Perches | e43cdb5 | 2015-06-25 15:02:03 -0700 | [diff] [blame] | 11818 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
Benoit Parrot | c4c0283 | 2015-03-20 18:03:52 -0300 | [diff] [blame] | 11819 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 11820 | W: https://linuxtv.org |
Benoit Parrot | c4c0283 | 2015-03-20 18:03:52 -0300 | [diff] [blame] | 11821 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 11822 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git |
| 11823 | S: Maintained |
| 11824 | F: drivers/media/i2c/ov2659.c |
Mauro Carvalho Chehab | b5dcee2 | 2015-11-10 12:01:44 -0200 | [diff] [blame] | 11825 | F: include/media/i2c/ov2659.h |
Benoit Parrot | c4c0283 | 2015-03-20 18:03:52 -0300 | [diff] [blame] | 11826 | |
Sudip Mukherjee | 3a6779f | 2015-08-07 18:31:15 +0530 | [diff] [blame] | 11827 | SILICON MOTION SM712 FRAME BUFFER DRIVER |
| 11828 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> |
| 11829 | M: Teddy Wang <teddy.wang@siliconmotion.com> |
Sudip Mukherjee | 8056756 | 2016-11-10 22:12:00 +0000 | [diff] [blame] | 11830 | M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk> |
Sudip Mukherjee | 3a6779f | 2015-08-07 18:31:15 +0530 | [diff] [blame] | 11831 | L: linux-fbdev@vger.kernel.org |
| 11832 | S: Maintained |
| 11833 | F: drivers/video/fbdev/sm712* |
| 11834 | F: Documentation/fb/sm712fb.txt |
| 11835 | |
Francois Romieu | 92aab3c | 2005-07-30 13:11:18 +0200 | [diff] [blame] | 11836 | SIS 190 ETHERNET DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11837 | M: Francois Romieu <romieu@fr.zoreil.com> |
Francois Romieu | 92aab3c | 2005-07-30 13:11:18 +0200 | [diff] [blame] | 11838 | L: netdev@vger.kernel.org |
| 11839 | S: Maintained |
Jeff Kirsher | 8c7de40 | 2011-06-13 08:43:49 -0700 | [diff] [blame] | 11840 | F: drivers/net/ethernet/sis/sis190.c |
Francois Romieu | 92aab3c | 2005-07-30 13:11:18 +0200 | [diff] [blame] | 11841 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11842 | SIS 900/7016 FAST ETHERNET DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11843 | M: Daniele Venzano <venza@brownhat.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11844 | W: http://www.brownhat.org/sis900.html |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 11845 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11846 | S: Maintained |
Jeff Kirsher | 8c7de40 | 2011-06-13 08:43:49 -0700 | [diff] [blame] | 11847 | F: drivers/net/ethernet/sis/sis900.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11848 | |
| 11849 | SIS FRAMEBUFFER DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11850 | M: Thomas Winischhofer <thomas@winischhofer.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11851 | W: http://www.winischhofer.net/linuxsisvga.shtml |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 11852 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11853 | F: Documentation/fb/sisfb.txt |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 11854 | F: drivers/video/fbdev/sis/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11855 | F: include/video/sisfb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11856 | |
| 11857 | SIS USB2VGA DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11858 | M: Thomas Winischhofer <thomas@winischhofer.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11859 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
| 11860 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11861 | F: drivers/usb/misc/sisusbvga/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11862 | |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 11863 | SLAB ALLOCATOR |
Christoph Lameter | 16e943b | 2014-06-23 13:22:03 -0700 | [diff] [blame] | 11864 | M: Christoph Lameter <cl@linux.com> |
Pekka Enberg | 2ed1c52 | 2011-01-15 13:30:04 +0200 | [diff] [blame] | 11865 | M: Pekka Enberg <penberg@kernel.org> |
Christoph Lameter | 16e943b | 2014-06-23 13:22:03 -0700 | [diff] [blame] | 11866 | M: David Rientjes <rientjes@google.com> |
| 11867 | M: Joonsoo Kim <iamjoonsoo.kim@lge.com> |
| 11868 | M: Andrew Morton <akpm@linux-foundation.org> |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 11869 | L: linux-mm@kvack.org |
| 11870 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11871 | F: include/linux/sl?b*.h |
Christoph Lameter | 16e943b | 2014-06-23 13:22:03 -0700 | [diff] [blame] | 11872 | F: mm/sl?b* |
Christoph Lameter | 415ad26 | 2007-07-26 10:40:56 -0700 | [diff] [blame] | 11873 | |
Paul E. McKenney | 9fab9787 | 2012-05-07 09:36:34 -0700 | [diff] [blame] | 11874 | SLEEPABLE READ-COPY UPDATE (SRCU) |
Lai Jiangshan | 96a39bc | 2015-07-01 15:26:27 +0800 | [diff] [blame] | 11875 | M: Lai Jiangshan <jiangshanlai@gmail.com> |
Paul E. McKenney | 9fab9787 | 2012-05-07 09:36:34 -0700 | [diff] [blame] | 11876 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
Paul E. McKenney | ab0afd6 | 2014-06-03 08:17:06 -0700 | [diff] [blame] | 11877 | M: Josh Triplett <josh@joshtriplett.org> |
Paul E. McKenney | 4632a19 | 2014-05-30 15:37:24 -0700 | [diff] [blame] | 11878 | R: Steven Rostedt <rostedt@goodmis.org> |
| 11879 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 11880 | L: linux-kernel@vger.kernel.org |
Paul E. McKenney | 9fab9787 | 2012-05-07 09:36:34 -0700 | [diff] [blame] | 11881 | W: http://www.rdrop.com/users/paulmck/RCU/ |
| 11882 | S: Supported |
| 11883 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
Paul E. McKenney | 4102ada | 2013-10-08 20:23:47 -0700 | [diff] [blame] | 11884 | F: include/linux/srcu.h |
| 11885 | F: kernel/rcu/srcu.c |
Paul E. McKenney | 9fab9787 | 2012-05-07 09:36:34 -0700 | [diff] [blame] | 11886 | |
Casey Schaufler | 6637284 | 2012-05-23 18:34:52 -0700 | [diff] [blame] | 11887 | SMACK SECURITY MODULE |
| 11888 | M: Casey Schaufler <casey@schaufler-ca.com> |
| 11889 | L: linux-security-module@vger.kernel.org |
| 11890 | W: http://schaufler-ca.com |
Casey Schaufler | ece3824 | 2016-07-07 12:39:11 -0700 | [diff] [blame] | 11891 | T: git git://github.com/cschaufler/smack-next |
Casey Schaufler | 6637284 | 2012-05-23 18:34:52 -0700 | [diff] [blame] | 11892 | S: Maintained |
| 11893 | F: Documentation/security/Smack.txt |
| 11894 | F: security/smack/ |
| 11895 | |
Kevin Hilman | 20651e0 | 2014-09-24 16:30:00 -0700 | [diff] [blame] | 11896 | DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
Kevin Hilman | 68ace3e | 2013-08-06 16:57:14 -0700 | [diff] [blame] | 11897 | M: Kevin Hilman <khilman@kernel.org> |
| 11898 | M: Nishanth Menon <nm@ti.com> |
| 11899 | S: Maintained |
Kevin Hilman | 20651e0 | 2014-09-24 16:30:00 -0700 | [diff] [blame] | 11900 | F: drivers/power/avs/ |
Kevin Hilman | 68ace3e | 2013-08-06 16:57:14 -0700 | [diff] [blame] | 11901 | F: include/linux/power/smartreflex.h |
| 11902 | L: linux-pm@vger.kernel.org |
| 11903 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11904 | SMC91x ETHERNET DRIVER |
Nicolas Pitre | 2f82af0 | 2009-09-14 03:25:28 -0400 | [diff] [blame] | 11905 | M: Nicolas Pitre <nico@fluxnic.net> |
Nicolas Pitre | 18e2842 | 2010-05-03 16:43:47 -0400 | [diff] [blame] | 11906 | S: Odd Fixes |
Jeff Kirsher | ae15043 | 2011-05-12 20:21:07 -0700 | [diff] [blame] | 11907 | F: drivers/net/ethernet/smsc/smc91x.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11908 | |
Sakari Ailus | e8e3162 | 2012-11-12 18:14:39 -0300 | [diff] [blame] | 11909 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
| 11910 | M: Sakari Ailus <sakari.ailus@iki.fi> |
| 11911 | L: linux-media@vger.kernel.org |
| 11912 | S: Maintained |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 11913 | F: drivers/media/i2c/smiapp/ |
Mauro Carvalho Chehab | b5dcee2 | 2015-11-10 12:01:44 -0200 | [diff] [blame] | 11914 | F: include/media/i2c/smiapp.h |
Sakari Ailus | e8e3162 | 2012-11-12 18:14:39 -0300 | [diff] [blame] | 11915 | F: drivers/media/i2c/smiapp-pll.c |
| 11916 | F: drivers/media/i2c/smiapp-pll.h |
Sakari Ailus | fd2bfdc | 2014-11-16 12:08:44 -0300 | [diff] [blame] | 11917 | F: include/uapi/linux/smiapp.h |
Sakari Ailus | a2cec3c | 2014-11-06 18:16:13 -0300 | [diff] [blame] | 11918 | F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt |
Sakari Ailus | e8e3162 | 2012-11-12 18:14:39 -0300 | [diff] [blame] | 11919 | |
Guenter Roeck | 920fa1f | 2010-08-09 17:21:06 -0700 | [diff] [blame] | 11920 | SMM665 HARDWARE MONITOR DRIVER |
| 11921 | M: Guenter Roeck <linux@roeck-us.net> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 11922 | L: linux-hwmon@vger.kernel.org |
Guenter Roeck | 920fa1f | 2010-08-09 17:21:06 -0700 | [diff] [blame] | 11923 | S: Maintained |
| 11924 | F: Documentation/hwmon/smm665 |
| 11925 | F: drivers/hwmon/smm665.c |
| 11926 | |
Steve Glendinning | 9df7305 | 2010-08-14 21:08:54 +0200 | [diff] [blame] | 11927 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
Steve Glendinning | 90b24cf | 2012-04-16 12:13:29 +0100 | [diff] [blame] | 11928 | M: Steve Glendinning <steve.glendinning@shawell.net> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 11929 | L: linux-hwmon@vger.kernel.org |
Steve Glendinning | 90b24cf | 2012-04-16 12:13:29 +0100 | [diff] [blame] | 11930 | S: Maintained |
Steve Glendinning | 9df7305 | 2010-08-14 21:08:54 +0200 | [diff] [blame] | 11931 | F: Documentation/hwmon/emc2103 |
| 11932 | F: drivers/hwmon/emc2103.c |
| 11933 | |
Hans de Goede | a98d506 | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 11934 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
| 11935 | M: Hans de Goede <hdegoede@redhat.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 11936 | L: linux-hwmon@vger.kernel.org |
Hans de Goede | a98d506 | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 11937 | S: Supported |
| 11938 | F: Documentation/hwmon/sch5627 |
| 11939 | F: drivers/hwmon/sch5627.c |
| 11940 | |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 11941 | SMSC47B397 HARDWARE MONITOR DRIVER |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 11942 | M: Jean Delvare <jdelvare@suse.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 11943 | L: linux-hwmon@vger.kernel.org |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 11944 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11945 | F: Documentation/hwmon/smsc47b397 |
| 11946 | F: drivers/hwmon/smsc47b397.c |
Mark M. Hoffman | 6ea884d | 2007-06-09 10:11:15 -0400 | [diff] [blame] | 11947 | |
Steve Glendinning | fd9abb3 | 2008-11-05 00:35:37 +0000 | [diff] [blame] | 11948 | SMSC911x ETHERNET DRIVER |
Steve Glendinning | 90b24cf | 2012-04-16 12:13:29 +0100 | [diff] [blame] | 11949 | M: Steve Glendinning <steve.glendinning@shawell.net> |
Steve Glendinning | fd9abb3 | 2008-11-05 00:35:37 +0000 | [diff] [blame] | 11950 | L: netdev@vger.kernel.org |
Steve Glendinning | 90b24cf | 2012-04-16 12:13:29 +0100 | [diff] [blame] | 11951 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11952 | F: include/linux/smsc911x.h |
Jeff Kirsher | ae15043 | 2011-05-12 20:21:07 -0700 | [diff] [blame] | 11953 | F: drivers/net/ethernet/smsc/smsc911x.* |
Steve Glendinning | fd9abb3 | 2008-11-05 00:35:37 +0000 | [diff] [blame] | 11954 | |
Steve Glendinning | 2cb3772 | 2008-12-11 20:54:30 -0800 | [diff] [blame] | 11955 | SMSC9420 PCI ETHERNET DRIVER |
Steve Glendinning | 90b24cf | 2012-04-16 12:13:29 +0100 | [diff] [blame] | 11956 | M: Steve Glendinning <steve.glendinning@shawell.net> |
Steve Glendinning | 2cb3772 | 2008-12-11 20:54:30 -0800 | [diff] [blame] | 11957 | L: netdev@vger.kernel.org |
Steve Glendinning | 90b24cf | 2012-04-16 12:13:29 +0100 | [diff] [blame] | 11958 | S: Maintained |
Jeff Kirsher | ae15043 | 2011-05-12 20:21:07 -0700 | [diff] [blame] | 11959 | F: drivers/net/ethernet/smsc/smsc9420.* |
Steve Glendinning | 2cb3772 | 2008-12-11 20:54:30 -0800 | [diff] [blame] | 11960 | |
Steve Glendinning | 3c8a63e | 2011-08-18 15:20:07 +0100 | [diff] [blame] | 11961 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
Steve Glendinning | 90b24cf | 2012-04-16 12:13:29 +0100 | [diff] [blame] | 11962 | M: Steve Glendinning <steve.glendinning@shawell.net> |
Steve Glendinning | 3c8a63e | 2011-08-18 15:20:07 +0100 | [diff] [blame] | 11963 | L: linux-fbdev@vger.kernel.org |
Steve Glendinning | 90b24cf | 2012-04-16 12:13:29 +0100 | [diff] [blame] | 11964 | S: Maintained |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 11965 | F: drivers/video/fbdev/smscufx.c |
Steve Glendinning | 3c8a63e | 2011-08-18 15:20:07 +0100 | [diff] [blame] | 11966 | |
Guennadi Liakhovetski | 668acf3 | 2008-07-19 07:54:43 -0300 | [diff] [blame] | 11967 | SOC-CAMERA V4L2 SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11968 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 11969 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 11970 | T: git git://linuxtv.org/media_tree.git |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 11971 | S: Maintained |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 11972 | F: include/media/soc* |
| 11973 | F: drivers/media/i2c/soc_camera/ |
| 11974 | F: drivers/media/platform/soc_camera/ |
Guennadi Liakhovetski | 668acf3 | 2008-07-19 07:54:43 -0300 | [diff] [blame] | 11975 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 11976 | SOEKRIS NET48XX LED SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 11977 | M: Chris Boot <bootc@bootc.net> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 11978 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11979 | F: drivers/leds/leds-net48xx.c |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 11980 | |
Joe Perches | e3994db | 2014-07-30 00:38:42 -0300 | [diff] [blame] | 11981 | SOFTLOGIC 6x10 MPEG CODEC |
Andrey Utkin | 9661975d | 2014-11-17 13:59:23 -0300 | [diff] [blame] | 11982 | M: Bluecherry Maintainers <maintainers@bluecherrydvr.com> |
| 11983 | M: Andrey Utkin <andrey.utkin@corp.bluecherry.net> |
| 11984 | M: Andrey Utkin <andrey.krieger.utkin@gmail.com> |
Ismael Luceno | 1f141f6 | 2015-01-20 11:43:50 -0300 | [diff] [blame] | 11985 | M: Ismael Luceno <ismael@iodev.co.uk> |
Joe Perches | e3994db | 2014-07-30 00:38:42 -0300 | [diff] [blame] | 11986 | L: linux-media@vger.kernel.org |
| 11987 | S: Supported |
| 11988 | F: drivers/media/pci/solo6x10/ |
| 11989 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11990 | SOFTWARE RAID (Multiple Disks) SUPPORT |
Shaohua Li | c2f662e | 2016-01-20 14:00:45 -0800 | [diff] [blame] | 11991 | M: Shaohua Li <shli@kernel.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11992 | L: linux-raid@vger.kernel.org |
Shaohua Li | 0f9ce86 | 2016-03-07 09:41:09 -0800 | [diff] [blame] | 11993 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git |
NeilBrown | 524418b | 2007-01-26 00:57:01 -0800 | [diff] [blame] | 11994 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 11995 | F: drivers/md/ |
| 11996 | F: include/linux/raid/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 11997 | F: include/uapi/linux/raid/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11998 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11999 | SONIC NETWORK DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12000 | M: Thomas Bogendoerfer <tsbogend@alpha.franken.de> |
Ralf Baechle | 979b6c1 | 2005-06-13 14:30:40 -0700 | [diff] [blame] | 12001 | L: netdev@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12002 | S: Maintained |
Jeff Kirsher | d9fb9f3 | 2011-05-18 05:14:22 -0700 | [diff] [blame] | 12003 | F: drivers/net/ethernet/natsemi/sonic.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12004 | |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 12005 | SONICS SILICON BACKPLANE DRIVER (SSB) |
Michael Büsch | eb032b9 | 2011-07-04 20:50:05 +0200 | [diff] [blame] | 12006 | M: Michael Buesch <m@bues.ch> |
Michael Büsch | e7828b2 | 2016-01-18 17:53:03 +0100 | [diff] [blame] | 12007 | L: linux-wireless@vger.kernel.org |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 12008 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12009 | F: drivers/ssb/ |
| 12010 | F: include/linux/ssb/ |
Michael Buesch | 61e115a | 2007-09-18 15:12:50 -0400 | [diff] [blame] | 12011 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12012 | SONY VAIO CONTROL DEVICE DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12013 | M: Mattia Dongili <malattia@linux.it> |
Matthew Garrett | d0944853 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 12014 | L: platform-driver-x86@vger.kernel.org |
Mattia Dongili | 5b18167 | 2007-03-12 21:43:57 +0100 | [diff] [blame] | 12015 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12016 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12017 | F: Documentation/laptops/sony-laptop.txt |
| 12018 | F: drivers/char/sonypi.c |
| 12019 | F: drivers/platform/x86/sony-laptop.c |
| 12020 | F: include/linux/sony-laptop.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12021 | |
Alex Dubov | baf8532 | 2008-02-09 10:20:54 -0800 | [diff] [blame] | 12022 | SONY MEMORYSTICK CARD SUPPORT |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12023 | M: Alex Dubov <oakad@yahoo.com> |
Alex Dubov | baf8532 | 2008-02-09 10:20:54 -0800 | [diff] [blame] | 12024 | W: http://tifmxx.berlios.de/ |
| 12025 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12026 | F: drivers/memstick/host/tifm_ms.c |
Alex Dubov | baf8532 | 2008-02-09 10:20:54 -0800 | [diff] [blame] | 12027 | |
Maxim Levitsky | 0ab3049 | 2013-09-11 14:26:02 -0700 | [diff] [blame] | 12028 | SONY MEMORYSTICK STANDARD SUPPORT |
| 12029 | M: Maxim Levitsky <maximlevitsky@gmail.com> |
| 12030 | S: Maintained |
| 12031 | F: drivers/memstick/core/ms_block.* |
| 12032 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12033 | SOUND |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12034 | M: Jaroslav Kysela <perex@perex.cz> |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 12035 | M: Takashi Iwai <tiwai@suse.com> |
Joe Perches | 9371166 | 2009-06-16 15:34:07 -0700 | [diff] [blame] | 12036 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Joe Perches | 3126a17 | 2009-04-15 23:38:45 -0700 | [diff] [blame] | 12037 | W: http://www.alsa-project.org/ |
Takashi Iwai | dde7ad8 | 2011-10-25 10:00:22 +0200 | [diff] [blame] | 12038 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
Joe Perches | 3126a17 | 2009-04-15 23:38:45 -0700 | [diff] [blame] | 12039 | T: git git://git.alsa-project.org/alsa-kernel.git |
Takashi Iwai | ff4a8f3 | 2014-05-13 14:55:51 +0200 | [diff] [blame] | 12040 | Q: http://patchwork.kernel.org/project/alsa-devel/list/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12041 | S: Maintained |
Joe Perches | 3126a17 | 2009-04-15 23:38:45 -0700 | [diff] [blame] | 12042 | F: Documentation/sound/ |
| 12043 | F: include/sound/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 12044 | F: include/uapi/sound/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12045 | F: sound/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12046 | |
Mark Brown | 33bbe14 | 2013-08-09 18:10:50 +0100 | [diff] [blame] | 12047 | SOUND - COMPRESSED AUDIO |
| 12048 | M: Vinod Koul <vinod.koul@intel.com> |
| 12049 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 12050 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
| 12051 | S: Supported |
Vinod Koul | f672f31 | 2013-08-12 11:15:27 +0530 | [diff] [blame] | 12052 | F: Documentation/sound/alsa/compress_offload.txt |
Mark Brown | 33bbe14 | 2013-08-09 18:10:50 +0100 | [diff] [blame] | 12053 | F: include/sound/compress_driver.h |
Vinod Koul | f672f31 | 2013-08-12 11:15:27 +0530 | [diff] [blame] | 12054 | F: include/uapi/sound/compress_* |
Mark Brown | 33bbe14 | 2013-08-09 18:10:50 +0100 | [diff] [blame] | 12055 | F: sound/core/compress_offload.c |
| 12056 | F: sound/soc/soc-compress.c |
| 12057 | |
Mark Brown | bd903bd | 2008-11-19 19:16:05 +0000 | [diff] [blame] | 12058 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
Liam Girdwood | 6b9cf5c | 2013-01-15 15:13:27 +0000 | [diff] [blame] | 12059 | M: Liam Girdwood <lgirdwood@gmail.com> |
Mark Brown | b02e48f | 2013-04-12 11:39:57 +0100 | [diff] [blame] | 12060 | M: Mark Brown <broonie@kernel.org> |
Mark Brown | 86f14df | 2011-11-02 21:36:32 +0000 | [diff] [blame] | 12061 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
Joe Perches | 9371166 | 2009-06-16 15:34:07 -0700 | [diff] [blame] | 12062 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
Liam Girdwood | b0b8daf | 2008-09-18 14:36:37 +0100 | [diff] [blame] | 12063 | W: http://alsa-project.org/main/index.php/ASoC |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 12064 | S: Supported |
Geert Uytterhoeven | 181ad2a | 2016-05-22 11:06:20 +0200 | [diff] [blame] | 12065 | F: Documentation/devicetree/bindings/sound/ |
Mark Brown | 2820f61 | 2013-08-11 19:35:11 +0100 | [diff] [blame] | 12066 | F: Documentation/sound/alsa/soc/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12067 | F: sound/soc/ |
Mark Brown | e6e5512 | 2009-05-05 11:10:24 +0100 | [diff] [blame] | 12068 | F: include/sound/soc* |
Liam Girdwood | eb1a6af | 2006-10-06 18:34:51 +0200 | [diff] [blame] | 12069 | |
Mark Brown | d7f8761 | 2013-10-19 14:33:54 +0100 | [diff] [blame] | 12070 | SOUND - DMAENGINE HELPERS |
| 12071 | M: Lars-Peter Clausen <lars@metafoo.de> |
| 12072 | S: Supported |
| 12073 | F: include/sound/dmaengine_pcm.h |
| 12074 | F: sound/core/pcm_dmaengine.c |
| 12075 | F: sound/soc/soc-generic-dmaengine-pcm.c |
| 12076 | |
Olli Salonen | 990a6a9 | 2014-08-22 13:50:42 -0300 | [diff] [blame] | 12077 | SP2 MEDIA DRIVER |
| 12078 | M: Olli Salonen <olli.salonen@iki.fi> |
| 12079 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 12080 | W: https://linuxtv.org |
Olli Salonen | 990a6a9 | 2014-08-22 13:50:42 -0300 | [diff] [blame] | 12081 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 12082 | S: Maintained |
| 12083 | F: drivers/media/dvb-frontends/sp2* |
| 12084 | |
Sam Ravnborg | 473321f | 2009-01-04 15:47:49 -0800 | [diff] [blame] | 12085 | SPARC + UltraSPARC (sparc/sparc64) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12086 | M: "David S. Miller" <davem@davemloft.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12087 | L: sparclinux@vger.kernel.org |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 12088 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 12089 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
| 12090 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12091 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12092 | F: arch/sparc/ |
David S. Miller | 7765b8b | 2010-07-20 23:37:12 -0700 | [diff] [blame] | 12093 | F: drivers/sbus/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12094 | |
David S. Miller | 6404fcc | 2010-03-16 01:00:17 -0700 | [diff] [blame] | 12095 | SPARC SERIAL DRIVERS |
| 12096 | M: "David S. Miller" <davem@davemloft.net> |
| 12097 | L: sparclinux@vger.kernel.org |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 12098 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
| 12099 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git |
David S. Miller | 6404fcc | 2010-03-16 01:00:17 -0700 | [diff] [blame] | 12100 | S: Maintained |
Paul Gortmaker | 6816383 | 2012-02-09 18:48:19 -0500 | [diff] [blame] | 12101 | F: include/linux/sunserialcore.h |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 12102 | F: drivers/tty/serial/suncore.c |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 12103 | F: drivers/tty/serial/sunhv.c |
| 12104 | F: drivers/tty/serial/sunsab.c |
| 12105 | F: drivers/tty/serial/sunsab.h |
| 12106 | F: drivers/tty/serial/sunsu.c |
| 12107 | F: drivers/tty/serial/sunzilog.c |
| 12108 | F: drivers/tty/serial/sunzilog.h |
David S. Miller | 6404fcc | 2010-03-16 01:00:17 -0700 | [diff] [blame] | 12109 | |
Christopher Li | 389325b | 2012-04-05 14:25:14 -0700 | [diff] [blame] | 12110 | SPARSE CHECKER |
| 12111 | M: "Christopher Li" <sparse@chrisli.org> |
| 12112 | L: linux-sparse@vger.kernel.org |
| 12113 | W: https://sparse.wiki.kernel.org/ |
| 12114 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git |
| 12115 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git |
| 12116 | S: Maintained |
| 12117 | F: include/linux/compiler.h |
| 12118 | |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 12119 | SPEAR PLATFORM SUPPORT |
Viresh Kumar | da89947 | 2015-07-17 16:23:50 -0700 | [diff] [blame] | 12120 | M: Viresh Kumar <vireshk@kernel.org> |
Viresh Kumar | 9cc2368 | 2014-04-18 15:07:16 -0700 | [diff] [blame] | 12121 | M: Shiraz Hashim <shiraz.linux.kernel@gmail.com> |
Viresh Kumar | fbfa074 | 2012-03-15 15:17:09 -0700 | [diff] [blame] | 12122 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 12123 | W: http://www.st.com/spear |
| 12124 | S: Maintained |
Rob Herring | e68d7c1 | 2015-12-10 17:38:23 -0600 | [diff] [blame] | 12125 | F: arch/arm/boot/dts/spear* |
Joe Perches | 281e192 | 2013-09-11 14:23:37 -0700 | [diff] [blame] | 12126 | F: arch/arm/mach-spear/ |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 12127 | |
| 12128 | SPEAR CLOCK FRAMEWORK SUPPORT |
Viresh Kumar | da89947 | 2015-07-17 16:23:50 -0700 | [diff] [blame] | 12129 | M: Viresh Kumar <vireshk@kernel.org> |
Viresh Kumar | fbfa074 | 2012-03-15 15:17:09 -0700 | [diff] [blame] | 12130 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 12131 | W: http://www.st.com/spear |
| 12132 | S: Maintained |
Viresh Kumar | 5df33a6 | 2012-04-10 09:02:35 +0530 | [diff] [blame] | 12133 | F: drivers/clk/spear/ |
viresh kumar | fc0c195 | 2010-04-01 12:31:21 +0100 | [diff] [blame] | 12134 | |
Cyrille Pitchen | e279654 | 2016-10-19 17:34:49 +0200 | [diff] [blame] | 12135 | SPI NOR SUBSYSTEM |
Cyrille Pitchen | b3bb6d6 | 2017-04-19 22:43:52 +0200 | [diff] [blame] | 12136 | M: Cyrille Pitchen <cyrille.pitchen@wedev4u.fr> |
Cyrille Pitchen | e279654 | 2016-10-19 17:34:49 +0200 | [diff] [blame] | 12137 | M: Marek Vasut <marek.vasut@gmail.com> |
| 12138 | L: linux-mtd@lists.infradead.org |
| 12139 | W: http://www.linux-mtd.infradead.org/ |
| 12140 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ |
| 12141 | T: git git://github.com/spi-nor/linux.git |
| 12142 | S: Maintained |
| 12143 | F: drivers/mtd/spi-nor/ |
| 12144 | F: include/linux/mtd/spi-nor.h |
| 12145 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 12146 | SPI SUBSYSTEM |
Mark Brown | b02e48f | 2013-04-12 11:39:57 +0100 | [diff] [blame] | 12147 | M: Mark Brown <broonie@kernel.org> |
Mark Brown | dfbe403 | 2013-05-17 13:12:52 +0100 | [diff] [blame] | 12148 | L: linux-spi@vger.kernel.org |
Mark Brown | e7e4e13 | 2013-04-18 18:18:47 +0100 | [diff] [blame] | 12149 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 12150 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 12151 | S: Maintained |
Geert Uytterhoeven | 87306eb | 2016-05-22 11:06:21 +0200 | [diff] [blame] | 12152 | F: Documentation/devicetree/bindings/spi/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12153 | F: Documentation/spi/ |
| 12154 | F: drivers/spi/ |
| 12155 | F: include/linux/spi/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 12156 | F: include/uapi/linux/spi/ |
Baruch Siach | a43cd4b | 2016-08-12 15:55:32 +0300 | [diff] [blame] | 12157 | F: tools/spi/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 12158 | |
Jim Lewis | 2752e401 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 12159 | SPIDERNET NETWORK DRIVER for CELL |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12160 | M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp> |
Jim Lewis | 2752e401 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 12161 | L: netdev@vger.kernel.org |
| 12162 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12163 | F: Documentation/networking/spider_net.txt |
Jeff Kirsher | 8df158a | 2011-07-30 00:36:02 -0700 | [diff] [blame] | 12164 | F: drivers/net/ethernet/toshiba/spider_net* |
Jim Lewis | 2752e401 | 2006-09-29 02:01:19 -0700 | [diff] [blame] | 12165 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 12166 | SPU FILE SYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12167 | M: Jeremy Kerr <jk@ozlabs.org> |
Stephen Rothwell | a4724ed | 2010-08-20 19:52:45 +1000 | [diff] [blame] | 12168 | L: linuxppc-dev@lists.ozlabs.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 12169 | W: http://www.ibm.com/developerworks/power/cell/ |
| 12170 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12171 | F: Documentation/filesystems/spufs.txt |
| 12172 | F: arch/powerpc/platforms/cell/spufs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 12173 | |
Phillip Lougher | fc55584 | 2009-01-05 08:46:29 +0000 | [diff] [blame] | 12174 | SQUASHFS FILE SYSTEM |
Phillip Lougher | d7f2ff6 | 2011-05-26 10:39:56 +0100 | [diff] [blame] | 12175 | M: Phillip Lougher <phillip@squashfs.org.uk> |
Phillip Lougher | fc55584 | 2009-01-05 08:46:29 +0000 | [diff] [blame] | 12176 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
| 12177 | W: http://squashfs.org.uk |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 12178 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git |
Phillip Lougher | fc55584 | 2009-01-05 08:46:29 +0000 | [diff] [blame] | 12179 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12180 | F: Documentation/filesystems/squashfs.txt |
| 12181 | F: fs/squashfs/ |
Phillip Lougher | fc55584 | 2009-01-05 08:46:29 +0000 | [diff] [blame] | 12182 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12183 | SRM (Alpha) environment access |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12184 | M: Jan-Benedict Glaw <jbglaw@lug-owl.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12185 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12186 | F: arch/alpha/kernel/srm_env.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12187 | |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 12188 | STABLE BRANCH |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 12189 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
Joe Perches | bc7a2f3 | 2011-12-09 13:54:34 -0800 | [diff] [blame] | 12190 | L: stable@vger.kernel.org |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 12191 | S: Supported |
Mauro Carvalho Chehab | 8c27ceff3 | 2016-10-18 10:12:27 -0200 | [diff] [blame] | 12192 | F: Documentation/process/stable-kernel-rules.rst |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 12193 | |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 12194 | STAGING SUBSYSTEM |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 12195 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
Greg Kroah-Hartman | 630081f | 2011-10-03 16:02:41 -0700 | [diff] [blame] | 12196 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
Greg Kroah-Hartman | 1c6ccf6 | 2009-06-05 11:23:47 -0700 | [diff] [blame] | 12197 | L: devel@driverdev.osuosl.org |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 12198 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12199 | F: drivers/staging/ |
Linus Torvalds | 26e9a39 | 2008-10-17 09:50:12 -0700 | [diff] [blame] | 12200 | |
Joe Perches | ebd3d01 | 2011-07-05 09:42:02 -0700 | [diff] [blame] | 12201 | STAGING - COMEDI |
| 12202 | M: Ian Abbott <abbotti@mev.co.uk> |
Lidza Louina | 81b884c | 2013-07-24 11:29:33 -0400 | [diff] [blame] | 12203 | M: H Hartley Sweeten <hsweeten@visionengravers.com> |
Joe Perches | ebd3d01 | 2011-07-05 09:42:02 -0700 | [diff] [blame] | 12204 | S: Odd Fixes |
| 12205 | F: drivers/staging/comedi/ |
| 12206 | |
Joe Perches | a013816 | 2011-07-05 15:21:34 -0700 | [diff] [blame] | 12207 | STAGING - FLARION FT1000 DRIVERS |
| 12208 | M: Marek Belisko <marek.belisko@gmail.com> |
| 12209 | S: Odd Fixes |
| 12210 | F: drivers/staging/ft1000/ |
| 12211 | |
Joe Perches | 6c1bb42 | 2011-07-05 09:42:07 -0700 | [diff] [blame] | 12212 | STAGING - INDUSTRIAL IO |
Sachin Kamat | 030a13d | 2013-09-11 11:00:00 +0100 | [diff] [blame] | 12213 | M: Jonathan Cameron <jic23@kernel.org> |
Joe Perches | a013816 | 2011-07-05 15:21:34 -0700 | [diff] [blame] | 12214 | L: linux-iio@vger.kernel.org |
Joe Perches | 6c1bb42 | 2011-07-05 09:42:07 -0700 | [diff] [blame] | 12215 | S: Odd Fixes |
Geert Uytterhoeven | 5291582 | 2016-05-22 11:06:22 +0200 | [diff] [blame] | 12216 | F: Documentation/devicetree/bindings/staging/iio/ |
Joe Perches | 6c1bb42 | 2011-07-05 09:42:07 -0700 | [diff] [blame] | 12217 | F: drivers/staging/iio/ |
| 12218 | |
Joe Perches | a013816 | 2011-07-05 15:21:34 -0700 | [diff] [blame] | 12219 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
| 12220 | M: Jarod Wilson <jarod@wilsonet.com> |
| 12221 | W: http://www.lirc.org/ |
| 12222 | S: Odd Fixes |
Joe Perches | b2b0186 | 2012-01-10 15:09:01 -0800 | [diff] [blame] | 12223 | F: drivers/staging/media/lirc/ |
Joe Perches | a013816 | 2011-07-05 15:21:34 -0700 | [diff] [blame] | 12224 | |
Oleg Drokin | f5e5de1 | 2014-08-15 12:48:14 -0400 | [diff] [blame] | 12225 | STAGING - LUSTRE PARALLEL FILESYSTEM |
| 12226 | M: Oleg Drokin <oleg.drokin@intel.com> |
| 12227 | M: Andreas Dilger <andreas.dilger@intel.com> |
Oleg Drokin | 8701dbf | 2016-08-20 17:34:30 -0400 | [diff] [blame] | 12228 | M: James Simmons <jsimmons@infradead.org> |
Andreas Dilger | d98229f | 2015-08-24 11:11:49 -0400 | [diff] [blame] | 12229 | L: lustre-devel@lists.lustre.org (moderated for non-subscribers) |
| 12230 | W: http://wiki.lustre.org/ |
Oleg Drokin | f5e5de1 | 2014-08-15 12:48:14 -0400 | [diff] [blame] | 12231 | S: Maintained |
| 12232 | F: drivers/staging/lustre |
| 12233 | |
Marc Dietrich | 7c6b6c7 | 2011-09-27 19:00:46 +0200 | [diff] [blame] | 12234 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
| 12235 | M: Marc Dietrich <marvin24@gmx.de> |
| 12236 | L: ac100@lists.launchpad.net (moderated for non-subscribers) |
Stephen Warren | 5d96bf4 | 2013-02-27 17:02:54 -0800 | [diff] [blame] | 12237 | L: linux-tegra@vger.kernel.org |
Marc Dietrich | 7c6b6c7 | 2011-09-27 19:00:46 +0200 | [diff] [blame] | 12238 | S: Maintained |
| 12239 | F: drivers/staging/nvec/ |
| 12240 | |
Greg Kroah-Hartman | 53c43c5 | 2016-04-04 13:52:35 -0700 | [diff] [blame] | 12241 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
| 12242 | M: Jens Frederich <jfrederich@gmail.com> |
| 12243 | M: Daniel Drake <dsd@laptop.org> |
| 12244 | M: Jon Nettleton <jon.nettleton@gmail.com> |
| 12245 | W: http://wiki.laptop.org/go/DCON |
| 12246 | S: Maintained |
| 12247 | F: drivers/staging/olpc_dcon/ |
| 12248 | |
Joe Perches | a013816 | 2011-07-05 15:21:34 -0700 | [diff] [blame] | 12249 | STAGING - REALTEK RTL8712U DRIVERS |
| 12250 | M: Larry Finger <Larry.Finger@lwfinger.net> |
| 12251 | M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>. |
| 12252 | S: Odd Fixes |
| 12253 | F: drivers/staging/rtl8712/ |
| 12254 | |
Sudip Mukherjee | 980ac4d | 2015-03-03 16:21:07 +0530 | [diff] [blame] | 12255 | STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER |
| 12256 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> |
| 12257 | M: Teddy Wang <teddy.wang@siliconmotion.com> |
Sudip Mukherjee | 8056756 | 2016-11-10 22:12:00 +0000 | [diff] [blame] | 12258 | M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk> |
Sudip Mukherjee | 980ac4d | 2015-03-03 16:21:07 +0530 | [diff] [blame] | 12259 | L: linux-fbdev@vger.kernel.org |
| 12260 | S: Maintained |
| 12261 | F: drivers/staging/sm750fb/ |
| 12262 | |
Joe Perches | a013816 | 2011-07-05 15:21:34 -0700 | [diff] [blame] | 12263 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER |
| 12264 | M: William Hubbs <w.d.hubbs@gmail.com> |
| 12265 | M: Chris Brannon <chris@the-brannons.com> |
William Hubbs | d33bce3 | 2013-05-12 13:49:54 -0500 | [diff] [blame] | 12266 | M: Kirk Reiser <kirk@reisers.ca> |
Joe Perches | a013816 | 2011-07-05 15:21:34 -0700 | [diff] [blame] | 12267 | M: Samuel Thibault <samuel.thibault@ens-lyon.org> |
Samuel Thibault | e6a152e | 2014-07-17 23:34:58 +0200 | [diff] [blame] | 12268 | L: speakup@linux-speakup.org |
Joe Perches | a013816 | 2011-07-05 15:21:34 -0700 | [diff] [blame] | 12269 | W: http://www.linux-speakup.org/ |
| 12270 | S: Odd Fixes |
| 12271 | F: drivers/staging/speakup/ |
| 12272 | |
Joe Perches | b3e871c | 2011-07-05 09:42:10 -0700 | [diff] [blame] | 12273 | STAGING - VIA VT665X DRIVERS |
| 12274 | M: Forest Bond <forest@alittletooquiet.net> |
| 12275 | S: Odd Fixes |
| 12276 | F: drivers/staging/vt665?/ |
| 12277 | |
Johnny Kim | a30baec | 2015-05-11 14:30:57 +0900 | [diff] [blame] | 12278 | STAGING - WILC1000 WIFI DRIVER |
Aditya Shankar | d9a8594 | 2016-08-02 11:49:00 +0200 | [diff] [blame] | 12279 | M: Aditya Shankar <aditya.shankar@microchip.com> |
| 12280 | M: Ganesh Krishna <ganesh.krishna@microchip.com> |
Johnny Kim | a30baec | 2015-05-11 14:30:57 +0900 | [diff] [blame] | 12281 | L: linux-wireless@vger.kernel.org |
| 12282 | S: Supported |
| 12283 | F: drivers/staging/wilc1000/ |
| 12284 | |
Joe Perches | 709bcb0 | 2011-07-05 09:42:13 -0700 | [diff] [blame] | 12285 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
Aaro Koskinen | 3e39e66 | 2011-12-09 20:22:04 +0200 | [diff] [blame] | 12286 | M: Arnaud Patard <arnaud.patard@rtp-net.org> |
Joe Perches | 709bcb0 | 2011-07-05 09:42:13 -0700 | [diff] [blame] | 12287 | S: Odd Fixes |
| 12288 | F: drivers/staging/xgifb/ |
| 12289 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12290 | STARFIRE/DURALAN NETWORK DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12291 | M: Ion Badulescu <ionut@badula.org> |
Joe Perches | b4f9018 | 2009-06-30 11:41:32 -0700 | [diff] [blame] | 12292 | S: Odd Fixes |
Jeff Kirsher | 9bba23b | 2011-07-24 02:13:24 -0700 | [diff] [blame] | 12293 | F: drivers/net/ethernet/adaptec/starfire* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12294 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 12295 | SUN3/3X |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12296 | M: Sam Creasey <sammy@sammy.net> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 12297 | W: http://sammy.net/sun3/ |
| 12298 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12299 | F: arch/m68k/kernel/*sun3* |
| 12300 | F: arch/m68k/sun3*/ |
| 12301 | F: arch/m68k/include/asm/sun3* |
Jeff Kirsher | e689cf4 | 2011-05-12 23:04:46 -0700 | [diff] [blame] | 12302 | F: drivers/net/ethernet/i825xx/sun3* |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 12303 | |
Hans de Goede | af6a5af | 2014-12-18 09:24:50 -0800 | [diff] [blame] | 12304 | SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER |
| 12305 | M: Hans de Goede <hdegoede@redhat.com> |
| 12306 | L: linux-input@vger.kernel.org |
| 12307 | S: Maintained |
| 12308 | F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt |
| 12309 | F: drivers/input/keyboard/sun4i-lradc-keys.c |
| 12310 | |
Denis Kirjanov | 2bc9ff0 | 2013-08-17 09:08:49 +0400 | [diff] [blame] | 12311 | SUNDANCE NETWORK DRIVER |
| 12312 | M: Denis Kirjanov <kda@linux-powerpc.org> |
| 12313 | L: netdev@vger.kernel.org |
| 12314 | S: Maintained |
| 12315 | F: drivers/net/ethernet/dlink/sundance.c |
| 12316 | |
Paul Mundt | 2cbb12a | 2007-11-19 13:08:37 +0900 | [diff] [blame] | 12317 | SUPERH |
Rich Felker | 114bf37 | 2016-01-22 15:11:05 -0800 | [diff] [blame] | 12318 | M: Yoshinori Sato <ysato@users.sourceforge.jp> |
| 12319 | M: Rich Felker <dalias@libc.org> |
Paul Mundt | 2cbb12a | 2007-11-19 13:08:37 +0900 | [diff] [blame] | 12320 | L: linux-sh@vger.kernel.org |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 12321 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
Rich Felker | 114bf37 | 2016-01-22 15:11:05 -0800 | [diff] [blame] | 12322 | S: Maintained |
Paul Mundt | 066069e | 2009-04-14 06:32:08 +0900 | [diff] [blame] | 12323 | F: Documentation/sh/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12324 | F: arch/sh/ |
Paul Mundt | 066069e | 2009-04-14 06:32:08 +0900 | [diff] [blame] | 12325 | F: drivers/sh/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12326 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 12327 | SUSPEND TO RAM |
Rafael J. Wysocki | 7fb0608 | 2014-03-20 03:34:47 +0100 | [diff] [blame] | 12328 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12329 | M: Len Brown <len.brown@intel.com> |
| 12330 | M: Pavel Machek <pavel@ucw.cz> |
WANG Cong | bf1c138 | 2011-10-08 20:57:50 +0200 | [diff] [blame] | 12331 | L: linux-pm@vger.kernel.org |
Rafael J. Wysocki | 6865644 | 2016-11-25 00:13:56 +0100 | [diff] [blame] | 12332 | B: https://bugzilla.kernel.org |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 12333 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12334 | F: Documentation/power/ |
| 12335 | F: arch/x86/kernel/acpi/ |
| 12336 | F: drivers/base/power/ |
| 12337 | F: kernel/power/ |
| 12338 | F: include/linux/suspend.h |
| 12339 | F: include/linux/freezer.h |
| 12340 | F: include/linux/pm.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12341 | |
| 12342 | SVGA HANDLING |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12343 | M: Martin Mares <mj@ucw.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12344 | L: linux-video@atrey.karlin.mff.cuni.cz |
| 12345 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12346 | F: Documentation/svga.txt |
| 12347 | F: arch/x86/boot/video* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12348 | |
Konrad Rzeszutek Wilk | 6e28b76 | 2012-10-08 16:28:05 -0700 | [diff] [blame] | 12349 | SWIOTLB SUBSYSTEM |
| 12350 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
| 12351 | L: linux-kernel@vger.kernel.org |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 12352 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git |
Konrad Rzeszutek Wilk | 6e28b76 | 2012-10-08 16:28:05 -0700 | [diff] [blame] | 12353 | S: Supported |
| 12354 | F: lib/swiotlb.c |
| 12355 | F: arch/*/kernel/pci-swiotlb.c |
| 12356 | F: include/linux/swiotlb.h |
| 12357 | |
Jiri Pirko | 007f790 | 2014-11-28 14:34:17 +0100 | [diff] [blame] | 12358 | SWITCHDEV |
| 12359 | M: Jiri Pirko <jiri@resnulli.us> |
Jiri Pirko | f38c5ad | 2017-02-02 17:05:04 +0100 | [diff] [blame] | 12360 | M: Ivan Vecera <ivecera@redhat.com> |
Jiri Pirko | 007f790 | 2014-11-28 14:34:17 +0100 | [diff] [blame] | 12361 | L: netdev@vger.kernel.org |
| 12362 | S: Supported |
| 12363 | F: net/switchdev/ |
| 12364 | F: include/net/switchdev.h |
| 12365 | |
Vineet Gupta | db8e35d | 2013-01-18 15:12:25 +0530 | [diff] [blame] | 12366 | SYNOPSYS ARC ARCHITECTURE |
| 12367 | M: Vineet Gupta <vgupta@synopsys.com> |
Vineet Gupta | 30b9dbe | 2015-11-14 12:58:53 +0530 | [diff] [blame] | 12368 | L: linux-snps-arc@lists.infradead.org |
Vineet Gupta | db8e35d | 2013-01-18 15:12:25 +0530 | [diff] [blame] | 12369 | S: Supported |
| 12370 | F: arch/arc/ |
Vineet Gupta | 9b28829 | 2014-11-18 17:36:11 +0530 | [diff] [blame] | 12371 | F: Documentation/devicetree/bindings/arc/* |
Rob Herring | 2d799dd | 2015-11-05 13:40:40 -0600 | [diff] [blame] | 12372 | F: Documentation/devicetree/bindings/interrupt-controller/snps,arc* |
Vineet Gupta | c4c9a04 | 2016-10-31 13:46:38 -0700 | [diff] [blame] | 12373 | F: drivers/clocksource/arc_timer.c |
Joe Perches | c6a0fe4 | 2013-09-11 14:23:45 -0700 | [diff] [blame] | 12374 | F: drivers/tty/serial/arc_uart.c |
Baruch Siach | b7182d1 | 2015-08-11 12:08:32 +0300 | [diff] [blame] | 12375 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git |
Vineet Gupta | db8e35d | 2013-01-18 15:12:25 +0530 | [diff] [blame] | 12376 | |
Alexey Brodkin | 556cc1c | 2014-01-27 14:51:34 +0100 | [diff] [blame] | 12377 | SYNOPSYS ARC SDP platform support |
| 12378 | M: Alexey Brodkin <abrodkin@synopsys.com> |
| 12379 | S: Supported |
| 12380 | F: arch/arc/plat-axs10x |
| 12381 | F: arch/arc/boot/dts/ax* |
| 12382 | F: Documentation/devicetree/bindings/arc/axs10* |
| 12383 | |
Lee Jones | 6c284c9 | 2015-05-12 14:13:58 +0100 | [diff] [blame] | 12384 | SYSTEM CONFIGURATION (SYSCON) |
| 12385 | M: Lee Jones <lee.jones@linaro.org> |
| 12386 | M: Arnd Bergmann <arnd@arndb.de> |
| 12387 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git |
| 12388 | S: Supported |
| 12389 | F: drivers/mfd/syscon.c |
| 12390 | |
Sebastian Reichel | 8c0984e | 2016-06-17 13:54:32 +0200 | [diff] [blame] | 12391 | SYSTEM RESET/SHUTDOWN DRIVERS |
| 12392 | M: Sebastian Reichel <sre@kernel.org> |
Sebastian Reichel | 8c0984e | 2016-06-17 13:54:32 +0200 | [diff] [blame] | 12393 | L: linux-pm@vger.kernel.org |
Sebastian Reichel | 58db950 | 2016-08-17 14:23:05 +0200 | [diff] [blame] | 12394 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git |
Sebastian Reichel | 8c0984e | 2016-06-17 13:54:32 +0200 | [diff] [blame] | 12395 | S: Maintained |
| 12396 | F: Documentation/devicetree/bindings/power/reset/ |
| 12397 | F: drivers/power/reset/ |
| 12398 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12399 | SYSV FILESYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12400 | M: Christoph Hellwig <hch@infradead.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12401 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12402 | F: Documentation/filesystems/sysv-fs.txt |
| 12403 | F: fs/sysv/ |
| 12404 | F: include/linux/sysv_fs.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12405 | |
Nicholas Bellinger | 86cfa7f | 2011-05-23 14:10:32 -0700 | [diff] [blame] | 12406 | TARGET SUBSYSTEM |
Joe Perches | 9c3646d | 2015-06-25 15:02:00 -0700 | [diff] [blame] | 12407 | M: "Nicholas A. Bellinger" <nab@linux-iscsi.org> |
Nicholas Bellinger | 86cfa7f | 2011-05-23 14:10:32 -0700 | [diff] [blame] | 12408 | L: linux-scsi@vger.kernel.org |
Nicholas Bellinger | b9f5edc | 2011-07-27 20:21:15 +0000 | [diff] [blame] | 12409 | L: target-devel@vger.kernel.org |
Nicholas Bellinger | 86cfa7f | 2011-05-23 14:10:32 -0700 | [diff] [blame] | 12410 | W: http://www.linux-iscsi.org |
Joe Perches | cf015e9 | 2014-02-25 15:01:47 -0800 | [diff] [blame] | 12411 | W: http://groups.google.com/group/linux-iscsi-target-dev |
Nicholas Bellinger | 452cf32 | 2013-05-11 16:27:56 -0700 | [diff] [blame] | 12412 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
Nicholas Bellinger | 86cfa7f | 2011-05-23 14:10:32 -0700 | [diff] [blame] | 12413 | S: Supported |
| 12414 | F: drivers/target/ |
| 12415 | F: include/target/ |
| 12416 | F: Documentation/target/ |
| 12417 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 12418 | TASKSTATS STATISTICS INTERFACE |
Balbir Singh | 185e595 | 2011-06-15 15:08:30 -0700 | [diff] [blame] | 12419 | M: Balbir Singh <bsingharora@gmail.com> |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 12420 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12421 | F: Documentation/accounting/taskstats* |
| 12422 | F: include/linux/taskstats* |
| 12423 | F: kernel/taskstats.c |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 12424 | |
Jiri Pirko | 6b2af24 | 2017-04-13 18:13:51 +0200 | [diff] [blame] | 12425 | TC subsystem |
jamal | f935f3f | 2012-05-24 02:45:02 +0000 | [diff] [blame] | 12426 | M: Jamal Hadi Salim <jhs@mojatatu.com> |
Jamal Hadi Salim | 7ab273b | 2017-04-18 21:23:59 -0400 | [diff] [blame] | 12427 | M: Cong Wang <xiyou.wangcong@gmail.com> |
Jamal Hadi Salim | b603aa4 | 2017-04-18 21:24:00 -0400 | [diff] [blame] | 12428 | M: Jiri Pirko <jiri@resnulli.us> |
Stephen Hemminger | 781b456a | 2006-07-10 20:25:29 -0700 | [diff] [blame] | 12429 | L: netdev@vger.kernel.org |
| 12430 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12431 | F: include/net/pkt_cls.h |
Jiri Pirko | 6b2af24 | 2017-04-13 18:13:51 +0200 | [diff] [blame] | 12432 | F: include/net/pkt_sched.h |
| 12433 | F: include/net/tc_act/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 12434 | F: include/uapi/linux/pkt_cls.h |
Jiri Pirko | 6b2af24 | 2017-04-13 18:13:51 +0200 | [diff] [blame] | 12435 | F: include/uapi/linux/pkt_sched.h |
| 12436 | F: include/uapi/linux/tc_act/ |
| 12437 | F: include/uapi/linux/tc_ematch/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12438 | F: net/sched/ |
Stephen Hemminger | 781b456a | 2006-07-10 20:25:29 -0700 | [diff] [blame] | 12439 | |
Wong Hoi Sing Edison | 5067f08 | 2006-09-13 20:31:13 -0700 | [diff] [blame] | 12440 | TCP LOW PRIORITY MODULE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12441 | M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com> |
| 12442 | M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com> |
Wong Hoi Sing Edison | 5067f08 | 2006-09-13 20:31:13 -0700 | [diff] [blame] | 12443 | W: http://tcp-lp-mod.sourceforge.net/ |
| 12444 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12445 | F: net/ipv4/tcp_lp.c |
Wong Hoi Sing Edison | 5067f08 | 2006-09-13 20:31:13 -0700 | [diff] [blame] | 12446 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 12447 | TDA10071 MEDIA DRIVER |
| 12448 | M: Antti Palosaari <crope@iki.fi> |
| 12449 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 12450 | W: https://linuxtv.org |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 12451 | W: http://palosaari.fi/linux/ |
| 12452 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 12453 | T: git git://linuxtv.org/anttip/media_tree.git |
| 12454 | S: Maintained |
| 12455 | F: drivers/media/dvb-frontends/tda10071* |
| 12456 | |
| 12457 | TDA18212 MEDIA DRIVER |
| 12458 | M: Antti Palosaari <crope@iki.fi> |
| 12459 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 12460 | W: https://linuxtv.org |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 12461 | W: http://palosaari.fi/linux/ |
| 12462 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 12463 | T: git git://linuxtv.org/anttip/media_tree.git |
| 12464 | S: Maintained |
| 12465 | F: drivers/media/tuners/tda18212* |
| 12466 | |
| 12467 | TDA18218 MEDIA DRIVER |
| 12468 | M: Antti Palosaari <crope@iki.fi> |
| 12469 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 12470 | W: https://linuxtv.org |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 12471 | W: http://palosaari.fi/linux/ |
| 12472 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 12473 | T: git git://linuxtv.org/anttip/media_tree.git |
| 12474 | S: Maintained |
| 12475 | F: drivers/media/tuners/tda18218* |
| 12476 | |
Michael Krufky | 3b2f6ab | 2012-10-02 00:55:32 -0300 | [diff] [blame] | 12477 | TDA18271 MEDIA DRIVER |
| 12478 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 12479 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 12480 | W: https://linuxtv.org |
Michael Krufky | 3b2f6ab | 2012-10-02 00:55:32 -0300 | [diff] [blame] | 12481 | W: http://github.com/mkrufky |
| 12482 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 12483 | T: git git://linuxtv.org/mkrufky/tuners.git |
| 12484 | S: Maintained |
| 12485 | F: drivers/media/tuners/tda18271* |
| 12486 | |
Michael Krufky | e48307a | 2012-10-02 00:56:33 -0300 | [diff] [blame] | 12487 | TDA827x MEDIA DRIVER |
| 12488 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 12489 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 12490 | W: https://linuxtv.org |
Michael Krufky | e48307a | 2012-10-02 00:56:33 -0300 | [diff] [blame] | 12491 | W: http://github.com/mkrufky |
| 12492 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 12493 | T: git git://linuxtv.org/mkrufky/tuners.git |
| 12494 | S: Maintained |
| 12495 | F: drivers/media/tuners/tda8290.* |
| 12496 | |
Michael Krufky | 66cf921 | 2012-10-02 00:56:28 -0300 | [diff] [blame] | 12497 | TDA8290 MEDIA DRIVER |
| 12498 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 12499 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 12500 | W: https://linuxtv.org |
Michael Krufky | 66cf921 | 2012-10-02 00:56:28 -0300 | [diff] [blame] | 12501 | W: http://github.com/mkrufky |
| 12502 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 12503 | T: git git://linuxtv.org/mkrufky/tuners.git |
| 12504 | S: Maintained |
| 12505 | F: drivers/media/tuners/tda8290.* |
| 12506 | |
Hans Verkuil | 4b9fba3 | 2012-11-23 10:02:05 -0300 | [diff] [blame] | 12507 | TDA9840 MEDIA DRIVER |
| 12508 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 12509 | L: linux-media@vger.kernel.org |
| 12510 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 12511 | W: https://linuxtv.org |
Hans Verkuil | 4b9fba3 | 2012-11-23 10:02:05 -0300 | [diff] [blame] | 12512 | S: Maintained |
| 12513 | F: drivers/media/i2c/tda9840* |
| 12514 | |
Mauro Carvalho Chehab | 2cb654f | 2012-11-02 12:09:00 -0200 | [diff] [blame] | 12515 | TEA5761 TUNER DRIVER |
Mauro Carvalho Chehab | 5dc8a86 | 2016-06-14 15:17:40 -0300 | [diff] [blame] | 12516 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
| 12517 | M: Mauro Carvalho Chehab <mchehab@kernel.org> |
Mauro Carvalho Chehab | 2cb654f | 2012-11-02 12:09:00 -0200 | [diff] [blame] | 12518 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 12519 | W: https://linuxtv.org |
Mauro Carvalho Chehab | 2cb654f | 2012-11-02 12:09:00 -0200 | [diff] [blame] | 12520 | T: git git://linuxtv.org/media_tree.git |
| 12521 | S: Odd fixes |
| 12522 | F: drivers/media/tuners/tea5761.* |
| 12523 | |
| 12524 | TEA5767 TUNER DRIVER |
Mauro Carvalho Chehab | 5dc8a86 | 2016-06-14 15:17:40 -0300 | [diff] [blame] | 12525 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
| 12526 | M: Mauro Carvalho Chehab <mchehab@kernel.org> |
Mauro Carvalho Chehab | 2cb654f | 2012-11-02 12:09:00 -0200 | [diff] [blame] | 12527 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 12528 | W: https://linuxtv.org |
Mauro Carvalho Chehab | 2cb654f | 2012-11-02 12:09:00 -0200 | [diff] [blame] | 12529 | T: git git://linuxtv.org/media_tree.git |
| 12530 | S: Maintained |
| 12531 | F: drivers/media/tuners/tea5767.* |
| 12532 | |
Hans Verkuil | 4b9fba3 | 2012-11-23 10:02:05 -0300 | [diff] [blame] | 12533 | TEA6415C MEDIA DRIVER |
| 12534 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 12535 | L: linux-media@vger.kernel.org |
| 12536 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 12537 | W: https://linuxtv.org |
Hans Verkuil | 4b9fba3 | 2012-11-23 10:02:05 -0300 | [diff] [blame] | 12538 | S: Maintained |
| 12539 | F: drivers/media/i2c/tea6415c* |
| 12540 | |
| 12541 | TEA6420 MEDIA DRIVER |
| 12542 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 12543 | L: linux-media@vger.kernel.org |
| 12544 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 12545 | W: https://linuxtv.org |
Hans Verkuil | 4b9fba3 | 2012-11-23 10:02:05 -0300 | [diff] [blame] | 12546 | S: Maintained |
| 12547 | F: drivers/media/i2c/tea6420* |
| 12548 | |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 12549 | TEAM DRIVER |
Jiri Pirko | dca9ab9 | 2013-02-15 23:55:05 +0000 | [diff] [blame] | 12550 | M: Jiri Pirko <jiri@resnulli.us> |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 12551 | L: netdev@vger.kernel.org |
| 12552 | S: Supported |
| 12553 | F: drivers/net/team/ |
| 12554 | F: include/linux/if_team.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 12555 | F: include/uapi/linux/if_team.h |
Jiri Pirko | 3d249d4 | 2011-11-11 22:16:48 +0000 | [diff] [blame] | 12556 | |
Vivien Didelot | 7d02912 | 2013-01-04 16:18:14 -0500 | [diff] [blame] | 12557 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
Joe Perches | 9c3646d | 2015-06-25 15:02:00 -0700 | [diff] [blame] | 12558 | M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com> |
Vivien Didelot | 7d02912 | 2013-01-04 16:18:14 -0500 | [diff] [blame] | 12559 | S: Maintained |
| 12560 | F: arch/x86/platform/ts5500/ |
| 12561 | |
Sean Young | 40ad4a3 | 2012-11-19 10:32:53 -0300 | [diff] [blame] | 12562 | TECHNOTREND USB IR RECEIVER |
| 12563 | M: Sean Young <sean@mess.org> |
| 12564 | L: linux-media@vger.kernel.org |
| 12565 | S: Maintained |
| 12566 | F: drivers/media/rc/ttusbir.c |
| 12567 | |
Stephen Warren | adabdb0 | 2013-09-13 13:00:57 -0600 | [diff] [blame] | 12568 | TEGRA ARCHITECTURE SUPPORT |
Stephen Warren | adabdb0 | 2013-09-13 13:00:57 -0600 | [diff] [blame] | 12569 | M: Thierry Reding <thierry.reding@gmail.com> |
Thierry Reding | a06eb00 | 2017-02-23 18:16:18 +0100 | [diff] [blame] | 12570 | M: Jonathan Hunter <jonathanh@nvidia.com> |
Erik Gilling | 84b9414 | 2010-06-09 15:35:53 -0700 | [diff] [blame] | 12571 | L: linux-tegra@vger.kernel.org |
Olof Johansson | fd117cd | 2012-03-18 10:44:11 -0700 | [diff] [blame] | 12572 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
Andreas Färber | b779b88 | 2014-07-28 12:06:26 -0600 | [diff] [blame] | 12573 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git |
Erik Gilling | 84b9414 | 2010-06-09 15:35:53 -0700 | [diff] [blame] | 12574 | S: Supported |
Stephen Warren | bbbe96e | 2013-04-29 16:17:23 -0700 | [diff] [blame] | 12575 | N: [^a-z]tegra |
Erik Gilling | 84b9414 | 2010-06-09 15:35:53 -0700 | [diff] [blame] | 12576 | |
Stephen Warren | adabdb0 | 2013-09-13 13:00:57 -0600 | [diff] [blame] | 12577 | TEGRA CLOCK DRIVER |
| 12578 | M: Peter De Schrijver <pdeschrijver@nvidia.com> |
| 12579 | M: Prashant Gaikwad <pgaikwad@nvidia.com> |
| 12580 | S: Supported |
| 12581 | F: drivers/clk/tegra/ |
| 12582 | |
Jon Hunter | 86e486a | 2016-05-12 18:02:24 +0100 | [diff] [blame] | 12583 | TEGRA DMA DRIVERS |
Stephen Warren | adabdb0 | 2013-09-13 13:00:57 -0600 | [diff] [blame] | 12584 | M: Laxman Dewangan <ldewangan@nvidia.com> |
Jon Hunter | 86e486a | 2016-05-12 18:02:24 +0100 | [diff] [blame] | 12585 | M: Jon Hunter <jonathanh@nvidia.com> |
Stephen Warren | adabdb0 | 2013-09-13 13:00:57 -0600 | [diff] [blame] | 12586 | S: Supported |
Jon Hunter | 86e486a | 2016-05-12 18:02:24 +0100 | [diff] [blame] | 12587 | F: drivers/dma/tegra* |
Stephen Warren | adabdb0 | 2013-09-13 13:00:57 -0600 | [diff] [blame] | 12588 | |
Stephen Warren | adabdb0 | 2013-09-13 13:00:57 -0600 | [diff] [blame] | 12589 | TEGRA I2C DRIVER |
| 12590 | M: Laxman Dewangan <ldewangan@nvidia.com> |
| 12591 | S: Supported |
| 12592 | F: drivers/i2c/busses/i2c-tegra.c |
| 12593 | |
| 12594 | TEGRA IOMMU DRIVERS |
| 12595 | M: Hiroshi Doyu <hdoyu@nvidia.com> |
| 12596 | S: Supported |
| 12597 | F: drivers/iommu/tegra* |
| 12598 | |
| 12599 | TEGRA KBC DRIVER |
| 12600 | M: Rakesh Iyer <riyer@nvidia.com> |
| 12601 | M: Laxman Dewangan <ldewangan@nvidia.com> |
| 12602 | S: Supported |
| 12603 | F: drivers/input/keyboard/tegra-kbc.c |
| 12604 | |
Stephen Warren | adabdb0 | 2013-09-13 13:00:57 -0600 | [diff] [blame] | 12605 | TEGRA PWM DRIVER |
| 12606 | M: Thierry Reding <thierry.reding@gmail.com> |
| 12607 | S: Supported |
| 12608 | F: drivers/pwm/pwm-tegra.c |
| 12609 | |
| 12610 | TEGRA SERIAL DRIVER |
| 12611 | M: Laxman Dewangan <ldewangan@nvidia.com> |
| 12612 | S: Supported |
| 12613 | F: drivers/tty/serial/serial-tegra.c |
| 12614 | |
| 12615 | TEGRA SPI DRIVER |
| 12616 | M: Laxman Dewangan <ldewangan@nvidia.com> |
| 12617 | S: Supported |
| 12618 | F: drivers/spi/spi-tegra* |
| 12619 | |
Andy Gospodarek | 1a348cc | 2007-09-17 18:50:36 -0700 | [diff] [blame] | 12620 | TEHUTI ETHERNET DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12621 | M: Andy Gospodarek <andy@greyhouse.net> |
Andy Gospodarek | 1a348cc | 2007-09-17 18:50:36 -0700 | [diff] [blame] | 12622 | L: netdev@vger.kernel.org |
| 12623 | S: Supported |
Jeff Kirsher | ef7f542 | 2011-05-15 21:46:41 -0700 | [diff] [blame] | 12624 | F: drivers/net/ethernet/tehuti/* |
Andy Gospodarek | 1a348cc | 2007-09-17 18:50:36 -0700 | [diff] [blame] | 12625 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 12626 | Telecom Clock Driver for MCPL0010 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12627 | M: Mark Gross <mark.gross@intel.com> |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 12628 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12629 | F: drivers/char/tlclk.c |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 12630 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 12631 | TENSILICA XTENSA PORT (xtensa) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12632 | M: Chris Zankel <chris@zankel.net> |
Chris Zankel | f959ed2 | 2012-10-03 15:02:19 -0700 | [diff] [blame] | 12633 | M: Max Filippov <jcmvbkbc@gmail.com> |
| 12634 | L: linux-xtensa@linux-xtensa.org |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 12635 | T: git git://github.com/czankel/xtensa-linux.git |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 12636 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12637 | F: arch/xtensa/ |
Max Filippov | 3dc9985 | 2014-04-03 14:48:48 -0700 | [diff] [blame] | 12638 | F: drivers/irqchip/irq-xtensa-* |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 12639 | |
Nishanth Menon | 04f1024 | 2016-10-18 18:08:33 -0500 | [diff] [blame] | 12640 | Texas Instruments' System Control Interface (TISCI) Protocol Driver |
| 12641 | M: Nishanth Menon <nm@ti.com> |
| 12642 | M: Tero Kristo <t-kristo@ti.com> |
| 12643 | M: Santosh Shilimkar <ssantosh@kernel.org> |
| 12644 | L: linux-arm-kernel@lists.infradead.org |
| 12645 | S: Maintained |
| 12646 | F: Documentation/devicetree/bindings/arm/keystone/ti,sci.txt |
Nishanth Menon | aa27678 | 2016-10-18 18:08:34 -0500 | [diff] [blame] | 12647 | F: drivers/firmware/ti_sci* |
| 12648 | F: include/linux/soc/ti/ti_sci_protocol.h |
Dave Gerlach | 7cc119f | 2017-04-04 08:59:27 -0700 | [diff] [blame] | 12649 | F: Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt |
| 12650 | F: include/dt-bindings/genpd/k2g.h |
Dave Gerlach | 52835d5 | 2017-04-04 08:59:27 -0700 | [diff] [blame] | 12651 | F: drivers/soc/ti/ti_sci_pm_domains.c |
Nishanth Menon | 04f1024 | 2016-10-18 18:08:33 -0500 | [diff] [blame] | 12652 | |
Hans Verkuil | 5313ba6 | 2013-12-13 09:00:38 -0300 | [diff] [blame] | 12653 | THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER |
| 12654 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 12655 | L: linux-media@vger.kernel.org |
| 12656 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 12657 | W: https://linuxtv.org |
Hans Verkuil | 5313ba6 | 2013-12-13 09:00:38 -0300 | [diff] [blame] | 12658 | S: Maintained |
| 12659 | F: drivers/media/radio/radio-raremono.c |
| 12660 | |
Zhang Rui | d3fb695 | 2012-11-15 08:58:27 +0800 | [diff] [blame] | 12661 | THERMAL |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 12662 | M: Zhang Rui <rui.zhang@intel.com> |
Lee Jones | f14d1c2 | 2014-05-30 11:03:28 +0100 | [diff] [blame] | 12663 | M: Eduardo Valentin <edubezval@gmail.com> |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 12664 | L: linux-pm@vger.kernel.org |
| 12665 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git |
| 12666 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git |
| 12667 | Q: https://patchwork.kernel.org/project/linux-pm/list/ |
| 12668 | S: Supported |
| 12669 | F: drivers/thermal/ |
| 12670 | F: include/linux/thermal.h |
Florian Fainelli | af6c9f1 | 2014-11-19 18:11:00 -0800 | [diff] [blame] | 12671 | F: include/uapi/linux/thermal.h |
Joe Perches | b75f005 | 2014-03-03 15:38:37 -0800 | [diff] [blame] | 12672 | F: include/linux/cpu_cooling.h |
| 12673 | F: Documentation/devicetree/bindings/thermal/ |
Zhang Rui | d3fb695 | 2012-11-15 08:58:27 +0800 | [diff] [blame] | 12674 | |
Viresh Kumar | 64e05d8 | 2015-08-27 07:32:11 +0530 | [diff] [blame] | 12675 | THERMAL/CPU_COOLING |
| 12676 | M: Amit Daniel Kachhap <amit.kachhap@gmail.com> |
| 12677 | M: Viresh Kumar <viresh.kumar@linaro.org> |
Javi Merino | 9a2172a | 2016-09-30 13:14:28 +0100 | [diff] [blame] | 12678 | M: Javi Merino <javi.merino@kernel.org> |
Viresh Kumar | 64e05d8 | 2015-08-27 07:32:11 +0530 | [diff] [blame] | 12679 | L: linux-pm@vger.kernel.org |
| 12680 | S: Supported |
| 12681 | F: Documentation/thermal/cpu-cooling-api.txt |
| 12682 | F: drivers/thermal/cpu_cooling.c |
| 12683 | F: include/linux/cpu_cooling.h |
| 12684 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 12685 | THINKPAD ACPI EXTRAS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12686 | M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br> |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 12687 | L: ibm-acpi-devel@lists.sourceforge.net |
Matthew Garrett | d0944853 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 12688 | L: platform-driver-x86@vger.kernel.org |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 12689 | W: http://ibm-acpi.sourceforge.net |
| 12690 | W: http://thinkwiki.org/wiki/Ibm-acpi |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 12691 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 12692 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12693 | F: drivers/platform/x86/thinkpad_acpi.c |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 12694 | |
Eduardo Valentin | 1b46f2a | 2013-03-15 09:00:34 -0400 | [diff] [blame] | 12695 | TI BANDGAP AND THERMAL DRIVER |
Lee Jones | f14d1c2 | 2014-05-30 11:03:28 +0100 | [diff] [blame] | 12696 | M: Eduardo Valentin <edubezval@gmail.com> |
Keerthy | ef41be8 | 2016-03-16 11:42:58 +0530 | [diff] [blame] | 12697 | M: Keerthy <j-keerthy@ti.com> |
Eduardo Valentin | 1b46f2a | 2013-03-15 09:00:34 -0400 | [diff] [blame] | 12698 | L: linux-pm@vger.kernel.org |
Nishanth Menon | 531ff13 | 2015-01-03 13:13:30 -0600 | [diff] [blame] | 12699 | L: linux-omap@vger.kernel.org |
Eduardo Valentin | 5a723e8 | 2015-01-05 17:48:13 -0400 | [diff] [blame] | 12700 | S: Maintained |
Eduardo Valentin | 794b2e2 | 2013-05-15 15:46:01 +0000 | [diff] [blame] | 12701 | F: drivers/thermal/ti-soc-thermal/ |
Eduardo Valentin | 1b46f2a | 2013-03-15 09:00:34 -0400 | [diff] [blame] | 12702 | |
Benoit Parrot | ccf963d | 2016-01-06 21:37:25 -0200 | [diff] [blame] | 12703 | TI VPE/CAL DRIVERS |
| 12704 | M: Benoit Parrot <bparrot@ti.com> |
| 12705 | L: linux-media@vger.kernel.org |
| 12706 | W: http://linuxtv.org/ |
| 12707 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 12708 | S: Maintained |
| 12709 | F: drivers/media/platform/ti-vpe/ |
| 12710 | |
Max Filippov | 0c7665c | 2015-01-12 10:20:46 +0300 | [diff] [blame] | 12711 | TI CDCE706 CLOCK DRIVER |
| 12712 | M: Max Filippov <jcmvbkbc@gmail.com> |
| 12713 | S: Maintained |
| 12714 | F: drivers/clk/clk-cdce706.c |
| 12715 | |
Tero Kristo | 49b6a5e | 2014-07-02 17:03:50 +0300 | [diff] [blame] | 12716 | TI CLOCK DRIVER |
| 12717 | M: Tero Kristo <t-kristo@ti.com> |
| 12718 | L: linux-omap@vger.kernel.org |
| 12719 | S: Maintained |
| 12720 | F: drivers/clk/ti/ |
| 12721 | F: include/linux/clk/ti.h |
| 12722 | |
Grygorii Strashko | f75cfba | 2016-04-21 13:13:56 +0300 | [diff] [blame] | 12723 | TI ETHERNET SWITCH DRIVER (CPSW) |
Grygorii Strashko | f75cfba | 2016-04-21 13:13:56 +0300 | [diff] [blame] | 12724 | R: Grygorii Strashko <grygorii.strashko@ti.com> |
| 12725 | L: linux-omap@vger.kernel.org |
| 12726 | L: netdev@vger.kernel.org |
| 12727 | S: Maintained |
| 12728 | F: drivers/net/ethernet/ti/cpsw* |
| 12729 | F: drivers/net/ethernet/ti/davinci* |
| 12730 | |
Alex Dubov | 4020f2d | 2006-10-04 02:15:37 -0700 | [diff] [blame] | 12731 | TI FLASH MEDIA INTERFACE DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12732 | M: Alex Dubov <oakad@yahoo.com> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 12733 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12734 | F: drivers/misc/tifm* |
| 12735 | F: drivers/mmc/host/tifm_sd.c |
| 12736 | F: include/linux/tifm.h |
Alex Dubov | 4020f2d | 2006-10-04 02:15:37 -0700 | [diff] [blame] | 12737 | |
Santosh Shilimkar | e0c5240 | 2014-07-10 11:30:08 -0400 | [diff] [blame] | 12738 | TI KEYSTONE MULTICORE NAVIGATOR DRIVERS |
Santosh Shilimkar | 9721580 | 2014-10-13 14:16:28 -0400 | [diff] [blame] | 12739 | M: Santosh Shilimkar <ssantosh@kernel.org> |
Santosh Shilimkar | e0c5240 | 2014-07-10 11:30:08 -0400 | [diff] [blame] | 12740 | L: linux-kernel@vger.kernel.org |
| 12741 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 12742 | S: Maintained |
| 12743 | F: drivers/soc/ti/* |
| 12744 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
| 12745 | |
| 12746 | |
M R Swami Reddy | 152ad44 | 2012-04-02 20:02:31 +0530 | [diff] [blame] | 12747 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
| 12748 | M: M R Swami Reddy <mr.swami.reddy@ti.com> |
M R Swami Reddy | d392dea | 2012-06-07 18:37:54 +0530 | [diff] [blame] | 12749 | M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com> |
M R Swami Reddy | 152ad44 | 2012-04-02 20:02:31 +0530 | [diff] [blame] | 12750 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 12751 | S: Maintained |
| 12752 | F: sound/soc/codecs/lm49453* |
M R Swami Reddy | d392dea | 2012-06-07 18:37:54 +0530 | [diff] [blame] | 12753 | F: sound/soc/codecs/isabelle* |
M R Swami Reddy | 152ad44 | 2012-04-02 20:02:31 +0530 | [diff] [blame] | 12754 | |
Kim, Milo | 0edd807 | 2012-12-17 16:01:17 -0800 | [diff] [blame] | 12755 | TI LP855x BACKLIGHT DRIVER |
| 12756 | M: Milo Kim <milo.kim@ti.com> |
| 12757 | S: Maintained |
| 12758 | F: Documentation/backlight/lp855x-driver.txt |
| 12759 | F: drivers/video/backlight/lp855x_bl.c |
| 12760 | F: include/linux/platform_data/lp855x.h |
| 12761 | |
Kim, Milo | faf13f6 | 2012-12-10 05:27:03 +0000 | [diff] [blame] | 12762 | TI LP8727 CHARGER DRIVER |
| 12763 | M: Milo Kim <milo.kim@ti.com> |
| 12764 | S: Maintained |
Sebastian Reichel | 8c0984e | 2016-06-17 13:54:32 +0200 | [diff] [blame] | 12765 | F: drivers/power/supply/lp8727_charger.c |
Kim, Milo | faf13f6 | 2012-12-10 05:27:03 +0000 | [diff] [blame] | 12766 | F: include/linux/platform_data/lp8727.h |
| 12767 | |
Kim, Milo | 22f1229 | 2012-12-10 05:27:55 +0000 | [diff] [blame] | 12768 | TI LP8788 MFD DRIVER |
| 12769 | M: Milo Kim <milo.kim@ti.com> |
| 12770 | S: Maintained |
| 12771 | F: drivers/iio/adc/lp8788_adc.c |
| 12772 | F: drivers/leds/leds-lp8788.c |
| 12773 | F: drivers/mfd/lp8788*.c |
Sebastian Reichel | 8c0984e | 2016-06-17 13:54:32 +0200 | [diff] [blame] | 12774 | F: drivers/power/supply/lp8788-charger.c |
Kim, Milo | 22f1229 | 2012-12-10 05:27:55 +0000 | [diff] [blame] | 12775 | F: drivers/regulator/lp8788-*.c |
| 12776 | F: include/linux/mfd/lp8788*.h |
| 12777 | |
Karicheri, Muralidharan | 84640e2 | 2015-01-15 19:12:50 -0500 | [diff] [blame] | 12778 | TI NETCP ETHERNET DRIVER |
| 12779 | M: Wingman Kwok <w-kwok2@ti.com> |
| 12780 | M: Murali Karicheri <m-karicheri2@ti.com> |
| 12781 | L: netdev@vger.kernel.org |
| 12782 | S: Maintained |
| 12783 | F: drivers/net/ethernet/ti/netcp* |
| 12784 | |
Kevin Cernekee | 217e0ca | 2015-05-03 17:00:19 -0700 | [diff] [blame] | 12785 | TI TAS571X FAMILY ASoC CODEC DRIVER |
| 12786 | M: Kevin Cernekee <cernekee@chromium.org> |
| 12787 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 12788 | S: Odd Fixes |
| 12789 | F: sound/soc/codecs/tas571x* |
| 12790 | |
Peter Ujfalusi | dd5e8e6 | 2009-06-25 13:26:09 +0300 | [diff] [blame] | 12791 | TI TWL4030 SERIES SOC CODEC DRIVER |
Peter Ujfalusi | 3be79d1 | 2011-05-02 14:16:29 +0300 | [diff] [blame] | 12792 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
Peter Ujfalusi | dd5e8e6 | 2009-06-25 13:26:09 +0300 | [diff] [blame] | 12793 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 12794 | S: Maintained |
| 12795 | F: sound/soc/codecs/twl4030* |
| 12796 | |
Luciano Coelho | 9092101 | 2011-11-20 21:40:41 +0200 | [diff] [blame] | 12797 | TI WILINK WIRELESS DRIVERS |
Luciano Coelho | 9092101 | 2011-11-20 21:40:41 +0200 | [diff] [blame] | 12798 | L: linux-wireless@vger.kernel.org |
| 12799 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx |
| 12800 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 |
| 12801 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git |
Luciano Coelho | 22d072f | 2013-12-09 22:28:32 +0200 | [diff] [blame] | 12802 | S: Orphan |
Luciano Coelho | 9092101 | 2011-11-20 21:40:41 +0200 | [diff] [blame] | 12803 | F: drivers/net/wireless/ti/ |
| 12804 | F: include/linux/wl12xx.h |
| 12805 | |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 12806 | TIPC NETWORK LAYER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12807 | M: Jon Maloy <jon.maloy@ericsson.com> |
Jon Paul Maloy | 115403d | 2015-03-09 14:44:13 -0400 | [diff] [blame] | 12808 | M: Ying Xue <ying.xue@windriver.com> |
Allan Stephens | 633d2bd | 2011-03-13 15:44:07 -0500 | [diff] [blame] | 12809 | L: netdev@vger.kernel.org (core kernel code) |
| 12810 | L: tipc-discussion@lists.sourceforge.net (user apps, general discussion) |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 12811 | W: http://tipc.sourceforge.net/ |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 12812 | S: Maintained |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 12813 | F: include/uapi/linux/tipc*.h |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12814 | F: net/tipc/ |
Per Liden | e86eaa3 | 2006-01-12 16:45:18 +0100 | [diff] [blame] | 12815 | |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 12816 | TILE ARCHITECTURE |
Chris Metcalf | b9a279f | 2016-03-02 15:32:27 -0500 | [diff] [blame] | 12817 | M: Chris Metcalf <cmetcalf@mellanox.com> |
Chris Metcalf | 8c34d8d | 2016-03-04 11:12:28 -0500 | [diff] [blame] | 12818 | W: http://www.mellanox.com/repository/solutions/tile-scm/ |
Fengguang Wu | 7fa129c | 2015-12-18 10:15:37 -0500 | [diff] [blame] | 12819 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 12820 | S: Supported |
| 12821 | F: arch/tile/ |
Chris Metcalf | 6b94060 | 2013-08-07 10:45:01 -0400 | [diff] [blame] | 12822 | F: drivers/char/tile-srom.c |
Chris Metcalf | 5c77075 | 2011-03-01 13:01:49 -0500 | [diff] [blame] | 12823 | F: drivers/edac/tile_edac.c |
Chris Metcalf | 6b94060 | 2013-08-07 10:45:01 -0400 | [diff] [blame] | 12824 | F: drivers/net/ethernet/tile/ |
| 12825 | F: drivers/rtc/rtc-tile.c |
| 12826 | F: drivers/tty/hvc/hvc_tile.c |
Chris Metcalf | b5c6c1a | 2013-08-12 14:11:44 -0400 | [diff] [blame] | 12827 | F: drivers/tty/serial/tilegx.c |
Chris Metcalf | 6b94060 | 2013-08-07 10:45:01 -0400 | [diff] [blame] | 12828 | F: drivers/usb/host/*-tilegx.c |
| 12829 | F: include/linux/usb/tilegx.h |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 12830 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12831 | TLAN NETWORK DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12832 | M: Samuel Chessman <chessman@tux.org> |
Gabriel Craciunescu | 88c07dd | 2007-11-22 19:43:36 +0800 | [diff] [blame] | 12833 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12834 | W: http://sourceforge.net/projects/tlan/ |
| 12835 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12836 | F: Documentation/networking/tlan.txt |
Jeff Kirsher | b544dba | 2011-06-14 12:56:50 -0700 | [diff] [blame] | 12837 | F: drivers/net/ethernet/ti/tlan.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12838 | |
Kentaro Takeda | d74db3b | 2009-02-05 17:18:18 +0900 | [diff] [blame] | 12839 | TOMOYO SECURITY MODULE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12840 | M: Kentaro Takeda <takedakn@nttdata.co.jp> |
| 12841 | M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> |
Tetsuo Handa | d03a5d8 | 2010-12-19 12:54:22 +0900 | [diff] [blame] | 12842 | L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English) |
| 12843 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English) |
Kentaro Takeda | d74db3b | 2009-02-05 17:18:18 +0900 | [diff] [blame] | 12844 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
| 12845 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) |
| 12846 | W: http://tomoyo.sourceforge.jp/ |
Tetsuo Handa | 843d183 | 2011-09-14 17:03:19 +0900 | [diff] [blame] | 12847 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
Kentaro Takeda | d74db3b | 2009-02-05 17:18:18 +0900 | [diff] [blame] | 12848 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12849 | F: security/tomoyo/ |
Kentaro Takeda | d74db3b | 2009-02-05 17:18:18 +0900 | [diff] [blame] | 12850 | |
Herton Ronaldo Krzesinski | 9caeb53 | 2009-09-14 21:11:21 -0300 | [diff] [blame] | 12851 | TOPSTAR LAPTOP EXTRAS DRIVER |
Herton Ronaldo Krzesinski | 9f0939b | 2011-02-24 15:18:07 -0300 | [diff] [blame] | 12852 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
Matthew Garrett | d0944853 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 12853 | L: platform-driver-x86@vger.kernel.org |
Herton Ronaldo Krzesinski | 9caeb53 | 2009-09-14 21:11:21 -0300 | [diff] [blame] | 12854 | S: Maintained |
| 12855 | F: drivers/platform/x86/topstar-laptop.c |
| 12856 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12857 | TOSHIBA ACPI EXTRAS DRIVER |
Azael Avalos | 0a63ca1 | 2015-03-06 18:14:42 -0700 | [diff] [blame] | 12858 | M: Azael Avalos <coproscefalo@gmail.com> |
Matthew Garrett | d0944853 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 12859 | L: platform-driver-x86@vger.kernel.org |
Azael Avalos | 0a63ca1 | 2015-03-06 18:14:42 -0700 | [diff] [blame] | 12860 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12861 | F: drivers/platform/x86/toshiba_acpi.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12862 | |
Azael Avalos | 0a63ca1 | 2015-03-06 18:14:42 -0700 | [diff] [blame] | 12863 | TOSHIBA BLUETOOTH DRIVER |
| 12864 | M: Azael Avalos <coproscefalo@gmail.com> |
| 12865 | L: platform-driver-x86@vger.kernel.org |
| 12866 | S: Maintained |
| 12867 | F: drivers/platform/x86/toshiba_bluetooth.c |
| 12868 | |
| 12869 | TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER |
| 12870 | M: Azael Avalos <coproscefalo@gmail.com> |
| 12871 | L: platform-driver-x86@vger.kernel.org |
| 12872 | S: Maintained |
| 12873 | F: drivers/platform/x86/toshiba_haps.c |
| 12874 | |
Azael Avalos | 14991fc | 2015-09-28 20:32:28 -0600 | [diff] [blame] | 12875 | TOSHIBA WMI HOTKEYS DRIVER |
| 12876 | M: Azael Avalos <coproscefalo@gmail.com> |
| 12877 | L: platform-driver-x86@vger.kernel.org |
| 12878 | S: Maintained |
| 12879 | F: drivers/platform/x86/toshiba-wmi.c |
| 12880 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12881 | TOSHIBA SMM DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 12882 | M: Jonathan Buzzard <jonathan@buzzard.org.uk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12883 | W: http://www.buzzard.org.uk/toshiba/ |
| 12884 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12885 | F: drivers/char/toshiba.c |
| 12886 | F: include/linux/toshiba.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 12887 | F: include/uapi/linux/toshiba.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12888 | |
Mats Randgaard | d32d986 | 2015-07-09 05:45:47 -0300 | [diff] [blame] | 12889 | TOSHIBA TC358743 DRIVER |
| 12890 | M: Mats Randgaard <matrandg@cisco.com> |
| 12891 | L: linux-media@vger.kernel.org |
| 12892 | S: Maintained |
| 12893 | F: drivers/media/i2c/tc358743* |
Mauro Carvalho Chehab | b5dcee2 | 2015-11-10 12:01:44 -0200 | [diff] [blame] | 12894 | F: include/media/i2c/tc358743.h |
Mats Randgaard | d32d986 | 2015-07-09 05:45:47 -0300 | [diff] [blame] | 12895 | |
Wolfram Sang | 560e647 | 2016-05-09 10:26:58 +0200 | [diff] [blame] | 12896 | TMIO/SDHI MMC DRIVER |
| 12897 | M: Wolfram Sang <wsa+renesas@sang-engineering.com> |
Guennadi Liakhovetski | d1057c4 | 2011-07-17 22:04:07 +0200 | [diff] [blame] | 12898 | L: linux-mmc@vger.kernel.org |
Wolfram Sang | 560e647 | 2016-05-09 10:26:58 +0200 | [diff] [blame] | 12899 | S: Supported |
Guennadi Liakhovetski | d1057c4 | 2011-07-17 22:04:07 +0200 | [diff] [blame] | 12900 | F: drivers/mmc/host/tmio_mmc* |
| 12901 | F: drivers/mmc/host/sh_mobile_sdhi.c |
Wolfram Sang | 560e647 | 2016-05-09 10:26:58 +0200 | [diff] [blame] | 12902 | F: include/linux/mfd/tmio.h |
Pierre Ossman | d719f90 | 2009-03-24 21:06:09 +0100 | [diff] [blame] | 12903 | |
Guenter Roeck | 917cc4e | 2013-05-19 20:44:27 -0700 | [diff] [blame] | 12904 | TMP401 HARDWARE MONITOR DRIVER |
| 12905 | M: Guenter Roeck <linux@roeck-us.net> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 12906 | L: linux-hwmon@vger.kernel.org |
Guenter Roeck | 917cc4e | 2013-05-19 20:44:27 -0700 | [diff] [blame] | 12907 | S: Maintained |
| 12908 | F: Documentation/hwmon/tmp401 |
| 12909 | F: drivers/hwmon/tmp401.c |
| 12910 | |
Hugh Dickins | 98f3260 | 2009-05-21 20:33:58 +0100 | [diff] [blame] | 12911 | TMPFS (SHMEM FILESYSTEM) |
Hugh Dickins | bfcc6e2 | 2010-05-14 19:40:35 -0700 | [diff] [blame] | 12912 | M: Hugh Dickins <hughd@google.com> |
Hugh Dickins | 98f3260 | 2009-05-21 20:33:58 +0100 | [diff] [blame] | 12913 | L: linux-mm@kvack.org |
| 12914 | S: Maintained |
| 12915 | F: include/linux/shmem_fs.h |
| 12916 | F: mm/shmem.c |
| 12917 | |
Mauro Carvalho Chehab | 45f95b5 | 2012-11-02 11:41:01 -0200 | [diff] [blame] | 12918 | TM6000 VIDEO4LINUX DRIVER |
Mauro Carvalho Chehab | 5dc8a86 | 2016-06-14 15:17:40 -0300 | [diff] [blame] | 12919 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
| 12920 | M: Mauro Carvalho Chehab <mchehab@kernel.org> |
Mauro Carvalho Chehab | 45f95b5 | 2012-11-02 11:41:01 -0200 | [diff] [blame] | 12921 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 12922 | W: https://linuxtv.org |
Mauro Carvalho Chehab | 45f95b5 | 2012-11-02 11:41:01 -0200 | [diff] [blame] | 12923 | T: git git://linuxtv.org/media_tree.git |
| 12924 | S: Odd fixes |
| 12925 | F: drivers/media/usb/tm6000/ |
Mauro Carvalho Chehab | 618cd93 | 2016-09-12 12:48:54 -0300 | [diff] [blame] | 12926 | F: Documentation/media/v4l-drivers/tm6000* |
Mauro Carvalho Chehab | 45f95b5 | 2012-11-02 11:41:01 -0200 | [diff] [blame] | 12927 | |
Andrey Utkin | 34d1324 | 2016-07-20 10:07:12 -0300 | [diff] [blame] | 12928 | TW5864 VIDEO4LINUX DRIVER |
| 12929 | M: Bluecherry Maintainers <maintainers@bluecherrydvr.com> |
| 12930 | M: Andrey Utkin <andrey.utkin@corp.bluecherry.net> |
| 12931 | M: Andrey Utkin <andrey_utkin@fastmail.com> |
| 12932 | L: linux-media@vger.kernel.org |
| 12933 | S: Supported |
| 12934 | F: drivers/media/pci/tw5864/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12935 | |
Hans Verkuil | c65fde1 | 2014-08-10 05:16:39 -0300 | [diff] [blame] | 12936 | TW68 VIDEO4LINUX DRIVER |
| 12937 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 12938 | L: linux-media@vger.kernel.org |
| 12939 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 12940 | W: https://linuxtv.org |
Hans Verkuil | c65fde1 | 2014-08-10 05:16:39 -0300 | [diff] [blame] | 12941 | S: Odd Fixes |
| 12942 | F: drivers/media/pci/tw68/ |
| 12943 | |
Ezequiel Garcia | 704a84c | 2016-03-02 11:30:16 -0300 | [diff] [blame] | 12944 | TW686X VIDEO4LINUX DRIVER |
| 12945 | M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> |
| 12946 | L: linux-media@vger.kernel.org |
| 12947 | T: git git://linuxtv.org/media_tree.git |
| 12948 | W: http://linuxtv.org |
| 12949 | S: Maintained |
| 12950 | F: drivers/media/pci/tw686x/ |
| 12951 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12952 | TPM DEVICE DRIVER |
Peter Huewe | 901486b | 2013-10-22 19:28:30 +0200 | [diff] [blame] | 12953 | M: Peter Huewe <peterhuewe@gmx.de> |
Rajiv Andrade | cbb2d5e | 2012-04-24 11:19:58 -0300 | [diff] [blame] | 12954 | M: Marcel Selhorst <tpmdd@selhorst.net> |
Jarkko Sakkinen | 89adb83 | 2015-10-16 12:14:28 +0300 | [diff] [blame] | 12955 | M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> |
Peter Huewe | ce93b4b | 2015-03-15 01:05:31 +0100 | [diff] [blame] | 12956 | R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> |
Peter Huewe | 383dec1 | 2013-10-30 20:54:45 +0100 | [diff] [blame] | 12957 | W: http://tpmdd.sourceforge.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12958 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
Jarkko Sakkinen | d991284 | 2016-03-01 08:48:41 +0200 | [diff] [blame] | 12959 | Q: https://patchwork.kernel.org/project/tpmdd-devel/list/ |
| 12960 | T: git git://git.infradead.org/users/jjs/linux-tpmdd.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12961 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 12962 | F: drivers/char/tpm/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12963 | |
Ashley Lai | 1a0f1b2 | 2014-12-04 21:01:51 -0600 | [diff] [blame] | 12964 | TPM IBM_VTPM DEVICE DRIVER |
| 12965 | M: Ashley Lai <ashleydlai@gmail.com> |
| 12966 | W: http://tpmdd.sourceforge.net |
| 12967 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 12968 | S: Maintained |
| 12969 | F: drivers/char/tpm/tpm_ibmvtpm* |
| 12970 | |
Joe Perches | d6f005a | 2009-10-26 16:49:40 -0700 | [diff] [blame] | 12971 | TRACING |
| 12972 | M: Steven Rostedt <rostedt@goodmis.org> |
Joe Perches | d6f005a | 2009-10-26 16:49:40 -0700 | [diff] [blame] | 12973 | M: Ingo Molnar <mingo@redhat.com> |
Peter Zijlstra | 75fc2d3 | 2011-12-05 17:27:08 +0100 | [diff] [blame] | 12974 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
Joe Perches | d6f005a | 2009-10-26 16:49:40 -0700 | [diff] [blame] | 12975 | S: Maintained |
| 12976 | F: Documentation/trace/ftrace.txt |
| 12977 | F: arch/*/*/*/ftrace.h |
| 12978 | F: arch/*/kernel/ftrace.c |
| 12979 | F: include/*/ftrace.h |
| 12980 | F: include/linux/trace*.h |
| 12981 | F: include/trace/ |
| 12982 | F: kernel/trace/ |
Masami Hiramatsu | 6e68e6c | 2014-09-22 23:42:50 +0000 | [diff] [blame] | 12983 | F: tools/testing/selftests/ftrace/ |
Joe Perches | d6f005a | 2009-10-26 16:49:40 -0700 | [diff] [blame] | 12984 | |
Ingo Molnar | 4abac0d | 2016-05-08 10:27:33 +0200 | [diff] [blame] | 12985 | TRACING MMIO ACCESSES (MMIOTRACE) |
| 12986 | M: Steven Rostedt <rostedt@goodmis.org> |
| 12987 | M: Ingo Molnar <mingo@kernel.org> |
| 12988 | R: Karol Herbst <karolherbst@gmail.com> |
| 12989 | R: Pekka Paalanen <ppaalanen@gmail.com> |
| 12990 | S: Maintained |
| 12991 | L: linux-kernel@vger.kernel.org |
| 12992 | L: nouveau@lists.freedesktop.org |
| 12993 | F: kernel/trace/trace_mmiotrace.c |
| 12994 | F: include/linux/mmiotrace.h |
| 12995 | F: arch/x86/mm/kmmio.c |
| 12996 | F: arch/x86/mm/mmio-mod.c |
| 12997 | F: arch/x86/mm/testmmiotrace.c |
| 12998 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12999 | TRIVIAL PATCHES |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13000 | M: Jiri Kosina <trivial@kernel.org> |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 13001 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13002 | S: Maintained |
Joe Perches | 86ef925 | 2011-03-31 00:19:19 +0200 | [diff] [blame] | 13003 | K: ^Subject:.*(?i)trivial |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13004 | |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 13005 | TTY LAYER |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 13006 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 13007 | M: Jiri Slaby <jslaby@suse.com> |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 13008 | S: Supported |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 13009 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
Baruch Siach | 84e1eb8 | 2015-06-04 10:56:58 +0300 | [diff] [blame] | 13010 | F: Documentation/serial/ |
Lucas Kannebley Tavares | 8dd5d2f | 2012-01-09 17:39:24 -0200 | [diff] [blame] | 13011 | F: drivers/tty/ |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 13012 | F: drivers/tty/serial/serial_core.c |
Alan Cox | e328877 | 2009-07-07 16:39:54 +0100 | [diff] [blame] | 13013 | F: include/linux/serial_core.h |
| 13014 | F: include/linux/serial.h |
| 13015 | F: include/linux/tty.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 13016 | F: include/uapi/linux/serial_core.h |
| 13017 | F: include/uapi/linux/serial.h |
| 13018 | F: include/uapi/linux/tty.h |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 13019 | |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 13020 | TUA9001 MEDIA DRIVER |
| 13021 | M: Antti Palosaari <crope@iki.fi> |
| 13022 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 13023 | W: https://linuxtv.org |
Antti Palosaari | 91952bc | 2012-10-01 12:28:46 -0300 | [diff] [blame] | 13024 | W: http://palosaari.fi/linux/ |
| 13025 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 13026 | T: git git://linuxtv.org/anttip/media_tree.git |
| 13027 | S: Maintained |
| 13028 | F: drivers/media/tuners/tua9001* |
| 13029 | |
Grant Grundler | 740db6d | 2008-02-17 11:53:49 -0700 | [diff] [blame] | 13030 | TULIP NETWORK DRIVERS |
Grant Grundler | 740db6d | 2008-02-17 11:53:49 -0700 | [diff] [blame] | 13031 | L: netdev@vger.kernel.org |
Grant Grundler | cf869eb | 2015-11-19 17:56:12 -0800 | [diff] [blame] | 13032 | L: linux-parisc@vger.kernel.org |
| 13033 | S: Orphan |
Joe Perches | 0f04e2a | 2012-01-10 15:08:56 -0800 | [diff] [blame] | 13034 | F: drivers/net/ethernet/dec/tulip/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13035 | |
| 13036 | TUN/TAP driver |
Jiri Slaby | ba57b6f | 2012-11-30 07:05:40 +0000 | [diff] [blame] | 13037 | M: Maxim Krasnyansky <maxk@qti.qualcomm.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13038 | W: http://vtun.sourceforge.net/tun |
| 13039 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13040 | F: Documentation/networking/tuntap.txt |
| 13041 | F: arch/um/os-Linux/drivers/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13042 | |
Maciej W. Rozycki | b454cc6 | 2007-02-05 16:28:25 -0800 | [diff] [blame] | 13043 | TURBOCHANNEL SUBSYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13044 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
Ralf Baechle | c406339 | 2014-04-03 13:29:06 +0200 | [diff] [blame] | 13045 | M: Ralf Baechle <ralf@linux-mips.org> |
| 13046 | L: linux-mips@linux-mips.org |
| 13047 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
Maciej W. Rozycki | b454cc6 | 2007-02-05 16:28:25 -0800 | [diff] [blame] | 13048 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13049 | F: drivers/tc/ |
| 13050 | F: include/linux/tc.h |
Maciej W. Rozycki | b454cc6 | 2007-02-05 16:28:25 -0800 | [diff] [blame] | 13051 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 13052 | UBI FILE SYSTEM (UBIFS) |
Richard Weinberger | a785993 | 2016-03-03 14:22:14 +0100 | [diff] [blame] | 13053 | M: Richard Weinberger <richard@nod.at> |
Artem Bityutskiy | 949cb62 | 2009-10-20 10:21:45 +0300 | [diff] [blame] | 13054 | M: Artem Bityutskiy <dedekind1@gmail.com> |
Artem Bityutskiy | cc8f9b9 | 2011-07-22 10:55:50 +0300 | [diff] [blame] | 13055 | M: Adrian Hunter <adrian.hunter@intel.com> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 13056 | L: linux-mtd@lists.infradead.org |
Artem Bityutskiy | e2966cb | 2008-10-25 18:54:04 +0300 | [diff] [blame] | 13057 | T: git git://git.infradead.org/ubifs-2.6.git |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 13058 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
Richard Weinberger | a785993 | 2016-03-03 14:22:14 +0100 | [diff] [blame] | 13059 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13060 | F: Documentation/filesystems/ubifs.txt |
| 13061 | F: fs/ubifs/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 13062 | |
Greg Ungerer | e1632fa | 2015-06-19 10:40:03 +1000 | [diff] [blame] | 13063 | UCLINUX (M68KNOMMU AND COLDFIRE) |
Greg Ungerer | 44156af | 2016-05-10 16:56:37 +1000 | [diff] [blame] | 13064 | M: Greg Ungerer <gerg@linux-m68k.org> |
| 13065 | W: http://www.linux-m68k.org/ |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 13066 | W: http://www.uclinux.org/ |
Greg Ungerer | e1632fa | 2015-06-19 10:40:03 +1000 | [diff] [blame] | 13067 | L: linux-m68k@lists.linux-m68k.org |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 13068 | L: uclinux-dev@uclinux.org (subscribers-only) |
Greg Ungerer | e1632fa | 2015-06-19 10:40:03 +1000 | [diff] [blame] | 13069 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 13070 | S: Maintained |
Greg Ungerer | e1632fa | 2015-06-19 10:40:03 +1000 | [diff] [blame] | 13071 | F: arch/m68k/coldfire/ |
| 13072 | F: arch/m68k/68*/ |
Joe Perches | 61bc02b | 2011-04-14 15:22:04 -0700 | [diff] [blame] | 13073 | F: arch/m68k/*/*_no.* |
| 13074 | F: arch/m68k/include/asm/*_no.* |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 13075 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13076 | UDF FILESYSTEM |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 13077 | M: Jan Kara <jack@suse.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13078 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13079 | F: Documentation/filesystems/udf.txt |
| 13080 | F: fs/udf/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13081 | |
Bastien Nocera | 0edffe6 | 2016-11-15 13:02:05 +0100 | [diff] [blame] | 13082 | UDRAW TABLET |
| 13083 | M: Bastien Nocera <hadess@hadess.net> |
| 13084 | L: linux-input@vger.kernel.org |
| 13085 | S: Maintained |
| 13086 | F: drivers/hid/hid-udraw.c |
| 13087 | |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 13088 | UFS FILESYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13089 | M: Evgeniy Dushistov <dushistov@mail.ru> |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 13090 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13091 | F: Documentation/filesystems/ufs.txt |
| 13092 | F: fs/ufs/ |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 13093 | |
David Herrmann | 0a09d3a | 2012-06-10 15:16:28 +0200 | [diff] [blame] | 13094 | UHID USERSPACE HID IO DRIVER: |
| 13095 | M: David Herrmann <dh.herrmann@googlemail.com> |
| 13096 | L: linux-input@vger.kernel.org |
| 13097 | S: Maintained |
| 13098 | F: drivers/hid/uhid.c |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 13099 | F: include/uapi/linux/uhid.h |
David Herrmann | 0a09d3a | 2012-06-10 15:16:28 +0200 | [diff] [blame] | 13100 | |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 13101 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 13102 | L: linux-usb@vger.kernel.org |
David Vrabel | 10c6c9c | 2010-10-25 14:05:36 +0100 | [diff] [blame] | 13103 | S: Orphan |
David Vrabel | 355ffe69 | 2009-12-22 13:13:28 +0000 | [diff] [blame] | 13104 | F: drivers/uwb/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13105 | F: include/linux/uwb.h |
| 13106 | F: include/linux/uwb/ |
David Vrabel | 18332a8 | 2008-09-17 16:34:44 +0100 | [diff] [blame] | 13107 | |
GuanXuetao | b31d827 | 2011-01-16 00:35:49 +0800 | [diff] [blame] | 13108 | UNICORE32 ARCHITECTURE: |
| 13109 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> |
| 13110 | W: http://mprc.pku.edu.cn/~guanxuetao/linux |
| 13111 | S: Maintained |
Guan Xuetao | ceebf4d | 2014-05-27 07:53:10 +0800 | [diff] [blame] | 13112 | T: git git://github.com/gxt/linux.git |
GuanXuetao | b31d827 | 2011-01-16 00:35:49 +0800 | [diff] [blame] | 13113 | F: arch/unicore32/ |
| 13114 | |
Tony Finch | d8379ab | 2009-11-27 15:50:30 +0000 | [diff] [blame] | 13115 | UNIFDEF |
| 13116 | M: Tony Finch <dot@dotat.at> |
| 13117 | W: http://dotat.at/prog/unifdef |
| 13118 | S: Maintained |
| 13119 | F: scripts/unifdef.c |
| 13120 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13121 | UNIFORM CDROM DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13122 | M: Jens Axboe <axboe@kernel.dk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13123 | W: http://www.kernel.dk |
| 13124 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13125 | F: Documentation/cdrom/ |
| 13126 | F: drivers/cdrom/cdrom.c |
| 13127 | F: include/linux/cdrom.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 13128 | F: include/uapi/linux/cdrom.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13129 | |
Benjamin Romer | 56df012 | 2014-03-07 13:02:21 -0600 | [diff] [blame] | 13130 | UNISYS S-PAR DRIVERS |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 13131 | M: David Kershner <david.kershner@unisys.com> |
| 13132 | L: sparmaintainer@unisys.com (Unisys internal) |
| 13133 | S: Supported |
| 13134 | F: drivers/staging/unisys/ |
Benjamin Romer | 56df012 | 2014-03-07 13:02:21 -0600 | [diff] [blame] | 13135 | |
Vinayak Holikatti | 9941fa6 | 2012-04-20 14:11:50 +0530 | [diff] [blame] | 13136 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
| 13137 | M: Vinayak Holikatti <vinholikatti@gmail.com> |
Vinayak Holikatti | 9941fa6 | 2012-04-20 14:11:50 +0530 | [diff] [blame] | 13138 | L: linux-scsi@vger.kernel.org |
| 13139 | S: Supported |
| 13140 | F: Documentation/scsi/ufs.txt |
| 13141 | F: drivers/scsi/ufs/ |
| 13142 | |
Joao Pinto | 4b9ffb5 | 2016-05-11 12:21:30 +0100 | [diff] [blame] | 13143 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS |
Joao Pinto | bdee986 | 2016-10-14 16:59:23 +0100 | [diff] [blame] | 13144 | M: Manjunath M Bettegowda <manjumb@synopsys.com> |
| 13145 | M: Prabu Thangamuthu <prabut@synopsys.com> |
Joao Pinto | 4b9ffb5 | 2016-05-11 12:21:30 +0100 | [diff] [blame] | 13146 | L: linux-scsi@vger.kernel.org |
| 13147 | S: Supported |
| 13148 | F: drivers/scsi/ufs/*dwc* |
| 13149 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 13150 | UNSORTED BLOCK IMAGES (UBI) |
Artem Bityutskiy | 949cb62 | 2009-10-20 10:21:45 +0300 | [diff] [blame] | 13151 | M: Artem Bityutskiy <dedekind1@gmail.com> |
Richard Weinberger | 346be9b | 2015-01-28 12:28:24 +0100 | [diff] [blame] | 13152 | M: Richard Weinberger <richard@nod.at> |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 13153 | W: http://www.linux-mtd.infradead.org/ |
| 13154 | L: linux-mtd@lists.infradead.org |
Artem Bityutskiy | b6b44e0 | 2014-01-02 16:43:51 +0200 | [diff] [blame] | 13155 | T: git git://git.infradead.org/ubifs-2.6.git |
Richard Weinberger | 346be9b | 2015-01-28 12:28:24 +0100 | [diff] [blame] | 13156 | S: Supported |
Joe Perches | 8081149 | 2009-04-08 20:20:27 -0700 | [diff] [blame] | 13157 | F: drivers/mtd/ubi/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13158 | F: include/linux/mtd/ubi.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 13159 | F: include/uapi/mtd/ubi-user.h |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 13160 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13161 | USB ACM DRIVER |
Oliver Neukum | ca1c3e6 | 2016-02-08 18:30:34 +0100 | [diff] [blame] | 13162 | M: Oliver Neukum <oneukum@suse.com> |
Greg Kroah-Hartman | 6372594 | 2007-11-21 15:16:59 -0700 | [diff] [blame] | 13163 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13164 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13165 | F: Documentation/usb/acm.txt |
| 13166 | F: drivers/usb/class/cdc-acm.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13167 | |
Pontus Fuchs | b7d572e | 2012-10-23 20:33:57 +0200 | [diff] [blame] | 13168 | USB AR5523 WIRELESS DRIVER |
| 13169 | M: Pontus Fuchs <pontus.fuchs@gmail.com> |
| 13170 | L: linux-wireless@vger.kernel.org |
| 13171 | S: Maintained |
| 13172 | F: drivers/net/wireless/ath/ar5523/ |
| 13173 | |
Matthew Wilcox | 115bb1f | 2010-10-07 13:05:23 +0200 | [diff] [blame] | 13174 | USB ATTACHED SCSI |
Hans de Goede | 866d372 | 2016-07-14 14:26:41 +0200 | [diff] [blame] | 13175 | M: Oliver Neukum <oneukum@suse.com> |
Matthew Wilcox | 115bb1f | 2010-10-07 13:05:23 +0200 | [diff] [blame] | 13176 | L: linux-usb@vger.kernel.org |
| 13177 | L: linux-scsi@vger.kernel.org |
Gerd Hoffmann | 8eae0fb | 2013-01-25 14:52:09 +0100 | [diff] [blame] | 13178 | S: Maintained |
Matthew Wilcox | 115bb1f | 2010-10-07 13:05:23 +0200 | [diff] [blame] | 13179 | F: drivers/usb/storage/uas.c |
| 13180 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13181 | USB CDC ETHERNET DRIVER |
Oliver Neukum | 61eee9a | 2012-08-01 14:32:55 +0200 | [diff] [blame] | 13182 | M: Oliver Neukum <oliver@neukum.org> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 13183 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13184 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13185 | F: drivers/net/usb/cdc_*.c |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 13186 | F: include/uapi/linux/usb/cdc.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13187 | |
Keith Packard | 66e3e59 | 2015-03-19 20:36:49 -0700 | [diff] [blame] | 13188 | USB CHAOSKEY DRIVER |
| 13189 | M: Keith Packard <keithp@keithp.com> |
| 13190 | L: linux-usb@vger.kernel.org |
| 13191 | S: Maintained |
| 13192 | F: drivers/usb/misc/chaoskey.c |
| 13193 | |
Peter Korsgaard | b02b371 | 2008-04-27 08:59:44 +0200 | [diff] [blame] | 13194 | USB CYPRESS C67X00 DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13195 | M: Peter Korsgaard <jacmet@sunsite.dk> |
Peter Korsgaard | b02b371 | 2008-04-27 08:59:44 +0200 | [diff] [blame] | 13196 | L: linux-usb@vger.kernel.org |
| 13197 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13198 | F: drivers/usb/c67x00/ |
Peter Korsgaard | b02b371 | 2008-04-27 08:59:44 +0200 | [diff] [blame] | 13199 | |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 13200 | USB DAVICOM DM9601 DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13201 | M: Peter Korsgaard <jacmet@sunsite.dk> |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 13202 | L: netdev@vger.kernel.org |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 13203 | W: http://www.linux-usb.org/usbnet |
| 13204 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13205 | F: drivers/net/usb/dm9601.c |
Peter Korsgaard | d0374f4 | 2007-02-16 17:03:54 +0100 | [diff] [blame] | 13206 | |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 13207 | USB DIAMOND RIO500 DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13208 | M: Cesar Miquel <miquel@df.uba.ar> |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 13209 | L: rio500-users@lists.sourceforge.net |
| 13210 | W: http://rio500.sourceforge.net |
| 13211 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13212 | F: drivers/usb/misc/rio500* |
Alan Cox | cc2020e | 2008-05-19 14:21:51 +0100 | [diff] [blame] | 13213 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13214 | USB EHCI DRIVER |
Alan Stern | 578333a | 2011-06-15 16:32:46 -0400 | [diff] [blame] | 13215 | M: Alan Stern <stern@rowland.harvard.edu> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 13216 | L: linux-usb@vger.kernel.org |
Alan Stern | 578333a | 2011-06-15 16:32:46 -0400 | [diff] [blame] | 13217 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13218 | F: Documentation/usb/ehci.txt |
| 13219 | F: drivers/usb/host/ehci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13220 | |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 13221 | USB GADGET/PERIPHERAL SUBSYSTEM |
Felipe Balbi | a55f628 | 2016-02-03 20:23:01 +0200 | [diff] [blame] | 13222 | M: Felipe Balbi <balbi@kernel.org> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 13223 | L: linux-usb@vger.kernel.org |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 13224 | W: http://www.linux-usb.org/gadget |
Felipe Balbi | d6d0f66 | 2011-06-08 19:16:28 +0300 | [diff] [blame] | 13225 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
| 13226 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13227 | F: drivers/usb/gadget/ |
| 13228 | F: include/linux/usb/gadget* |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 13229 | |
Jiri Kosina | 2dea64b | 2007-07-11 12:12:11 +0200 | [diff] [blame] | 13230 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
Jiri Kosina | e5f6450 | 2015-08-09 09:11:34 +0200 | [diff] [blame] | 13231 | M: Jiri Kosina <jikos@kernel.org> |
Jiri Kosina | 406df15 | 2015-11-20 10:16:06 +0100 | [diff] [blame] | 13232 | R: Benjamin Tissoires <benjamin.tissoires@redhat.com> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 13233 | L: linux-usb@vger.kernel.org |
Joe Perches | 54e5881 | 2009-04-07 21:08:10 -0700 | [diff] [blame] | 13234 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13235 | S: Maintained |
Joe Perches | c2f0197 | 2011-06-01 10:59:13 -0700 | [diff] [blame] | 13236 | F: Documentation/hid/hiddev.txt |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13237 | F: drivers/hid/usbhid/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13238 | |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 13239 | USB ISP116X DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13240 | M: Olav Kongas <ok@artecdesign.ee> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 13241 | L: linux-usb@vger.kernel.org |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 13242 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13243 | F: drivers/usb/host/isp116x* |
| 13244 | F: include/linux/usb/isp116x.h |
Olav Kongas | 959eea2 | 2005-11-03 17:38:14 +0200 | [diff] [blame] | 13245 | |
Woojung.Huh@microchip.com | 146498e | 2016-02-25 23:33:16 +0000 | [diff] [blame] | 13246 | USB LAN78XX ETHERNET DRIVER |
| 13247 | M: Woojung Huh <woojung.huh@microchip.com> |
| 13248 | M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com> |
| 13249 | L: netdev@vger.kernel.org |
| 13250 | S: Maintained |
| 13251 | F: drivers/net/usb/lan78xx.* |
| 13252 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13253 | USB MASS STORAGE DRIVER |
Alan Stern | fc8b690 | 2016-08-25 11:30:49 -0400 | [diff] [blame] | 13254 | M: Alan Stern <stern@rowland.harvard.edu> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 13255 | L: linux-usb@vger.kernel.org |
Matthew Dharm | 8836aeb | 2005-12-04 22:03:47 -0800 | [diff] [blame] | 13256 | L: usb-storage@lists.one-eyed-alien.net |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13257 | S: Maintained |
| 13258 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13259 | F: drivers/usb/storage/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13260 | |
Clemens Ladisch | af39917 | 2011-01-10 16:32:54 +0100 | [diff] [blame] | 13261 | USB MIDI DRIVER |
| 13262 | M: Clemens Ladisch <clemens@ladisch.de> |
| 13263 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 13264 | T: git git://git.alsa-project.org/alsa-kernel.git |
| 13265 | S: Maintained |
| 13266 | F: sound/usb/midi.* |
| 13267 | |
Joe Perches | 444ce9d | 2013-08-01 21:03:32 -0700 | [diff] [blame] | 13268 | USB NETWORKING DRIVERS |
| 13269 | L: linux-usb@vger.kernel.org |
| 13270 | S: Odd Fixes |
| 13271 | F: drivers/net/usb/ |
| 13272 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13273 | USB OHCI DRIVER |
Alan Stern | 578333a | 2011-06-15 16:32:46 -0400 | [diff] [blame] | 13274 | M: Alan Stern <stern@rowland.harvard.edu> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 13275 | L: linux-usb@vger.kernel.org |
Alan Stern | 578333a | 2011-06-15 16:32:46 -0400 | [diff] [blame] | 13276 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13277 | F: Documentation/usb/ohci.txt |
| 13278 | F: drivers/usb/host/ohci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13279 | |
Peter Chen | 963ffa3 | 2015-02-15 12:22:59 +0800 | [diff] [blame] | 13280 | USB OTG FSM (Finite State Machine) |
Peter Chen | 60d77b3d | 2015-12-25 15:54:32 +0800 | [diff] [blame] | 13281 | M: Peter Chen <Peter.Chen@nxp.com> |
Peter Chen | 8373856 | 2015-03-23 19:57:36 +0800 | [diff] [blame] | 13282 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
Peter Chen | 963ffa3 | 2015-02-15 12:22:59 +0800 | [diff] [blame] | 13283 | L: linux-usb@vger.kernel.org |
| 13284 | S: Maintained |
| 13285 | F: drivers/usb/common/usb-otg-fsm.c |
| 13286 | |
Valentina Manea | 563da3a | 2014-08-20 07:31:02 +0300 | [diff] [blame] | 13287 | USB OVER IP DRIVER |
| 13288 | M: Valentina Manea <valentina.manea.m@gmail.com> |
Shuah Khan | 90effdc | 2016-06-14 16:30:27 -0600 | [diff] [blame] | 13289 | M: Shuah Khan <shuahkh@osg.samsung.com> |
| 13290 | M: Shuah Khan <shuah@kernel.org> |
Valentina Manea | 563da3a | 2014-08-20 07:31:02 +0300 | [diff] [blame] | 13291 | L: linux-usb@vger.kernel.org |
| 13292 | S: Maintained |
Christian Lamparter | a6d6fc2 | 2016-02-24 19:30:35 +0100 | [diff] [blame] | 13293 | F: Documentation/usb/usbip_protocol.txt |
Valentina Manea | 563da3a | 2014-08-20 07:31:02 +0300 | [diff] [blame] | 13294 | F: drivers/usb/usbip/ |
| 13295 | F: tools/usb/usbip/ |
| 13296 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13297 | USB PEGASUS DRIVER |
Petko Manolov | a16b945 | 2013-04-29 16:17:25 -0700 | [diff] [blame] | 13298 | M: Petko Manolov <petkan@nucleusys.com> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 13299 | L: linux-usb@vger.kernel.org |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 13300 | L: netdev@vger.kernel.org |
Petko Manolov | 052e312 | 2013-11-15 11:51:54 +0200 | [diff] [blame] | 13301 | T: git git://github.com/petkan/pegasus.git |
| 13302 | W: https://github.com/petkan/pegasus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13303 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13304 | F: drivers/net/usb/pegasus.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13305 | |
Felipe Balbi | d3ad558 | 2012-05-21 16:24:49 +0300 | [diff] [blame] | 13306 | USB PHY LAYER |
Felipe Balbi | a55f628 | 2016-02-03 20:23:01 +0200 | [diff] [blame] | 13307 | M: Felipe Balbi <balbi@kernel.org> |
Felipe Balbi | d3ad558 | 2012-05-21 16:24:49 +0300 | [diff] [blame] | 13308 | L: linux-usb@vger.kernel.org |
| 13309 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
| 13310 | S: Maintained |
| 13311 | F: drivers/usb/phy/ |
Felipe Balbi | d3ad558 | 2012-05-21 16:24:49 +0300 | [diff] [blame] | 13312 | |
Pete Zaitcev | 73e4fb3 | 2007-06-21 15:18:35 -0700 | [diff] [blame] | 13313 | USB PRINTER DRIVER (usblp) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13314 | M: Pete Zaitcev <zaitcev@redhat.com> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 13315 | L: linux-usb@vger.kernel.org |
Pete Zaitcev | 73e4fb3 | 2007-06-21 15:18:35 -0700 | [diff] [blame] | 13316 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13317 | F: drivers/usb/class/usblp.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13318 | |
Bjørn Mork | 4521b47 | 2015-12-03 19:24:23 +0100 | [diff] [blame] | 13319 | USB QMI WWAN NETWORK DRIVER |
| 13320 | M: Bjørn Mork <bjorn@mork.no> |
| 13321 | L: netdev@vger.kernel.org |
| 13322 | S: Maintained |
| 13323 | F: Documentation/ABI/testing/sysfs-class-net-qmi |
| 13324 | F: drivers/net/usb/qmi_wwan.c |
| 13325 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13326 | USB RTL8150 DRIVER |
Petko Manolov | a16b945 | 2013-04-29 16:17:25 -0700 | [diff] [blame] | 13327 | M: Petko Manolov <petkan@nucleusys.com> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 13328 | L: linux-usb@vger.kernel.org |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 13329 | L: netdev@vger.kernel.org |
Petko Manolov | 052e312 | 2013-11-15 11:51:54 +0200 | [diff] [blame] | 13330 | T: git git://github.com/petkan/rtl8150.git |
| 13331 | W: https://github.com/petkan/rtl8150 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13332 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13333 | F: drivers/net/usb/rtl8150.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13334 | |
Greg KH | f896b79 | 2013-10-30 11:07:31 -0700 | [diff] [blame] | 13335 | USB SERIAL SUBSYSTEM |
Johan Hovold | 6608569 | 2014-06-23 12:33:15 +0200 | [diff] [blame] | 13336 | M: Johan Hovold <johan@kernel.org> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 13337 | L: linux-usb@vger.kernel.org |
Johan Hovold | 5ee0530 | 2016-09-14 14:17:41 +0200 | [diff] [blame] | 13338 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git |
Alan Cox | 4e68852 | 2008-04-30 00:52:11 -0700 | [diff] [blame] | 13339 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13340 | F: Documentation/usb/usb-serial.txt |
Greg KH | f896b79 | 2013-10-30 11:07:31 -0700 | [diff] [blame] | 13341 | F: drivers/usb/serial/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13342 | F: include/linux/usb/serial.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13343 | |
Steve Glendinning | b3f0db1 | 2012-08-15 21:53:38 +0000 | [diff] [blame] | 13344 | USB SMSC75XX ETHERNET DRIVER |
| 13345 | M: Steve Glendinning <steve.glendinning@shawell.net> |
| 13346 | L: netdev@vger.kernel.org |
| 13347 | S: Maintained |
| 13348 | F: drivers/net/usb/smsc75xx.* |
| 13349 | |
Steve Glendinning | 2f7ca80 | 2008-10-02 05:27:57 +0000 | [diff] [blame] | 13350 | USB SMSC95XX ETHERNET DRIVER |
Steve Glendinning | 90b24cf | 2012-04-16 12:13:29 +0100 | [diff] [blame] | 13351 | M: Steve Glendinning <steve.glendinning@shawell.net> |
Woojung Huh | 983ccd7 | 2016-09-02 20:34:19 +0000 | [diff] [blame] | 13352 | M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com> |
Steve Glendinning | 2f7ca80 | 2008-10-02 05:27:57 +0000 | [diff] [blame] | 13353 | L: netdev@vger.kernel.org |
Steve Glendinning | 90b24cf | 2012-04-16 12:13:29 +0100 | [diff] [blame] | 13354 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13355 | F: drivers/net/usb/smsc95xx.* |
Steve Glendinning | 2f7ca80 | 2008-10-02 05:27:57 +0000 | [diff] [blame] | 13356 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13357 | USB SUBSYSTEM |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 13358 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 13359 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13360 | W: http://www.linux-usb.org |
Joe Perches | 08deed1 | 2012-03-23 15:01:57 -0700 | [diff] [blame] | 13361 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13362 | S: Supported |
Geert Uytterhoeven | 1700bd9 | 2016-05-22 11:06:26 +0200 | [diff] [blame] | 13363 | F: Documentation/devicetree/bindings/usb/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13364 | F: Documentation/usb/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13365 | F: drivers/usb/ |
| 13366 | F: include/linux/usb.h |
| 13367 | F: include/linux/usb/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13368 | |
Heikki Krogerus | fab9288 | 2017-03-21 13:56:47 +0200 | [diff] [blame] | 13369 | USB TYPEC SUBSYSTEM |
| 13370 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> |
| 13371 | L: linux-usb@vger.kernel.org |
| 13372 | S: Maintained |
| 13373 | F: Documentation/ABI/testing/sysfs-class-typec |
| 13374 | F: Documentation/usb/typec.rst |
| 13375 | F: drivers/usb/typec/ |
| 13376 | F: include/linux/usb/typec.h |
| 13377 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13378 | USB UHCI DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13379 | M: Alan Stern <stern@rowland.harvard.edu> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 13380 | L: linux-usb@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13381 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13382 | F: drivers/usb/host/uhci* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13383 | |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 13384 | USB "USBNET" DRIVER FRAMEWORK |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 13385 | M: Oliver Neukum <oneukum@suse.com> |
Peter Korsgaard | 043600a | 2007-06-27 21:18:18 +0200 | [diff] [blame] | 13386 | L: netdev@vger.kernel.org |
David Brownell | 69ae9e3 | 2006-11-14 02:03:31 -0800 | [diff] [blame] | 13387 | W: http://www.linux-usb.org/usbnet |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13388 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13389 | F: drivers/net/usb/usbnet.c |
| 13390 | F: include/linux/usb/usbnet.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13391 | |
Laurent Pinchart | c0efd23 | 2008-06-30 15:04:50 -0300 | [diff] [blame] | 13392 | USB VIDEO CLASS |
Joe Perches | c53ac07 | 2010-08-09 17:20:51 -0700 | [diff] [blame] | 13393 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
Laurent Pinchart | 616bd4e | 2012-04-02 06:11:09 -0300 | [diff] [blame] | 13394 | L: linux-uvc-devel@lists.sourceforge.net (subscribers-only) |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 13395 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 13396 | T: git git://linuxtv.org/media_tree.git |
Laurent Pinchart | 57c6d2e | 2010-04-30 10:48:51 -0300 | [diff] [blame] | 13397 | W: http://www.ideasonboard.org/uvc/ |
Laurent Pinchart | c0efd23 | 2008-06-30 15:04:50 -0300 | [diff] [blame] | 13398 | S: Maintained |
Mauro Carvalho Chehab | 0c0d06c | 2012-08-14 00:13:22 -0300 | [diff] [blame] | 13399 | F: drivers/media/usb/uvc/ |
Mauro Carvalho Chehab | 6c0f035 | 2012-11-02 11:56:03 -0200 | [diff] [blame] | 13400 | F: include/uapi/linux/uvcvideo.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13401 | |
Hans Verkuil | b60b9c4 | 2012-11-23 07:54:42 -0300 | [diff] [blame] | 13402 | USB VISION DRIVER |
| 13403 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 13404 | L: linux-media@vger.kernel.org |
| 13405 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 13406 | W: https://linuxtv.org |
Hans Verkuil | b60b9c4 | 2012-11-23 07:54:42 -0300 | [diff] [blame] | 13407 | S: Odd Fixes |
| 13408 | F: drivers/media/usb/usbvision/ |
| 13409 | |
Laurent Pinchart | 8282da4 | 2012-10-04 02:32:42 +0200 | [diff] [blame] | 13410 | USB WEBCAM GADGET |
| 13411 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 13412 | L: linux-usb@vger.kernel.org |
| 13413 | S: Maintained |
Andrzej Pietrasiewicz | 3a83c16 | 2014-09-09 02:02:09 +0300 | [diff] [blame] | 13414 | F: drivers/usb/gadget/function/*uvc* |
Joe Perches | faf2e1d | 2014-08-08 14:26:18 -0700 | [diff] [blame] | 13415 | F: drivers/usb/gadget/legacy/webcam.c |
Laurent Pinchart | 8282da4 | 2012-10-04 02:32:42 +0200 | [diff] [blame] | 13416 | |
Jussi Kivilinna | bf164cc | 2008-01-26 00:51:51 +0200 | [diff] [blame] | 13417 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
Jussi Kivilinna | e6146c5 | 2013-03-07 22:33:38 +0200 | [diff] [blame] | 13418 | M: Jussi Kivilinna <jussi.kivilinna@iki.fi> |
Jussi Kivilinna | bf164cc | 2008-01-26 00:51:51 +0200 | [diff] [blame] | 13419 | L: linux-wireless@vger.kernel.org |
| 13420 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13421 | F: drivers/net/wireless/rndis_wlan.c |
Jussi Kivilinna | bf164cc | 2008-01-26 00:51:51 +0200 | [diff] [blame] | 13422 | |
Sarah Sharp | eb6bab1 | 2009-04-29 19:07:13 -0700 | [diff] [blame] | 13423 | USB XHCI DRIVER |
Sarah Sharp | 03d8505 | 2014-03-20 16:20:56 -0700 | [diff] [blame] | 13424 | M: Mathias Nyman <mathias.nyman@intel.com> |
Sarah Sharp | eb6bab1 | 2009-04-29 19:07:13 -0700 | [diff] [blame] | 13425 | L: linux-usb@vger.kernel.org |
| 13426 | S: Supported |
Sarah Sharp | 36d0344 | 2009-12-01 10:37:07 -0800 | [diff] [blame] | 13427 | F: drivers/usb/host/xhci* |
| 13428 | F: drivers/usb/host/pci-quirks* |
Sarah Sharp | eb6bab1 | 2009-04-29 19:07:13 -0700 | [diff] [blame] | 13429 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13430 | USB ZD1201 DRIVER |
John W. Linville | 4086b9c | 2010-07-22 14:41:08 -0400 | [diff] [blame] | 13431 | L: linux-wireless@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13432 | W: http://linux-lc100020.sourceforge.net |
John W. Linville | 4086b9c | 2010-07-22 14:41:08 -0400 | [diff] [blame] | 13433 | S: Orphan |
Kalle Valo | ed0ad06 | 2015-11-18 07:39:37 +0200 | [diff] [blame] | 13434 | F: drivers/net/wireless/zydas/zd1201.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13435 | |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 13436 | USB ZR364XX DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13437 | M: Antoine Jacquet <royale@zerezo.com> |
Jean Delvare | 795fb7e | 2008-09-20 12:33:08 +0200 | [diff] [blame] | 13438 | L: linux-usb@vger.kernel.org |
Mauro Carvalho Chehab | 661263b | 2009-01-02 11:27:44 -0300 | [diff] [blame] | 13439 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | 275ffde | 2012-10-25 17:01:28 -0200 | [diff] [blame] | 13440 | T: git git://linuxtv.org/media_tree.git |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 13441 | W: http://royale.zerezo.com/zr364xx/ |
| 13442 | S: Maintained |
Mauro Carvalho Chehab | 618cd93 | 2016-09-12 12:48:54 -0300 | [diff] [blame] | 13443 | F: Documentation/media/v4l-drivers/zr364xx* |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 13444 | F: drivers/media/usb/zr364xx/ |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 13445 | |
Heikki Krogerus | 289fcff | 2015-05-13 15:26:42 +0300 | [diff] [blame] | 13446 | ULPI BUS |
| 13447 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> |
| 13448 | L: linux-usb@vger.kernel.org |
| 13449 | S: Maintained |
| 13450 | F: drivers/usb/common/ulpi.c |
| 13451 | F: include/linux/ulpi/ |
| 13452 | |
Randy Dunlap | e7839f2 | 2008-10-12 16:11:45 -0700 | [diff] [blame] | 13453 | USER-MODE LINUX (UML) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13454 | M: Jeff Dike <jdike@addtoit.com> |
Richard Weinberger | b15194b | 2011-03-26 20:48:57 +0100 | [diff] [blame] | 13455 | M: Richard Weinberger <richard@nod.at> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13456 | L: user-mode-linux-devel@lists.sourceforge.net |
| 13457 | L: user-mode-linux-user@lists.sourceforge.net |
| 13458 | W: http://user-mode-linux.sourceforge.net |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 13459 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13460 | S: Maintained |
Rob Landley | 6151658 | 2011-05-06 09:27:36 -0700 | [diff] [blame] | 13461 | F: Documentation/virtual/uml/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13462 | F: arch/um/ |
Richard Weinberger | b070989 | 2012-08-02 01:00:47 +0200 | [diff] [blame] | 13463 | F: arch/x86/um/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13464 | F: fs/hostfs/ |
| 13465 | F: fs/hppfs/ |
Antoine Jacquet | b7eee61 | 2007-04-27 12:30:59 -0300 | [diff] [blame] | 13466 | |
Hans-Jürgen Koch | e5f114e | 2007-12-05 15:08:07 +0100 | [diff] [blame] | 13467 | USERSPACE I/O (UIO) |
Greg KH | 879a5a0 | 2012-01-31 20:02:00 -0800 | [diff] [blame] | 13468 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
Hans-Jürgen Koch | e5f114e | 2007-12-05 15:08:07 +0100 | [diff] [blame] | 13469 | S: Maintained |
Mandeep Sandhu | 3d3fecb | 2015-01-10 19:15:45 -0800 | [diff] [blame] | 13470 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
Alexander Dahl | cadf8106 | 2017-01-28 10:45:32 +0100 | [diff] [blame] | 13471 | F: Documentation/driver-api/uio-howto.rst |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13472 | F: drivers/uio/ |
| 13473 | F: include/linux/uio*.h |
Hans-Jürgen Koch | e5f114e | 2007-12-05 15:08:07 +0100 | [diff] [blame] | 13474 | |
Karel Zak | 256cccb | 2012-06-01 10:13:09 +0200 | [diff] [blame] | 13475 | UTIL-LINUX PACKAGE |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13476 | M: Karel Zak <kzak@redhat.com> |
Karel Zak | 256cccb | 2012-06-01 10:13:09 +0200 | [diff] [blame] | 13477 | L: util-linux@vger.kernel.org |
| 13478 | W: http://en.wikipedia.org/wiki/Util-linux |
| 13479 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git |
Karel Zak | f899b0a | 2008-05-23 13:04:21 -0700 | [diff] [blame] | 13480 | S: Maintained |
| 13481 | |
Michal Januszewski | c1fd1c0 | 2008-10-15 22:03:48 -0700 | [diff] [blame] | 13482 | UVESAFB DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13483 | M: Michal Januszewski <spock@gentoo.org> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 13484 | L: linux-fbdev@vger.kernel.org |
Michal Januszewski | c1fd1c0 | 2008-10-15 22:03:48 -0700 | [diff] [blame] | 13485 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
| 13486 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13487 | F: Documentation/fb/uvesafb.txt |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 13488 | F: drivers/video/fbdev/uvesafb.* |
Michal Januszewski | c1fd1c0 | 2008-10-15 22:03:48 -0700 | [diff] [blame] | 13489 | |
Stefan Agner | 456930d | 2015-09-02 18:06:33 -0700 | [diff] [blame] | 13490 | VF610 NAND DRIVER |
| 13491 | M: Stefan Agner <stefan@agner.ch> |
| 13492 | L: linux-mtd@lists.infradead.org |
| 13493 | S: Supported |
| 13494 | F: drivers/mtd/nand/vf610_nfc.c |
| 13495 | |
Randy Dunlap | 4480f15b | 2008-10-12 16:11:58 -0700 | [diff] [blame] | 13496 | VFAT/FAT/MSDOS FILESYSTEM |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13497 | M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13498 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13499 | F: Documentation/filesystems/vfat.txt |
| 13500 | F: fs/fat/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13501 | |
Alex Williamson | cba3345 | 2012-07-31 08:16:22 -0600 | [diff] [blame] | 13502 | VFIO DRIVER |
| 13503 | M: Alex Williamson <alex.williamson@redhat.com> |
| 13504 | L: kvm@vger.kernel.org |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 13505 | T: git git://github.com/awilliam/linux-vfio.git |
Alex Williamson | cba3345 | 2012-07-31 08:16:22 -0600 | [diff] [blame] | 13506 | S: Maintained |
| 13507 | F: Documentation/vfio.txt |
| 13508 | F: drivers/vfio/ |
| 13509 | F: include/linux/vfio.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 13510 | F: include/uapi/linux/vfio.h |
Alex Williamson | cba3345 | 2012-07-31 08:16:22 -0600 | [diff] [blame] | 13511 | |
Kirti Wankhede | 5188287 | 2016-11-17 02:16:34 +0530 | [diff] [blame] | 13512 | VFIO MEDIATED DEVICE DRIVERS |
| 13513 | M: Kirti Wankhede <kwankhede@nvidia.com> |
| 13514 | L: kvm@vger.kernel.org |
| 13515 | S: Maintained |
| 13516 | F: Documentation/vfio-mediated-device.txt |
| 13517 | F: drivers/vfio/mdev/ |
| 13518 | F: include/linux/mdev.h |
| 13519 | F: samples/vfio-mdev/ |
| 13520 | |
Alex Williamson | a714ea5 | 2015-06-18 11:59:22 -0600 | [diff] [blame] | 13521 | VFIO PLATFORM DRIVER |
| 13522 | M: Baptiste Reynal <b.reynal@virtualopensystems.com> |
| 13523 | L: kvm@vger.kernel.org |
| 13524 | S: Maintained |
| 13525 | F: drivers/vfio/platform/ |
| 13526 | |
Lukas Wunner | 8ccd1e5 | 2017-03-27 18:48:24 +0200 | [diff] [blame] | 13527 | VGA_SWITCHEROO |
| 13528 | R: Lukas Wunner <lukas@wunner.de> |
| 13529 | S: Maintained |
| 13530 | F: Documentation/gpu/vga-switcheroo.rst |
| 13531 | F: drivers/gpu/vga/vga_switcheroo.c |
| 13532 | F: include/linux/vga_switcheroo.h |
| 13533 | T: git git://anongit.freedesktop.org/drm/drm-misc |
| 13534 | |
Pawel Osciak | 9e6f343 | 2011-06-15 15:08:32 -0700 | [diff] [blame] | 13535 | VIDEOBUF2 FRAMEWORK |
| 13536 | M: Pawel Osciak <pawel@osciak.com> |
| 13537 | M: Marek Szyprowski <m.szyprowski@samsung.com> |
Marek Szyprowski | e76e470 | 2011-06-02 04:52:07 -0300 | [diff] [blame] | 13538 | M: Kyungmin Park <kyungmin.park@samsung.com> |
Pawel Osciak | 9e6f343 | 2011-06-15 15:08:32 -0700 | [diff] [blame] | 13539 | L: linux-media@vger.kernel.org |
| 13540 | S: Maintained |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 13541 | F: drivers/media/v4l2-core/videobuf2-* |
Pawel Osciak | 9e6f343 | 2011-06-15 15:08:32 -0700 | [diff] [blame] | 13542 | F: include/media/videobuf2-* |
| 13543 | |
Asias He | 06a8fc7 | 2016-07-28 15:36:32 +0100 | [diff] [blame] | 13544 | VIRTIO AND VHOST VSOCK DRIVER |
| 13545 | M: Stefan Hajnoczi <stefanha@redhat.com> |
| 13546 | L: kvm@vger.kernel.org |
| 13547 | L: virtualization@lists.linux-foundation.org |
| 13548 | L: netdev@vger.kernel.org |
| 13549 | S: Maintained |
| 13550 | F: include/linux/virtio_vsock.h |
| 13551 | F: include/uapi/linux/virtio_vsock.h |
Gerard Garcia | 0b2e664 | 2017-04-21 10:10:45 +0100 | [diff] [blame] | 13552 | F: include/uapi/linux/vsockmon.h |
Gerard Garcia | 531b374 | 2017-04-21 10:10:44 +0100 | [diff] [blame] | 13553 | F: net/vmw_vsock/af_vsock_tap.c |
Asias He | 06a8fc7 | 2016-07-28 15:36:32 +0100 | [diff] [blame] | 13554 | F: net/vmw_vsock/virtio_transport_common.c |
Asias He | 0ea9e1d | 2016-07-28 15:36:33 +0100 | [diff] [blame] | 13555 | F: net/vmw_vsock/virtio_transport.c |
Gerard Garcia | 0b2e664 | 2017-04-21 10:10:45 +0100 | [diff] [blame] | 13556 | F: drivers/net/vsockmon.c |
Asias He | 433fc58 | 2016-07-28 15:36:34 +0100 | [diff] [blame] | 13557 | F: drivers/vhost/vsock.c |
| 13558 | F: drivers/vhost/vsock.h |
Asias He | 06a8fc7 | 2016-07-28 15:36:32 +0100 | [diff] [blame] | 13559 | |
Stephen Chandler Paul | 5523662e | 2015-10-24 13:10:29 -0700 | [diff] [blame] | 13560 | VIRTUAL SERIO DEVICE DRIVER |
| 13561 | M: Stephen Chandler Paul <thatslyude@gmail.com> |
| 13562 | S: Maintained |
| 13563 | F: drivers/input/serio/userio.c |
| 13564 | F: include/uapi/linux/userio.h |
| 13565 | |
Amit Shah | 9a82446 | 2010-03-23 18:23:09 +0530 | [diff] [blame] | 13566 | VIRTIO CONSOLE DRIVER |
Amit Shah | 79134d1 | 2017-02-03 16:48:14 +0530 | [diff] [blame] | 13567 | M: Amit Shah <amit@kernel.org> |
Amit Shah | 9a82446 | 2010-03-23 18:23:09 +0530 | [diff] [blame] | 13568 | L: virtualization@lists.linux-foundation.org |
| 13569 | S: Maintained |
| 13570 | F: drivers/char/virtio_console.c |
| 13571 | F: include/linux/virtio_console.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 13572 | F: include/uapi/linux/virtio_console.h |
Amit Shah | 9a82446 | 2010-03-23 18:23:09 +0530 | [diff] [blame] | 13573 | |
Michael S. Tsirkin | 2426ec8 | 2011-01-31 16:46:20 +1030 | [diff] [blame] | 13574 | VIRTIO CORE, NET AND BLOCK DRIVERS |
Michael S. Tsirkin | 2426ec8 | 2011-01-31 16:46:20 +1030 | [diff] [blame] | 13575 | M: "Michael S. Tsirkin" <mst@redhat.com> |
Michael S. Tsirkin | 678ff27 | 2016-08-14 20:57:14 +0300 | [diff] [blame] | 13576 | M: Jason Wang <jasowang@redhat.com> |
Michael S. Tsirkin | 2426ec8 | 2011-01-31 16:46:20 +1030 | [diff] [blame] | 13577 | L: virtualization@lists.linux-foundation.org |
| 13578 | S: Maintained |
Geert Uytterhoeven | 0e4191f | 2016-05-22 11:06:27 +0200 | [diff] [blame] | 13579 | F: Documentation/devicetree/bindings/virtio/ |
Michael S. Tsirkin | 2426ec8 | 2011-01-31 16:46:20 +1030 | [diff] [blame] | 13580 | F: drivers/virtio/ |
Michael S. Tsirkin | c893c8d | 2013-07-08 11:31:13 +0930 | [diff] [blame] | 13581 | F: tools/virtio/ |
Michael S. Tsirkin | 2426ec8 | 2011-01-31 16:46:20 +1030 | [diff] [blame] | 13582 | F: drivers/net/virtio_net.c |
| 13583 | F: drivers/block/virtio_blk.c |
Cornelia Huck | 404a5c3 | 2017-03-30 13:13:32 +0200 | [diff] [blame] | 13584 | F: include/linux/virtio*.h |
Amos Kong | 916cdab | 2013-04-02 16:42:02 +1030 | [diff] [blame] | 13585 | F: include/uapi/linux/virtio_*.h |
Gonglei | dbaf062 | 2016-12-15 10:03:16 +0800 | [diff] [blame] | 13586 | F: drivers/crypto/virtio/ |
Michael S. Tsirkin | 2426ec8 | 2011-01-31 16:46:20 +1030 | [diff] [blame] | 13587 | |
Cornelia Huck | f2dbda3 | 2015-07-01 17:15:37 +0200 | [diff] [blame] | 13588 | VIRTIO DRIVERS FOR S390 |
Cornelia Huck | f2dbda3 | 2015-07-01 17:15:37 +0200 | [diff] [blame] | 13589 | M: Cornelia Huck <cornelia.huck@de.ibm.com> |
Christian Borntraeger | c8b0d729 | 2017-03-02 17:08:23 +0100 | [diff] [blame] | 13590 | M: Halil Pasic <pasic@linux.vnet.ibm.com> |
Cornelia Huck | f2dbda3 | 2015-07-01 17:15:37 +0200 | [diff] [blame] | 13591 | L: linux-s390@vger.kernel.org |
| 13592 | L: virtualization@lists.linux-foundation.org |
| 13593 | L: kvm@vger.kernel.org |
| 13594 | S: Supported |
Cornelia Huck | 1b568d9 | 2015-07-07 11:41:01 +0200 | [diff] [blame] | 13595 | F: drivers/s390/virtio/ |
Cornelia Huck | f2dbda3 | 2015-07-01 17:15:37 +0200 | [diff] [blame] | 13596 | |
Gerd Hoffmann | 4ad6ee9 | 2015-06-02 10:49:03 +0200 | [diff] [blame] | 13597 | VIRTIO GPU DRIVER |
| 13598 | M: David Airlie <airlied@linux.ie> |
| 13599 | M: Gerd Hoffmann <kraxel@redhat.com> |
| 13600 | L: dri-devel@lists.freedesktop.org |
| 13601 | L: virtualization@lists.linux-foundation.org |
Daniel Vetter | 0f44548 | 2017-02-28 20:36:57 +0100 | [diff] [blame] | 13602 | T: git git://anongit.freedesktop.org/drm/drm-misc |
Gerd Hoffmann | 4ad6ee9 | 2015-06-02 10:49:03 +0200 | [diff] [blame] | 13603 | S: Maintained |
| 13604 | F: drivers/gpu/drm/virtio/ |
| 13605 | F: include/uapi/linux/virtio_gpu.h |
| 13606 | |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 13607 | VIRTIO HOST (VHOST) |
| 13608 | M: "Michael S. Tsirkin" <mst@redhat.com> |
Michael S. Tsirkin | 678ff27 | 2016-08-14 20:57:14 +0300 | [diff] [blame] | 13609 | M: Jason Wang <jasowang@redhat.com> |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 13610 | L: kvm@vger.kernel.org |
Michael Witten | c996d8b | 2010-11-15 19:55:34 +0000 | [diff] [blame] | 13611 | L: virtualization@lists.linux-foundation.org |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 13612 | L: netdev@vger.kernel.org |
Fengguang Wu | 9f273c2 | 2016-01-20 15:03:25 -0800 | [diff] [blame] | 13613 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 13614 | S: Maintained |
| 13615 | F: drivers/vhost/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 13616 | F: include/uapi/linux/vhost.h |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 13617 | |
Gerd Hoffmann | 271c865 | 2015-03-27 12:46:12 +1030 | [diff] [blame] | 13618 | VIRTIO INPUT DRIVER |
| 13619 | M: Gerd Hoffmann <kraxel@redhat.com> |
| 13620 | S: Maintained |
| 13621 | F: drivers/virtio/virtio_input.c |
| 13622 | F: include/uapi/linux/virtio_input.h |
| 13623 | |
Gonglei | dbaf062 | 2016-12-15 10:03:16 +0800 | [diff] [blame] | 13624 | VIRTIO CRYPTO DRIVER |
| 13625 | M: Gonglei <arei.gonglei@huawei.com> |
| 13626 | L: virtualization@lists.linux-foundation.org |
| 13627 | L: linux-crypto@vger.kernel.org |
| 13628 | S: Maintained |
| 13629 | F: drivers/crypto/virtio/ |
| 13630 | F: include/uapi/linux/virtio_crypto.h |
| 13631 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13632 | VIA RHINE NETWORK DRIVER |
Roger Luethi | 210347e | 2015-05-26 19:12:54 +0200 | [diff] [blame] | 13633 | S: Orphan |
Jeff Kirsher | f2148a4 | 2011-05-20 20:43:09 -0700 | [diff] [blame] | 13634 | F: drivers/net/ethernet/via/via-rhine.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13635 | |
Harald Welte | f0bf7f6 | 2009-06-17 20:22:39 +0200 | [diff] [blame] | 13636 | VIA SD/MMC CARD CONTROLLER DRIVER |
Bruce Chang | 558bbb2 | 2011-01-13 15:45:37 -0800 | [diff] [blame] | 13637 | M: Bruce Chang <brucechang@via.com.tw> |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13638 | M: Harald Welte <HaraldWelte@viatech.com> |
Harald Welte | f0bf7f6 | 2009-06-17 20:22:39 +0200 | [diff] [blame] | 13639 | S: Maintained |
| 13640 | F: drivers/mmc/host/via-sdmmc.c |
| 13641 | |
Joseph Chan | 69e4a7c | 2008-10-15 22:03:31 -0700 | [diff] [blame] | 13642 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
Florian Tobias Schandinat | c7babeb | 2010-05-20 14:06:57 +0000 | [diff] [blame] | 13643 | M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> |
Geert Uytterhoeven | c69f677 | 2009-11-20 20:48:31 +0100 | [diff] [blame] | 13644 | L: linux-fbdev@vger.kernel.org |
Joseph Chan | 69e4a7c | 2008-10-15 22:03:31 -0700 | [diff] [blame] | 13645 | S: Maintained |
Florian Tobias Schandinat | c7babeb | 2010-05-20 14:06:57 +0000 | [diff] [blame] | 13646 | F: include/linux/via-core.h |
| 13647 | F: include/linux/via-gpio.h |
| 13648 | F: include/linux/via_i2c.h |
Jingoo Han | 8a61f01 | 2014-07-01 15:36:01 +0900 | [diff] [blame] | 13649 | F: drivers/video/fbdev/via/ |
Joseph Chan | 69e4a7c | 2008-10-15 22:03:31 -0700 | [diff] [blame] | 13650 | |
Francois Romieu | 01f2073 | 2007-01-26 00:57:17 -0800 | [diff] [blame] | 13651 | VIA VELOCITY NETWORK DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13652 | M: Francois Romieu <romieu@fr.zoreil.com> |
Francois Romieu | 01f2073 | 2007-01-26 00:57:17 -0800 | [diff] [blame] | 13653 | L: netdev@vger.kernel.org |
| 13654 | S: Maintained |
Jeff Kirsher | f2148a4 | 2011-05-20 20:43:09 -0700 | [diff] [blame] | 13655 | F: drivers/net/ethernet/via/via-velocity.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13656 | |
Alex Williamson | f73f817 | 2015-09-18 22:29:39 +0800 | [diff] [blame] | 13657 | VIRT LIB |
| 13658 | M: Alex Williamson <alex.williamson@redhat.com> |
| 13659 | M: Paolo Bonzini <pbonzini@redhat.com> |
| 13660 | L: kvm@vger.kernel.org |
| 13661 | S: Supported |
| 13662 | F: virt/lib/ |
| 13663 | |
Hans Verkuil | 77911fd | 2014-12-10 04:22:37 -0300 | [diff] [blame] | 13664 | VIVID VIRTUAL VIDEO DRIVER |
Hans Verkuil | 0b7bc1f | 2012-11-23 08:21:50 -0300 | [diff] [blame] | 13665 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 13666 | L: linux-media@vger.kernel.org |
| 13667 | T: git git://linuxtv.org/media_tree.git |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 13668 | W: https://linuxtv.org |
Hans Verkuil | 0b7bc1f | 2012-11-23 08:21:50 -0300 | [diff] [blame] | 13669 | S: Maintained |
Hans Verkuil | 77911fd | 2014-12-10 04:22:37 -0300 | [diff] [blame] | 13670 | F: drivers/media/platform/vivid/* |
Hans Verkuil | 0b7bc1f | 2012-11-23 08:21:50 -0300 | [diff] [blame] | 13671 | |
Helen Koike | f2fe890 | 2017-04-07 14:55:19 -0300 | [diff] [blame] | 13672 | VIMC VIRTUAL MEDIA CONTROLLER DRIVER |
| 13673 | M: Helen Koike <helen.koike@collabora.com> |
| 13674 | L: linux-media@vger.kernel.org |
| 13675 | T: git git://linuxtv.org/media_tree.git |
| 13676 | W: https://linuxtv.org |
| 13677 | S: Maintained |
| 13678 | F: drivers/media/platform/vimc/* |
| 13679 | |
Florian Fainelli | 55e331c | 2009-06-16 15:33:53 -0700 | [diff] [blame] | 13680 | VLYNQ BUS |
Florian Fainelli | 08eeb30 | 2016-09-19 14:44:09 -0700 | [diff] [blame] | 13681 | M: Florian Fainelli <f.fainelli@gmail.com> |
Lennert Buytenhek | 8578d7a | 2011-01-12 16:59:51 -0800 | [diff] [blame] | 13682 | L: openwrt-devel@lists.openwrt.org (subscribers-only) |
Florian Fainelli | 55e331c | 2009-06-16 15:33:53 -0700 | [diff] [blame] | 13683 | S: Maintained |
| 13684 | F: drivers/vlynq/vlynq.c |
| 13685 | F: include/linux/vlynq.h |
| 13686 | |
Martyn Welch | 390beae | 2012-05-03 17:52:36 +0100 | [diff] [blame] | 13687 | VME SUBSYSTEM |
Martyn Welch | 74c600e | 2015-09-17 20:38:47 +0100 | [diff] [blame] | 13688 | M: Martyn Welch <martyn@welchs.me.uk> |
Manohar Vanga | 1bd289d | 2012-06-14 15:57:01 +0200 | [diff] [blame] | 13689 | M: Manohar Vanga <manohar.vanga@gmail.com> |
Martyn Welch | 390beae | 2012-05-03 17:52:36 +0100 | [diff] [blame] | 13690 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
| 13691 | L: devel@driverdev.osuosl.org |
| 13692 | S: Maintained |
| 13693 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
Martyn Welch | 75a163c | 2016-10-21 22:15:27 +0100 | [diff] [blame] | 13694 | F: Documentation/driver-api/vme.rst |
Martyn Welch | 390beae | 2012-05-03 17:52:36 +0100 | [diff] [blame] | 13695 | F: drivers/staging/vme/ |
| 13696 | F: drivers/vme/ |
| 13697 | F: include/linux/vme* |
| 13698 | |
Alok Kataria | 4488e09 | 2013-09-04 14:23:41 +0530 | [diff] [blame] | 13699 | VMWARE HYPERVISOR INTERFACE |
| 13700 | M: Alok Kataria <akataria@vmware.com> |
| 13701 | L: virtualization@lists.linux-foundation.org |
| 13702 | S: Supported |
| 13703 | F: arch/x86/kernel/cpu/vmware.c |
| 13704 | |
Dmitry Torokhov | 73b35d0 | 2014-06-20 10:14:58 -0700 | [diff] [blame] | 13705 | VMWARE BALLOON DRIVER |
| 13706 | M: Xavier Deguillard <xdeguillard@vmware.com> |
| 13707 | M: Philip Moltmann <moltmann@vmware.com> |
| 13708 | M: "VMware, Inc." <pv-drivers@vmware.com> |
| 13709 | L: linux-kernel@vger.kernel.org |
| 13710 | S: Maintained |
| 13711 | F: drivers/misc/vmw_balloon.c |
| 13712 | |
Thomas Hellstrom | 8b8be51 | 2015-04-14 10:06:38 -0700 | [diff] [blame] | 13713 | VMWARE VMMOUSE SUBDRIVER |
| 13714 | M: "VMware Graphics" <linux-graphics-maintainer@vmware.com> |
| 13715 | M: "VMware, Inc." <pv-drivers@vmware.com> |
| 13716 | L: linux-input@vger.kernel.org |
| 13717 | S: Maintained |
| 13718 | F: drivers/input/mouse/vmmouse.c |
| 13719 | F: drivers/input/mouse/vmmouse.h |
| 13720 | |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 13721 | VMWARE VMXNET3 ETHERNET DRIVER |
Shrikrishna Khare | 04e1b73 | 2015-08-24 14:24:11 -0700 | [diff] [blame] | 13722 | M: Shrikrishna Khare <skhare@vmware.com> |
Joe Perches | 65c8bb5 | 2009-11-11 14:26:12 -0800 | [diff] [blame] | 13723 | M: "VMware, Inc." <pv-drivers@vmware.com> |
| 13724 | L: netdev@vger.kernel.org |
| 13725 | S: Maintained |
| 13726 | F: drivers/net/vmxnet3/ |
Shreyas Bhatewara | d1a890fa | 2009-10-13 00:15:51 -0700 | [diff] [blame] | 13727 | |
Alok Kataria | 851b164 | 2009-10-13 14:51:05 -0700 | [diff] [blame] | 13728 | VMware PVSCSI driver |
Jim Gill | 29374ec | 2016-06-20 21:58:28 -0400 | [diff] [blame] | 13729 | M: Jim Gill <jgill@vmware.com> |
Alok Kataria | 851b164 | 2009-10-13 14:51:05 -0700 | [diff] [blame] | 13730 | M: VMware PV-Drivers <pv-drivers@vmware.com> |
| 13731 | L: linux-scsi@vger.kernel.org |
| 13732 | S: Maintained |
| 13733 | F: drivers/scsi/vmw_pvscsi.c |
| 13734 | F: drivers/scsi/vmw_pvscsi.h |
| 13735 | |
Adit Ranadive | 29c8d9e | 2016-10-02 19:10:22 -0700 | [diff] [blame] | 13736 | VMWARE PVRDMA DRIVER |
| 13737 | M: Adit Ranadive <aditr@vmware.com> |
| 13738 | M: VMware PV-Drivers <pv-drivers@vmware.com> |
| 13739 | L: linux-rdma@vger.kernel.org |
| 13740 | S: Maintained |
| 13741 | F: drivers/infiniband/hw/vmw_pvrdma/ |
| 13742 | |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 13743 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
Axel Lin | 88dd75a | 2013-03-25 16:49:51 +0800 | [diff] [blame] | 13744 | M: Liam Girdwood <lgirdwood@gmail.com> |
Mark Brown | b02e48f | 2013-04-12 11:39:57 +0100 | [diff] [blame] | 13745 | M: Mark Brown <broonie@kernel.org> |
Mark Brown | 5cdeb2c | 2014-08-16 12:31:11 +0100 | [diff] [blame] | 13746 | L: linux-kernel@vger.kernel.org |
Liam Girdwood | 1dd68f0 | 2009-02-02 21:43:31 +0000 | [diff] [blame] | 13747 | W: http://www.slimlogic.co.uk/?p=48 |
Sachin Kamat | 6febb5a | 2013-07-04 12:08:50 +0530 | [diff] [blame] | 13748 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 13749 | S: Supported |
Javier Martinez Canillas | 9d2597e | 2016-04-11 12:30:59 -0400 | [diff] [blame] | 13750 | F: Documentation/devicetree/bindings/regulator/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13751 | F: drivers/regulator/ |
Javier Martinez Canillas | 9d2597e | 2016-04-11 12:30:59 -0400 | [diff] [blame] | 13752 | F: include/dt-bindings/regulator/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13753 | F: include/linux/regulator/ |
Liam Girdwood | e53e86c | 2008-07-10 15:48:00 +0100 | [diff] [blame] | 13754 | |
David Ahern | 081958e | 2015-08-25 10:26:22 -0700 | [diff] [blame] | 13755 | VRF |
| 13756 | M: David Ahern <dsa@cumulusnetworks.com> |
| 13757 | M: Shrijeet Mukherjee <shm@cumulusnetworks.com> |
| 13758 | L: netdev@vger.kernel.org |
| 13759 | S: Maintained |
| 13760 | F: drivers/net/vrf.c |
David Ahern | 562d897 | 2015-09-15 10:50:14 -0600 | [diff] [blame] | 13761 | F: Documentation/networking/vrf.txt |
David Ahern | 081958e | 2015-08-25 10:26:22 -0700 | [diff] [blame] | 13762 | |
Juerg Haefliger | ab41319 | 2006-09-24 20:54:04 +0200 | [diff] [blame] | 13763 | VT1211 HARDWARE MONITOR DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13764 | M: Juerg Haefliger <juergh@gmail.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 13765 | L: linux-hwmon@vger.kernel.org |
Juerg Haefliger | ab41319 | 2006-09-24 20:54:04 +0200 | [diff] [blame] | 13766 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13767 | F: Documentation/hwmon/vt1211 |
| 13768 | F: drivers/hwmon/vt1211.c |
Juerg Haefliger | ab41319 | 2006-09-24 20:54:04 +0200 | [diff] [blame] | 13769 | |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 13770 | VT8231 HARDWARE MONITOR DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13771 | M: Roger Lucas <vt8231@hiddenengine.co.uk> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 13772 | L: linux-hwmon@vger.kernel.org |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 13773 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13774 | F: drivers/hwmon/vt8231.c |
Roger Lucas | 1de9e37 | 2005-11-26 20:20:05 +0100 | [diff] [blame] | 13775 | |
Tony Olech | 88095e7 | 2011-05-14 16:48:13 -0400 | [diff] [blame] | 13776 | VUB300 USB to SDIO/SD/MMC bridge chip |
| 13777 | M: Tony Olech <tony.olech@elandigitalsystems.com> |
| 13778 | L: linux-mmc@vger.kernel.org |
| 13779 | L: linux-usb@vger.kernel.org |
| 13780 | S: Supported |
| 13781 | F: drivers/mmc/host/vub300.c |
| 13782 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13783 | W1 DALLAS'S 1-WIRE BUS |
Evgeniy Polyakov | a801876 | 2011-08-25 15:59:06 -0700 | [diff] [blame] | 13784 | M: Evgeniy Polyakov <zbr@ioremap.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13785 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13786 | F: Documentation/w1/ |
| 13787 | F: drivers/w1/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13788 | |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 13789 | W83791D HARDWARE MONITORING DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13790 | M: Marc Hulsman <m.hulsman@tudelft.nl> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 13791 | L: linux-hwmon@vger.kernel.org |
Marc Hulsman | 25845c2 | 2008-06-08 10:59:41 -0400 | [diff] [blame] | 13792 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13793 | F: Documentation/hwmon/w83791d |
| 13794 | F: drivers/hwmon/w83791d.c |
Charles Spirakis | 1392707 | 2006-07-05 18:05:15 +0200 | [diff] [blame] | 13795 | |
Rudolf Marek | 61db011 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 13796 | W83793 HARDWARE MONITORING DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13797 | M: Rudolf Marek <r.marek@assembler.cz> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 13798 | L: linux-hwmon@vger.kernel.org |
Rudolf Marek | 61db011 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 13799 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13800 | F: Documentation/hwmon/w83793 |
| 13801 | F: drivers/hwmon/w83793.c |
Rudolf Marek | 61db011 | 2006-12-12 18:18:30 +0100 | [diff] [blame] | 13802 | |
Jean Delvare | e3760b4 | 2010-10-28 20:31:49 +0200 | [diff] [blame] | 13803 | W83795 HARDWARE MONITORING DRIVER |
Jiri Slaby | d813062 | 2015-07-17 16:23:20 -0700 | [diff] [blame] | 13804 | M: Jean Delvare <jdelvare@suse.com> |
Guenter Roeck | 968ce1b | 2016-03-22 15:11:03 -0700 | [diff] [blame] | 13805 | L: linux-hwmon@vger.kernel.org |
Jean Delvare | e3760b4 | 2010-10-28 20:31:49 +0200 | [diff] [blame] | 13806 | S: Maintained |
| 13807 | F: drivers/hwmon/w83795.c |
| 13808 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13809 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13810 | M: Pierre Ossman <pierre@ossman.eu> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13811 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13812 | F: drivers/mmc/host/wbsd.* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13813 | |
Hans de Goede | b4e0592 | 2014-07-20 13:35:44 -0700 | [diff] [blame] | 13814 | WACOM PROTOCOL 4 SERIAL TABLETS |
| 13815 | M: Julian Squires <julian@cipht.net> |
| 13816 | M: Hans de Goede <hdegoede@redhat.com> |
| 13817 | L: linux-input@vger.kernel.org |
| 13818 | S: Maintained |
| 13819 | F: drivers/input/tablet/wacom_serial4.c |
| 13820 | |
Wim Van Sebroeck | 3527761 | 2006-01-15 21:21:14 +0100 | [diff] [blame] | 13821 | WATCHDOG DEVICE DRIVERS |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13822 | M: Wim Van Sebroeck <wim@iguana.be> |
Guenter Roeck | 1f32f83 | 2015-12-05 22:18:25 -0800 | [diff] [blame] | 13823 | R: Guenter Roeck <linux@roeck-us.net> |
Wim Van Sebroeck | 230a5ce | 2010-07-29 18:02:51 +0000 | [diff] [blame] | 13824 | L: linux-watchdog@vger.kernel.org |
| 13825 | W: http://www.linux-watchdog.org/ |
Wim Van Sebroeck | f599aaf | 2012-02-28 17:11:05 +0100 | [diff] [blame] | 13826 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
Wim Van Sebroeck | 3527761 | 2006-01-15 21:21:14 +0100 | [diff] [blame] | 13827 | S: Maintained |
Geert Uytterhoeven | 540be8b | 2016-05-22 11:06:29 +0200 | [diff] [blame] | 13828 | F: Documentation/devicetree/bindings/watchdog/ |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13829 | F: Documentation/watchdog/ |
| 13830 | F: drivers/watchdog/ |
| 13831 | F: include/linux/watchdog.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 13832 | F: include/uapi/linux/watchdog.h |
Wim Van Sebroeck | 3527761 | 2006-01-15 21:21:14 +0100 | [diff] [blame] | 13833 | |
David Herrmann | b22e00f | 2011-09-06 13:50:40 +0200 | [diff] [blame] | 13834 | WIIMOTE HID DRIVER |
| 13835 | M: David Herrmann <dh.herrmann@googlemail.com> |
| 13836 | L: linux-input@vger.kernel.org |
| 13837 | S: Maintained |
| 13838 | F: drivers/hid/hid-wiimote* |
| 13839 | |
David Härdeman | e258b80 | 2009-09-21 17:04:53 -0700 | [diff] [blame] | 13840 | WINBOND CIR DRIVER |
Joe Perches | 364e9e1 | 2009-10-26 16:49:45 -0700 | [diff] [blame] | 13841 | M: David Härdeman <david@hardeman.nu> |
David Härdeman | e258b80 | 2009-09-21 17:04:53 -0700 | [diff] [blame] | 13842 | S: Maintained |
Joe Perches | 116ab80 | 2011-03-22 16:34:38 -0700 | [diff] [blame] | 13843 | F: drivers/media/rc/winbond-cir.c |
David Härdeman | e258b80 | 2009-09-21 17:04:53 -0700 | [diff] [blame] | 13844 | |
William Breathitt Gray | c36a483 | 2016-02-28 23:54:46 -0500 | [diff] [blame] | 13845 | WINSYSTEMS EBC-C384 WATCHDOG DRIVER |
| 13846 | M: William Breathitt Gray <vilhelm.gray@gmail.com> |
| 13847 | L: linux-watchdog@vger.kernel.org |
| 13848 | S: Maintained |
| 13849 | F: drivers/watchdog/ebc-c384_wdt.c |
| 13850 | |
William Breathitt Gray | 9c26df9 | 2016-01-20 13:45:33 -0500 | [diff] [blame] | 13851 | WINSYSTEMS WS16C48 GPIO DRIVER |
| 13852 | M: William Breathitt Gray <vilhelm.gray@gmail.com> |
| 13853 | L: linux-gpio@vger.kernel.org |
| 13854 | S: Maintained |
| 13855 | F: drivers/gpio/gpio-ws16c48.c |
| 13856 | |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 13857 | WIMAX STACK |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13858 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 13859 | M: linux-wimax@intel.com |
Joe Perches | 49e7d9d | 2015-04-15 16:17:31 -0700 | [diff] [blame] | 13860 | L: wimax@linuxwimax.org (subscribers-only) |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 13861 | S: Supported |
| 13862 | W: http://linuxwimax.org |
Joe Perches | 315987d | 2010-08-09 17:20:50 -0700 | [diff] [blame] | 13863 | F: Documentation/wimax/README.wimax |
Joe Perches | 315987d | 2010-08-09 17:20:50 -0700 | [diff] [blame] | 13864 | F: include/linux/wimax/debug.h |
| 13865 | F: include/net/wimax.h |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 13866 | F: include/uapi/linux/wimax.h |
Joe Perches | 315987d | 2010-08-09 17:20:50 -0700 | [diff] [blame] | 13867 | F: net/wimax/ |
Inaky Perez-Gonzalez | 8a70da8 | 2008-12-20 16:58:00 -0800 | [diff] [blame] | 13868 | |
Dmitry Torokhov | 5fc14680 | 2005-11-20 00:50:06 -0500 | [diff] [blame] | 13869 | WISTRON LAPTOP BUTTON DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13870 | M: Miloslav Trmac <mitr@volny.cz> |
Dmitry Torokhov | 5fc14680 | 2005-11-20 00:50:06 -0500 | [diff] [blame] | 13871 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13872 | F: drivers/input/misc/wistron_btns.c |
Dmitry Torokhov | 5fc14680 | 2005-11-20 00:50:06 -0500 | [diff] [blame] | 13873 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13874 | WL3501 WIRELESS PCMCIA CARD DRIVER |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 13875 | L: linux-wireless@vger.kernel.org |
Arnaldo Carvalho de Melo | 0c59d28 | 2017-02-13 14:15:44 -0300 | [diff] [blame] | 13876 | S: Odd fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13877 | F: drivers/net/wireless/wl3501* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13878 | |
Mark Brown | 055bcbc | 2010-08-13 14:18:12 +0100 | [diff] [blame] | 13879 | WOLFSON MICROELECTRONICS DRIVERS |
Mark Brown | fef9516 | 2012-04-04 12:06:24 +0100 | [diff] [blame] | 13880 | L: patches@opensource.wolfsonmicro.com |
Richard Fitzgerald | f0e03db | 2015-09-22 15:30:33 +0100 | [diff] [blame] | 13881 | T: git https://github.com/CirrusLogic/linux-drivers.git |
| 13882 | W: https://github.com/CirrusLogic/linux-drivers/wiki |
Mark Brown | b75ea16 | 2009-07-02 16:43:08 +0100 | [diff] [blame] | 13883 | S: Supported |
Joe Perches | 3768f0b | 2009-12-14 18:00:54 -0800 | [diff] [blame] | 13884 | F: Documentation/hwmon/wm83?? |
Charles Keepax | f494993 | 2015-10-27 16:01:59 +0000 | [diff] [blame] | 13885 | F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt |
| 13886 | F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt |
| 13887 | F: Documentation/devicetree/bindings/mfd/arizona.txt |
Charles Keepax | 9f7c7ce | 2017-03-17 10:05:20 +0000 | [diff] [blame] | 13888 | F: Documentation/devicetree/bindings/mfd/wm831x.txt |
Mark Brown | af1c538 | 2011-10-14 21:09:43 +0100 | [diff] [blame] | 13889 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
Mark Brown | f05259a | 2012-05-17 10:04:57 +0100 | [diff] [blame] | 13890 | F: drivers/clk/clk-wm83*.c |
Mark Brown | 9c3095988 | 2012-06-23 11:25:43 +0100 | [diff] [blame] | 13891 | F: drivers/extcon/extcon-arizona.c |
Mark Brown | b75ea16 | 2009-07-02 16:43:08 +0100 | [diff] [blame] | 13892 | F: drivers/leds/leds-wm83*.c |
Mark Brown | 25b273b | 2012-06-05 18:13:53 +0100 | [diff] [blame] | 13893 | F: drivers/gpio/gpio-*wm*.c |
Mark Brown | 9c3095988 | 2012-06-23 11:25:43 +0100 | [diff] [blame] | 13894 | F: drivers/gpio/gpio-arizona.c |
Mark Brown | d22b086 | 2012-01-21 13:29:27 -0500 | [diff] [blame] | 13895 | F: drivers/hwmon/wm83??-hwmon.c |
Mark Brown | 59ec6da | 2011-08-19 17:53:12 +0900 | [diff] [blame] | 13896 | F: drivers/input/misc/wm831x-on.c |
| 13897 | F: drivers/input/touchscreen/wm831x-ts.c |
| 13898 | F: drivers/input/touchscreen/wm97*.c |
Mark Brown | 9c3095988 | 2012-06-23 11:25:43 +0100 | [diff] [blame] | 13899 | F: drivers/mfd/arizona* |
| 13900 | F: drivers/mfd/wm*.c |
Richard Fitzgerald | 12ebc13 | 2015-11-03 15:08:36 +0000 | [diff] [blame] | 13901 | F: drivers/mfd/cs47l24* |
Sebastian Reichel | 8c0984e | 2016-06-17 13:54:32 +0200 | [diff] [blame] | 13902 | F: drivers/power/supply/wm83*.c |
Mark Brown | b75ea16 | 2009-07-02 16:43:08 +0100 | [diff] [blame] | 13903 | F: drivers/rtc/rtc-wm83*.c |
| 13904 | F: drivers/regulator/wm8*.c |
Charles Keepax | cdf4275 | 2017-03-28 15:14:39 +0100 | [diff] [blame] | 13905 | F: drivers/regulator/arizona* |
Mark Brown | 3860e6c | 2009-09-09 14:46:43 +0100 | [diff] [blame] | 13906 | F: drivers/video/backlight/wm83*_bl.c |
Mark Brown | b75ea16 | 2009-07-02 16:43:08 +0100 | [diff] [blame] | 13907 | F: drivers/watchdog/wm83*_wdt.c |
Mark Brown | 9c3095988 | 2012-06-23 11:25:43 +0100 | [diff] [blame] | 13908 | F: include/linux/mfd/arizona/ |
Mark Brown | 3860e6c | 2009-09-09 14:46:43 +0100 | [diff] [blame] | 13909 | F: include/linux/mfd/wm831x/ |
Mark Brown | b75ea16 | 2009-07-02 16:43:08 +0100 | [diff] [blame] | 13910 | F: include/linux/mfd/wm8350/ |
Joe Perches | 3768f0b | 2009-12-14 18:00:54 -0800 | [diff] [blame] | 13911 | F: include/linux/mfd/wm8400* |
Richard Fitzgerald | 22161f3 | 2017-04-18 11:43:49 +0100 | [diff] [blame] | 13912 | F: include/linux/regulator/arizona* |
Mark Brown | 59ec6da | 2011-08-19 17:53:12 +0900 | [diff] [blame] | 13913 | F: include/linux/wm97xx.h |
Mark Brown | 055bcbc | 2010-08-13 14:18:12 +0100 | [diff] [blame] | 13914 | F: include/sound/wm????.h |
Mark Brown | 9c3095988 | 2012-06-23 11:25:43 +0100 | [diff] [blame] | 13915 | F: sound/soc/codecs/arizona.? |
Mark Brown | 055bcbc | 2010-08-13 14:18:12 +0100 | [diff] [blame] | 13916 | F: sound/soc/codecs/wm* |
Richard Fitzgerald | 12ebc13 | 2015-11-03 15:08:36 +0000 | [diff] [blame] | 13917 | F: sound/soc/codecs/cs47l24* |
Mark Brown | b75ea16 | 2009-07-02 16:43:08 +0100 | [diff] [blame] | 13918 | |
Tejun Heo | 3e6cd7a | 2010-12-10 17:20:23 +0100 | [diff] [blame] | 13919 | WORKQUEUE |
| 13920 | M: Tejun Heo <tj@kernel.org> |
Lai Jiangshan | badb7f5 | 2015-07-01 15:38:04 +0800 | [diff] [blame] | 13921 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
Tejun Heo | 3e6cd7a | 2010-12-10 17:20:23 +0100 | [diff] [blame] | 13922 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
| 13923 | S: Maintained |
| 13924 | F: include/linux/workqueue.h |
| 13925 | F: kernel/workqueue.c |
Silvio Fricke | e7f08ff | 2016-10-28 10:14:11 +0200 | [diff] [blame] | 13926 | F: Documentation/core-api/workqueue.rst |
Tejun Heo | 3e6cd7a | 2010-12-10 17:20:23 +0100 | [diff] [blame] | 13927 | |
Chen-Yu Tsai | 39ac9f4 | 2016-03-29 17:22:24 +0800 | [diff] [blame] | 13928 | X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS |
| 13929 | M: Chen-Yu Tsai <wens@csie.org> |
| 13930 | L: linux-kernel@vger.kernel.org |
| 13931 | S: Maintained |
| 13932 | N: axp[128] |
| 13933 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13934 | X.25 NETWORK LAYER |
Arnd Bergmann | 8bf2805 | 2009-12-14 01:53:41 +0000 | [diff] [blame] | 13935 | M: Andrew Hendry <andrew.hendry@gmail.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13936 | L: linux-x25@vger.kernel.org |
Arnd Bergmann | 8bf2805 | 2009-12-14 01:53:41 +0000 | [diff] [blame] | 13937 | S: Odd Fixes |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13938 | F: Documentation/networking/x25* |
| 13939 | F: include/net/x25* |
| 13940 | F: net/x25/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13941 | |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 13942 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 13943 | M: Thomas Gleixner <tglx@linutronix.de> |
| 13944 | M: Ingo Molnar <mingo@redhat.com> |
| 13945 | M: "H. Peter Anvin" <hpa@zytor.com> |
H. Peter Anvin | bcde563 | 2009-02-02 21:42:40 -0800 | [diff] [blame] | 13946 | M: x86@kernel.org |
Ingo Molnar | 981c3a4 | 2014-01-21 10:59:20 +0100 | [diff] [blame] | 13947 | L: linux-kernel@vger.kernel.org |
Peter Zijlstra | 75fc2d3 | 2011-12-05 17:27:08 +0100 | [diff] [blame] | 13948 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 13949 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 13950 | F: Documentation/x86/ |
| 13951 | F: arch/x86/ |
Randy Dunlap | e2d1d6c | 2008-10-12 16:11:31 -0700 | [diff] [blame] | 13952 | |
Matthew Garrett | d0944853 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 13953 | X86 PLATFORM DRIVERS |
Darren Hart | e181ba1 | 2014-08-27 23:36:06 -0700 | [diff] [blame] | 13954 | M: Darren Hart <dvhart@infradead.org> |
Andy Shevchenko | 7b9e1d8 | 2017-01-24 17:22:01 +0200 | [diff] [blame] | 13955 | M: Andy Shevchenko <andy@infradead.org> |
Matthew Garrett | d0944853 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 13956 | L: platform-driver-x86@vger.kernel.org |
Darren Hart | e181ba1 | 2014-08-27 23:36:06 -0700 | [diff] [blame] | 13957 | T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git |
Matthew Garrett | d0944853 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 13958 | S: Maintained |
Joe Perches | 1443081 | 2013-09-11 14:23:50 -0700 | [diff] [blame] | 13959 | F: drivers/platform/x86/ |
Darren Hart | 3a4bcee | 2015-10-06 23:17:04 +0100 | [diff] [blame] | 13960 | F: drivers/platform/olpc/ |
Matthew Garrett | d0944853 | 2010-02-11 10:40:13 -0500 | [diff] [blame] | 13961 | |
Ingo Molnar | c1f5c54 | 2011-06-18 22:51:13 +0200 | [diff] [blame] | 13962 | X86 MCE INFRASTRUCTURE |
| 13963 | M: Tony Luck <tony.luck@intel.com> |
Borislav Petkov | 487ba8e | 2012-10-29 18:40:10 +0100 | [diff] [blame] | 13964 | M: Borislav Petkov <bp@alien8.de> |
Ingo Molnar | c1f5c54 | 2011-06-18 22:51:13 +0200 | [diff] [blame] | 13965 | L: linux-edac@vger.kernel.org |
| 13966 | S: Maintained |
| 13967 | F: arch/x86/kernel/cpu/mcheck/* |
| 13968 | |
Borislav Petkov | 79ebdc9 | 2015-10-20 11:54:49 +0200 | [diff] [blame] | 13969 | X86 MICROCODE UPDATE SUPPORT |
| 13970 | M: Borislav Petkov <bp@alien8.de> |
| 13971 | S: Maintained |
| 13972 | F: arch/x86/kernel/cpu/microcode/* |
| 13973 | |
Andy Lutomirski | f0905c5 | 2014-12-12 16:25:47 -0800 | [diff] [blame] | 13974 | X86 VDSO |
| 13975 | M: Andy Lutomirski <luto@amacapital.net> |
| 13976 | L: linux-kernel@vger.kernel.org |
| 13977 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso |
| 13978 | S: Maintained |
Ingo Molnar | d603c8e | 2015-06-03 18:05:44 +0200 | [diff] [blame] | 13979 | F: arch/x86/entry/vdso/ |
Andy Lutomirski | f0905c5 | 2014-12-12 16:25:47 -0800 | [diff] [blame] | 13980 | |
Mauro Carvalho Chehab | d6fad50 | 2012-11-02 12:05:07 -0200 | [diff] [blame] | 13981 | XC2028/3028 TUNER DRIVER |
Mauro Carvalho Chehab | 5dc8a86 | 2016-06-14 15:17:40 -0300 | [diff] [blame] | 13982 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
| 13983 | M: Mauro Carvalho Chehab <mchehab@kernel.org> |
Mauro Carvalho Chehab | d6fad50 | 2012-11-02 12:05:07 -0200 | [diff] [blame] | 13984 | L: linux-media@vger.kernel.org |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 13985 | W: https://linuxtv.org |
Mauro Carvalho Chehab | d6fad50 | 2012-11-02 12:05:07 -0200 | [diff] [blame] | 13986 | T: git git://linuxtv.org/media_tree.git |
| 13987 | S: Maintained |
| 13988 | F: drivers/media/tuners/tuner-xc2028.* |
| 13989 | |
Ian Campbell | c446808 | 2011-04-27 15:26:46 -0700 | [diff] [blame] | 13990 | XEN HYPERVISOR INTERFACE |
Konrad Rzeszutek Wilk | 3eeef8f | 2013-08-05 14:01:49 -0400 | [diff] [blame] | 13991 | M: Boris Ostrovsky <boris.ostrovsky@oracle.com> |
Konrad Rzeszutek Wilk | 101ecde | 2016-04-01 11:26:08 -0400 | [diff] [blame] | 13992 | M: Juergen Gross <jgross@suse.com> |
Konrad Rzeszutek Wilk | 11dbb52 | 2013-08-05 13:59:36 -0400 | [diff] [blame] | 13993 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
David Vrabel | ea70ba3 | 2014-01-17 11:51:51 +0000 | [diff] [blame] | 13994 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git |
Ian Campbell | c446808 | 2011-04-27 15:26:46 -0700 | [diff] [blame] | 13995 | S: Supported |
| 13996 | F: arch/x86/xen/ |
| 13997 | F: drivers/*/xen-*front.c |
| 13998 | F: drivers/xen/ |
| 13999 | F: arch/x86/include/asm/xen/ |
| 14000 | F: include/xen/ |
Cesar Eduardo Barros | c117ab8 | 2013-01-04 15:35:22 -0800 | [diff] [blame] | 14001 | F: include/uapi/xen/ |
Ian Campbell | c446808 | 2011-04-27 15:26:46 -0700 | [diff] [blame] | 14002 | |
Stefano Stabellini | 77bfb47 | 2012-09-14 13:35:15 +0000 | [diff] [blame] | 14003 | XEN HYPERVISOR ARM |
Stefano Stabellini | 85d1a29 | 2016-03-29 11:01:16 +0100 | [diff] [blame] | 14004 | M: Stefano Stabellini <sstabellini@kernel.org> |
Konrad Rzeszutek Wilk | 11dbb52 | 2013-08-05 13:59:36 -0400 | [diff] [blame] | 14005 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
Stefano Stabellini | 85d1a29 | 2016-03-29 11:01:16 +0100 | [diff] [blame] | 14006 | S: Maintained |
Stefano Stabellini | 77bfb47 | 2012-09-14 13:35:15 +0000 | [diff] [blame] | 14007 | F: arch/arm/xen/ |
| 14008 | F: arch/arm/include/asm/xen/ |
| 14009 | |
Stefano Stabellini | b475e83 | 2013-06-04 16:13:23 +0000 | [diff] [blame] | 14010 | XEN HYPERVISOR ARM64 |
Stefano Stabellini | 85d1a29 | 2016-03-29 11:01:16 +0100 | [diff] [blame] | 14011 | M: Stefano Stabellini <sstabellini@kernel.org> |
Konrad Rzeszutek Wilk | 11dbb52 | 2013-08-05 13:59:36 -0400 | [diff] [blame] | 14012 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
Stefano Stabellini | 85d1a29 | 2016-03-29 11:01:16 +0100 | [diff] [blame] | 14013 | S: Maintained |
Stefano Stabellini | b475e83 | 2013-06-04 16:13:23 +0000 | [diff] [blame] | 14014 | F: arch/arm64/xen/ |
| 14015 | F: arch/arm64/include/asm/xen/ |
| 14016 | |
Ian Campbell | 9b57e1a | 2011-04-03 23:12:23 +0000 | [diff] [blame] | 14017 | XEN NETWORK BACKEND DRIVER |
Wei Liu | 8386040 | 2013-09-26 12:41:53 +0100 | [diff] [blame] | 14018 | M: Wei Liu <wei.liu2@citrix.com> |
Paul Durrant | 7d3cfc3 | 2016-10-07 11:33:37 +0100 | [diff] [blame] | 14019 | M: Paul Durrant <paul.durrant@citrix.com> |
Konrad Rzeszutek Wilk | 11dbb52 | 2013-08-05 13:59:36 -0400 | [diff] [blame] | 14020 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
Ian Campbell | 9b57e1a | 2011-04-03 23:12:23 +0000 | [diff] [blame] | 14021 | L: netdev@vger.kernel.org |
| 14022 | S: Supported |
| 14023 | F: drivers/net/xen-netback/* |
| 14024 | |
Konrad Rzeszutek Wilk | c5f8e29 | 2010-10-04 13:32:26 -0400 | [diff] [blame] | 14025 | XEN PCI SUBSYSTEM |
| 14026 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
Konrad Rzeszutek Wilk | 11dbb52 | 2013-08-05 13:59:36 -0400 | [diff] [blame] | 14027 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
Jeremy Fitzhardinge | 4cdf6bc | 2007-05-02 19:27:13 +0200 | [diff] [blame] | 14028 | S: Supported |
Konrad Rzeszutek Wilk | c5f8e29 | 2010-10-04 13:32:26 -0400 | [diff] [blame] | 14029 | F: arch/x86/pci/*xen* |
| 14030 | F: drivers/pci/*xen* |
| 14031 | |
Konrad Rzeszutek Wilk | a2c5ae6 | 2014-06-27 10:10:45 -0400 | [diff] [blame] | 14032 | XEN BLOCK SUBSYSTEM |
| 14033 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
Roger Pau Monne | bcadb69 | 2015-01-23 17:14:29 +0100 | [diff] [blame] | 14034 | M: Roger Pau Monné <roger.pau@citrix.com> |
Konrad Rzeszutek Wilk | a2c5ae6 | 2014-06-27 10:10:45 -0400 | [diff] [blame] | 14035 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
| 14036 | S: Supported |
| 14037 | F: drivers/block/xen-blkback/* |
| 14038 | F: drivers/block/xen* |
| 14039 | |
Juergen Gross | 15d0360 | 2014-08-28 06:44:13 +0200 | [diff] [blame] | 14040 | XEN PVSCSI DRIVERS |
| 14041 | M: Juergen Gross <jgross@suse.com> |
| 14042 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
| 14043 | L: linux-scsi@vger.kernel.org |
| 14044 | S: Supported |
| 14045 | F: drivers/scsi/xen-scsifront.c |
| 14046 | F: drivers/xen/xen-scsiback.c |
| 14047 | F: include/xen/interface/io/vscsiif.h |
| 14048 | |
Konrad Rzeszutek Wilk | c5f8e29 | 2010-10-04 13:32:26 -0400 | [diff] [blame] | 14049 | XEN SWIOTLB SUBSYSTEM |
| 14050 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
Konrad Rzeszutek Wilk | 11dbb52 | 2013-08-05 13:59:36 -0400 | [diff] [blame] | 14051 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
Konrad Rzeszutek Wilk | c5f8e29 | 2010-10-04 13:32:26 -0400 | [diff] [blame] | 14052 | S: Supported |
| 14053 | F: arch/x86/xen/*swiotlb* |
| 14054 | F: drivers/xen/*swiotlb* |
| 14055 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14056 | XFS FILESYSTEM |
Darrick J. Wong | 721a0ed | 2017-01-03 18:39:34 -0800 | [diff] [blame] | 14057 | M: Darrick J. Wong <darrick.wong@oracle.com> |
Dave Chinner | 541d48f | 2016-09-14 07:40:21 +1000 | [diff] [blame] | 14058 | M: linux-xfs@vger.kernel.org |
| 14059 | L: linux-xfs@vger.kernel.org |
| 14060 | W: http://xfs.org/ |
Darrick J. Wong | 721a0ed | 2017-01-03 18:39:34 -0800 | [diff] [blame] | 14061 | T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14062 | S: Supported |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 14063 | F: Documentation/filesystems/xfs.txt |
| 14064 | F: fs/xfs/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14065 | |
danborkmann@iogearbox.net | 8a3b7a2 | 2012-01-19 00:39:31 +0000 | [diff] [blame] | 14066 | XILINX AXI ETHERNET DRIVER |
Michal Simek | 59a54f3 | 2012-04-12 01:11:12 +0000 | [diff] [blame] | 14067 | M: Anirudha Sarangi <anirudh@xilinx.com> |
| 14068 | M: John Linn <John.Linn@xilinx.com> |
danborkmann@iogearbox.net | 8a3b7a2 | 2012-01-19 00:39:31 +0000 | [diff] [blame] | 14069 | S: Maintained |
| 14070 | F: drivers/net/ethernet/xilinx/xilinx_axienet* |
| 14071 | |
Peter Korsgaard | 238b872 | 2006-12-06 20:35:17 -0800 | [diff] [blame] | 14072 | XILINX UARTLITE SERIAL DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 14073 | M: Peter Korsgaard <jacmet@sunsite.dk> |
Peter Korsgaard | 238b872 | 2006-12-06 20:35:17 -0800 | [diff] [blame] | 14074 | L: linux-serial@vger.kernel.org |
| 14075 | S: Maintained |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 14076 | F: drivers/tty/serial/uartlite.c |
Peter Korsgaard | 238b872 | 2006-12-06 20:35:17 -0800 | [diff] [blame] | 14077 | |
Laurent Pinchart | df33051 | 2013-05-15 11:36:19 -0300 | [diff] [blame] | 14078 | XILINX VIDEO IP CORES |
| 14079 | M: Hyun Kwon <hyun.kwon@xilinx.com> |
| 14080 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 14081 | L: linux-media@vger.kernel.org |
| 14082 | T: git git://linuxtv.org/media_tree.git |
| 14083 | S: Supported |
| 14084 | F: Documentation/devicetree/bindings/media/xilinx/ |
| 14085 | F: drivers/media/platform/xilinx/ |
Laurent Pinchart | a5562f6 | 2013-05-15 11:36:56 -0300 | [diff] [blame] | 14086 | F: include/uapi/linux/xilinx-v4l2-controls.h |
Laurent Pinchart | df33051 | 2013-05-15 11:36:19 -0300 | [diff] [blame] | 14087 | |
Eli Billauer | 7431694 | 2014-09-09 09:38:01 +0300 | [diff] [blame] | 14088 | XILLYBUS DRIVER |
| 14089 | M: Eli Billauer <eli.billauer@gmail.com> |
| 14090 | L: linux-kernel@vger.kernel.org |
| 14091 | S: Supported |
| 14092 | F: drivers/char/xillybus/ |
| 14093 | |
Max Filippov | f620e4b | 2014-03-12 21:55:26 +0400 | [diff] [blame] | 14094 | XTENSA XTFPGA PLATFORM SUPPORT |
| 14095 | M: Max Filippov <jcmvbkbc@gmail.com> |
| 14096 | L: linux-xtensa@linux-xtensa.org |
| 14097 | S: Maintained |
| 14098 | F: drivers/spi/spi-xtensa-xtfpga.c |
Max Filippov | 57b7068 | 2014-12-26 20:19:38 +0300 | [diff] [blame] | 14099 | F: sound/soc/xtensa/xtfpga-i2s.c |
Max Filippov | f620e4b | 2014-03-12 21:55:26 +0400 | [diff] [blame] | 14100 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14101 | YAM DRIVER FOR AX.25 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 14102 | M: Jean-Paul Roubelat <jpr@f6fbb.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14103 | L: linux-hams@vger.kernel.org |
| 14104 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 14105 | F: drivers/net/hamradio/yam* |
| 14106 | F: include/linux/yam.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14107 | |
Henk | af64a5e | 2005-10-12 15:02:56 +0200 | [diff] [blame] | 14108 | YEALINK PHONE DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 14109 | M: Henk Vergonet <Henk.Vergonet@gmail.com> |
Henk | af64a5e | 2005-10-12 15:02:56 +0200 | [diff] [blame] | 14110 | L: usbb2k-api-dev@nongnu.org |
| 14111 | S: Maintained |
Mauro Carvalho Chehab | e2ba573 | 2017-04-04 17:51:04 -0700 | [diff] [blame] | 14112 | F: Documentation/input/yealink.rst |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 14113 | F: drivers/input/misc/yealink.* |
Henk | af64a5e | 2005-10-12 15:02:56 +0200 | [diff] [blame] | 14114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14115 | Z8530 DRIVER FOR AX.25 |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 14116 | M: Joerg Reuter <jreuter@yaina.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14117 | W: http://yaina.de/jreuter/ |
| 14118 | W: http://www.qsl.net/dl1bke/ |
| 14119 | L: linux-hams@vger.kernel.org |
| 14120 | S: Maintained |
Joe Perches | 679655d | 2009-04-07 20:44:32 -0700 | [diff] [blame] | 14121 | F: Documentation/networking/z8530drv.txt |
| 14122 | F: drivers/net/hamradio/*scc.c |
| 14123 | F: drivers/net/hamradio/z8530.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14124 | |
Seth Jennings | 0cf31ec | 2013-07-08 16:00:05 -0700 | [diff] [blame] | 14125 | ZBUD COMPRESSED PAGE ALLOCATOR |
Seth Jennings | 0bb181c | 2016-02-02 16:57:23 -0800 | [diff] [blame] | 14126 | M: Seth Jennings <sjenning@redhat.com> |
Dan Streetman | aab4545 | 2017-01-24 15:18:57 -0800 | [diff] [blame] | 14127 | M: Dan Streetman <ddstreet@ieee.org> |
Seth Jennings | 0cf31ec | 2013-07-08 16:00:05 -0700 | [diff] [blame] | 14128 | L: linux-mm@kvack.org |
| 14129 | S: Maintained |
| 14130 | F: mm/zbud.c |
| 14131 | F: include/linux/zbud.h |
| 14132 | |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 14133 | ZD1211RW WIRELESS DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 14134 | M: Daniel Drake <dsd@gentoo.org> |
| 14135 | M: Ulrich Kunitz <kune@deine-taler.de> |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 14136 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
Johannes Berg | 724c6b3 | 2007-04-23 12:18:20 -0700 | [diff] [blame] | 14137 | L: linux-wireless@vger.kernel.org |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 14138 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
| 14139 | S: Maintained |
Kalle Valo | 6948300 | 2015-11-18 09:27:32 +0200 | [diff] [blame] | 14140 | F: drivers/net/wireless/zydas/zd1211rw/ |
Daniel Drake | 7c0c3af | 2006-07-16 13:55:17 +0100 | [diff] [blame] | 14141 | |
Antti Palosaari | a40cc81 | 2015-07-27 08:07:40 -0300 | [diff] [blame] | 14142 | ZD1301_DEMOD MEDIA DRIVER |
| 14143 | M: Antti Palosaari <crope@iki.fi> |
| 14144 | L: linux-media@vger.kernel.org |
| 14145 | W: https://linuxtv.org/ |
| 14146 | W: http://palosaari.fi/linux/ |
| 14147 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ |
| 14148 | S: Maintained |
| 14149 | F: drivers/media/dvb-frontends/zd1301_demod* |
| 14150 | |
Antti Palosaari | d4c554c | 2015-07-27 08:10:25 -0300 | [diff] [blame] | 14151 | ZD1301 MEDIA DRIVER |
| 14152 | M: Antti Palosaari <crope@iki.fi> |
| 14153 | L: linux-media@vger.kernel.org |
| 14154 | W: https://linuxtv.org/ |
| 14155 | W: http://palosaari.fi/linux/ |
| 14156 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ |
| 14157 | S: Maintained |
| 14158 | F: drivers/media/usb/dvb-usb-v2/zd1301* |
| 14159 | |
Dan Streetman | 2026302 | 2015-06-30 14:59:57 -0700 | [diff] [blame] | 14160 | ZPOOL COMPRESSED PAGE STORAGE API |
| 14161 | M: Dan Streetman <ddstreet@ieee.org> |
| 14162 | L: linux-mm@kvack.org |
| 14163 | S: Maintained |
| 14164 | F: mm/zpool.c |
| 14165 | F: include/linux/zpool.h |
| 14166 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14167 | ZR36067 VIDEO FOR LINUX DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14168 | L: mjpeg-users@lists.sourceforge.net |
Trent Piepho | f63145e | 2009-01-24 20:52:41 -0300 | [diff] [blame] | 14169 | L: linux-media@vger.kernel.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14170 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
Mauro Carvalho Chehab | a825eae | 2015-12-04 10:31:23 -0200 | [diff] [blame] | 14171 | T: hg https://linuxtv.org/hg/v4l-dvb |
Trent Piepho | f63145e | 2009-01-24 20:52:41 -0300 | [diff] [blame] | 14172 | S: Odd Fixes |
Mauro Carvalho Chehab | 90d72ac | 2012-09-15 17:59:42 -0300 | [diff] [blame] | 14173 | F: drivers/media/pci/zoran/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14174 | |
Minchan Kim | 6920f2c | 2014-01-30 15:45:56 -0800 | [diff] [blame] | 14175 | ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER |
| 14176 | M: Minchan Kim <minchan@kernel.org> |
| 14177 | M: Nitin Gupta <ngupta@vflare.org> |
Minchan Kim | 74f3037 | 2015-05-05 16:23:28 -0700 | [diff] [blame] | 14178 | R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
Minchan Kim | 6920f2c | 2014-01-30 15:45:56 -0800 | [diff] [blame] | 14179 | L: linux-kernel@vger.kernel.org |
| 14180 | S: Maintained |
| 14181 | F: drivers/block/zram/ |
| 14182 | F: Documentation/blockdev/zram.txt |
| 14183 | |
Maciej W. Rozycki | 8b4a408 | 2007-07-18 00:49:11 -0700 | [diff] [blame] | 14184 | ZS DECSTATION Z85C30 SERIAL DRIVER |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 14185 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
Maciej W. Rozycki | 8b4a408 | 2007-07-18 00:49:11 -0700 | [diff] [blame] | 14186 | S: Maintained |
Greg Kroah-Hartman | df62125 | 2011-01-13 14:47:04 -0800 | [diff] [blame] | 14187 | F: drivers/tty/serial/zs.* |
Maciej W. Rozycki | 8b4a408 | 2007-07-18 00:49:11 -0700 | [diff] [blame] | 14188 | |
Minchan Kim | eae70d0 | 2014-01-30 15:45:57 -0800 | [diff] [blame] | 14189 | ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR |
| 14190 | M: Minchan Kim <minchan@kernel.org> |
| 14191 | M: Nitin Gupta <ngupta@vflare.org> |
Sergey Senozhatsky | 41192a2 | 2015-10-22 13:32:13 -0700 | [diff] [blame] | 14192 | R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
Minchan Kim | eae70d0 | 2014-01-30 15:45:57 -0800 | [diff] [blame] | 14193 | L: linux-mm@kvack.org |
| 14194 | S: Maintained |
| 14195 | F: mm/zsmalloc.c |
| 14196 | F: include/linux/zsmalloc.h |
Minchan Kim | d02be50 | 2015-04-15 16:15:46 -0700 | [diff] [blame] | 14197 | F: Documentation/vm/zsmalloc.txt |
Minchan Kim | eae70d0 | 2014-01-30 15:45:57 -0800 | [diff] [blame] | 14198 | |
Seth Jennings | 0cf31ec | 2013-07-08 16:00:05 -0700 | [diff] [blame] | 14199 | ZSWAP COMPRESSED SWAP CACHING |
Seth Jennings | 0bb181c | 2016-02-02 16:57:23 -0800 | [diff] [blame] | 14200 | M: Seth Jennings <sjenning@redhat.com> |
Dan Streetman | 534c9dc | 2017-01-24 15:18:55 -0800 | [diff] [blame] | 14201 | M: Dan Streetman <ddstreet@ieee.org> |
Seth Jennings | 0cf31ec | 2013-07-08 16:00:05 -0700 | [diff] [blame] | 14202 | L: linux-mm@kvack.org |
| 14203 | S: Maintained |
| 14204 | F: mm/zswap.c |
| 14205 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14206 | THE REST |
Joe Perches | 8b58be8 | 2009-07-29 15:04:30 -0700 | [diff] [blame] | 14207 | M: Linus Torvalds <torvalds@linux-foundation.org> |
Joe Perches | 34d03cc | 2009-06-16 15:34:06 -0700 | [diff] [blame] | 14208 | L: linux-kernel@vger.kernel.org |
Joe Perches | 8a6e253 | 2010-03-05 13:43:11 -0800 | [diff] [blame] | 14209 | Q: http://patchwork.kernel.org/project/LKML/list/ |
Tracey Dent | d16adea | 2011-08-11 02:59:00 -0400 | [diff] [blame] | 14210 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14211 | S: Buried alive in reporters |
Joe Perches | 34d03cc | 2009-06-16 15:34:06 -0700 | [diff] [blame] | 14212 | F: * |
| 14213 | F: */ |