]>
Commit | Line | Data |
---|---|---|
1da177e4 | 1 | |
cc8f9b99 | 2 | |
1da177e4 LT |
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 | |
0a920b5b AW |
34 | generalized kernel feature ready for next time. |
35 | ||
36 | PLEASE check your patch with the automated style checker | |
6f9e2456 | 37 | (scripts/checkpatch.pl) to catch trivial style violations. |
8c27ceff | 38 | See Documentation/process/coding-style.rst for guidance here. |
1da177e4 | 39 | |
f70f873b JP |
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. | |
8c27ceff | 44 | See Documentation/process/submitting-patches.rst for details. |
f70f873b | 45 | |
1da177e4 LT |
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 | ||
c9ee133b | 53 | PLEASE remember that submissions must be made under the terms |
08602d74 SH |
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 | |
8c27ceff | 57 | Documentation/process/submitting-patches.rst. |
c9ee133b | 58 | |
1da177e4 LT |
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 | ||
c9ee133b AC |
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. | |
1da177e4 | 68 | |
c7c4fb18 JP |
69 | Descriptions of section entries: |
70 | ||
71 | P: Person (obsolete) | |
72 | M: Mail patches to: FullName <address@domain> | |
eafbaac3 PM |
73 | R: Designated reviewer: FullName <address@domain> |
74 | These reviewers should be CCed on patches. | |
c7c4fb18 JP |
75 | L: Mailing list that is relevant to this area |
76 | W: Web-page with status/info | |
2de2bd95 JN |
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. | |
57599f9b JN |
79 | C: URI for chat protocol, server and channel where developers |
80 | usually hang out, for example irc://server/channel. | |
8a6e2535 | 81 | Q: Patchwork web based patch tracking system site |
cea8321c JP |
82 | T: SCM tree type and location. |
83 | Type is one of: git, hg, quilt, stgit, topgit | |
68656443 | 84 | B: Bug tracking system location. |
c7c4fb18 JP |
85 | S: Status, one of the following: |
86 | Supported: Someone is actually paid to look after this. | |
87 | Maintained: Someone actually looks after it. | |
88 | Odd Fixes: It has a maintainer but they don't have time to do | |
89 | much other than throw the odd patch in. See below.. | |
90 | Orphan: No current maintainer [but maybe you could take the | |
91 | role as you write your new code]. | |
92 | Obsolete: Old code. Something tagged obsolete generally means | |
93 | it has been replaced by a better system and you | |
94 | should be using that. | |
95 | F: Files and directories with wildcard patterns. | |
96 | A trailing slash includes all files and subdirectory files. | |
97 | F: drivers/net/ all files in and below drivers/net | |
98 | F: drivers/net/* all files in drivers/net, but not below | |
99 | F: */net/* all files in "any top level directory"/net | |
100 | One pattern per line. Multiple F: lines acceptable. | |
bbbe96ed SW |
101 | N: Files and directories with regex patterns. |
102 | N: [^a-z]tegra all files whose path contains the word tegra | |
103 | One pattern per line. Multiple N: lines acceptable. | |
6ab88e00 JP |
104 | scripts/get_maintainer.pl has different behavior for files that |
105 | match F: pattern and matches of N: patterns. By default, | |
106 | get_maintainer will not look at git log history when an F: pattern | |
107 | match occurs. When an N: match occurs, git log history is used | |
108 | to also notify the people that have git commit signatures. | |
c7c4fb18 JP |
109 | X: Files and directories that are NOT maintained, same rules as F: |
110 | Files exclusions are tested before file matches. | |
111 | Can be useful for excluding a specific subdirectory, for instance: | |
112 | F: net/ | |
113 | X: net/ipv6/ | |
114 | matches all files in and below net excluding net/ipv6/ | |
115 | K: Keyword perl extended regex pattern to match content in a | |
bbbe96ed | 116 | patch or file. For instance: |
c7c4fb18 | 117 | K: of_get_profile |
bbbe96ed | 118 | matches patches or files that contain "of_get_profile" |
c7c4fb18 | 119 | K: \b(printk|pr_(info|err))\b |
bbbe96ed SW |
120 | matches patches or files that contain one or more of the words |
121 | printk, pr_info or pr_err | |
c7c4fb18 | 122 | One regex pattern per line. Multiple K: lines acceptable. |
1da177e4 LT |
123 | |
124 | Note: For the hard of thinking, this list is meant to remain in alphabetical | |
125 | order. If you could add yourselves to it in alphabetical order that would be | |
126 | so much easier [Ed] | |
127 | ||
c7c4fb18 | 128 | Maintainers List (try to look for most precise areas first) |
1da177e4 | 129 | |
c7c4fb18 | 130 | ----------------------------------- |
679655da | 131 | |
a6d89915 | 132 | 3C59X NETWORK DRIVER |
8b58be88 | 133 | M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de> |
a6d89915 SK |
134 | L: netdev@vger.kernel.org |
135 | S: Maintained | |
679655da | 136 | F: Documentation/networking/vortex.txt |
ca7a8e85 | 137 | F: drivers/net/ethernet/3com/3c59x.c |
a6d89915 | 138 | |
1da177e4 | 139 | 3CR990 NETWORK DRIVER |
8b58be88 | 140 | M: David Dillow <dave@thedillows.org> |
979b6c13 | 141 | L: netdev@vger.kernel.org |
1da177e4 | 142 | S: Maintained |
ca7a8e85 | 143 | F: drivers/net/ethernet/3com/typhoon* |
1da177e4 | 144 | |
c4de0ceb AR |
145 | 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) |
146 | M: Adam Radford <linuxraid@lsi.com> | |
1da177e4 | 147 | L: linux-scsi@vger.kernel.org |
c4de0ceb | 148 | W: http://www.lsi.com |
1da177e4 | 149 | S: Supported |
c4de0ceb | 150 | F: drivers/scsi/3w-* |
1da177e4 LT |
151 | |
152 | 53C700 AND 53C700-66 SCSI DRIVER | |
8b58be88 | 153 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
154 | L: linux-scsi@vger.kernel.org |
155 | S: Maintained | |
679655da | 156 | F: drivers/scsi/53c700* |
1da177e4 | 157 | |
68d96dcf | 158 | 6LOWPAN GENERIC (BTLE/IEEE 802.15.4) |
aff3eaa0 | 159 | M: Alexander Aring <aar@pengutronix.de> |
6970c34c | 160 | M: Jukka Rissanen <jukka.rissanen@linux.intel.com> |
68d96dcf | 161 | L: linux-bluetooth@vger.kernel.org |
ebef9c12 | 162 | L: linux-wpan@vger.kernel.org |
68d96dcf AA |
163 | S: Maintained |
164 | F: net/6lowpan/ | |
6304f8fc | 165 | F: include/net/6lowpan.h |
ea9eb698 | 166 | F: Documentation/networking/6lowpan.txt |
68d96dcf | 167 | |
1da177e4 | 168 | 6PACK NETWORK DRIVER FOR AX.25 |
8b58be88 | 169 | M: Andreas Koensgen <ajk@comnets.uni-bremen.de> |
1da177e4 LT |
170 | L: linux-hams@vger.kernel.org |
171 | S: Maintained | |
679655da | 172 | F: drivers/net/hamradio/6pack.c |
1da177e4 | 173 | |
1da177e4 | 174 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
c8a75b34 | 175 | M: Realtek linux nic maintainers <nic_swsd@realtek.com> |
979b6c13 | 176 | L: netdev@vger.kernel.org |
1da177e4 | 177 | S: Maintained |
a8fe65b8 | 178 | F: drivers/net/ethernet/realtek/r8169.c |
1da177e4 LT |
179 | |
180 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER | |
879a5a00 | 181 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
1da177e4 | 182 | L: linux-serial@vger.kernel.org |
8ee16a1b | 183 | S: Maintained |
08deed1e | 184 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
df621252 | 185 | F: drivers/tty/serial/8250* |
679655da | 186 | F: include/linux/serial_8250.h |
1da177e4 LT |
187 | |
188 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] | |
979b6c13 | 189 | L: netdev@vger.kernel.org |
0cf445ce | 190 | S: Orphan / Obsolete |
644570b8 | 191 | F: drivers/net/ethernet/8390/ |
1da177e4 | 192 | |
67543e50 | 193 | 9P FILE SYSTEM |
8b58be88 JP |
194 | M: Eric Van Hensbergen <ericvh@gmail.com> |
195 | M: Ron Minnich <rminnich@sandia.gov> | |
196 | M: Latchesar Ionkov <lucho@ionkov.net> | |
ce00f85c | 197 | L: v9fs-developer@lists.sourceforge.net |
27a2a5ff | 198 | W: http://swik.net/v9fs |
8a6e2535 | 199 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
eeba444a | 200 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
ce00f85c | 201 | S: Maintained |
679655da JP |
202 | F: Documentation/filesystems/9p.txt |
203 | F: fs/9p/ | |
2315cb14 RL |
204 | F: net/9p/ |
205 | F: include/net/9p/ | |
206 | F: include/uapi/linux/virtio_9p.h | |
207 | F: include/trace/events/9p.h | |
208 | ||
67543e50 | 209 | |
91952bc0 AP |
210 | A8293 MEDIA DRIVER |
211 | M: Antti Palosaari <crope@iki.fi> | |
212 | L: linux-media@vger.kernel.org | |
a825eaec | 213 | W: https://linuxtv.org |
91952bc0 AP |
214 | W: http://palosaari.fi/linux/ |
215 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
216 | T: git git://linuxtv.org/anttip/media_tree.git | |
217 | S: Maintained | |
218 | F: drivers/media/dvb-frontends/a8293* | |
219 | ||
e2d1d6c0 | 220 | AACRAID SCSI RAID DRIVER |
2a81ffdd | 221 | M: Adaptec OEM Raid Solutions <aacraid@microsemi.com> |
e2d1d6c0 RD |
222 | L: linux-scsi@vger.kernel.org |
223 | W: http://www.adaptec.com/ | |
1da177e4 | 224 | S: Supported |
679655da JP |
225 | F: Documentation/scsi/aacraid.txt |
226 | F: drivers/scsi/aacraid/ | |
1da177e4 | 227 | |
ea8f8fc8 JT |
228 | ABI/API |
229 | L: linux-api@vger.kernel.org | |
ea8f8fc8 | 230 | F: include/linux/syscalls.h |
ea8f8fc8 JT |
231 | F: kernel/sys_ni.c |
232 | ||
249e3c85 | 233 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
93d0cc58 | 234 | M: Hans de Goede <hdegoede@redhat.com> |
968ce1b1 | 235 | L: linux-hwmon@vger.kernel.org |
f2b84bbc | 236 | S: Maintained |
679655da | 237 | F: drivers/hwmon/abituguru.c |
f2b84bbc | 238 | |
249e3c85 | 239 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
8b58be88 | 240 | M: Alistair John Strachan <alistair@devzero.co.uk> |
968ce1b1 | 241 | L: linux-hwmon@vger.kernel.org |
249e3c85 | 242 | S: Maintained |
679655da | 243 | F: drivers/hwmon/abituguru3.c |
249e3c85 | 244 | |
1b06d64f WBG |
245 | ACCES 104-DIO-48E GPIO DRIVER |
246 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
247 | L: linux-gpio@vger.kernel.org | |
248 | S: Maintained | |
249 | F: drivers/gpio/gpio-104-dio-48e.c | |
250 | ||
6ddcf9b4 WBG |
251 | ACCES 104-IDI-48 GPIO DRIVER |
252 | M: "William Breathitt Gray" <vilhelm.gray@gmail.com> | |
253 | L: linux-gpio@vger.kernel.org | |
254 | S: Maintained | |
255 | F: drivers/gpio/gpio-104-idi-48.c | |
256 | ||
e2558989 WBG |
257 | ACCES 104-IDIO-16 GPIO DRIVER |
258 | M: "William Breathitt Gray" <vilhelm.gray@gmail.com> | |
259 | L: linux-gpio@vger.kernel.org | |
260 | S: Maintained | |
261 | F: drivers/gpio/gpio-104-idio-16.c | |
262 | ||
28e5d3bb WBG |
263 | ACCES 104-QUAD-8 IIO DRIVER |
264 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
265 | L: linux-iio@vger.kernel.org | |
266 | S: Maintained | |
267 | F: drivers/iio/counter/104-quad-8.c | |
268 | ||
1da177e4 | 269 | ACENIC DRIVER |
8b58be88 | 270 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
271 | L: linux-acenic@sunsite.dk |
272 | S: Maintained | |
531c4f89 | 273 | F: drivers/net/ethernet/alteon/acenic* |
1da177e4 | 274 | |
e86435eb | 275 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 276 | M: Peter Feuerer <peter@piie.net> |
d0944853 | 277 | L: platform-driver-x86@vger.kernel.org |
4fc26e36 JP |
278 | W: http://piie.net/?section=acerhdf |
279 | S: Maintained | |
280 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 281 | |
745a5d21 | 282 | ACER WMI LAPTOP EXTRAS |
182ae55c | 283 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 284 | L: platform-driver-x86@vger.kernel.org |
745a5d21 | 285 | S: Maintained |
679655da | 286 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 287 | |
1da177e4 | 288 | ACPI |
9c3646d1 | 289 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 290 | M: Len Brown <lenb@kernel.org> |
6968e50c | 291 | L: linux-acpi@vger.kernel.org |
360818b8 RW |
292 | W: https://01.org/linux-acpi |
293 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
294 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
68656443 | 295 | B: https://bugzilla.kernel.org |
8b59a454 | 296 | S: Supported |
679655da JP |
297 | F: drivers/acpi/ |
298 | F: drivers/pnp/pnpacpi/ | |
299 | F: include/linux/acpi.h | |
43368e74 | 300 | F: include/acpi/ |
3a75ef0c | 301 | F: Documentation/acpi/ |
89ca78a0 | 302 | F: Documentation/ABI/testing/sysfs-bus-acpi |
0bf54fcd | 303 | F: Documentation/ABI/testing/configfs-acpi |
15fd830d BH |
304 | F: drivers/pci/*acpi* |
305 | F: drivers/pci/*/*acpi* | |
306 | F: drivers/pci/*/*/*acpi* | |
3a75ef0c | 307 | F: tools/power/acpi/ |
8b59a454 | 308 | |
3774929d RW |
309 | ACPI COMPONENT ARCHITECTURE (ACPICA) |
310 | M: Robert Moore <robert.moore@intel.com> | |
311 | M: Lv Zheng <lv.zheng@intel.com> | |
9c3646d1 | 312 | M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> |
3774929d RW |
313 | L: linux-acpi@vger.kernel.org |
314 | L: devel@acpica.org | |
315 | W: https://acpica.org/ | |
316 | W: https://github.com/acpica/acpica/ | |
317 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
318 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
68656443 RW |
319 | B: https://bugzilla.kernel.org |
320 | B: https://bugs.acpica.org | |
3774929d RW |
321 | S: Supported |
322 | F: drivers/acpi/acpica/ | |
323 | F: include/acpi/ | |
2754c447 | 324 | F: tools/power/acpi/ |
3774929d | 325 | |
8b59a454 | 326 | ACPI FAN DRIVER |
8b58be88 | 327 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 328 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 329 | W: https://01.org/linux-acpi |
68656443 | 330 | B: https://bugzilla.kernel.org |
8b59a454 | 331 | S: Supported |
679655da | 332 | F: drivers/acpi/fan.c |
1da177e4 | 333 | |
daeb2016 LP |
334 | ACPI FOR ARM64 (ACPI/arm64) |
335 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
336 | M: Hanjun Guo <hanjun.guo@linaro.org> | |
337 | M: Sudeep Holla <sudeep.holla@arm.com> | |
338 | L: linux-acpi@vger.kernel.org | |
339 | S: Maintained | |
340 | F: drivers/acpi/arm64 | |
341 | ||
8b59a454 | 342 | ACPI THERMAL DRIVER |
8b58be88 | 343 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 344 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 345 | W: https://01.org/linux-acpi |
68656443 | 346 | B: https://bugzilla.kernel.org |
8b59a454 | 347 | S: Supported |
679655da | 348 | F: drivers/acpi/*thermal* |
998be20f | 349 | |
359acec8 | 350 | ACPI VIDEO DRIVER |
8b58be88 | 351 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 352 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 353 | W: https://01.org/linux-acpi |
68656443 | 354 | B: https://bugzilla.kernel.org |
8b59a454 | 355 | S: Supported |
86f98a3a | 356 | F: drivers/acpi/acpi_video.c |
998be20f | 357 | |
bff431e4 | 358 | ACPI WMI DRIVER |
d0944853 | 359 | L: platform-driver-x86@vger.kernel.org |
5b927259 | 360 | S: Orphan |
679655da | 361 | F: drivers/platform/x86/wmi.c |
bff431e4 | 362 | |
2f39d519 | 363 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 364 | M: Thibaut Varene <T-Bone@parisc-linux.org> |
795fb7e7 JD |
365 | W: http://wiki.parisc-linux.org/AD1889 |
366 | L: linux-parisc@vger.kernel.org | |
367 | S: Maintained | |
679655da | 368 | F: sound/pci/ad1889.* |
2f39d519 | 369 | |
527a1a83 MH |
370 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
371 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 372 | W: http://wiki.analog.com/AD5254 |
a4edbc10 | 373 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
374 | S: Supported |
375 | F: drivers/misc/ad525x_dpot.c | |
376 | ||
377 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
378 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 379 | W: http://wiki.analog.com/AD5398 |
a4edbc10 | 380 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
381 | S: Supported |
382 | F: drivers/regulator/ad5398.c | |
383 | ||
384 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
385 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 386 | W: http://wiki.analog.com/AD7142 |
a4edbc10 | 387 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
388 | S: Supported |
389 | F: drivers/input/misc/ad714x.c | |
390 | ||
391 | AD7877 TOUCHSCREEN DRIVER | |
392 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 393 | W: http://wiki.analog.com/AD7877 |
a4edbc10 | 394 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
395 | S: Supported |
396 | F: drivers/input/touchscreen/ad7877.c | |
397 | ||
398 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
399 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 400 | W: http://wiki.analog.com/AD7879 |
a4edbc10 | 401 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
402 | S: Supported |
403 | F: drivers/input/touchscreen/ad7879.c | |
404 | ||
1330b0dc | 405 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
e5f6450c | 406 | M: Jiri Kosina <jikos@kernel.org> |
1330b0dc JK |
407 | S: Maintained |
408 | ||
7302b9d9 MH |
409 | ADF7242 IEEE 802.15.4 RADIO DRIVER |
410 | M: Michael Hennerich <michael.hennerich@analog.com> | |
411 | W: https://wiki.analog.com/ADF7242 | |
412 | W: http://ez.analog.com/community/linux-device-drivers | |
413 | L: linux-wpan@vger.kernel.org | |
414 | S: Supported | |
415 | F: drivers/net/ieee802154/adf7242.c | |
416 | F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt | |
417 | ||
1da177e4 | 418 | ADM1025 HARDWARE MONITOR DRIVER |
d8130624 | 419 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 420 | L: linux-hwmon@vger.kernel.org |
1da177e4 | 421 | S: Maintained |
679655da JP |
422 | F: Documentation/hwmon/adm1025 |
423 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 424 | |
cae2caae | 425 | ADM1029 HARDWARE MONITOR DRIVER |
fce8ffa3 | 426 | M: Corentin Labbe <clabbe.montjoie@gmail.com> |
968ce1b1 | 427 | L: linux-hwmon@vger.kernel.org |
cae2caae | 428 | S: Maintained |
679655da | 429 | F: drivers/hwmon/adm1029.c |
cae2caae | 430 | |
cc0b88cf | 431 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 432 | L: linux-wireless@vger.kernel.org |
491b26b4 | 433 | W: http://wireless.kernel.org/ |
e71bcbd0 | 434 | S: Orphan |
d4a17304 | 435 | F: drivers/net/wireless/admtek/adm8211.* |
cc0b88cf | 436 | |
e8e31622 SA |
437 | ADP1653 FLASH CONTROLLER DRIVER |
438 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
439 | L: linux-media@vger.kernel.org | |
440 | S: Maintained | |
441 | F: drivers/media/i2c/adp1653.c | |
b5dcee22 | 442 | F: include/media/i2c/adp1653.h |
e8e31622 | 443 | |
527a1a83 MH |
444 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
445 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 446 | W: http://wiki.analog.com/ADP5520 |
a4edbc10 | 447 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
448 | S: Supported |
449 | F: drivers/mfd/adp5520.c | |
450 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 451 | F: drivers/leds/leds-adp5520.c |
77278d50 | 452 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
453 | F: drivers/input/keyboard/adp5520-keys.c |
454 | ||
455 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
456 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 457 | W: http://wiki.analog.com/ADP5588 |
a4edbc10 | 458 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
459 | S: Supported |
460 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 461 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
462 | |
463 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
464 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 465 | W: http://wiki.analog.com/ADP8860 |
a4edbc10 | 466 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
467 | S: Supported |
468 | F: drivers/video/backlight/adp8860_bl.c | |
469 | ||
8c22a8f5 DE |
470 | ADS1015 HARDWARE MONITOR DRIVER |
471 | M: Dirk Eibach <eibach@gdsys.de> | |
968ce1b1 | 472 | L: linux-hwmon@vger.kernel.org |
8c22a8f5 DE |
473 | S: Maintained |
474 | F: Documentation/hwmon/ads1015 | |
475 | F: drivers/hwmon/ads1015.c | |
476 | F: include/linux/i2c/ads1015.h | |
477 | ||
1da177e4 | 478 | ADT746X FAN DRIVER |
8b58be88 | 479 | M: Colin Leroy <colin@colino.net> |
1da177e4 | 480 | S: Maintained |
679655da | 481 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 482 | |
b058b859 | 483 | ADT7475 HARDWARE MONITOR DRIVER |
d8130624 | 484 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 485 | L: linux-hwmon@vger.kernel.org |
b058b859 JD |
486 | S: Maintained |
487 | F: Documentation/hwmon/adt7475 | |
488 | F: drivers/hwmon/adt7475.c | |
489 | ||
527a1a83 MH |
490 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
491 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 492 | W: http://wiki.analog.com/ADXL345 |
a4edbc10 | 493 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
494 | S: Supported |
495 | F: drivers/input/misc/adxl34x.c | |
496 | ||
8c6af9e1 | 497 | ADVANSYS SCSI DRIVER |
8b58be88 | 498 | M: Matthew Wilcox <matthew@wil.cx> |
d8130624 | 499 | M: Hannes Reinecke <hare@suse.com> |
8c6af9e1 MW |
500 | L: linux-scsi@vger.kernel.org |
501 | S: Maintained | |
679655da JP |
502 | F: Documentation/scsi/advansys.txt |
503 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 504 | |
1da177e4 | 505 | AEDSP16 DRIVER |
8b58be88 | 506 | M: Riccardo Facchetti <fizban@tin.it> |
1da177e4 | 507 | S: Maintained |
679655da | 508 | F: sound/oss/aedsp16.c |
1da177e4 | 509 | |
91952bc0 AP |
510 | AF9013 MEDIA DRIVER |
511 | M: Antti Palosaari <crope@iki.fi> | |
512 | L: linux-media@vger.kernel.org | |
a825eaec | 513 | W: https://linuxtv.org |
91952bc0 AP |
514 | W: http://palosaari.fi/linux/ |
515 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
516 | T: git git://linuxtv.org/anttip/media_tree.git | |
517 | S: Maintained | |
518 | F: drivers/media/dvb-frontends/af9013* | |
519 | ||
520 | AF9033 MEDIA DRIVER | |
521 | M: Antti Palosaari <crope@iki.fi> | |
522 | L: linux-media@vger.kernel.org | |
a825eaec | 523 | W: https://linuxtv.org |
91952bc0 AP |
524 | W: http://palosaari.fi/linux/ |
525 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
526 | T: git git://linuxtv.org/anttip/media_tree.git | |
527 | S: Maintained | |
528 | F: drivers/media/dvb-frontends/af9033* | |
529 | ||
1da177e4 | 530 | AFFS FILE SYSTEM |
6cf515e1 GU |
531 | L: linux-fsdevel@vger.kernel.org |
532 | S: Orphan | |
679655da JP |
533 | F: Documentation/filesystems/affs.txt |
534 | F: fs/affs/ | |
1da177e4 | 535 | |
e2d1d6c0 | 536 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 537 | M: David Howells <dhowells@redhat.com> |
e2d1d6c0 RD |
538 | L: linux-afs@lists.infradead.org |
539 | S: Supported | |
679655da JP |
540 | F: fs/afs/ |
541 | F: include/net/af_rxrpc.h | |
542 | F: net/rxrpc/af_rxrpc.c | |
e2d1d6c0 | 543 | |
1da177e4 | 544 | AGPGART DRIVER |
8b58be88 | 545 | M: David Airlie <airlied@linux.ie> |
878eaf61 | 546 | T: git git://people.freedesktop.org/~airlied/linux (part of drm maint) |
1da177e4 | 547 | S: Maintained |
679655da JP |
548 | F: drivers/char/agp/ |
549 | F: include/linux/agp* | |
c117ab84 | 550 | F: include/uapi/linux/agp* |
1da177e4 LT |
551 | |
552 | AHA152X SCSI DRIVER | |
8b58be88 | 553 | M: "Juergen E. Fischer" <fischer@norbit.de> |
1da177e4 LT |
554 | L: linux-scsi@vger.kernel.org |
555 | S: Maintained | |
679655da JP |
556 | F: drivers/scsi/aha152x* |
557 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 558 | |
64624d4f | 559 | AIC7XXX / AIC79XX SCSI DRIVER |
d8130624 | 560 | M: Hannes Reinecke <hare@suse.com> |
64624d4f | 561 | L: linux-scsi@vger.kernel.org |
1da177e4 | 562 | S: Maintained |
679655da | 563 | F: drivers/scsi/aic7xxx/ |
1da177e4 | 564 | |
450500ad HV |
565 | AIMSLAB FM RADIO RECEIVER DRIVER |
566 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
567 | L: linux-media@vger.kernel.org | |
568 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 569 | W: https://linuxtv.org |
450500ad HV |
570 | S: Maintained |
571 | F: drivers/media/radio/radio-aimslab* | |
572 | ||
e2d1d6c0 | 573 | AIO |
8b58be88 | 574 | M: Benjamin LaHaise <bcrl@kvack.org> |
e2d1d6c0 RD |
575 | L: linux-aio@kvack.org |
576 | S: Supported | |
679655da JP |
577 | F: fs/aio.c |
578 | F: include/linux/*aio*.h | |
e2d1d6c0 | 579 | |
469d4ec8 AP |
580 | AIRSPY MEDIA DRIVER |
581 | M: Antti Palosaari <crope@iki.fi> | |
582 | L: linux-media@vger.kernel.org | |
a825eaec | 583 | W: https://linuxtv.org |
469d4ec8 AP |
584 | W: http://palosaari.fi/linux/ |
585 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
586 | T: git git://linuxtv.org/anttip/media_tree.git | |
587 | S: Maintained | |
588 | F: drivers/media/usb/airspy/ | |
589 | ||
b9567027 LS |
590 | ALACRITECH GIGABIT ETHERNET DRIVER |
591 | M: Lino Sanfilippo <LinoSanfilippo@gmx.de> | |
592 | S: Maintained | |
593 | F: drivers/net/ethernet/alacritech/* | |
594 | ||
1da177e4 | 595 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 596 | M: Duncan Sands <duncan.sands@free.fr> |
6372594a | 597 | L: linux-usb@vger.kernel.org |
1da177e4 LT |
598 | W: http://www.linux-usb.org/SpeedTouch/ |
599 | S: Maintained | |
679655da JP |
600 | F: drivers/usb/atm/speedtch.c |
601 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 602 | |
272f133a | 603 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 604 | M: Manuel Lauss <manuel.lauss@gmail.com> |
08fcb720 | 605 | S: Maintained |
679655da | 606 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 607 | |
4a4e5787 | 608 | ALI1563 I2C DRIVER |
8b58be88 | 609 | M: Rudolf Marek <r.marek@assembler.cz> |
846557d3 | 610 | L: linux-i2c@vger.kernel.org |
4a4e5787 | 611 | S: Maintained |
679655da JP |
612 | F: Documentation/i2c/busses/i2c-ali1563 |
613 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 614 | |
bc368798 LC |
615 | ALLWINNER SECURITY SYSTEM |
616 | M: Corentin Labbe <clabbe.montjoie@gmail.com> | |
617 | L: linux-crypto@vger.kernel.org | |
618 | S: Maintained | |
619 | F: drivers/crypto/sunxi-ss/ | |
620 | ||
1da177e4 | 621 | ALPHA PORT |
8b58be88 | 622 | M: Richard Henderson <rth@twiddle.net> |
8b58be88 | 623 | M: Ivan Kokshaysky <ink@jurassic.park.msu.ru> |
abd4d609 | 624 | M: Matt Turner <mattst88@gmail.com> |
c89f4f9a | 625 | S: Odd Fixes |
a9406699 | 626 | L: linux-alpha@vger.kernel.org |
679655da | 627 | F: arch/alpha/ |
1da177e4 | 628 | |
30172936 PR |
629 | ALPS PS/2 TOUCHPAD DRIVER |
630 | R: Pali Rohár <pali.rohar@gmail.com> | |
631 | F: drivers/input/mouse/alps.* | |
632 | ||
f62092f6 LFT |
633 | ALTERA MAILBOX DRIVER |
634 | M: Ley Foon Tan <lftan@altera.com> | |
635 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
636 | S: Maintained | |
637 | F: drivers/mailbox/mailbox-altera.c | |
638 | ||
c5abbba9 THL |
639 | ALTERA PIO DRIVER |
640 | M: Tien Hock Loh <thloh@altera.com> | |
641 | L: linux-gpio@vger.kernel.org | |
642 | S: Maintained | |
643 | F: drivers/gpio/gpio-altera.c | |
644 | ||
8ce064bf TT |
645 | ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT |
646 | M: Thor Thayer <tthayer@opensource.altera.com> | |
647 | S: Maintained | |
648 | F: drivers/gpio/gpio-altera-a10sr.c | |
649 | F: drivers/mfd/altera-a10sr.c | |
650 | F: include/linux/mfd/altera-a10sr.h | |
651 | ||
16b8b922 | 652 | ALTERA TRIPLE SPEED ETHERNET DRIVER |
c53fed07 | 653 | M: Vince Bridgers <vbridger@opensource.altera.com> |
16b8b922 VB |
654 | L: netdev@vger.kernel.org |
655 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
656 | S: Maintained | |
657 | F: drivers/net/ethernet/altera/ | |
658 | ||
adf9251f TK |
659 | ALTERA UART/JTAG UART SERIAL DRIVERS |
660 | M: Tobias Klauser <tklauser@distanz.ch> | |
661 | L: linux-serial@vger.kernel.org | |
61bd0943 | 662 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
adf9251f TK |
663 | S: Maintained |
664 | F: drivers/tty/serial/altera_uart.c | |
665 | F: drivers/tty/serial/altera_jtaguart.c | |
666 | F: include/linux/altera_uart.h | |
667 | F: include/linux/altera_jtaguart.h | |
668 | ||
1738cd3e NB |
669 | AMAZON ETHERNET DRIVERS |
670 | M: Netanel Belgazal <netanel@annapurnalabs.com> | |
671 | R: Saeed Bishara <saeed@annapurnalabs.com> | |
672 | R: Zorik Machulsky <zorik@annapurnalabs.com> | |
673 | L: netdev@vger.kernel.org | |
674 | S: Supported | |
675 | F: Documentation/networking/ena.txt | |
676 | F: drivers/net/ethernet/amazon/ | |
677 | ||
f4875e12 TL |
678 | AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER |
679 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
29e9330f | 680 | M: Gary Hook <gary.hook@amd.com> |
f4875e12 TL |
681 | L: linux-crypto@vger.kernel.org |
682 | S: Supported | |
683 | F: drivers/crypto/ccp/ | |
684 | F: include/linux/ccp.h | |
685 | ||
512d1027 | 686 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
96818b58 | 687 | M: Huang Rui <ray.huang@amd.com> |
968ce1b1 | 688 | L: linux-hwmon@vger.kernel.org |
96818b58 | 689 | S: Supported |
512d1027 AH |
690 | F: Documentation/hwmon/fam15h_power |
691 | F: drivers/hwmon/fam15h_power.c | |
692 | ||
167a675a | 693 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
67d76710 | 694 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
b4731977 | 695 | S: Orphan |
faf2e1db | 696 | F: drivers/usb/gadget/udc/amd5536udc.* |
167a675a | 697 | |
f90b8116 | 698 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 699 | P: Andres Salomon <dilinger@queued.net> |
67d76710 | 700 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
f90b8116 JC |
701 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
702 | S: Supported | |
679655da JP |
703 | F: drivers/char/hw_random/geode-rng.c |
704 | F: drivers/crypto/geode* | |
8a61f013 | 705 | F: drivers/video/fbdev/geode/ |
679655da | 706 | F: arch/x86/include/asm/geode.h |
f90b8116 | 707 | |
919ee7dd | 708 | AMD IOMMU (AMD-VI) |
e4110568 | 709 | M: Joerg Roedel <joro@8bytes.org> |
919ee7dd | 710 | L: iommu@lists.linux-foundation.org |
525b233c | 711 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 712 | S: Maintained |
b2c16391 JP |
713 | F: drivers/iommu/amd_iommu*.[ch] |
714 | F: include/linux/amd-iommu.h | |
919ee7dd | 715 | |
16423d67 | 716 | AMD KFD |
1241e0b4 | 717 | M: Oded Gabbay <oded.gabbay@gmail.com> |
49e7d9df JP |
718 | L: dri-devel@lists.freedesktop.org |
719 | T: git git://people.freedesktop.org/~gabbayo/linux.git | |
720 | S: Supported | |
130e0371 OG |
721 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c |
722 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h | |
32c22e99 | 723 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c |
ff758a12 | 724 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c |
49e7d9df | 725 | F: drivers/gpu/drm/amd/amdkfd/ |
04df25d1 OG |
726 | F: drivers/gpu/drm/amd/include/cik_structs.h |
727 | F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h | |
ff758a12 | 728 | F: drivers/gpu/drm/amd/include/vi_structs.h |
49e7d9df JP |
729 | F: drivers/gpu/drm/radeon/radeon_kfd.c |
730 | F: drivers/gpu/drm/radeon/radeon_kfd.h | |
731 | F: include/uapi/linux/kfd_ioctl.h | |
16423d67 | 732 | |
2510eb74 SS |
733 | AMD SEATTLE DEVICE TREE SUPPORT |
734 | M: Brijesh Singh <brijeshkumar.singh@amd.com> | |
735 | M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com> | |
736 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
737 | S: Supported | |
738 | F: arch/arm64/boot/dts/amd/ | |
739 | ||
45198c7b LT |
740 | AMD XGBE DRIVER |
741 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
742 | L: netdev@vger.kernel.org | |
743 | S: Supported | |
744 | F: drivers/net/ethernet/amd/xgbe/ | |
08b8940e | 745 | F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi |
45198c7b | 746 | |
284f42b6 | 747 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 | 748 | M: Michael Hanselmann <linux-kernel@hansmi.ch> |
284f42b6 | 749 | S: Supported |
bd5f47ec | 750 | F: drivers/macintosh/ams/ |
284f42b6 | 751 | |
531fca16 HV |
752 | ANALOG DEVICES INC AD9389B DRIVER |
753 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
754 | L: linux-media@vger.kernel.org | |
755 | S: Maintained | |
756 | F: drivers/media/i2c/ad9389b* | |
757 | ||
614b4384 LPC |
758 | ANALOG DEVICES INC ADV7180 DRIVER |
759 | M: Lars-Peter Clausen <lars@metafoo.de> | |
760 | L: linux-media@vger.kernel.org | |
761 | W: http://ez.analog.com/community/linux-device-drivers | |
762 | S: Supported | |
763 | F: drivers/media/i2c/adv7180.c | |
764 | ||
c40ddfa3 HV |
765 | ANALOG DEVICES INC ADV7511 DRIVER |
766 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
767 | L: linux-media@vger.kernel.org | |
768 | S: Maintained | |
769 | F: drivers/media/i2c/adv7511* | |
770 | ||
531fca16 HV |
771 | ANALOG DEVICES INC ADV7604 DRIVER |
772 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
773 | L: linux-media@vger.kernel.org | |
774 | S: Maintained | |
775 | F: drivers/media/i2c/adv7604* | |
776 | ||
c40ddfa3 HV |
777 | ANALOG DEVICES INC ADV7842 DRIVER |
778 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
779 | L: linux-media@vger.kernel.org | |
780 | S: Maintained | |
781 | F: drivers/media/i2c/adv7842* | |
782 | ||
527a1a83 | 783 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 784 | M: Lars-Peter Clausen <lars@metafoo.de> |
4bdef3bd | 785 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a3f531ac | 786 | W: http://wiki.analog.com/ |
a4edbc10 | 787 | W: http://ez.analog.com/community/linux-device-drivers |
4bdef3bd | 788 | S: Supported |
39c9d199 | 789 | F: sound/soc/codecs/adau* |
cc52688a | 790 | F: sound/soc/codecs/adav* |
4bdef3bd | 791 | F: sound/soc/codecs/ad1* |
ae48f5ef | 792 | F: sound/soc/codecs/ad7* |
4bdef3bd | 793 | F: sound/soc/codecs/ssm* |
40216ce7 | 794 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 795 | |
527a1a83 | 796 | ANALOG DEVICES INC ASOC DRIVERS |
b3fe92b0 | 797 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
527a1a83 MH |
798 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
799 | W: http://blackfin.uclinux.org/ | |
800 | S: Supported | |
801 | F: sound/soc/blackfin/* | |
7d1f9018 | 802 | |
4ce72abc LPC |
803 | ANALOG DEVICES INC IIO DRIVERS |
804 | M: Lars-Peter Clausen <lars@metafoo.de> | |
805 | M: Michael Hennerich <Michael.Hennerich@analog.com> | |
806 | W: http://wiki.analog.com/ | |
807 | W: http://ez.analog.com/community/linux-device-drivers | |
808 | S: Supported | |
809 | F: drivers/iio/*/ad* | |
810 | X: drivers/iio/*/adjd* | |
811 | F: drivers/staging/iio/*/ad* | |
d5d4602e | 812 | F: drivers/staging/iio/trigger/iio-trig-bfin-timer.c |
527a1a83 | 813 | |
0e3b67b3 LPC |
814 | ANALOG DEVICES INC DMA DRIVERS |
815 | M: Lars-Peter Clausen <lars@metafoo.de> | |
816 | W: http://ez.analog.com/community/linux-device-drivers | |
817 | S: Supported | |
818 | F: drivers/dma/dma-axi-dmac.c | |
819 | ||
27eb6622 RH |
820 | ANDROID CONFIG FRAGMENTS |
821 | M: Rob Herring <robh@kernel.org> | |
822 | S: Supported | |
823 | F: kernel/configs/android* | |
824 | ||
41c9e95d GK |
825 | ANDROID DRIVERS |
826 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
27682407 | 827 | M: Arve Hjønnevåg <arve@android.com> |
41c9e95d | 828 | M: Riley Andrews <riandrews@android.com> |
0e4a566b | 829 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
41c9e95d GK |
830 | L: devel@driverdev.osuosl.org |
831 | S: Supported | |
832 | F: drivers/android/ | |
833 | F: drivers/staging/android/ | |
834 | ||
d03c023e LA |
835 | ANDROID ION DRIVER |
836 | M: Laura Abbott <labbott@redhat.com> | |
837 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
838 | L: devel@driverdev.osuosl.org | |
839 | S: Supported | |
e9d766b9 | 840 | F: Documentation/devicetree/bindings/staging/ion/ |
d03c023e LA |
841 | F: drivers/staging/android/ion |
842 | F: drivers/staging/android/uapi/ion.h | |
843 | F: drivers/staging/android/uapi/ion_test.h | |
844 | ||
42269063 | 845 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 846 | M: Johannes Berg <johannes@sipsolutions.net> |
a4724ed6 | 847 | L: linuxppc-dev@lists.ozlabs.org |
93711660 | 848 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
42269063 | 849 | S: Maintained |
679655da | 850 | F: sound/aoa/ |
42269063 | 851 | |
4075a283 | 852 | APEX EMBEDDED SYSTEMS STX104 IIO DRIVER |
97a445da WBG |
853 | M: William Breathitt Gray <vilhelm.gray@gmail.com> |
854 | L: linux-iio@vger.kernel.org | |
855 | S: Maintained | |
4075a283 | 856 | F: drivers/iio/adc/stx104.c |
97a445da | 857 | |
1da177e4 | 858 | APM DRIVER |
e5f6450c | 859 | M: Jiri Kosina <jikos@kernel.org> |
81024fc4 | 860 | S: Odd fixes |
9f273c24 | 861 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git |
679655da JP |
862 | F: arch/x86/kernel/apm_32.c |
863 | F: include/linux/apm_bios.h | |
c117ab84 | 864 | F: include/uapi/linux/apm_bios.h |
81024fc4 | 865 | F: drivers/char/apm-emulation.c |
1da177e4 | 866 | |
bd7aa4b2 | 867 | APPLE BCM5974 MULTITOUCH DRIVER |
75dd112a | 868 | M: Henrik Rydberg <rydberg@bitmath.org> |
bd7aa4b2 | 869 | L: linux-input@vger.kernel.org |
75dd112a | 870 | S: Odd fixes |
679655da | 871 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 872 | |
6f2fad74 | 873 | APPLE SMC DRIVER |
75dd112a | 874 | M: Henrik Rydberg <rydberg@bitmath.org> |
968ce1b1 | 875 | L: linux-hwmon@vger.kernel.org |
75dd112a | 876 | S: Odd fixes |
679655da | 877 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 878 | |
1da177e4 | 879 | APPLETALK NETWORK LAYER |
8b58be88 | 880 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
1da177e4 | 881 | S: Maintained |
679655da JP |
882 | F: drivers/net/appletalk/ |
883 | F: net/appletalk/ | |
1da177e4 | 884 | |
21c75328 DD |
885 | APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT |
886 | M: Duc Dang <dhdang@apm.com> | |
887 | S: Supported | |
888 | F: arch/arm64/boot/dts/apm/ | |
889 | ||
24299502 IS |
890 | APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER |
891 | M: Iyappan Subramanian <isubramanian@apm.com> | |
892 | M: Keyur Chudgar <kchudgar@apm.com> | |
24299502 IS |
893 | S: Supported |
894 | F: drivers/net/ethernet/apm/xgene/ | |
2efccc60 | 895 | F: drivers/net/phy/mdio-xgene.c |
24299502 | 896 | F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt |
2efccc60 | 897 | F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt |
24299502 | 898 | |
fd3a628e TN |
899 | APPLIED MICRO (APM) X-GENE SOC PMU |
900 | M: Tai Nguyen <ttnguyen@apm.com> | |
901 | S: Supported | |
902 | F: drivers/perf/xgene_pmu.c | |
903 | F: Documentation/perf/xgene-pmu.txt | |
904 | F: Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt | |
905 | ||
62a37dc7 LP |
906 | APTINA CAMERA SENSOR PLL |
907 | M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com> | |
908 | L: linux-media@vger.kernel.org | |
909 | S: Maintained | |
910 | F: drivers/media/i2c/aptina-pll.* | |
911 | ||
1154ea7d | 912 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 913 | M: Jaya Kumar <jayalk@intworks.biz> |
1154ea7d | 914 | S: Maintained |
8a61f013 JH |
915 | F: drivers/video/fbdev/arcfb.c |
916 | F: drivers/video/fbdev/core/fb_defio.c | |
1154ea7d | 917 | |
c38f6ac7 MG |
918 | ARCNET NETWORK LAYER |
919 | M: Michael Grzeschik <m.grzeschik@pengutronix.de> | |
920 | L: netdev@vger.kernel.org | |
921 | S: Maintained | |
922 | F: drivers/net/arcnet/ | |
923 | F: include/uapi/linux/if_arcnet.h | |
924 | ||
71d298ce AB |
925 | ARC PGU DRM DRIVER |
926 | M: Alexey Brodkin <abrodkin@synopsys.com> | |
927 | S: Supported | |
928 | F: drivers/gpu/drm/arc/ | |
929 | F: Documentation/devicetree/bindings/display/snps,arcpgu.txt | |
930 | ||
588deb61 MR |
931 | ARM ARCHITECTED TIMER DRIVER |
932 | M: Mark Rutland <mark.rutland@arm.com> | |
933 | M: Marc Zyngier <marc.zyngier@arm.com> | |
934 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
935 | S: Maintained | |
936 | F: arch/arm/include/asm/arch_timer.h | |
937 | F: arch/arm64/include/asm/arch_timer.h | |
938 | F: drivers/clocksource/arm_arch_timer.c | |
939 | ||
c5a906a5 LD |
940 | ARM HDLCD DRM DRIVER |
941 | M: Liviu Dudau <liviu.dudau@arm.com> | |
942 | S: Supported | |
59ba2422 | 943 | F: drivers/gpu/drm/arm/hdlcd_* |
c5a906a5 LD |
944 | F: Documentation/devicetree/bindings/display/arm,hdlcd.txt |
945 | ||
59ba2422 LD |
946 | ARM MALI-DP DRM DRIVER |
947 | M: Liviu Dudau <liviu.dudau@arm.com> | |
948 | M: Brian Starkey <brian.starkey@arm.com> | |
949 | M: Mali DP Maintainers <malidp@foss.arm.com> | |
950 | S: Supported | |
951 | F: drivers/gpu/drm/arm/ | |
952 | F: Documentation/devicetree/bindings/display/arm,malidp.txt | |
953 | ||
1da177e4 | 954 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 955 | M: Ian Molton <spyro@f2s.com> |
1da177e4 | 956 | S: Maintained |
679655da JP |
957 | F: arch/arm/lib/floppydma.S |
958 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 959 | |
6f96521f WD |
960 | ARM PMU PROFILING AND DEBUGGING |
961 | M: Will Deacon <will.deacon@arm.com> | |
55d5c4ab | 962 | M: Mark Rutland <mark.rutland@arm.com> |
6f96521f | 963 | S: Maintained |
55d5c4ab | 964 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
dd06a84b | 965 | F: arch/arm*/kernel/perf_* |
6f96521f | 966 | F: arch/arm/oprofile/common.c |
dd06a84b MR |
967 | F: arch/arm*/kernel/hw_breakpoint.c |
968 | F: arch/arm*/include/asm/hw_breakpoint.h | |
969 | F: arch/arm*/include/asm/perf_event.h | |
55d5c4ab | 970 | F: drivers/perf/* |
fa8ad788 | 971 | F: include/linux/perf/arm_pmu.h |
55d5c4ab | 972 | F: Documentation/devicetree/bindings/arm/pmu.txt |
6f96521f | 973 | |
d4275354 | 974 | ARM PORT |
54176cc6 | 975 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 976 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 977 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
978 | S: Maintained |
979 | F: arch/arm/ | |
980 | ||
d323c243 SB |
981 | ARM SUB-ARCHITECTURES |
982 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
56ca9d98 | 983 | S: Maintained |
d323c243 SB |
984 | F: arch/arm/mach-*/ |
985 | F: arch/arm/plat-*/ | |
986 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
987 | ||
cefbf4ea | 988 | ARM PRIMECELL AACI PL041 DRIVER |
54176cc6 | 989 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea RK |
990 | S: Maintained |
991 | F: sound/arm/aaci.* | |
992 | ||
993 | ARM PRIMECELL CLCD PL110 DRIVER | |
54176cc6 | 994 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea | 995 | S: Maintained |
8a61f013 | 996 | F: drivers/video/fbdev/amba-clcd.* |
cefbf4ea RK |
997 | |
998 | ARM PRIMECELL KMI PL050 DRIVER | |
54176cc6 | 999 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea RK |
1000 | S: Maintained |
1001 | F: drivers/input/serio/ambakmi.* | |
1002 | F: include/linux/amba/kmi.h | |
1003 | ||
2761f5c2 | 1004 | ARM PRIMECELL MMCI PL180/1 DRIVER |
54176cc6 | 1005 | M: Russell King <linux@armlinux.org.uk> |
08a5c9a2 | 1006 | S: Maintained |
679655da | 1007 | F: drivers/mmc/host/mmci.* |
2f748aaa | 1008 | F: include/linux/amba/mmci.h |
2761f5c2 | 1009 | |
1b4304e5 | 1010 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
54176cc6 | 1011 | M: Russell King <linux@armlinux.org.uk> |
1b4304e5 RK |
1012 | S: Maintained |
1013 | F: drivers/tty/serial/amba-pl01*.c | |
1014 | F: include/linux/amba/serial.h | |
2761f5c2 | 1015 | |
cefbf4ea | 1016 | ARM PRIMECELL BUS SUPPORT |
54176cc6 | 1017 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea RK |
1018 | S: Maintained |
1019 | F: drivers/amba/ | |
1020 | F: include/linux/amba/bus.h | |
1021 | ||
2b7a52a4 | 1022 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 1023 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1024 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1025 | S: Maintained |
1026 | ||
9c784f95 | 1027 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 1028 | M: Sergey Lapin <slapin@ossfans.org> |
efc03ecb | 1029 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9c784f95 SL |
1030 | S: Maintained |
1031 | ||
2b7a52a4 | 1032 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 1033 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1034 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1035 | S: Maintained |
1036 | ||
5c6dcd7f | 1037 | ARM/Allwinner sunXi SoC support |
1b106699 | 1038 | M: Maxime Ripard <maxime.ripard@free-electrons.com> |
5c6dcd7f | 1039 | M: Chen-Yu Tsai <wens@csie.org> |
1b106699 MR |
1040 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1041 | S: Maintained | |
5c6dcd7f | 1042 | N: sun[x456789]i |
c1efda12 | 1043 | F: arch/arm/boot/dts/ntc-gr8* |
60b0f380 MR |
1044 | |
1045 | ARM/Allwinner SoC Clock Support | |
1046 | M: Emilio López <emilio@elopez.com.ar> | |
1047 | S: Maintained | |
1048 | F: drivers/clk/sunxi/ | |
1b106699 | 1049 | |
79318452 | 1050 | ARM/Amlogic Meson SoC support |
7c1e3876 | 1051 | M: Carlo Caione <carlo@caione.org> |
6683d91c | 1052 | M: Kevin Hilman <khilman@baylibre.com> |
7c1e3876 | 1053 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
6683d91c | 1054 | L: linux-amlogic@lists.infradead.org |
79318452 | 1055 | W: http://linux-meson.com/ |
7c1e3876 | 1056 | S: Maintained |
79318452 CC |
1057 | F: arch/arm/mach-meson/ |
1058 | F: arch/arm/boot/dts/meson* | |
6683d91c KH |
1059 | F: arch/arm64/boot/dts/amlogic/ |
1060 | F: drivers/pinctrl/meson/ | |
51c5d844 | 1061 | F: drivers/mmc/host/meson* |
79318452 | 1062 | N: meson |
7c1e3876 | 1063 | |
eff506fa TZ |
1064 | ARM/Annapurna Labs ALPINE ARCHITECTURE |
1065 | M: Tsahee Zidenberg <tsahee@annapurnalabs.com> | |
a9e5547b | 1066 | M: Antoine Tenart <antoine.tenart@free-electrons.com> |
4d2bf027 | 1067 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
eff506fa TZ |
1068 | S: Maintained |
1069 | F: arch/arm/mach-alpine/ | |
a9e5547b AT |
1070 | F: arch/arm/boot/dts/alpine* |
1071 | F: arch/arm64/boot/dts/al/ | |
1072 | F: drivers/*/*alpine* | |
eff506fa | 1073 | |
5255034d LP |
1074 | ARM/ARTPEC MACHINE SUPPORT |
1075 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
1076 | M: Lars Persson <lars.persson@axis.com> | |
1077 | M: Niklas Cassel <niklas.cassel@axis.com> | |
1078 | S: Maintained | |
1079 | L: linux-arm-kernel@axis.com | |
1080 | F: arch/arm/mach-artpec | |
1081 | F: arch/arm/boot/dts/artpec6* | |
33b8ac91 | 1082 | F: drivers/clk/axis |
5255034d | 1083 | |
8c2ed9bc JS |
1084 | ARM/ASPEED MACHINE SUPPORT |
1085 | M: Joel Stanley <joel@jms.id.au> | |
1086 | S: Maintained | |
1087 | F: arch/arm/mach-aspeed/ | |
1088 | F: arch/arm/boot/dts/aspeed-* | |
1089 | F: drivers/*/*aspeed* | |
1090 | ||
8dca5ce8 | 1091 | ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT |
c1fc8675 | 1092 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
d68b35f8 | 1093 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
c1fc8675 | 1094 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
efc03ecb | 1095 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
c1fc8675 | 1096 | W: http://www.linux4sam.org |
9f273c24 | 1097 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git |
c1fc8675 NF |
1098 | S: Supported |
1099 | F: arch/arm/mach-at91/ | |
f0a0a58e | 1100 | F: include/soc/at91/ |
70e389cc MB |
1101 | F: arch/arm/boot/dts/at91*.dts |
1102 | F: arch/arm/boot/dts/at91*.dtsi | |
1103 | F: arch/arm/boot/dts/sama*.dts | |
1104 | F: arch/arm/boot/dts/sama*.dtsi | |
5f58c970 | 1105 | F: arch/arm/include/debug/at91.S |
d4a89c7d | 1106 | |
6e05dd4e BB |
1107 | ARM/ATMEL AT91 Clock Support |
1108 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
1109 | S: Maintained | |
1110 | F: drivers/clk/at91 | |
1111 | ||
986cf2e9 | 1112 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
5d3ad8a6 | 1113 | M: Rob Herring <robh@kernel.org> |
986cf2e9 RH |
1114 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1115 | S: Maintained | |
1116 | F: arch/arm/mach-highbank/ | |
e68d7c14 RH |
1117 | F: arch/arm/boot/dts/highbank.dts |
1118 | F: arch/arm/boot/dts/ecx-*.dts* | |
986cf2e9 | 1119 | |
d94f944e | 1120 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
5529c2cd | 1121 | M: Krzysztof Halasa <khalasa@piap.pl> |
d94f944e AV |
1122 | S: Maintained |
1123 | F: arch/arm/mach-cns3xxx/ | |
d94f944e | 1124 | |
4863dea3 SG |
1125 | ARM/CAVIUM THUNDER NETWORK DRIVER |
1126 | M: Sunil Goutham <sgoutham@cavium.com> | |
1127 | M: Robert Richter <rric@kernel.org> | |
1128 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1129 | S: Supported | |
322e5cc5 | 1130 | F: drivers/net/ethernet/cavium/thunder/ |
4863dea3 | 1131 | |
386ab516 AS |
1132 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
1133 | M: Alexander Shiyan <shc_work@mail.ru> | |
1134 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1135 | S: Odd Fixes | |
b8ba3874 | 1136 | N: clps711x |
386ab516 | 1137 | |
2b7a52a4 | 1138 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 1139 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
1c5454ee | 1140 | M: Ryan Mallon <rmallon@gmail.com> |
efc03ecb | 1141 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 | 1142 | S: Maintained |
d19d3667 HS |
1143 | F: arch/arm/mach-ep93xx/ |
1144 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
1145 | |
1146 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 1147 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1148 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1149 | S: Maintained |
1150 | ||
d4275354 | 1151 | ARM/CLKDEV SUPPORT |
54176cc6 | 1152 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1153 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
37417046 | 1154 | S: Maintained |
d4275354 | 1155 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 1156 | F: drivers/clk/clkdev.c |
d4275354 | 1157 | |
d48134e7 | 1158 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 1159 | M: Mike Rapoport <mike@compulab.co.il> |
efc03ecb | 1160 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
a9da4f7e RK |
1161 | S: Maintained |
1162 | ||
94150095 HF |
1163 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
1164 | M: Hubert Feurstein <hubert.feurstein@contec.at> | |
1165 | S: Maintained | |
1166 | F: arch/arm/mach-ep93xx/micro9.c | |
1167 | ||
a06ae860 PP |
1168 | ARM/CORESIGHT FRAMEWORK AND DRIVERS |
1169 | M: Mathieu Poirier <mathieu.poirier@linaro.org> | |
1170 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1171 | S: Maintained | |
01081f5a | 1172 | F: drivers/hwtracing/coresight/* |
a06ae860 PP |
1173 | F: Documentation/trace/coresight.txt |
1174 | F: Documentation/devicetree/bindings/arm/coresight.txt | |
7a25ec8e | 1175 | F: Documentation/ABI/testing/sysfs-bus-coresight-devices-* |
7e21b0d5 | 1176 | F: tools/perf/arch/arm/util/pmu.c |
a818c563 MP |
1177 | F: tools/perf/arch/arm/util/auxtrace.c |
1178 | F: tools/perf/arch/arm/util/cs-etm.c | |
1179 | F: tools/perf/arch/arm/util/cs-etm.h | |
1180 | F: tools/perf/util/cs-etm.h | |
a06ae860 | 1181 | |
1da177e4 | 1182 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 1183 | M: Richard Purdie <rpurdie@rpsys.net> |
1da177e4 LT |
1184 | S: Maintained |
1185 | ||
881a95f9 | 1186 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 1187 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 1188 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
b60e23ba | 1189 | T: git git://github.com/ulli-kroll/linux.git |
162500b3 | 1190 | S: Maintained |
f49afbb5 | 1191 | F: arch/arm/mach-gemini/ |
98a9bb5b | 1192 | F: drivers/rtc/rtc-gemini.c |
881a95f9 | 1193 | |
a990cbd8 | 1194 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
5abf58bf | 1195 | M: Barry Song <baohua@kernel.org> |
a990cbd8 | 1196 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
85529d14 | 1197 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
a990cbd8 | 1198 | S: Maintained |
e68d7c14 | 1199 | F: arch/arm/boot/dts/prima2* |
a990cbd8 | 1200 | F: arch/arm/mach-prima2/ |
4a9c44f1 | 1201 | F: drivers/clk/sirf/ |
05f30e8d | 1202 | F: drivers/clocksource/timer-prima2.c |
5833ac98 | 1203 | F: drivers/clocksource/timer-atlas7.c |
f8505ef5 | 1204 | N: [^a-z]sirf |
a990cbd8 | 1205 | |
c9d862c4 BS |
1206 | ARM/CONEXANT DIGICOLOR MACHINE SUPPORT |
1207 | M: Baruch Siach <baruch@tkos.co.il> | |
1208 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1209 | S: Maintained | |
cde137aa | 1210 | F: arch/arm/boot/dts/cx92755* |
c9d862c4 BS |
1211 | N: digicolor |
1212 | ||
d4275354 | 1213 | ARM/EBSA110 MACHINE SUPPORT |
54176cc6 | 1214 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1215 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1216 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
1217 | S: Maintained |
1218 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 1219 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 1220 | |
4721f3ce UKK |
1221 | ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT |
1222 | M: Uwe Kleine-König <kernel@pengutronix.de> | |
1223 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1224 | S: Maintained | |
1225 | N: efm32 | |
1226 | ||
a9da4f7e | 1227 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
1228 | M: Daniel Ribeiro <drwyrm@gmail.com> |
1229 | M: Stefan Schmidt <stefan@openezx.org> | |
1230 | M: Harald Welte <laforge@openezx.org> | |
d66f1886 | 1231 | L: openezx-devel@lists.openezx.org (moderated for non-subscribers) |
a9da4f7e RK |
1232 | W: http://www.openezx.org/ |
1233 | S: Maintained | |
cafc2265 SS |
1234 | T: topgit git://git.openezx.org/openezx.git |
1235 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 1236 | |
6a915af9 | 1237 | ARM/FARADAY FA526 PORT |
162500b3 | 1238 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 1239 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
162500b3 | 1240 | S: Maintained |
1fa7e547 | 1241 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 1242 | F: arch/arm/mm/*-fa* |
6a915af9 | 1243 | |
d4275354 | 1244 | ARM/FOOTBRIDGE ARCHITECTURE |
54176cc6 | 1245 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1246 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1247 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
1248 | S: Maintained |
1249 | F: arch/arm/include/asm/hardware/dec21285.h | |
1250 | F: arch/arm/mach-footbridge/ | |
1251 | ||
86183a5f | 1252 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
7609ea2a | 1253 | M: Shawn Guo <shawnguo@kernel.org> |
8b58be88 | 1254 | M: Sascha Hauer <kernel@pengutronix.de> |
b046302a | 1255 | R: Fabio Estevam <fabio.estevam@nxp.com> |
efc03ecb | 1256 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
86183a5f | 1257 | S: Maintained |
f1c12837 | 1258 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
adf79292 | 1259 | F: arch/arm/mach-imx/ |
ce515a6b | 1260 | F: arch/arm/mach-mxs/ |
2a82f95c | 1261 | F: arch/arm/boot/dts/imx* |
e5dafa22 | 1262 | F: arch/arm/configs/imx*_defconfig |
cf20968a SG |
1263 | F: drivers/clk/imx/ |
1264 | F: include/soc/imx/ | |
86183a5f | 1265 | |
142109d2 | 1266 | ARM/FREESCALE VYBRID ARM ARCHITECTURE |
7609ea2a | 1267 | M: Shawn Guo <shawnguo@kernel.org> |
142109d2 SA |
1268 | M: Sascha Hauer <kernel@pengutronix.de> |
1269 | R: Stefan Agner <stefan@agner.ch> | |
1270 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1271 | S: Maintained | |
1272 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git | |
1273 | F: arch/arm/mach-imx/*vf610* | |
1274 | F: arch/arm/boot/dts/vf* | |
1275 | ||
2b7a52a4 | 1276 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 1277 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1278 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1279 | S: Maintained |
1280 | ||
90b8fc34 | 1281 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 1282 | M: Steve Sakoman <sakoman@gmail.com> |
efc03ecb | 1283 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
90b8fc34 JK |
1284 | S: Maintained |
1285 | ||
ef47d5f0 | 1286 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 1287 | M: Philipp Zabel <philipp.zabel@gmail.com> |
12a93f32 PZ |
1288 | M: Paul Parsons <lost.distance@yahoo.com> |
1289 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
ef47d5f0 PZ |
1290 | S: Maintained |
1291 | F: arch/arm/mach-pxa/hx4700.c | |
1292 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 1293 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 1294 | |
4dfad069 WX |
1295 | ARM/HISILICON SOC SUPPORT |
1296 | M: Wei Xu <xuwei5@hisilicon.com> | |
1297 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1298 | W: http://www.hisilicon.com | |
1299 | S: Supported | |
1300 | T: git git://github.com/hisilicon/linux-hisi.git | |
1301 | F: arch/arm/mach-hisi/ | |
e68d7c14 RH |
1302 | F: arch/arm/boot/dts/hi3* |
1303 | F: arch/arm/boot/dts/hip* | |
1304 | F: arch/arm/boot/dts/hisi* | |
1305 | F: arch/arm64/boot/dts/hisilicon/ | |
4dfad069 | 1306 | |
21f37bc3 | 1307 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 1308 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
795fb7e7 JD |
1309 | W: www.jlime.com |
1310 | S: Maintained | |
084bad91 KE |
1311 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
1312 | F: arch/arm/mach-sa1100/jornada720.c | |
1313 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 1314 | |
5e767ab9 JMC |
1315 | ARM/IGEP MACHINE SUPPORT |
1316 | M: Enric Balletbo i Serra <eballetbo@gmail.com> | |
1317 | M: Javier Martinez Canillas <javier@dowhile0.org> | |
1318 | L: linux-omap@vger.kernel.org | |
1319 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1320 | S: Maintained | |
06ff74fd | 1321 | F: arch/arm/boot/dts/omap3-igep* |
5e767ab9 | 1322 | |
403d2971 MV |
1323 | ARM/INCOME PXA270 SUPPORT |
1324 | M: Marek Vasut <marek.vasut@gmail.com> | |
1325 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1326 | S: Maintained | |
ec154082 | 1327 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 1328 | |
2b7a52a4 | 1329 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 1330 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1331 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1332 | S: Maintained |
e2bdb176 DW |
1333 | |
1334 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
efc03ecb | 1335 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
08223d80 | 1336 | S: Orphan |
2b7a52a4 LB |
1337 | |
1338 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 1339 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1340 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1341 | S: Maintained |
2b7a52a4 LB |
1342 | |
1343 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 1344 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1345 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1346 | S: Maintained |
2b7a52a4 | 1347 | |
2b7a52a4 | 1348 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 1349 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1350 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1351 | S: Maintained |
1352 | ||
dfdd8cc9 KH |
1353 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
1354 | M: Imre Kaloz <kaloz@openwrt.org> | |
5529c2cd | 1355 | M: Krzysztof Halasa <khalasa@piap.pl> |
baea7b94 | 1356 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
dfdd8cc9 KH |
1357 | S: Maintained |
1358 | F: arch/arm/mach-ixp4xx/ | |
1359 | ||
838553c5 | 1360 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
1361 | M: Jonathan Cameron <jic23@cam.ac.uk> |
1362 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1363 | S: Maintained | |
1364 | F: arch/arm/mach-pxa/stargate2.c | |
1365 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
1366 | ||
2b7a52a4 | 1367 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 1368 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1369 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1370 | S: Maintained |
2b7a52a4 LB |
1371 | |
1372 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 1373 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1374 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1375 | S: Maintained |
1376 | ||
1154f858 | 1377 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
97215800 | 1378 | M: Santosh Shilimkar <ssantosh@kernel.org> |
1154f858 SS |
1379 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1380 | S: Maintained | |
1381 | F: arch/arm/mach-keystone/ | |
5edafc29 | 1382 | F: arch/arm/boot/dts/keystone-* |
317929cd | 1383 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
1154f858 | 1384 | |
bc6aa566 | 1385 | ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK |
97215800 | 1386 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1387 | L: linux-kernel@vger.kernel.org |
1388 | S: Maintained | |
1389 | F: drivers/clk/keystone/ | |
1390 | ||
1391 | ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE | |
97215800 | 1392 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1393 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1394 | L: linux-kernel@vger.kernel.org | |
1395 | S: Maintained | |
1396 | F: drivers/clocksource/timer-keystone.c | |
1397 | ||
1398 | ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER | |
97215800 | 1399 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1400 | L: linux-kernel@vger.kernel.org |
1401 | S: Maintained | |
1402 | F: drivers/power/reset/keystone-reset.c | |
1403 | ||
1404 | ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS | |
97215800 | 1405 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1406 | L: linux-kernel@vger.kernel.org |
1407 | S: Maintained | |
1408 | F: drivers/memory/*emif* | |
1409 | ||
8cb555b6 CM |
1410 | ARM/LG1K ARCHITECTURE |
1411 | M: Chanho Min <chanho.min@lge.com> | |
1412 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1413 | S: Maintained | |
1414 | F: arch/arm64/boot/dts/lg/ | |
1415 | ||
2b7a52a4 | 1416 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
8b58be88 | 1417 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1418 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1419 | S: Maintained |
1420 | ||
3143875f JE |
1421 | ARM/LPC18XX ARCHITECTURE |
1422 | M: Joachim Eastwood <manabian@gmail.com> | |
1423 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1424 | S: Maintained | |
19c1c32c JE |
1425 | F: arch/arm/boot/dts/lpc43* |
1426 | F: drivers/clk/nxp/clk-lpc18xx* | |
1427 | F: drivers/clocksource/time-lpc32xx.c | |
1428 | F: drivers/i2c/busses/i2c-lpc2k.c | |
1429 | F: drivers/memory/pl172.c | |
1430 | F: drivers/mtd/spi-nor/nxp-spifi.c | |
1431 | F: drivers/rtc/rtc-lpc24xx.c | |
3143875f JE |
1432 | N: lpc18xx |
1433 | ||
15e4f7da | 1434 | ARM/LPC32XX SOC SUPPORT |
8d5a6b42 VZ |
1435 | M: Vladimir Zapolskiy <vz@mleia.com> |
1436 | M: Sylvain Lemieux <slemieux.tyco@gmail.com> | |
15e4f7da | 1437 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
8d5a6b42 | 1438 | T: git git://github.com/vzapolskiy/linux-lpc32xx.git |
15e4f7da | 1439 | S: Maintained |
2377f9fd | 1440 | F: arch/arm/boot/dts/lpc32* |
15e4f7da | 1441 | F: arch/arm/mach-lpc32xx/ |
2377f9fd VZ |
1442 | F: drivers/i2c/busses/i2c-pnx.c |
1443 | F: drivers/net/ethernet/nxp/lpc_eth.c | |
1444 | F: drivers/usb/host/ohci-nxp.c | |
1445 | F: drivers/watchdog/pnx4008_wdt.c | |
1446 | N: lpc32xx | |
15e4f7da | 1447 | |
3b886171 | 1448 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 1449 | M: Philipp Zabel <philipp.zabel@gmail.com> |
3b886171 PZ |
1450 | S: Maintained |
1451 | ||
1f664ab7 | 1452 | ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support |
75f41273 TP |
1453 | M: Jason Cooper <jason@lakedaemon.net> |
1454 | M: Andrew Lunn <andrew@lunn.ch> | |
1455 | M: Gregory Clement <gregory.clement@free-electrons.com> | |
dcb71503 | 1456 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
75f41273 TP |
1457 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1458 | S: Maintained | |
1459 | F: arch/arm/mach-mvebu/ | |
59ec9671 | 1460 | F: drivers/rtc/rtc-armada38x.c |
31c17ac9 GC |
1461 | F: arch/arm/boot/dts/armada* |
1462 | F: arch/arm/boot/dts/kirkwood* | |
dcc3068a | 1463 | F: arch/arm64/boot/dts/marvell/armada* |
9f123def | 1464 | F: drivers/cpufreq/mvebu-cpufreq.c |
e269777f | 1465 | F: arch/arm/configs/mvebu_*_defconfig |
75f41273 | 1466 | |
40f4978b | 1467 | ARM/Marvell Berlin SoC support |
70e1a28f | 1468 | M: Jisheng Zhang <jszhang@marvell.com> |
40f4978b SH |
1469 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
1470 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1471 | S: Maintained | |
1472 | F: arch/arm/mach-berlin/ | |
31c17ac9 | 1473 | F: arch/arm/boot/dts/berlin* |
e68d7c14 | 1474 | F: arch/arm64/boot/dts/marvell/berlin* |
31c17ac9 | 1475 | |
40f4978b | 1476 | |
4cfab57e | 1477 | ARM/Marvell Dove/MV78xx0/Orion SOC support |
4f1312b0 NP |
1478 | M: Jason Cooper <jason@lakedaemon.net> |
1479 | M: Andrew Lunn <andrew@lunn.ch> | |
dcb71503 | 1480 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
bfda4031 | 1481 | M: Gregory Clement <gregory.clement@free-electrons.com> |
efc03ecb | 1482 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4f1312b0 NP |
1483 | S: Maintained |
1484 | F: arch/arm/mach-dove/ | |
54a246ff NP |
1485 | F: arch/arm/mach-mv78xx0/ |
1486 | F: arch/arm/mach-orion5x/ | |
1487 | F: arch/arm/plat-orion/ | |
31c17ac9 GC |
1488 | F: arch/arm/boot/dts/dove* |
1489 | F: arch/arm/boot/dts/orion5x* | |
1490 | ||
3b886171 | 1491 | |
d69ac131 AC |
1492 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
1493 | M: Alexander Clouter <alex@digriz.org.uk> | |
1494 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1495 | W: http://www.digriz.org.uk/ts78xx/kernel | |
1496 | S: Maintained | |
1497 | F: arch/arm/mach-orion5x/ts78xx-* | |
1498 | ||
e557959d NA |
1499 | ARM/OXNAS platform support |
1500 | M: Neil Armstrong <narmstrong@baylibre.com> | |
1501 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
d6fbd37b | 1502 | L: linux-oxnas@lists.tuxfamily.org (moderated for non-subscribers) |
e557959d NA |
1503 | S: Maintained |
1504 | F: arch/arm/mach-oxnas/ | |
1505 | F: arch/arm/boot/dts/oxnas* | |
1506 | F: arch/arm/boot/dts/wd-mbwe.dts | |
1507 | N: oxnas | |
1508 | ||
607b8fc9 EH |
1509 | ARM/Mediatek RTC DRIVER |
1510 | M: Eddie Huang <eddie.huang@mediatek.com> | |
1511 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1512 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) | |
1513 | S: Maintained | |
1514 | F: drivers/rtc/rtc-mt6397.c | |
1515 | ||
e54951c8 MB |
1516 | ARM/Mediatek SoC support |
1517 | M: Matthias Brugger <matthias.bgg@gmail.com> | |
1518 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
17b199d6 | 1519 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) |
e54951c8 MB |
1520 | S: Maintained |
1521 | F: arch/arm/boot/dts/mt6* | |
1522 | F: arch/arm/boot/dts/mt8* | |
1523 | F: arch/arm/mach-mediatek/ | |
1524 | N: mtk | |
1525 | K: mediatek | |
1526 | ||
0f8669e3 CY |
1527 | ARM/Mediatek USB3 PHY DRIVER |
1528 | M: Chunfeng Yun <chunfeng.yun@mediatek.com> | |
1529 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1530 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) | |
1531 | S: Maintained | |
1532 | F: drivers/phy/phy-mt65xx-usb3.c | |
1533 | ||
adcb079f AB |
1534 | ARM/MICREL KS8695 ARCHITECTURE |
1535 | M: Greg Ungerer <gerg@uclinux.org> | |
1536 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
14430813 | 1537 | F: arch/arm/mach-ks8695/ |
adcb079f AB |
1538 | S: Odd Fixes |
1539 | ||
d78ff0a5 | 1540 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1541 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 1542 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d78ff0a5 RJ |
1543 | F: arch/arm/mach-pxa/mioa701.c |
1544 | S: Maintained | |
1545 | ||
9624dfe6 | 1546 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1547 | M: Michael Petchkovsky <mkpetch@internode.on.net> |
9624dfe6 KE |
1548 | S: Maintained |
1549 | ||
e0ee9851 | 1550 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1551 | M: Alessandro Rubini <rubini@unipv.it> |
e4651a9f | 1552 | M: Linus Walleij <linus.walleij@linaro.org> |
28b8e8d4 JP |
1553 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1554 | S: Maintained | |
1555 | F: arch/arm/mach-nomadik/ | |
ecc265fe | 1556 | F: drivers/pinctrl/nomadik/ |
87572880 | 1557 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1558 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1559 | |
9d76295a | 1560 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1561 | M: Nelson Castillo <arhuaco@freaks-unidos.net> |
9d76295a AG |
1562 | L: openmoko-kernel@lists.openmoko.org (subscribers-only) |
1563 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1564 | S: Supported | |
1565 | ||
8459c159 | 1566 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1567 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
1568 | M: Dirk Opfer <dirk@opfer-online.de> | |
8459c159 DO |
1569 | S: Maintained |
1570 | ||
5d783a2d | 1571 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1572 | M: Marek Vasut <marek.vasut@gmail.com> |
75280787 | 1573 | L: linux-arm-kernel@lists.infradead.org |
b5e4ad57 MV |
1574 | W: http://hackndev.com |
1575 | S: Maintained | |
933d35f0 JP |
1576 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1577 | F: arch/arm/mach-pxa/palmtx.c | |
1578 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1579 | F: arch/arm/mach-pxa/palmt5.c | |
1580 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1581 | F: arch/arm/mach-pxa/palmld.c | |
1582 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1583 | F: arch/arm/mach-pxa/palmte2.c | |
1584 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1585 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1586 | |
b57fe924 | 1587 | ARM/PALM TREO SUPPORT |
d8130624 | 1588 | M: Tomas Cech <sleep_walker@suse.com> |
75280787 | 1589 | L: linux-arm-kernel@lists.infradead.org |
90af5811 TSC |
1590 | W: http://hackndev.com |
1591 | S: Maintained | |
b57fe924 JP |
1592 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1593 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1594 | |
c49e1e63 | 1595 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1596 | M: Sergey Lapin <slapin@ossfans.org> |
75280787 | 1597 | L: linux-arm-kernel@lists.infradead.org |
7d2c86b5 JP |
1598 | W: http://hackndev.com |
1599 | S: Maintained | |
933d35f0 JP |
1600 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1601 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1602 | |
1da177e4 | 1603 | ARM/PLEB SUPPORT |
8b58be88 | 1604 | M: Peter Chubb <pleb@gelato.unsw.edu.au> |
1da177e4 LT |
1605 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1606 | S: Maintained | |
1607 | ||
1608 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1609 | M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> |
efc03ecb | 1610 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1611 | W: http://www.armlinux.org.uk/ |
1da177e4 LT |
1612 | S: Maintained |
1613 | ||
8fc1b0f8 | 1614 | ARM/QUALCOMM SUPPORT |
bbeaa595 AG |
1615 | M: Andy Gross <andy.gross@linaro.org> |
1616 | M: David Brown <david.brown@linaro.org> | |
8fc1b0f8 | 1617 | L: linux-arm-msm@vger.kernel.org |
f5d3af9d | 1618 | L: linux-soc@vger.kernel.org |
8fc1b0f8 | 1619 | S: Maintained |
0ff50d60 | 1620 | F: Documentation/devicetree/bindings/soc/qcom/ |
0c4cbf9e BA |
1621 | F: arch/arm/boot/dts/qcom-*.dts |
1622 | F: arch/arm/boot/dts/qcom-*.dtsi | |
8fc1b0f8 | 1623 | F: arch/arm/mach-qcom/ |
e68d7c14 | 1624 | F: arch/arm64/boot/dts/qcom/* |
5482cefa | 1625 | F: drivers/i2c/busses/i2c-qup.c |
39a3366a | 1626 | F: drivers/clk/qcom/ |
f5d3af9d | 1627 | F: drivers/soc/qcom/ |
5482cefa | 1628 | F: drivers/spi/spi-qup.c |
c0c89faf SB |
1629 | F: drivers/tty/serial/msm_serial.h |
1630 | F: drivers/tty/serial/msm_serial.c | |
1631 | F: drivers/*/pm8???-* | |
1632 | F: drivers/mfd/ssbi.c | |
916f743d | 1633 | F: drivers/firmware/qcom_scm.c |
bbeaa595 | 1634 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git |
8fc1b0f8 | 1635 | |
2b7a52a4 | 1636 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1637 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1638 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1639 | S: Maintained |
1640 | ||
b138e119 SH |
1641 | ARM/RENESAS ARM64 ARCHITECTURE |
1642 | M: Simon Horman <horms@verge.net.au> | |
1643 | M: Magnus Damm <magnus.damm@gmail.com> | |
1926e54f SH |
1644 | L: linux-renesas-soc@vger.kernel.org |
1645 | Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/ | |
b138e119 SH |
1646 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
1647 | S: Supported | |
1648 | F: arch/arm64/boot/dts/renesas/ | |
be32bcbb GU |
1649 | F: drivers/soc/renesas/ |
1650 | F: include/linux/soc/renesas/ | |
b138e119 | 1651 | |
d4275354 | 1652 | ARM/RISCPC ARCHITECTURE |
54176cc6 | 1653 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1654 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1655 | W: http://www.armlinux.org.uk/ |
d4275354 | 1656 | S: Maintained |
d4275354 RK |
1657 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1658 | F: arch/arm/include/asm/hardware/ioc.h | |
1659 | F: arch/arm/include/asm/hardware/iomd.h | |
1660 | F: arch/arm/include/asm/hardware/memc.h | |
1661 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1662 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1663 | F: drivers/net/ethernet/i825xx/ether1* |
1664 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1665 | F: drivers/scsi/arm/ |
1666 | ||
08ddbb0a HS |
1667 | ARM/Rockchip SoC support |
1668 | M: Heiko Stuebner <heiko@sntech.de> | |
1669 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
00250b52 | 1670 | L: linux-rockchip@lists.infradead.org |
9f273c24 | 1671 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git |
08ddbb0a | 1672 | S: Maintained |
541555e9 | 1673 | F: arch/arm/boot/dts/rk3* |
08ddbb0a | 1674 | F: arch/arm/mach-rockchip/ |
541555e9 HS |
1675 | F: drivers/clk/rockchip/ |
1676 | F: drivers/i2c/busses/i2c-rk3x.c | |
08ddbb0a | 1677 | F: drivers/*/*rockchip* |
541555e9 HS |
1678 | F: drivers/*/*/*rockchip* |
1679 | F: sound/soc/rockchip/ | |
b4331b43 | 1680 | N: rockchip |
08ddbb0a | 1681 | |
5bfb937c KK |
1682 | ARM/SAMSUNG EXYNOS ARM ARCHITECTURES |
1683 | M: Kukjin Kim <kgene@kernel.org> | |
326dce07 | 1684 | M: Krzysztof Kozlowski <krzk@kernel.org> |
29617e1c | 1685 | R: Javier Martinez Canillas <javier@osg.samsung.com> |
efc03ecb | 1686 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7a549d78 | 1687 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
b21477f9 | 1688 | S: Maintained |
6f0589c8 | 1689 | F: arch/arm/boot/dts/s3c* |
e68d7c14 RH |
1690 | F: arch/arm/boot/dts/s5p* |
1691 | F: arch/arm/boot/dts/samsung* | |
6f0589c8 | 1692 | F: arch/arm/boot/dts/exynos* |
d97236e6 | 1693 | F: arch/arm64/boot/dts/exynos/ |
482ce512 | 1694 | F: arch/arm/plat-samsung/ |
769bbb63 HS |
1695 | F: arch/arm/mach-s3c24*/ |
1696 | F: arch/arm/mach-s3c64xx/ | |
5bfb937c KK |
1697 | F: arch/arm/mach-s5p*/ |
1698 | F: arch/arm/mach-exynos*/ | |
1c03274d KK |
1699 | F: drivers/*/*s3c24* |
1700 | F: drivers/*/*/*s3c24* | |
1701 | F: drivers/*/*s3c64xx* | |
1702 | F: drivers/*/*s5pv210* | |
ffd51977 | 1703 | F: drivers/memory/samsung/* |
bf50ddcd | 1704 | F: drivers/soc/samsung/* |
d6b9aea6 KK |
1705 | F: Documentation/arm/Samsung/ |
1706 | F: Documentation/devicetree/bindings/arm/samsung/ | |
1707 | F: Documentation/devicetree/bindings/sram/samsung-sram.txt | |
1708 | F: Documentation/devicetree/bindings/power/pd-samsung.txt | |
33d43cdd | 1709 | N: exynos |
f556cb07 | 1710 | |
10ffa964 KP |
1711 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1712 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1713 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1714 | S: Maintained | |
004bbd3c | 1715 | F: arch/arm/mach-s5pv210/ |
10ffa964 | 1716 | |
3ce4ccb6 KD |
1717 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1718 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
774e0362 KD |
1719 | M: Kamil Debski <kamil@wypas.org> |
1720 | M: Andrzej Hajda <a.hajda@samsung.com> | |
3ce4ccb6 KD |
1721 | L: linux-arm-kernel@lists.infradead.org |
1722 | L: linux-media@vger.kernel.org | |
1723 | S: Maintained | |
1724 | F: drivers/media/platform/s5p-g2d/ | |
1725 | ||
e6a476fd MS |
1726 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1727 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
774e0362 | 1728 | M: Kamil Debski <kamil@wypas.org> |
6305902c | 1729 | M: Jeongtae Park <jtp.park@samsung.com> |
774e0362 | 1730 | M: Andrzej Hajda <a.hajda@samsung.com> |
e6a476fd MS |
1731 | L: linux-arm-kernel@lists.infradead.org |
1732 | L: linux-media@vger.kernel.org | |
1733 | S: Maintained | |
934455d7 | 1734 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1735 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd | 1736 | |
1bcbf6f4 KD |
1737 | ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT |
1738 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1739 | L: linux-arm-kernel@lists.infradead.org | |
1740 | L: linux-media@vger.kernel.org | |
1741 | S: Maintained | |
78fc853b | 1742 | F: drivers/staging/media/platform/s5p-cec/ |
1bcbf6f4 | 1743 | |
7d9f9bf4 AP |
1744 | ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT |
1745 | M: Andrzej Pietrasiewicz <andrzej.p@samsung.com> | |
1746 | M: Jacek Anaszewski <j.anaszewski@samsung.com> | |
1747 | L: linux-arm-kernel@lists.infradead.org | |
1748 | L: linux-media@vger.kernel.org | |
1749 | S: Maintained | |
1750 | F: drivers/media/platform/s5p-jpeg/ | |
1751 | ||
d48d38e8 | 1752 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1753 | M: Simon Horman <horms@verge.net.au> |
d48d38e8 | 1754 | M: Magnus Damm <magnus.damm@gmail.com> |
4a121096 | 1755 | L: linux-renesas-soc@vger.kernel.org |
4a121096 | 1756 | Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/ |
5e212598 | 1757 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 | 1758 | S: Supported |
0b514fdb SH |
1759 | F: arch/arm/boot/dts/emev2* |
1760 | F: arch/arm/boot/dts/r7s* | |
1761 | F: arch/arm/boot/dts/r8a* | |
1762 | F: arch/arm/boot/dts/sh* | |
0b514fdb | 1763 | F: arch/arm/configs/shmobile_defconfig |
7a2071c5 | 1764 | F: arch/arm/include/debug/renesas-scif.S |
d48d38e8 | 1765 | F: arch/arm/mach-shmobile/ |
be32bcbb GU |
1766 | F: drivers/soc/renesas/ |
1767 | F: include/linux/soc/renesas/ | |
d48d38e8 | 1768 | |
66314223 | 1769 | ARM/SOCFPGA ARCHITECTURE |
ba2b7d0a | 1770 | M: Dinh Nguyen <dinguyen@opensource.altera.com> |
66314223 DN |
1771 | S: Maintained |
1772 | F: arch/arm/mach-socfpga/ | |
efadb751 DN |
1773 | F: arch/arm/boot/dts/socfpga* |
1774 | F: arch/arm/configs/socfpga_defconfig | |
e68d7c14 | 1775 | F: arch/arm64/boot/dts/altera/ |
ba2b7d0a | 1776 | W: http://www.rocketboards.org |
efadb751 | 1777 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git |
66314223 DN |
1778 | |
1779 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
ba2b7d0a | 1780 | M: Dinh Nguyen <dinguyen@opensource.altera.com> |
66314223 DN |
1781 | S: Maintained |
1782 | F: drivers/clk/socfpga/ | |
1783 | ||
71bcada8 TT |
1784 | ARM/SOCFPGA EDAC SUPPORT |
1785 | M: Thor Thayer <tthayer@opensource.altera.com> | |
1786 | S: Maintained | |
1787 | F: drivers/edac/altera_edac. | |
1788 | ||
65ebcc11 | 1789 | ARM/STI ARCHITECTURE |
a92177ea | 1790 | M: Patrice Chotard <patrice.chotard@st.com> |
65ebcc11 SK |
1791 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1792 | L: kernel@stlinux.com | |
1793 | W: http://www.stlinux.com | |
1794 | S: Maintained | |
1795 | F: arch/arm/mach-sti/ | |
a92177ea | 1796 | F: arch/arm/boot/dts/sti* |
b8e31bf3 | 1797 | F: drivers/char/hw_random/st-rng.c |
a92177ea | 1798 | F: drivers/clocksource/arm_global_timer.c |
82805d1b | 1799 | F: drivers/clocksource/clksrc_st_lpc.c |
1d4b42bc | 1800 | F: drivers/cpufreq/sti-cpufreq.c |
6da0f216 | 1801 | F: drivers/dma/st_fdma* |
a92177ea | 1802 | F: drivers/i2c/busses/i2c-st.c |
346e2e4a | 1803 | F: drivers/media/rc/st_rc.c |
95d66b16 | 1804 | F: drivers/media/platform/sti/c8sectpfe/ |
f53b2bff | 1805 | F: drivers/mmc/host/sdhci-st.c |
e95cf393 PG |
1806 | F: drivers/phy/phy-miphy28lp.c |
1807 | F: drivers/phy/phy-miphy365x.c | |
6da969a5 | 1808 | F: drivers/phy/phy-stih407-usb.c |
26389c78 | 1809 | F: drivers/phy/phy-stih41x-usb.c |
346e2e4a | 1810 | F: drivers/pinctrl/pinctrl-st.c |
aac22524 | 1811 | F: drivers/remoteproc/st_remoteproc.c |
c9d7cc3e | 1812 | F: drivers/remoteproc/st_slim_rproc.c |
346e2e4a | 1813 | F: drivers/reset/sti/ |
db4112e6 | 1814 | F: drivers/rtc/rtc-st-lpc.c |
346e2e4a | 1815 | F: drivers/tty/serial/st-asc.c |
eb11adab | 1816 | F: drivers/usb/dwc3/dwc3-st.c |
62f6f086 PG |
1817 | F: drivers/usb/host/ehci-st.c |
1818 | F: drivers/usb/host/ohci-st.c | |
db4112e6 | 1819 | F: drivers/watchdog/st_lpc_wdt.c |
daac6f86 | 1820 | F: drivers/ata/ahci_st.c |
c9d7cc3e | 1821 | F: include/linux/remoteproc/st_slim_rproc.h |
65ebcc11 | 1822 | |
ee6e7879 MC |
1823 | ARM/STM32 ARCHITECTURE |
1824 | M: Maxime Coquelin <mcoquelin.stm32@gmail.com> | |
8ca2cf2c | 1825 | M: Alexandre Torgue <alexandre.torgue@st.com> |
ee6e7879 MC |
1826 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1827 | S: Maintained | |
1828 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git | |
1829 | N: stm32 | |
1830 | F: drivers/clocksource/armv7m_systick.c | |
1831 | ||
d6de5b02 MG |
1832 | ARM/TANGO ARCHITECTURE |
1833 | M: Marc Gonzalez <marc_gonzalez@sigmadesigns.com> | |
1834 | L: linux-arm-kernel@lists.infradead.org | |
1835 | S: Maintained | |
e2bd0d37 | 1836 | N: tango |
d6de5b02 | 1837 | |
2b7a52a4 | 1838 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1839 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1840 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1841 | S: Maintained |
1842 | ||
1bbd7089 | 1843 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1844 | M: "Mark F. Brown" <mark.brown314@gmail.com> |
1bbd7089 MB |
1845 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1846 | S: Maintained | |
1847 | ||
2b7a52a4 | 1848 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1849 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1850 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1851 | S: Maintained |
1852 | ||
98ad6e3b | 1853 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1854 | M: Wan ZongShun <mcuos.com@gmail.com> |
efc03ecb | 1855 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7d2c86b5 JP |
1856 | W: http://www.mcuos.com |
1857 | S: Maintained | |
4e89e8f6 | 1858 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1859 | F: drivers/input/keyboard/w90p910_keypad.c |
1860 | F: drivers/input/touchscreen/w90p910_ts.c | |
1861 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1862 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1863 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1864 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1865 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 | 1866 | F: drivers/usb/host/ehci-w90x900.c |
8a61f013 | 1867 | F: drivers/video/fbdev/nuc900fb.c |
98ad6e3b | 1868 | |
54274d71 | 1869 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1870 | M: Linus Walleij <linus.walleij@linaro.org> |
54274d71 LW |
1871 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1872 | S: Supported | |
1873 | F: arch/arm/mach-u300/ | |
9affbd24 | 1874 | F: drivers/clocksource/timer-u300.c |
54274d71 LW |
1875 | F: drivers/i2c/busses/i2c-stu300.c |
1876 | F: drivers/rtc/rtc-coh901331.c | |
1877 | F: drivers/watchdog/coh901327_wdt.c | |
1878 | F: drivers/dma/coh901318* | |
87572880 LW |
1879 | F: drivers/mfd/ab3100* |
1880 | F: drivers/rtc/rtc-ab3100.c | |
1881 | F: drivers/rtc/rtc-coh901331.c | |
1882 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1883 | |
3d00d04f MY |
1884 | ARM/UNIPHIER ARCHITECTURE |
1885 | M: Masahiro Yamada <yamada.masahiro@socionext.com> | |
1886 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
becc8d3c | 1887 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git |
3d00d04f | 1888 | S: Maintained |
a3ff83d2 | 1889 | F: arch/arm/boot/dts/uniphier* |
e7ecbc05 | 1890 | F: arch/arm/include/asm/hardware/cache-uniphier.h |
3d00d04f | 1891 | F: arch/arm/mach-uniphier/ |
e7ecbc05 | 1892 | F: arch/arm/mm/cache-uniphier.c |
e1a0ebc8 | 1893 | F: arch/arm64/boot/dts/socionext/ |
4b7f48d3 | 1894 | F: drivers/bus/uniphier-system-bus.c |
734d82f4 | 1895 | F: drivers/clk/uniphier/ |
dd6fd4a3 | 1896 | F: drivers/i2c/busses/i2c-uniphier* |
a3ff83d2 | 1897 | F: drivers/pinctrl/uniphier/ |
54e991b5 | 1898 | F: drivers/reset/reset-uniphier.c |
a3ff83d2 | 1899 | F: drivers/tty/serial/8250/8250_uniphier.c |
3d00d04f MY |
1900 | N: uniphier |
1901 | ||
87572880 | 1902 | ARM/Ux500 ARM ARCHITECTURE |
e4651a9f | 1903 | M: Linus Walleij <linus.walleij@linaro.org> |
870725d9 SK |
1904 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1905 | S: Maintained | |
1906 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1907 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1908 | F: drivers/dma/ste_dma40* |
e4651a9f | 1909 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1910 | F: drivers/mfd/abx500* |
1911 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1912 | F: drivers/mfd/dbx500* |
1913 | F: drivers/mfd/db8500* | |
ecc265fe JP |
1914 | F: drivers/pinctrl/nomadik/pinctrl-ab* |
1915 | F: drivers/pinctrl/nomadik/pinctrl-nomadik* | |
87572880 | 1916 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1917 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1918 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1919 | |
e93fde28 UH |
1920 | ARM/Ux500 CLOCK FRAMEWORK SUPPORT |
1921 | M: Ulf Hansson <ulf.hansson@linaro.org> | |
1922 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1923 | T: git git://git.linaro.org/people/ulfh/clk.git | |
1924 | S: Maintained | |
1925 | F: drivers/clk/ux500/ | |
e93fde28 | 1926 | |
740d93b1 PM |
1927 | ARM/VERSATILE EXPRESS PLATFORM |
1928 | M: Liviu Dudau <liviu.dudau@arm.com> | |
1929 | M: Sudeep Holla <sudeep.holla@arm.com> | |
1930 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
1931 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1932 | S: Maintained | |
1933 | F: arch/arm/boot/dts/vexpress* | |
e68d7c14 | 1934 | F: arch/arm64/boot/dts/arm/ |
740d93b1 PM |
1935 | F: arch/arm/mach-vexpress/ |
1936 | F: */*/vexpress* | |
7e8f403f | 1937 | F: */*/*/vexpress* |
740d93b1 PM |
1938 | F: drivers/clk/versatile/clk-vexpress-osc.c |
1939 | F: drivers/clocksource/versatile.c | |
46a600ea | 1940 | N: mps2 |
740d93b1 | 1941 | |
d4275354 | 1942 | ARM/VFP SUPPORT |
54176cc6 | 1943 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1944 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1945 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
1946 | S: Maintained |
1947 | F: arch/arm/vfp/ | |
1948 | ||
e66b6d8e MV |
1949 | ARM/VOIPAC PXA270 SUPPORT |
1950 | M: Marek Vasut <marek.vasut@gmail.com> | |
1951 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1952 | S: Maintained | |
1953 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1954 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1955 | |
04529fe2 TP |
1956 | ARM/VT8500 ARM ARCHITECTURE |
1957 | M: Tony Prisk <linux@prisktech.co.nz> | |
1958 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1959 | S: Maintained | |
1960 | F: arch/arm/mach-vt8500/ | |
41fd91b4 | 1961 | F: drivers/clocksource/vt8500_timer.c |
560746eb | 1962 | F: drivers/i2c/busses/i2c-wmt.c |
41fd91b4 TP |
1963 | F: drivers/mmc/host/wmt-sdmmc.c |
1964 | F: drivers/pwm/pwm-vt8500.c | |
1965 | F: drivers/rtc/rtc-vt8500.c | |
1966 | F: drivers/tty/serial/vt8500_serial.c | |
4f31102b | 1967 | F: drivers/usb/host/ehci-platform.c |
41fd91b4 | 1968 | F: drivers/usb/host/uhci-platform.c |
8a61f013 JH |
1969 | F: drivers/video/fbdev/vt8500lcdfb.* |
1970 | F: drivers/video/fbdev/wm8505fb* | |
1971 | F: drivers/video/fbdev/wmt_ge_rops.* | |
04529fe2 | 1972 | |
e66b6d8e MV |
1973 | ARM/ZIPIT Z2 SUPPORT |
1974 | M: Marek Vasut <marek.vasut@gmail.com> | |
1975 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1976 | S: Maintained | |
1977 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1978 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1979 | |
5ecc4b53 JN |
1980 | ARM/ZTE ARCHITECTURE |
1981 | M: Jun Nie <jun.nie@linaro.org> | |
1982 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1983 | S: Maintained | |
1984 | F: arch/arm/mach-zx/ | |
1985 | F: drivers/clk/zte/ | |
1986 | F: Documentation/devicetree/bindings/arm/zte.txt | |
1987 | F: Documentation/devicetree/bindings/clock/zx296702-clk.txt | |
1988 | ||
51f29d44 MS |
1989 | ARM/ZYNQ ARCHITECTURE |
1990 | M: Michal Simek <michal.simek@xilinx.com> | |
f0fd9ad8 | 1991 | R: Sören Brinkmann <soren.brinkmann@xilinx.com> |
51f29d44 MS |
1992 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1993 | W: http://wiki.xilinx.com | |
d6448b76 | 1994 | T: git https://github.com/Xilinx/linux-xlnx.git |
51f29d44 MS |
1995 | S: Supported |
1996 | F: arch/arm/mach-zynq/ | |
bd2a337a | 1997 | F: drivers/cpuidle/cpuidle-zynq.c |
fb9d4959 | 1998 | F: drivers/block/xsysace.c |
c2fd4e38 MS |
1999 | N: zynq |
2000 | N: xilinx | |
2001 | F: drivers/clocksource/cadence_ttc_timer.c | |
df8eb569 | 2002 | F: drivers/i2c/busses/i2c-cadence.c |
e3ec3a3d | 2003 | F: drivers/mmc/host/sdhci-of-arasan.c |
ae9b56e3 | 2004 | F: drivers/edac/synopsys_edac.c |
51f29d44 | 2005 | |
48ec83bc | 2006 | ARM SMMU DRIVERS |
b8f9879e | 2007 | M: Will Deacon <will.deacon@arm.com> |
c8bff3a6 | 2008 | R: Robin Murphy <robin.murphy@arm.com> |
b8f9879e WD |
2009 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2010 | S: Maintained | |
2011 | F: drivers/iommu/arm-smmu.c | |
48ec83bc | 2012 | F: drivers/iommu/arm-smmu-v3.c |
e1d3c0fd | 2013 | F: drivers/iommu/io-pgtable-arm.c |
c8bff3a6 | 2014 | F: drivers/iommu/io-pgtable-arm-v7s.c |
b8f9879e | 2015 | |
38074229 CM |
2016 | ARM64 PORT (AARCH64 ARCHITECTURE) |
2017 | M: Catalin Marinas <catalin.marinas@arm.com> | |
d19766ec | 2018 | M: Will Deacon <will.deacon@arm.com> |
38074229 | 2019 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9f273c24 | 2020 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git |
38074229 CM |
2021 | S: Maintained |
2022 | F: arch/arm64/ | |
d19766ec | 2023 | F: Documentation/arm64/ |
38074229 | 2024 | |
9d7005f9 LP |
2025 | AS3645A LED FLASH CONTROLLER DRIVER |
2026 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
2027 | L: linux-media@vger.kernel.org | |
2028 | T: git git://linuxtv.org/media_tree.git | |
2029 | S: Maintained | |
2030 | F: drivers/media/i2c/as3645a.c | |
b5dcee22 | 2031 | F: include/media/i2c/as3645a.h |
9d7005f9 | 2032 | |
7c94a8b2 LW |
2033 | ASAHI KASEI AK8974 DRIVER |
2034 | M: Linus Walleij <linus.walleij@linaro.org> | |
2035 | L: linux-iio@vger.kernel.org | |
2036 | W: http://www.akm.com/ | |
2037 | S: Supported | |
2038 | F: drivers/iio/magnetometer/ak8974.c | |
2039 | ||
d58de038 GJ |
2040 | ASC7621 HARDWARE MONITOR DRIVER |
2041 | M: George Joseph <george.joseph@fairview5.com> | |
968ce1b1 | 2042 | L: linux-hwmon@vger.kernel.org |
d58de038 GJ |
2043 | S: Maintained |
2044 | F: Documentation/hwmon/asc7621 | |
2045 | F: drivers/hwmon/asc7621.c | |
2046 | ||
b229ece9 | 2047 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 2048 | M: Corentin Chary <corentin.chary@gmail.com> |
1da177e4 | 2049 | L: acpi4asus-user@lists.sourceforge.net |
d0944853 | 2050 | L: platform-driver-x86@vger.kernel.org |
76593d6f | 2051 | W: http://acpi4asus.sf.net |
85091b71 | 2052 | S: Maintained |
b229ece9 CC |
2053 | F: drivers/platform/x86/asus*.c |
2054 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 2055 | |
f6a6bbae JPRV |
2056 | ASUS WIRELESS RADIO CONTROL DRIVER |
2057 | M: João Paulo Rechi Vita <jprvita@gmail.com> | |
2058 | L: platform-driver-x86@vger.kernel.org | |
2059 | S: Maintained | |
2060 | F: drivers/platform/x86/asus-wireless.c | |
2061 | ||
75aeddd1 DH |
2062 | ASYMMETRIC KEYS |
2063 | M: David Howells <dhowells@redhat.com> | |
2064 | L: keyrings@vger.kernel.org | |
2065 | S: Maintained | |
2066 | F: Documentation/crypto/asymmetric-keys.txt | |
2067 | F: include/linux/verification.h | |
2068 | F: include/crypto/public_key.h | |
2069 | F: include/crypto/pkcs7.h | |
2070 | F: crypto/asymmetric_keys/ | |
2071 | ||
953a6479 | 2072 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
08223d80 | 2073 | R: Dan Williams <dan.j.williams@intel.com> |
b3e5f263 | 2074 | W: http://sourceforge.net/projects/xscaleiop |
08223d80 | 2075 | S: Odd fixes |
679655da JP |
2076 | F: Documentation/crypto/async-tx-api.txt |
2077 | F: crypto/async_tx/ | |
2078 | F: drivers/dma/ | |
2079 | F: include/linux/dmaengine.h | |
2080 | F: include/linux/async_tx.h | |
b3e5f263 | 2081 | |
a1867d36 | 2082 | AT24 EEPROM DRIVER |
14d77c4d | 2083 | M: Wolfram Sang <wsa@the-dreams.de> |
a1867d36 WS |
2084 | L: linux-i2c@vger.kernel.org |
2085 | S: Maintained | |
2086 | F: drivers/misc/eeprom/at24.c | |
25f73ed5 | 2087 | F: include/linux/platform_data/at24.h |
a1867d36 | 2088 | |
e7839f25 | 2089 | ATA OVER ETHERNET (AOE) DRIVER |
fb903811 EC |
2090 | M: "Ed L. Cashin" <ed.cashin@acm.org> |
2091 | W: http://www.openaoe.org/ | |
1da177e4 | 2092 | S: Supported |
679655da JP |
2093 | F: Documentation/aoe/ |
2094 | F: drivers/block/aoe/ | |
1da177e4 | 2095 | |
aad7a211 AB |
2096 | ATHEROS 71XX/9XXX GPIO DRIVER |
2097 | M: Alban Bedel <albeu@free.fr> | |
2098 | W: https://github.com/AlbanBedel/linux | |
2099 | T: git git://github.com/AlbanBedel/linux | |
2100 | S: Maintained | |
2101 | F: drivers/gpio/gpio-ath79.c | |
2102 | F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt | |
2103 | ||
9a10a870 | 2104 | ATHEROS ATH GENERIC UTILITIES |
f726ee65 | 2105 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
9a10a870 JP |
2106 | L: linux-wireless@vger.kernel.org |
2107 | S: Supported | |
2108 | F: drivers/net/wireless/ath/* | |
2109 | ||
fa1c114f | 2110 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
2111 | M: Jiri Slaby <jirislaby@gmail.com> |
2112 | M: Nick Kossifidis <mickflemm@gmail.com> | |
f726ee65 | 2113 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
fa1c114f | 2114 | L: linux-wireless@vger.kernel.org |
72c706b7 | 2115 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 2116 | S: Maintained |
fa451753 | 2117 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 2118 | |
12e62d6f KV |
2119 | ATHEROS ATH6KL WIRELESS DRIVER |
2120 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
2121 | L: linux-wireless@vger.kernel.org | |
2122 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
9f273c24 | 2123 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git |
12e62d6f KV |
2124 | S: Supported |
2125 | F: drivers/net/wireless/ath/ath6kl/ | |
2126 | ||
2be7d22f | 2127 | WILOCITY WIL6210 WIRELESS DRIVER |
23ba8a66 | 2128 | M: Maya Erez <qca_merez@qca.qualcomm.com> |
2be7d22f VK |
2129 | L: linux-wireless@vger.kernel.org |
2130 | L: wil6210@qca.qualcomm.com | |
2131 | S: Supported | |
2132 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
2133 | F: drivers/net/wireless/ath/wil6210/ | |
dba4b74d | 2134 | F: include/uapi/linux/wil6210_uapi.h |
2be7d22f | 2135 | |
1d7e1e6b CL |
2136 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
2137 | M: Christian Lamparter <chunkeey@googlemail.com> | |
2138 | L: linux-wireless@vger.kernel.org | |
2139 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
2140 | S: Maintained | |
2141 | F: drivers/net/wireless/ath/carl9170/ | |
2142 | ||
2c2a6172 LT |
2143 | ATK0110 HWMON DRIVER |
2144 | M: Luca Tettamanti <kronos.it@gmail.com> | |
968ce1b1 | 2145 | L: linux-hwmon@vger.kernel.org |
2c2a6172 LT |
2146 | S: Maintained |
2147 | F: drivers/hwmon/asus_atk0110.c | |
2148 | ||
6f69a6d7 | 2149 | ATI_REMOTE2 DRIVER |
8b58be88 | 2150 | M: Ville Syrjala <syrjala@sci.fi> |
6f69a6d7 | 2151 | S: Maintained |
679655da | 2152 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 2153 | |
7ae115b4 | 2154 | ATLX ETHERNET DRIVERS |
8b58be88 | 2155 | M: Jay Cliburn <jcliburn@gmail.com> |
cb2f33e9 | 2156 | M: Chris Snook <chris.snook@gmail.com> |
e443e383 | 2157 | L: netdev@vger.kernel.org |
8d5ca6ec JC |
2158 | W: http://sourceforge.net/projects/atl1 |
2159 | W: http://atl1.sourceforge.net | |
2160 | S: Maintained | |
2b133ad6 | 2161 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 2162 | |
1da177e4 | 2163 | ATM |
366c1bd1 | 2164 | M: Chas Williams <3chas3@gmail.com> |
476604de | 2165 | L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers) |
44ae98b5 | 2166 | L: netdev@vger.kernel.org |
1da177e4 LT |
2167 | W: http://linux-atm.sourceforge.net |
2168 | S: Maintained | |
679655da JP |
2169 | F: drivers/atm/ |
2170 | F: include/linux/atm* | |
c117ab84 | 2171 | F: include/uapi/linux/atm* |
1da177e4 | 2172 | |
04ac2f46 | 2173 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 2174 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
04ac2f46 NF |
2175 | S: Maintained |
2176 | F: drivers/mmc/host/atmel-mci.c | |
04ac2f46 | 2177 | |
f80cb488 NF |
2178 | ATMEL AT91 SAMA5D2-Compatible Shutdown Controller |
2179 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
2180 | S: Supported | |
2181 | F: drivers/power/reset/at91-sama5d2_shdwc.c | |
2182 | ||
b9cd7a25 LD |
2183 | ATMEL SAMA5D2 ADC DRIVER |
2184 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
2185 | L: linux-iio@vger.kernel.org | |
2186 | S: Supported | |
2187 | F: drivers/iio/adc/at91-sama5d2_adc.c | |
2188 | ||
dfae90ed | 2189 | ATMEL Audio ALSA driver |
3a82002c | 2190 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
dfae90ed BS |
2191 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
2192 | S: Supported | |
2193 | F: sound/soc/atmel | |
2194 | ||
b414dc16 NF |
2195 | ATMEL DMA DRIVER |
2196 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
2197 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
2198 | S: Supported | |
2199 | F: drivers/dma/at_hdmac.c | |
2200 | F: drivers/dma/at_hdmac_regs.h | |
6f0d65af | 2201 | F: include/linux/platform_data/dma-atmel.h |
b414dc16 | 2202 | |
6bd0f436 LD |
2203 | ATMEL XDMA DRIVER |
2204 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
2205 | L: linux-arm-kernel@lists.infradead.org | |
2206 | L: dmaengine@vger.kernel.org | |
2207 | S: Supported | |
2208 | F: drivers/dma/at_xdmac.c | |
2209 | ||
888f2804 LD |
2210 | ATMEL I2C DRIVER |
2211 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
2212 | L: linux-i2c@vger.kernel.org | |
2213 | S: Supported | |
2214 | F: drivers/i2c/busses/i2c-at91.c | |
2215 | ||
15515545 | 2216 | ATMEL ISI DRIVER |
50cb2efa | 2217 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
15515545 JW |
2218 | L: linux-media@vger.kernel.org |
2219 | S: Supported | |
f2294c2d | 2220 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
2221 | F: include/media/atmel-isi.h |
2222 | ||
8f4c79ce | 2223 | ATMEL LCDFB DRIVER |
8b58be88 | 2224 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
c69f677c | 2225 | L: linux-fbdev@vger.kernel.org |
8f4c79ce | 2226 | S: Maintained |
8a61f013 | 2227 | F: drivers/video/fbdev/atmel_lcdfb.c |
679655da | 2228 | F: include/video/atmel_lcdc.h |
8f4c79ce | 2229 | |
89e5785f | 2230 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 2231 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
89e5785f | 2232 | S: Supported |
9f2f381f | 2233 | F: drivers/net/ethernet/cadence/ |
89e5785f | 2234 | |
5cbac98a | 2235 | ATMEL NAND DRIVER |
50cb2efa NF |
2236 | M: Wenyou Yang <wenyou.yang@atmel.com> |
2237 | M: Josh Wu <rainyfeeling@outlook.com> | |
5cbac98a JW |
2238 | L: linux-mtd@lists.infradead.org |
2239 | S: Supported | |
2240 | F: drivers/mtd/nand/atmel_nand* | |
2241 | ||
05c441ef | 2242 | ATMEL SDMMC DRIVER |
2243 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
2244 | L: linux-mmc@vger.kernel.org | |
2245 | S: Supported | |
2246 | F: drivers/mmc/host/sdhci-of-at91.c | |
2247 | ||
754ce4f2 | 2248 | ATMEL SPI DRIVER |
a02875a6 | 2249 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
754ce4f2 | 2250 | S: Supported |
9df92e6c | 2251 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 2252 | |
0ef09015 | 2253 | ATMEL SSC DRIVER |
03515f32 | 2254 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
0ef09015 BS |
2255 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2256 | S: Supported | |
2257 | F: drivers/misc/atmel-ssc.c | |
2258 | F: include/linux/atmel-ssc.h | |
2259 | ||
e9cb1c5a NF |
2260 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
2261 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
2262 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
2263 | S: Supported | |
2264 | F: drivers/misc/atmel_tclib.c | |
2265 | F: drivers/clocksource/tcb_clksrc.c | |
2266 | ||
914a3f3b | 2267 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
2268 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
2269 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
914a3f3b | 2270 | S: Supported |
faf2e1db | 2271 | F: drivers/usb/gadget/udc/atmel_usba_udc.* |
914a3f3b | 2272 | |
1da177e4 | 2273 | ATMEL WIRELESS DRIVER |
8b58be88 | 2274 | M: Simon Kelley <simon@thekelleys.org.uk> |
724c6b35 | 2275 | L: linux-wireless@vger.kernel.org |
1da177e4 LT |
2276 | W: http://www.thekelleys.org.uk/atmel |
2277 | W: http://atmelwlandriver.sourceforge.net/ | |
2278 | S: Maintained | |
30fe0f9b | 2279 | F: drivers/net/wireless/atmel/atmel* |
1da177e4 | 2280 | |
a14c0f8f | 2281 | ATMEL MAXTOUCH DRIVER |
aaf578e1 ND |
2282 | M: Nick Dyer <nick@shmanahar.org> |
2283 | T: git git://github.com/ndyer/linux.git | |
2284 | S: Maintained | |
a14c0f8f ND |
2285 | F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt |
2286 | F: drivers/input/touchscreen/atmel_mxt_ts.c | |
2287 | F: include/linux/platform_data/atmel_mxt_ts.h | |
2288 | ||
26780d9e | 2289 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
b75f0050 JP |
2290 | M: Bradley Grove <linuxdrivers@attotech.com> |
2291 | L: linux-scsi@vger.kernel.org | |
2292 | W: http://www.attotech.com | |
2293 | S: Supported | |
2294 | F: drivers/scsi/esas2r | |
26780d9e | 2295 | |
bc6e17b8 SS |
2296 | ATUSB IEEE 802.15.4 RADIO DRIVER |
2297 | M: Stefan Schmidt <stefan@osg.samsung.com> | |
2298 | L: linux-wpan@vger.kernel.org | |
2299 | S: Maintained | |
2300 | F: drivers/net/ieee802154/atusb.c | |
2301 | F: drivers/net/ieee802154/atusb.h | |
2302 | F: drivers/net/ieee802154/at86rf230.h | |
2303 | ||
a92b7b80 | 2304 | AUDIT SUBSYSTEM |
915f389d | 2305 | M: Paul Moore <paul@paul-moore.com> |
8b58be88 | 2306 | M: Eric Paris <eparis@redhat.com> |
915f389d | 2307 | L: linux-audit@redhat.com (moderated for non-subscribers) |
ad3f9a22 | 2308 | W: http://people.redhat.com/sgrubb/audit/ |
915f389d | 2309 | T: git git://git.infradead.org/users/pcmoore/audit |
a92b7b80 | 2310 | S: Maintained |
679655da | 2311 | F: include/linux/audit.h |
c117ab84 | 2312 | F: include/uapi/linux/audit.h |
679655da | 2313 | F: kernel/audit* |
a92b7b80 | 2314 | |
70e84049 | 2315 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 2316 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2317 | W: http://miguelojeda.es/auxdisplay.htm |
2318 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2319 | S: Maintained |
679655da JP |
2320 | F: drivers/auxdisplay/ |
2321 | F: include/linux/cfag12864b.h | |
70e84049 | 2322 | |
5f97f7f9 | 2323 | AVR32 ARCHITECTURE |
e336f61f HCE |
2324 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
2325 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
5f97f7f9 | 2326 | W: http://www.atmel.com/products/AVR32/ |
249d9d9d | 2327 | W: http://mirror.egtvedt.no/avr32linux.org/ |
5f97f7f9 | 2328 | W: http://avrfreaks.net/ |
e336f61f | 2329 | S: Maintained |
679655da | 2330 | F: arch/avr32/ |
5f97f7f9 HS |
2331 | |
2332 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
2333 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
2334 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
2335 | S: Maintained | |
679655da | 2336 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 2337 | |
1da177e4 | 2338 | AX.25 NETWORK LAYER |
8b58be88 | 2339 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 2340 | L: linux-hams@vger.kernel.org |
d34cb28a | 2341 | W: http://www.linux-ax25.org/ |
1da177e4 | 2342 | S: Maintained |
c117ab84 | 2343 | F: include/uapi/linux/ax25.h |
679655da JP |
2344 | F: include/net/ax25.h |
2345 | F: net/ax25/ | |
1da177e4 | 2346 | |
d5269395 | 2347 | AZ6007 DVB DRIVER |
5dc8a864 MCC |
2348 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
2349 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
d5269395 | 2350 | L: linux-media@vger.kernel.org |
a825eaec | 2351 | W: https://linuxtv.org |
d5269395 MCC |
2352 | T: git git://linuxtv.org/media_tree.git |
2353 | S: Maintained | |
2354 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
2355 | ||
6777376e HV |
2356 | AZTECH FM RADIO RECEIVER DRIVER |
2357 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2358 | L: linux-media@vger.kernel.org | |
2359 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 2360 | W: https://linuxtv.org |
6777376e HV |
2361 | S: Maintained |
2362 | F: drivers/media/radio/radio-aztech* | |
2363 | ||
e2d1d6c0 | 2364 | B43 WIRELESS DRIVER |
e2d1d6c0 | 2365 | L: linux-wireless@vger.kernel.org |
ed072f9e | 2366 | L: b43-dev@lists.infradead.org |
491b26b4 | 2367 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
8a72ed6f | 2368 | S: Odd Fixes |
58619b14 | 2369 | F: drivers/net/wireless/broadcom/b43/ |
e2d1d6c0 RD |
2370 | |
2371 | B43LEGACY WIRELESS DRIVER | |
8b58be88 | 2372 | M: Larry Finger <Larry.Finger@lwfinger.net> |
e2d1d6c0 | 2373 | L: linux-wireless@vger.kernel.org |
ed072f9e | 2374 | L: b43-dev@lists.infradead.org |
491b26b4 | 2375 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 2376 | S: Maintained |
423e3ce3 | 2377 | F: drivers/net/wireless/broadcom/b43legacy/ |
e2d1d6c0 | 2378 | |
300abeb5 | 2379 | BACKLIGHT CLASS/SUBSYSTEM |
b7701755 | 2380 | M: Jingoo Han <jingoohan1@gmail.com> |
70d14fcf | 2381 | M: Lee Jones <lee.jones@linaro.org> |
9f273c24 | 2382 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git |
300abeb5 | 2383 | S: Maintained |
679655da JP |
2384 | F: drivers/video/backlight/ |
2385 | F: include/linux/backlight.h | |
300abeb5 | 2386 | |
c6c8fea2 | 2387 | BATMAN ADVANCED |
207df49e | 2388 | M: Marek Lindner <mareklindner@neomailbox.ch> |
c679ff8f | 2389 | M: Simon Wunderlich <sw@simonwunderlich.de> |
ca8e940c | 2390 | M: Antonio Quartulli <a@unstable.cc> |
1584f41f | 2391 | L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers) |
7b5e7396 | 2392 | W: https://www.open-mesh.org/ |
8b823170 | 2393 | Q: https://patchwork.open-mesh.org/project/batman/list/ |
c6c8fea2 | 2394 | S: Maintained |
286ddfb0 SE |
2395 | F: Documentation/ABI/testing/sysfs-class-net-batman-adv |
2396 | F: Documentation/ABI/testing/sysfs-class-net-mesh | |
2397 | F: Documentation/networking/batman-adv.txt | |
09748a22 | 2398 | F: include/uapi/linux/batman_adv.h |
c6c8fea2 SE |
2399 | F: net/batman-adv/ |
2400 | ||
e2d1d6c0 | 2401 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 2402 | M: Thomas Sailer <t.sailer@alumni.ethz.ch> |
e2d1d6c0 RD |
2403 | L: linux-hams@vger.kernel.org |
2404 | W: http://www.baycom.org/~tom/ham/ham.html | |
2405 | S: Maintained | |
679655da | 2406 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 2407 | |
cafe5635 | 2408 | BCACHE (BLOCK LAYER CACHE) |
d1aa1ab3 | 2409 | M: Kent Overstreet <kent.overstreet@gmail.com> |
cafe5635 KO |
2410 | L: linux-bcache@vger.kernel.org |
2411 | W: http://bcache.evilpiepirate.org | |
4d1034eb | 2412 | S: Orphan |
cafe5635 KO |
2413 | F: drivers/md/bcache/ |
2414 | ||
04bd844a HV |
2415 | BDISP ST MEDIA DRIVER |
2416 | M: Fabien Dessenne <fabien.dessenne@st.com> | |
2417 | L: linux-media@vger.kernel.org | |
2418 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 2419 | W: https://linuxtv.org |
04bd844a HV |
2420 | S: Supported |
2421 | F: drivers/media/platform/sti/bdisp | |
2422 | ||
e2d1d6c0 | 2423 | BEFS FILE SYSTEM |
db4ad036 LB |
2424 | M: Luis de Bethencourt <luisbg@osg.samsung.com> |
2425 | M: Salah Triki <salah.triki@gmail.com> | |
2426 | S: Maintained | |
2427 | T: git git://github.com/luisbg/linux-befs.git | |
679655da JP |
2428 | F: Documentation/filesystems/befs.txt |
2429 | F: fs/befs/ | |
e2d1d6c0 | 2430 | |
564ee360 | 2431 | BECKHOFF CX5020 ETHERCAT MASTER DRIVER |
49e7d9df JP |
2432 | M: Dariusz Marcinkiewicz <reksio@newterm.pl> |
2433 | L: netdev@vger.kernel.org | |
2434 | S: Maintained | |
2435 | F: drivers/net/ethernet/ec_bhf.c | |
564ee360 | 2436 | |
e2d1d6c0 | 2437 | BFS FILE SYSTEM |
8b58be88 | 2438 | M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk> |
e2d1d6c0 | 2439 | S: Maintained |
679655da JP |
2440 | F: Documentation/filesystems/bfs.txt |
2441 | F: fs/bfs/ | |
c117ab84 | 2442 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 2443 | |
1394f032 | 2444 | BLACKFIN ARCHITECTURE |
a4edbc10 | 2445 | M: Steven Miao <realmz6@gmail.com> |
b3fe92b0 | 2446 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1443176f | 2447 | T: git git://git.code.sf.net/p/adi-linux/code |
e3b2d3f3 BW |
2448 | W: http://blackfin.uclinux.org |
2449 | S: Supported | |
679655da | 2450 | F: arch/blackfin/ |
566da5b2 | 2451 | |
e190d6b1 | 2452 | BLACKFIN EMAC DRIVER |
b3fe92b0 | 2453 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e190d6b1 BW |
2454 | W: http://blackfin.uclinux.org |
2455 | S: Supported | |
7b35f033 | 2456 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 2457 | |
566da5b2 | 2458 | BLACKFIN RTC DRIVER |
b3fe92b0 | 2459 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
566da5b2 MF |
2460 | W: http://blackfin.uclinux.org |
2461 | S: Supported | |
679655da | 2462 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 2463 | |
936ed49a | 2464 | BLACKFIN SDH DRIVER |
109ec8c3 | 2465 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2466 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
936ed49a MF |
2467 | W: http://blackfin.uclinux.org |
2468 | S: Supported | |
2469 | F: drivers/mmc/host/bfin_sdh.c | |
2470 | ||
1394f032 | 2471 | BLACKFIN SERIAL DRIVER |
8b58be88 | 2472 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2473 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e3b2d3f3 BW |
2474 | W: http://blackfin.uclinux.org |
2475 | S: Supported | |
8460241e | 2476 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 2477 | |
1e6d320f | 2478 | BLACKFIN WATCHDOG DRIVER |
b3fe92b0 | 2479 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1e6d320f BW |
2480 | W: http://blackfin.uclinux.org |
2481 | S: Supported | |
679655da | 2482 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 2483 | |
d24ecfcc | 2484 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 2485 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2486 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
d24ecfcc BW |
2487 | W: http://blackfin.uclinux.org/ |
2488 | S: Supported | |
679655da | 2489 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 2490 | |
1e204377 SJ |
2491 | BLACKFIN MEDIA DRIVER |
2492 | M: Scott Jiang <scott.jiang.linux@gmail.com> | |
b3fe92b0 | 2493 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1e204377 SJ |
2494 | W: http://blackfin.uclinux.org/ |
2495 | S: Supported | |
2496 | F: drivers/media/platform/blackfin/ | |
2497 | F: drivers/media/i2c/adv7183* | |
2498 | F: drivers/media/i2c/vs6624* | |
2499 | ||
b54cf35a JSM |
2500 | BLINKM RGB LED DRIVER |
2501 | M: Jan-Simon Moeller <jansimon.moeller@gmx.de> | |
2502 | S: Maintained | |
2503 | F: drivers/leds/leds-blinkm.c | |
2504 | ||
1da177e4 | 2505 | BLOCK LAYER |
8b58be88 | 2506 | M: Jens Axboe <axboe@kernel.dk> |
82c426e0 | 2507 | L: linux-block@vger.kernel.org |
08deed1e | 2508 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 2509 | S: Maintained |
679655da | 2510 | F: block/ |
ae11f7ef | 2511 | F: kernel/trace/blktrace.c |
88459642 | 2512 | F: lib/sbitmap.c |
1da177e4 | 2513 | |
2b54aaef | 2514 | BLOCK2MTD DRIVER |
8b58be88 | 2515 | M: Joern Engel <joern@lazybastard.org> |
2b54aaef JE |
2516 | L: linux-mtd@lists.infradead.org |
2517 | S: Maintained | |
679655da | 2518 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 2519 | |
63fbd24e | 2520 | BLUETOOTH DRIVERS |
8b58be88 | 2521 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 2522 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 2523 | M: Johan Hedberg <johan.hedberg@gmail.com> |
781c2844 | 2524 | L: linux-bluetooth@vger.kernel.org |
63fbd24e | 2525 | W: http://www.bluez.org/ |
22e7a424 MH |
2526 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
2527 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 2528 | S: Maintained |
679655da | 2529 | F: drivers/bluetooth/ |
1da177e4 | 2530 | |
63fbd24e | 2531 | BLUETOOTH SUBSYSTEM |
8b58be88 | 2532 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 2533 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 2534 | M: Johan Hedberg <johan.hedberg@gmail.com> |
63fbd24e MH |
2535 | L: linux-bluetooth@vger.kernel.org |
2536 | W: http://www.bluez.org/ | |
22e7a424 MH |
2537 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
2538 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 2539 | S: Maintained |
679655da JP |
2540 | F: net/bluetooth/ |
2541 | F: include/net/bluetooth/ | |
1da177e4 LT |
2542 | |
2543 | BONDING DRIVER | |
79b30750 | 2544 | M: Jay Vosburgh <j.vosburgh@gmail.com> |
898602a0 | 2545 | M: Veaceslav Falico <vfalico@gmail.com> |
da29838d | 2546 | M: Andy Gospodarek <andy@greyhouse.net> |
a6c36ee6 | 2547 | L: netdev@vger.kernel.org |
ce00f85c JC |
2548 | W: http://sourceforge.net/projects/bonding/ |
2549 | S: Supported | |
679655da | 2550 | F: drivers/net/bonding/ |
c117ab84 | 2551 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 2552 | |
b5f4df34 AS |
2553 | BPF (Safe dynamic programs and tools) |
2554 | M: Alexei Starovoitov <ast@kernel.org> | |
2555 | L: netdev@vger.kernel.org | |
2556 | L: linux-kernel@vger.kernel.org | |
2557 | S: Supported | |
2558 | F: kernel/bpf/ | |
5aa5bd14 DB |
2559 | F: tools/testing/selftests/bpf/ |
2560 | F: lib/test_bpf.c | |
b5f4df34 | 2561 | |
39105890 | 2562 | BROADCOM B44 10/100 ETHERNET DRIVER |
75c9510b | 2563 | M: Michael Chan <michael.chan@broadcom.com> |
39105890 GZ |
2564 | L: netdev@vger.kernel.org |
2565 | S: Supported | |
adfc5217 | 2566 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 2567 | |
967dd82f FF |
2568 | BROADCOM B53 ETHERNET SWITCH DRIVER |
2569 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2570 | L: netdev@vger.kernel.org | |
2571 | L: openwrt-devel@lists.openwrt.org (subscribers-only) | |
2572 | S: Supported | |
2573 | F: drivers/net/dsa/b53/* | |
2574 | F: include/linux/platform_data/b53.h | |
2575 | ||
32ec90d5 FF |
2576 | BROADCOM GENET ETHERNET DRIVER |
2577 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2578 | L: netdev@vger.kernel.org | |
2579 | S: Supported | |
2580 | F: drivers/net/ethernet/broadcom/genet/ | |
2581 | ||
948c51e6 | 2582 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
67f0160f MY |
2583 | M: Rasesh Mody <rasesh.mody@cavium.com> |
2584 | M: Harish Patil <harish.patil@cavium.com> | |
2585 | M: Dept-GELinuxNICDev@cavium.com | |
948c51e6 MC |
2586 | L: netdev@vger.kernel.org |
2587 | S: Supported | |
adfc5217 JK |
2588 | F: drivers/net/ethernet/broadcom/bnx2.* |
2589 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 2590 | |
4d9d2cb0 | 2591 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
67f0160f MY |
2592 | M: Yuval Mintz <Yuval.Mintz@cavium.com> |
2593 | M: Ariel Elior <ariel.elior@cavium.com> | |
2594 | M: everest-linux-l2@cavium.com | |
4d9d2cb0 ET |
2595 | L: netdev@vger.kernel.org |
2596 | S: Supported | |
adfc5217 | 2597 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 2598 | |
90f4c594 | 2599 | BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE |
f18cf050 | 2600 | M: Florian Fainelli <f.fainelli@gmail.com> |
d3cc2e86 FF |
2601 | M: Ray Jui <rjui@broadcom.com> |
2602 | M: Scott Branden <sbranden@broadcom.com> | |
086f4704 | 2603 | M: bcm-kernel-feedback-list@broadcom.com |
90f4c594 | 2604 | T: git git://github.com/broadcom/mach-bcm |
af4b8e37 | 2605 | S: Maintained |
ccf62f5a JM |
2606 | N: bcm281* |
2607 | N: bcm113* | |
2608 | N: bcm216* | |
2609 | N: kona | |
af4b8e37 | 2610 | F: arch/arm/mach-bcm/ |
af4b8e37 | 2611 | |
9209bec4 | 2612 | BROADCOM BCM2835 ARM ARCHITECTURE |
f680f25c | 2613 | M: Stephen Warren <swarren@wwwdotorg.org> |
8bcdd929 | 2614 | M: Lee Jones <lee@kernel.org> |
10b9e887 | 2615 | M: Eric Anholt <eric@anholt.net> |
f680f25c | 2616 | L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers) |
82481129 | 2617 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
8bcdd929 | 2618 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git |
f680f25c | 2619 | S: Maintained |
9209bec4 | 2620 | N: bcm2835 |
4a5a7a66 | 2621 | F: drivers/staging/vc04_services |
f680f25c | 2622 | |
5564f092 RM |
2623 | BROADCOM BCM47XX MIPS ARCHITECTURE |
2624 | M: Hauke Mehrtens <hauke@hauke-m.de> | |
2625 | M: Rafał Miłecki <zajec5@gmail.com> | |
2626 | L: linux-mips@linux-mips.org | |
2627 | S: Maintained | |
7ad2410c | 2628 | F: Documentation/devicetree/bindings/mips/brcm/ |
5564f092 RM |
2629 | F: arch/mips/bcm47xx/* |
2630 | F: arch/mips/include/asm/mach-bcm47xx/* | |
2631 | ||
9209bec4 | 2632 | BROADCOM BCM5301X ARM ARCHITECTURE |
5b293ebe | 2633 | M: Hauke Mehrtens <hauke@hauke-m.de> |
1a50cd8a RM |
2634 | M: Rafał Miłecki <zajec5@gmail.com> |
2635 | M: bcm-kernel-feedback-list@broadcom.com | |
5b293ebe HM |
2636 | L: linux-arm-kernel@lists.infradead.org |
2637 | S: Maintained | |
2638 | F: arch/arm/mach-bcm/bcm_5301x.c | |
1a50cd8a | 2639 | F: arch/arm/boot/dts/bcm5301x*.dtsi |
5b293ebe HM |
2640 | F: arch/arm/boot/dts/bcm470* |
2641 | ||
4ebd5047 RM |
2642 | BROADCOM BCM53573 ARM ARCHITECTURE |
2643 | M: Rafał Miłecki <rafal@milecki.pl> | |
2644 | L: linux-arm-kernel@lists.infradead.org | |
2645 | S: Maintained | |
2646 | F: arch/arm/boot/dts/bcm53573* | |
2647 | F: arch/arm/boot/dts/bcm47189* | |
2648 | ||
e076e962 FF |
2649 | BROADCOM BCM63XX ARM ARCHITECTURE |
2650 | M: Florian Fainelli <f.fainelli@gmail.com> | |
086f4704 | 2651 | M: bcm-kernel-feedback-list@broadcom.com |
20de823e | 2652 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
20de823e | 2653 | T: git git://github.com/broadcom/stblinux.git |
e076e962 | 2654 | S: Maintained |
d6f4e76e | 2655 | N: bcm63xx |
e076e962 | 2656 | |
7110e227 KC |
2657 | BROADCOM BCM63XX/BCM33XX UDC DRIVER |
2658 | M: Kevin Cernekee <cernekee@gmail.com> | |
2659 | L: linux-usb@vger.kernel.org | |
2660 | S: Maintained | |
2661 | F: drivers/usb/gadget/udc/bcm63xx_udc.* | |
2662 | ||
2df94fd6 | 2663 | BROADCOM BCM7XXX ARM ARCHITECTURE |
2df94fd6 | 2664 | M: Brian Norris <computersforpeace@gmail.com> |
3b4b6fe9 FF |
2665 | M: Gregory Fong <gregory.0xf0@gmail.com> |
2666 | M: Florian Fainelli <f.fainelli@gmail.com> | |
086f4704 | 2667 | M: bcm-kernel-feedback-list@broadcom.com |
2df94fd6 | 2668 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
eb6725d0 | 2669 | T: git git://github.com/broadcom/stblinux.git |
2df94fd6 BN |
2670 | S: Maintained |
2671 | F: arch/arm/mach-bcm/*brcmstb* | |
2672 | F: arch/arm/boot/dts/bcm7*.dts* | |
e36661e4 | 2673 | F: drivers/bus/brcmstb_gisb.c |
5009a289 | 2674 | N: brcmstb |
2df94fd6 | 2675 | |
70371cef KC |
2676 | BROADCOM BMIPS MIPS ARCHITECTURE |
2677 | M: Kevin Cernekee <cernekee@gmail.com> | |
2678 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2679 | L: linux-mips@linux-mips.org | |
eb6725d0 | 2680 | T: git git://github.com/broadcom/stblinux.git |
70371cef KC |
2681 | S: Maintained |
2682 | F: arch/mips/bmips/* | |
2683 | F: arch/mips/include/asm/mach-bmips/* | |
2684 | F: arch/mips/kernel/*bmips* | |
338808de | 2685 | F: arch/mips/boot/dts/brcm/bcm*.dts* |
c7c42ec2 | 2686 | F: drivers/irqchip/irq-bcm63* |
70371cef KC |
2687 | F: drivers/irqchip/irq-bcm7* |
2688 | F: drivers/irqchip/irq-brcmstb* | |
3271e610 | 2689 | F: include/linux/bcm963xx_nvram.h |
8fce60b8 | 2690 | F: include/linux/bcm963xx_tag.h |
70371cef | 2691 | |
948c51e6 | 2692 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
ccad0993 | 2693 | M: Siva Reddy Kallam <siva.kallam@broadcom.com> |
23629477 | 2694 | M: Prashant Sreedharan <prashant@broadcom.com> |
8b58be88 | 2695 | M: Michael Chan <mchan@broadcom.com> |
948c51e6 MC |
2696 | L: netdev@vger.kernel.org |
2697 | S: Supported | |
adfc5217 | 2698 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 2699 | |
a9533e7e | 2700 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
2a734451 AS |
2701 | M: Arend van Spriel <arend.vanspriel@broadcom.com> |
2702 | M: Franky Lin <franky.lin@broadcom.com> | |
2703 | M: Hante Meuleman <hante.meuleman@broadcom.com> | |
a9533e7e | 2704 | L: linux-wireless@vger.kernel.org |
2a734451 | 2705 | L: brcm80211-dev-list.pdl@broadcom.com |
a9533e7e | 2706 | S: Supported |
05491d2c | 2707 | F: drivers/net/wireless/broadcom/brcm80211/ |
a9533e7e | 2708 | |
9958d6f9 | 2709 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
3b7f040a | 2710 | M: QLogic-Storage-Upstream@qlogic.com |
9958d6f9 BPG |
2711 | L: linux-scsi@vger.kernel.org |
2712 | S: Supported | |
2713 | F: drivers/scsi/bnx2fc/ | |
2714 | ||
6a6b5ad0 | 2715 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
3b7f040a | 2716 | M: QLogic-Storage-Upstream@qlogic.com |
6a6b5ad0 EW |
2717 | L: linux-scsi@vger.kernel.org |
2718 | S: Supported | |
2719 | F: drivers/scsi/bnx2i/ | |
2720 | ||
63f37ddf | 2721 | BROADCOM IPROC ARM ARCHITECTURE |
36c0237f SB |
2722 | M: Ray Jui <rjui@broadcom.com> |
2723 | M: Scott Branden <sbranden@broadcom.com> | |
63f37ddf | 2724 | M: Jon Mason <jonmason@broadcom.com> |
086f4704 | 2725 | M: bcm-kernel-feedback-list@broadcom.com |
36c0237f | 2726 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
eb6725d0 | 2727 | T: git git://github.com/broadcom/cygnus-linux.git |
36c0237f SB |
2728 | S: Maintained |
2729 | N: iproc | |
2730 | N: cygnus | |
5c161242 | 2731 | N: bcm[-_]nsp |
36c0237f SB |
2732 | N: bcm9113* |
2733 | N: bcm9583* | |
63f37ddf JM |
2734 | N: bcm9585* |
2735 | N: bcm9586* | |
2736 | N: bcm988312 | |
36c0237f | 2737 | N: bcm113* |
63f37ddf JM |
2738 | N: bcm583* |
2739 | N: bcm585* | |
2740 | N: bcm586* | |
2741 | N: bcm88312 | |
d76e21b8 | 2742 | F: arch/arm64/boot/dts/broadcom/ns2* |
5c161242 JM |
2743 | F: drivers/clk/bcm/clk-ns* |
2744 | F: drivers/pinctrl/bcm/pinctrl-ns* | |
36c0237f | 2745 | |
3b0213d5 GF |
2746 | BROADCOM BRCMSTB GPIO DRIVER |
2747 | M: Gregory Fong <gregory.0xf0@gmail.com> | |
9c2abe2f | 2748 | L: bcm-kernel-feedback-list@broadcom.com |
3b0213d5 GF |
2749 | S: Supported |
2750 | F: drivers/gpio/gpio-brcmstb.c | |
2751 | F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt | |
2752 | ||
7b7f588b | 2753 | BROADCOM KONA GPIO DRIVER |
5e163903 | 2754 | M: Ray Jui <rjui@broadcom.com> |
7b7f588b MM |
2755 | L: bcm-kernel-feedback-list@broadcom.com |
2756 | S: Supported | |
2757 | F: drivers/gpio/gpio-bcm-kona.c | |
1db12cde | 2758 | F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt |
7b7f588b | 2759 | |
f6e734a8 RM |
2760 | BROADCOM NVRAM DRIVER |
2761 | M: Rafał Miłecki <zajec5@gmail.com> | |
2762 | L: linux-mips@linux-mips.org | |
2763 | S: Maintained | |
2764 | F: drivers/firmware/broadcom/* | |
2765 | ||
02787daa BN |
2766 | BROADCOM STB NAND FLASH DRIVER |
2767 | M: Brian Norris <computersforpeace@gmail.com> | |
1ddaa021 | 2768 | M: Kamal Dasu <kdasu.kdev@gmail.com> |
02787daa | 2769 | L: linux-mtd@lists.infradead.org |
1285734c | 2770 | L: bcm-kernel-feedback-list@broadcom.com |
02787daa BN |
2771 | S: Maintained |
2772 | F: drivers/mtd/nand/brcmnand/ | |
2773 | ||
bb446b57 MM |
2774 | BROADCOM STB AVS CPUFREQ DRIVER |
2775 | M: Markus Mayer <mmayer@broadcom.com> | |
2776 | M: bcm-kernel-feedback-list@broadcom.com | |
2777 | L: linux-pm@vger.kernel.org | |
2778 | S: Maintained | |
2779 | F: Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt | |
de322e08 | 2780 | F: drivers/cpufreq/brcmstb* |
bb446b57 | 2781 | |
c9678d86 RM |
2782 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
2783 | M: Rafał Miłecki <zajec5@gmail.com> | |
2784 | L: linux-wireless@vger.kernel.org | |
2785 | S: Maintained | |
2786 | F: drivers/bcma/ | |
2787 | F: include/linux/bcma/ | |
2788 | ||
b8302205 FF |
2789 | BROADCOM SYSTEMPORT ETHERNET DRIVER |
2790 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2791 | L: netdev@vger.kernel.org | |
2792 | S: Supported | |
2793 | F: drivers/net/ethernet/broadcom/bcmsysport.* | |
2794 | ||
42515e61 J |
2795 | BROADCOM VULCAN ARM64 SOC |
2796 | M: Jayachandran C. <jchandra@broadcom.com> | |
086f4704 | 2797 | M: bcm-kernel-feedback-list@broadcom.com |
42515e61 | 2798 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
42515e61 J |
2799 | S: Maintained |
2800 | F: arch/arm64/boot/dts/broadcom/vulcan* | |
2801 | ||
7725ccfd | 2802 | BROCADE BFA FC SCSI DRIVER |
aa803370 AG |
2803 | M: Anil Gurumurthy <anil.gurumurthy@qlogic.com> |
2804 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> | |
455518e7 JP |
2805 | L: linux-scsi@vger.kernel.org |
2806 | S: Supported | |
2807 | F: drivers/scsi/bfa/ | |
7725ccfd | 2808 | |
8b230ed8 | 2809 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
67f0160f MY |
2810 | M: Rasesh Mody <rasesh.mody@cavium.com> |
2811 | M: Sudarsana Kalluru <sudarsana.kalluru@cavium.com> | |
2812 | M: Dept-GELinuxNICDev@cavium.com | |
8b230ed8 RM |
2813 | L: netdev@vger.kernel.org |
2814 | S: Supported | |
f844a0ea | 2815 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 2816 | |
5cdf7f76 | 2817 | BSG (block layer generic sg v4 driver) |
8b58be88 | 2818 | M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> |
5cdf7f76 JA |
2819 | L: linux-scsi@vger.kernel.org |
2820 | S: Supported | |
679655da JP |
2821 | F: block/bsg.c |
2822 | F: include/linux/bsg.h | |
c117ab84 | 2823 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 2824 | |
af39917d CL |
2825 | BT87X AUDIO DRIVER |
2826 | M: Clemens Ladisch <clemens@ladisch.de> | |
2827 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2828 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2829 | S: Maintained | |
2830 | F: Documentation/sound/alsa/Bt87x.txt | |
2831 | F: sound/pci/bt87x.c | |
2832 | ||
ff1d5c2f | 2833 | BT8XXGPIO DRIVER |
eb032b98 | 2834 | M: Michael Buesch <m@bues.ch> |
ff1d5c2f MB |
2835 | W: http://bu3sch.de/btgpio.php |
2836 | S: Maintained | |
72dbb705 | 2837 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 2838 | |
eb1eb04f | 2839 | BTRFS FILE SYSTEM |
c0778e25 CM |
2840 | M: Chris Mason <clm@fb.com> |
2841 | M: Josef Bacik <jbacik@fb.com> | |
d8130624 | 2842 | M: David Sterba <dsterba@suse.com> |
eb1eb04f JP |
2843 | L: linux-btrfs@vger.kernel.org |
2844 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 2845 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 2846 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 2847 | S: Maintained |
679655da JP |
2848 | F: Documentation/filesystems/btrfs.txt |
2849 | F: fs/btrfs/ | |
eb1eb04f | 2850 | |
1da177e4 | 2851 | BTTV VIDEO4LINUX DRIVER |
5dc8a864 MCC |
2852 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
2853 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
661263b5 | 2854 | L: linux-media@vger.kernel.org |
a825eaec | 2855 | W: https://linuxtv.org |
275ffde4 | 2856 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 2857 | S: Odd fixes |
618cd932 | 2858 | F: Documentation/media/v4l-drivers/bttv* |
90d72ac6 | 2859 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 2860 | |
1f34923c KA |
2861 | BUSLOGIC SCSI DRIVER |
2862 | M: Khalid Aziz <khalid@gonehiking.org> | |
2863 | L: linux-scsi@vger.kernel.org | |
2864 | S: Maintained | |
2865 | F: drivers/scsi/BusLogic.* | |
2866 | F: drivers/scsi/FlashPoint.* | |
2867 | ||
af39917d CL |
2868 | C-MEDIA CMI8788 DRIVER |
2869 | M: Clemens Ladisch <clemens@ladisch.de> | |
2870 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2871 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2872 | S: Maintained | |
2873 | F: sound/pci/oxygen/ | |
2874 | ||
2141355f MS |
2875 | C6X ARCHITECTURE |
2876 | M: Mark Salter <msalter@redhat.com> | |
2877 | M: Aurelien Jacquiot <a-jacquiot@ti.com> | |
2878 | L: linux-c6x-dev@linux-c6x.org | |
2879 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
2880 | S: Maintained | |
2881 | F: arch/c6x/ | |
2882 | ||
a5432f5a | 2883 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 2884 | M: David Howells <dhowells@redhat.com> |
e62d6e24 | 2885 | L: linux-cachefs@redhat.com (moderated for non-subscribers) |
a5432f5a DH |
2886 | S: Supported |
2887 | F: Documentation/filesystems/caching/cachefiles.txt | |
2888 | F: fs/cachefiles/ | |
2889 | ||
c815ca39 HV |
2890 | CADET FM/AM RADIO RECEIVER DRIVER |
2891 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2892 | L: linux-media@vger.kernel.org | |
2893 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 2894 | W: https://linuxtv.org |
c815ca39 HV |
2895 | S: Maintained |
2896 | F: drivers/media/radio/radio-cadet* | |
2897 | ||
77d5140f | 2898 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 2899 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 2900 | L: linux-media@vger.kernel.org |
275ffde4 | 2901 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 2902 | S: Maintained |
618cd932 | 2903 | F: Documentation/media/v4l-drivers/cafe_ccic* |
90d72ac6 | 2904 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 2905 | |
201b6bab | 2906 | CAIF NETWORK LAYER |
5c574f50 | 2907 | M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no> |
201b6bab JP |
2908 | L: netdev@vger.kernel.org |
2909 | S: Supported | |
2910 | F: Documentation/networking/caif/ | |
2911 | F: drivers/net/caif/ | |
c117ab84 | 2912 | F: include/uapi/linux/caif/ |
201b6bab JP |
2913 | F: include/net/caif/ |
2914 | F: net/caif/ | |
2915 | ||
77dac90f | 2916 | CALGARY x86-64 IOMMU |
a6921c29 JM |
2917 | M: Muli Ben-Yehuda <mulix@mulix.org> |
2918 | M: Jon Mason <jdmason@kudzu.us> | |
2919 | L: iommu@lists.linux-foundation.org | |
77dac90f | 2920 | S: Maintained |
679655da JP |
2921 | F: arch/x86/kernel/pci-calgary_64.c |
2922 | F: arch/x86/kernel/tce_64.c | |
2923 | F: arch/x86/include/asm/calgary.h | |
2924 | F: arch/x86/include/asm/tce.h | |
77dac90f | 2925 | |
e2d1d6c0 | 2926 | CAN NETWORK LAYER |
8d15d386 | 2927 | M: Oliver Hartkopp <socketcan@hartkopp.net> |
f7214cf2 | 2928 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 2929 | L: linux-can@vger.kernel.org |
84b0d715 | 2930 | W: https://github.com/linux-can |
870482a4 MKB |
2931 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
2932 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git | |
e2d1d6c0 | 2933 | S: Maintained |
f35f6c8f | 2934 | F: Documentation/networking/can.txt |
8d15d386 | 2935 | F: net/can/ |
8d15d386 | 2936 | F: include/linux/can/core.h |
c117ab84 CEB |
2937 | F: include/uapi/linux/can.h |
2938 | F: include/uapi/linux/can/bcm.h | |
2939 | F: include/uapi/linux/can/raw.h | |
2940 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 2941 | |
4261a204 | 2942 | CAN NETWORK DRIVERS |
8b58be88 | 2943 | M: Wolfgang Grandegger <wg@grandegger.com> |
ec78213a | 2944 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 2945 | L: linux-can@vger.kernel.org |
84b0d715 | 2946 | W: https://github.com/linux-can |
870482a4 MKB |
2947 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
2948 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git | |
4261a204 | 2949 | S: Maintained |
3636876a | 2950 | F: Documentation/devicetree/bindings/net/can/ |
8d15d386 OH |
2951 | F: drivers/net/can/ |
2952 | F: include/linux/can/dev.h | |
8d15d386 | 2953 | F: include/linux/can/platform/ |
c117ab84 CEB |
2954 | F: include/uapi/linux/can/error.h |
2955 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 2956 | |
95d16c72 | 2957 | CAPABILITIES |
39baa7e6 | 2958 | M: Serge Hallyn <serge@hallyn.com> |
95d16c72 | 2959 | L: linux-security-module@vger.kernel.org |
6305902c | 2960 | S: Supported |
95d16c72 | 2961 | F: include/linux/capability.h |
c117ab84 | 2962 | F: include/uapi/linux/capability.h |
6305902c | 2963 | F: security/commoncap.c |
38a94118 | 2964 | F: kernel/capability.c |
95d16c72 | 2965 | |
b84894c7 KT |
2966 | CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER |
2967 | M: Kevin Tsai <ktsai@capellamicro.com> | |
2968 | S: Maintained | |
2969 | F: drivers/iio/light/cm* | |
8c27ceff | 2970 | F: Documentation/devicetree/bindings/i2c/trivial-admin-guide/devices.rst |
b84894c7 | 2971 | |
f9484852 JG |
2972 | CAVIUM I2C DRIVER |
2973 | M: Jan Glauber <jglauber@cavium.com> | |
2974 | M: David Daney <david.daney@cavium.com> | |
2975 | W: http://www.cavium.com | |
2976 | S: Supported | |
2977 | F: drivers/i2c/busses/i2c-octeon* | |
2978 | F: drivers/i2c/busses/i2c-thunderx* | |
2979 | ||
f21fb3ed RV |
2980 | CAVIUM LIQUIDIO NETWORK DRIVER |
2981 | M: Derek Chickles <derek.chickles@caviumnetworks.com> | |
2982 | M: Satanand Burla <satananda.burla@caviumnetworks.com> | |
2983 | M: Felix Manlunas <felix.manlunas@caviumnetworks.com> | |
2984 | M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com> | |
2985 | L: netdev@vger.kernel.org | |
2986 | W: http://www.cavium.com | |
2987 | S: Supported | |
f21fb3ed RV |
2988 | F: drivers/net/ethernet/cavium/liquidio/ |
2989 | ||
ef0bbac3 VB |
2990 | CC2520 IEEE-802.15.4 RADIO DRIVER |
2991 | M: Varka Bhadram <varkabhadram@gmail.com> | |
2992 | L: linux-wpan@vger.kernel.org | |
2993 | S: Maintained | |
2994 | F: drivers/net/ieee802154/cc2520.c | |
2995 | F: include/linux/spi/cc2520.h | |
2996 | F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt | |
2997 | ||
ca684386 HV |
2998 | CEC DRIVER |
2999 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
3000 | L: linux-media@vger.kernel.org | |
3001 | T: git git://linuxtv.org/media_tree.git | |
3002 | W: http://linuxtv.org | |
3003 | S: Supported | |
3004 | F: Documentation/cec.txt | |
618cd932 | 3005 | F: Documentation/media/uapi/cec |
ca684386 HV |
3006 | F: drivers/staging/media/cec/ |
3007 | F: drivers/media/cec-edid.c | |
3008 | F: drivers/media/rc/keymaps/rc-cec.c | |
3009 | F: include/media/cec.h | |
3010 | F: include/media/cec-edid.h | |
3011 | F: include/linux/cec.h | |
3012 | F: include/linux/cec-funcs.h | |
3013 | ||
b8154542 | 3014 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 3015 | M: Arnd Bergmann <arnd@arndb.de> |
a4724ed6 | 3016 | L: linuxppc-dev@lists.ozlabs.org |
b8154542 AB |
3017 | W: http://www.ibm.com/developerworks/power/cell/ |
3018 | S: Supported | |
679655da | 3019 | F: arch/powerpc/include/asm/cell*.h |
679655da | 3020 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 3021 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
3022 | F: arch/powerpc/oprofile/*cell* |
3023 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 3024 | |
398ecff5 SW |
3025 | CEPH COMMON CODE (LIBCEPH) |
3026 | M: Ilya Dryomov <idryomov@gmail.com> | |
e43cdb56 | 3027 | M: "Yan, Zheng" <zyan@redhat.com> |
0f5417ce | 3028 | M: Sage Weil <sage@redhat.com> |
82593f87 | 3029 | L: ceph-devel@vger.kernel.org |
09d90327 | 3030 | W: http://ceph.com/ |
fb99f881 | 3031 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
6e67b7ae | 3032 | T: git git://github.com/ceph/ceph-client.git |
9030aaf9 | 3033 | S: Supported |
14430813 JP |
3034 | F: net/ceph/ |
3035 | F: include/linux/ceph/ | |
3036 | F: include/linux/crush/ | |
9030aaf9 | 3037 | |
398ecff5 SW |
3038 | CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH) |
3039 | M: "Yan, Zheng" <zyan@redhat.com> | |
3040 | M: Sage Weil <sage@redhat.com> | |
3041 | M: Ilya Dryomov <idryomov@gmail.com> | |
3042 | L: ceph-devel@vger.kernel.org | |
3043 | W: http://ceph.com/ | |
3044 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
6e67b7ae | 3045 | T: git git://github.com/ceph/ceph-client.git |
398ecff5 SW |
3046 | S: Supported |
3047 | F: Documentation/filesystems/ceph.txt | |
3048 | F: fs/ceph/ | |
3049 | ||
cfc411e7 DH |
3050 | CERTIFICATE HANDLING: |
3051 | M: David Howells <dhowells@redhat.com> | |
3052 | M: David Woodhouse <dwmw2@infradead.org> | |
d8d80386 | 3053 | L: keyrings@vger.kernel.org |
cfc411e7 DH |
3054 | S: Maintained |
3055 | F: Documentation/module-signing.txt | |
3056 | F: certs/ | |
d8d80386 | 3057 | F: scripts/sign-file.c |
cfc411e7 DH |
3058 | F: scripts/extract-cert.c |
3059 | ||
18332a80 | 3060 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 3061 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 3062 | S: Orphan |
679655da JP |
3063 | F: Documentation/usb/WUSB-Design-overview.txt |
3064 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
3065 | F: drivers/usb/host/hwa-hc.c |
3066 | F: drivers/usb/host/whci/ | |
679655da JP |
3067 | F: drivers/usb/wusbcore/ |
3068 | F: include/linux/usb/wusb* | |
18332a80 | 3069 | |
c4d7e510 RG |
3070 | HT16K33 LED CONTROLLER DRIVER |
3071 | M: Robin van der Gracht <robin@protonic.nl> | |
3072 | S: Maintained | |
3073 | F: drivers/auxdisplay/ht16k33.c | |
3074 | F: Documentation/devicetree/bindings/display/ht16k33.txt | |
3075 | ||
70e84049 | 3076 | CFAG12864B LCD DRIVER |
8b58be88 | 3077 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
3078 | W: http://miguelojeda.es/auxdisplay.htm |
3079 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 3080 | S: Maintained |
679655da JP |
3081 | F: drivers/auxdisplay/cfag12864b.c |
3082 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
3083 | |
3084 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 3085 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
3086 | W: http://miguelojeda.es/auxdisplay.htm |
3087 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 3088 | S: Maintained |
679655da JP |
3089 | F: drivers/auxdisplay/cfag12864bfb.c |
3090 | F: include/linux/cfag12864b.h | |
70e84049 | 3091 | |
704232c2 | 3092 | CFG80211 and NL80211 |
8b58be88 | 3093 | M: Johannes Berg <johannes@sipsolutions.net> |
704232c2 | 3094 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
3095 | W: http://wireless.kernel.org/ |
3096 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
3097 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 3098 | S: Maintained |
c117ab84 | 3099 | F: include/uapi/linux/nl80211.h |
679655da JP |
3100 | F: include/net/cfg80211.h |
3101 | F: net/wireless/* | |
3102 | X: net/wireless/wext* | |
704232c2 | 3103 | |
46e64261 GKH |
3104 | CHAR and MISC DRIVERS |
3105 | M: Arnd Bergmann <arnd@arndb.de> | |
879a5a00 | 3106 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
46e64261 | 3107 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 3108 | S: Supported |
46e64261 GKH |
3109 | F: drivers/char/* |
3110 | F: drivers/misc/* | |
471322a8 | 3111 | F: include/linux/miscdevice.h |
46e64261 | 3112 | |
0a920b5b | 3113 | CHECKPATCH |
8b58be88 | 3114 | M: Andy Whitcroft <apw@canonical.com> |
10d83f07 JP |
3115 | M: Joe Perches <joe@perches.com> |
3116 | S: Maintained | |
679655da | 3117 | F: scripts/checkpatch.pl |
0a920b5b | 3118 | |
f8407f26 HW |
3119 | CHINESE DOCUMENTATION |
3120 | M: Harry Wei <harryxiyou@gmail.com> | |
9740153c | 3121 | L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only) |
f8407f26 HW |
3122 | L: linux-kernel@zh-kernel.org (moderated for non-subscribers) |
3123 | S: Maintained | |
f5ff9b63 | 3124 | F: Documentation/translations/zh_CN/ |
f8407f26 | 3125 | |
2721ea2c | 3126 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
60d77b3d | 3127 | M: Peter Chen <Peter.Chen@nxp.com> |
8373856d | 3128 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
2721ea2c AS |
3129 | L: linux-usb@vger.kernel.org |
3130 | S: Maintained | |
3131 | F: drivers/usb/chipidea/ | |
3132 | ||
a93ad65d HG |
3133 | CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER |
3134 | M: Hans de Goede <hdegoede@redhat.com> | |
3135 | L: linux-input@vger.kernel.org | |
3136 | S: Maintained | |
3137 | F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt | |
3138 | F: drivers/input/touchscreen/chipone_icn8318.c | |
3139 | ||
ab043105 OJ |
3140 | CHROME HARDWARE PLATFORM SUPPORT |
3141 | M: Olof Johansson <olof@lixom.net> | |
3142 | S: Maintained | |
9f273c24 | 3143 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git |
ab043105 OJ |
3144 | F: drivers/platform/chrome/ |
3145 | ||
641cb85e | 3146 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 3147 | M: Christian Benvenuti <benve@cisco.com> |
001e1c1d | 3148 | M: Sujith Sankar <ssujith@cisco.com> |
c327e8f4 | 3149 | M: Govindarajulu Varadarajan <_govind@gmx.com> |
5c6652f5 | 3150 | M: Neel Patel <neepatel@cisco.com> |
7063fbf2 | 3151 | S: Supported |
a6a5580c | 3152 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 3153 | |
e3cf00d0 | 3154 | CISCO VIC LOW LATENCY NIC DRIVER |
35ef4a9e DG |
3155 | M: Christian Benvenuti <benve@cisco.com> |
3156 | M: Dave Goodell <dgoodell@cisco.com> | |
b75f0050 | 3157 | S: Supported |
35ef4a9e | 3158 | F: drivers/infiniband/hw/usnic/ |
e3cf00d0 | 3159 | |
2b7a52a4 | 3160 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 3161 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
2b7a52a4 LB |
3162 | L: netdev@vger.kernel.org |
3163 | S: Maintained | |
57d0b7a0 | 3164 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 3165 | |
3d4cfdc9 MB |
3166 | CIRRUS LOGIC AUDIO CODEC DRIVERS |
3167 | M: Brian Austin <brian.austin@cirrus.com> | |
3168 | M: Paul Handrigan <Paul.Handrigan@cirrus.com> | |
3169 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
3170 | S: Maintained | |
3171 | F: sound/soc/codecs/cs* | |
3172 | ||
94574d9a KRW |
3173 | CLEANCACHE API |
3174 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
3175 | L: linux-kernel@vger.kernel.org | |
3176 | S: Maintained | |
3177 | F: mm/cleancache.c | |
3178 | F: include/linux/cleancache.h | |
3179 | ||
d4275354 | 3180 | CLK API |
54176cc6 | 3181 | M: Russell King <linux@armlinux.org.uk> |
aa571b14 | 3182 | L: linux-clk@vger.kernel.org |
37417046 | 3183 | S: Maintained |
d4275354 RK |
3184 | F: include/linux/clk.h |
3185 | ||
9222d247 JS |
3186 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
3187 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3188 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 3189 | L: linux-kernel@vger.kernel.org |
9222d247 JS |
3190 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
3191 | S: Supported | |
3192 | F: drivers/clocksource | |
3193 | ||
5df6d737 | 3194 | CISCO FCOE HBA DRIVER |
6593ccd8 SK |
3195 | M: Satish Kharat <satishkh@cisco.com> |
3196 | M: Sesidhar Baddela <sebaddel@cisco.com> | |
3197 | M: Karan Tilak Kumar <kartilak@cisco.com> | |
5df6d737 AJ |
3198 | L: linux-scsi@vger.kernel.org |
3199 | S: Supported | |
2a99921a | 3200 | F: drivers/scsi/fnic/ |
5df6d737 | 3201 | |
c8806b6c | 3202 | CISCO SCSI HBA DRIVER |
6593ccd8 | 3203 | M: Karan Tilak Kumar <kartilak@cisco.com> |
c8806b6c NM |
3204 | M: Sesidhar Baddela <sebaddel@cisco.com> |
3205 | L: linux-scsi@vger.kernel.org | |
3206 | S: Supported | |
3207 | F: drivers/scsi/snic/ | |
3208 | ||
529aa8cb TLSC |
3209 | CMPC ACPI DRIVER |
3210 | M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> | |
3211 | M: Daniel Oliveira Nascimento <don@syst.com.br> | |
d0944853 | 3212 | L: platform-driver-x86@vger.kernel.org |
529aa8cb TLSC |
3213 | S: Supported |
3214 | F: drivers/platform/x86/classmate-laptop.c | |
3215 | ||
85756a06 HV |
3216 | COBALT MEDIA DRIVER |
3217 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
3218 | L: linux-media@vger.kernel.org | |
3219 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 3220 | W: https://linuxtv.org |
85756a06 HV |
3221 | S: Supported |
3222 | F: drivers/media/pci/cobalt/ | |
3223 | ||
74425eee | 3224 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 3225 | M: Julia Lawall <Julia.Lawall@lip6.fr> |
74425eee | 3226 | M: Gilles Muller <Gilles.Muller@lip6.fr> |
26de9c26 | 3227 | M: Nicolas Palix <nicolas.palix@imag.fr> |
d8130624 | 3228 | M: Michal Marek <mmarek@suse.com> |
26de9c26 | 3229 | L: cocci@systeme.lip6.fr (moderated for non-subscribers) |
c00b5110 | 3230 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
74425eee NP |
3231 | W: http://coccinelle.lip6.fr/ |
3232 | S: Supported | |
4b9033a3 | 3233 | F: Documentation/dev-tools/coccinelle.rst |
74425eee NP |
3234 | F: scripts/coccinelle/ |
3235 | F: scripts/coccicheck | |
3236 | ||
1da177e4 | 3237 | CODA FILE SYSTEM |
8b58be88 | 3238 | M: Jan Harkes <jaharkes@cs.cmu.edu> |
1da177e4 LT |
3239 | M: coda@cs.cmu.edu |
3240 | L: codalist@coda.cs.cmu.edu | |
3241 | W: http://www.coda.cs.cmu.edu/ | |
3242 | S: Maintained | |
679655da JP |
3243 | F: Documentation/filesystems/coda.txt |
3244 | F: fs/coda/ | |
3245 | F: include/linux/coda*.h | |
c117ab84 | 3246 | F: include/uapi/linux/coda*.h |
1da177e4 | 3247 | |
0b14261e PZ |
3248 | CODA V4L2 MEM2MEM DRIVER |
3249 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
3250 | L: linux-media@vger.kernel.org | |
3251 | S: Maintained | |
3252 | F: Documentation/devicetree/bindings/media/coda.txt | |
3253 | F: drivers/media/platform/coda/ | |
3254 | ||
7704addb | 3255 | COMMON CLK FRAMEWORK |
a85fa007 | 3256 | M: Michael Turquette <mturquette@baylibre.com> |
f956165f | 3257 | M: Stephen Boyd <sboyd@codeaurora.org> |
aa571b14 | 3258 | L: linux-clk@vger.kernel.org |
22d61acf | 3259 | Q: http://patchwork.kernel.org/project/linux-clk/list/ |
baeb0d9b | 3260 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git |
7704addb | 3261 | S: Maintained |
ae4185cd | 3262 | F: Documentation/devicetree/bindings/clock/ |
60bea3b5 SW |
3263 | F: drivers/clk/ |
3264 | X: drivers/clk/clkdev.c | |
7704addb | 3265 | F: include/linux/clk-pr* |
60bea3b5 | 3266 | F: include/linux/clk/ |
7704addb | 3267 | |
e2d1d6c0 | 3268 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 3269 | M: Steve French <sfrench@samba.org> |
51223df6 | 3270 | L: linux-cifs@vger.kernel.org |
d1f28953 | 3271 | L: samba-technical@lists.samba.org (moderated for non-subscribers) |
e2d1d6c0 | 3272 | W: http://linux-cifs.samba.org/ |
bb1d5dda | 3273 | T: git git://git.samba.org/sfrench/cifs-2.6.git |
e2d1d6c0 | 3274 | S: Supported |
ec421a71 | 3275 | F: Documentation/filesystems/cifs/ |
679655da | 3276 | F: fs/cifs/ |
e2d1d6c0 | 3277 | |
1da177e4 | 3278 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 3279 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 3280 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 3281 | S: Maintained |
679655da | 3282 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
3283 | |
3284 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 3285 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 3286 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 3287 | S: Maintained |
679655da | 3288 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
3289 | |
3290 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 3291 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 3292 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 3293 | S: Maintained |
679655da | 3294 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 3295 | |
5411552c | 3296 | COMPAL LAPTOP SUPPORT |
8b58be88 | 3297 | M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> |
d0944853 | 3298 | L: platform-driver-x86@vger.kernel.org |
5411552c | 3299 | S: Maintained |
679655da | 3300 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 3301 | |
949be0f7 | 3302 | CONEXANT ACCESSRUNNER USB DRIVER |
9ae5e3bc SA |
3303 | L: accessrunner-general@lists.sourceforge.net |
3304 | W: http://accessrunner.sourceforge.net/ | |
44243ef4 | 3305 | S: Orphan |
679655da | 3306 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 3307 | |
e2d1d6c0 | 3308 | CONFIGFS |
d6351db2 | 3309 | M: Joel Becker <jlbec@evilplan.org> |
1609bac8 CH |
3310 | M: Christoph Hellwig <hch@lst.de> |
3311 | T: git git://git.infradead.org/users/hch/configfs.git | |
e2d1d6c0 | 3312 | S: Supported |
679655da JP |
3313 | F: fs/configfs/ |
3314 | F: include/linux/configfs.h | |
e2d1d6c0 | 3315 | |
acb9c1b2 | 3316 | CONNECTOR |
8b58be88 | 3317 | M: Evgeniy Polyakov <zbr@ioremap.net> |
acb9c1b2 EP |
3318 | L: netdev@vger.kernel.org |
3319 | S: Maintained | |
3320 | F: drivers/connector/ | |
3321 | ||
a3e3354d | 3322 | CONTROL GROUP (CGROUP) |
860ca0e6 | 3323 | M: Tejun Heo <tj@kernel.org> |
ad50c159 | 3324 | M: Li Zefan <lizefan@huawei.com> |
4d205676 | 3325 | M: Johannes Weiner <hannes@cmpxchg.org> |
12340313 | 3326 | L: cgroups@vger.kernel.org |
860ca0e6 | 3327 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 3328 | S: Maintained |
4b16b0c0 | 3329 | F: Documentation/cgroup* |
679655da JP |
3330 | F: include/linux/cgroup* |
3331 | F: kernel/cgroup* | |
a3e3354d TH |
3332 | |
3333 | CONTROL GROUP - CPUSET | |
3334 | M: Li Zefan <lizefan@huawei.com> | |
3335 | L: cgroups@vger.kernel.org | |
3336 | W: http://www.bullopensource.org/cpuset/ | |
3337 | W: http://oss.sgi.com/projects/cpusets/ | |
3338 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git | |
3339 | S: Maintained | |
4b16b0c0 | 3340 | F: Documentation/cgroup-v1/cpusets.txt |
a3e3354d TH |
3341 | F: include/linux/cpuset.h |
3342 | F: kernel/cpuset.c | |
3343 | ||
3344 | CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG) | |
3345 | M: Johannes Weiner <hannes@cmpxchg.org> | |
fbd7dc74 | 3346 | M: Michal Hocko <mhocko@kernel.org> |
c4e29738 | 3347 | M: Vladimir Davydov <vdavydov.dev@gmail.com> |
a3e3354d TH |
3348 | L: cgroups@vger.kernel.org |
3349 | L: linux-mm@kvack.org | |
3350 | S: Maintained | |
3351 | F: mm/memcontrol.c | |
5d1ea48b | 3352 | F: mm/swap_cgroup.c |
fb3a0fb6 | 3353 | |
bebe4678 | 3354 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 3355 | M: Fenghua Yu <fenghua.yu@intel.com> |
968ce1b1 | 3356 | L: linux-hwmon@vger.kernel.org |
bebe4678 | 3357 | S: Maintained |
679655da JP |
3358 | F: Documentation/hwmon/coretemp |
3359 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 3360 | |
1da177e4 | 3361 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 3362 | M: Jan "Yenya" Kasprzak <kas@fi.muni.cz> |
1da177e4 LT |
3363 | W: http://www.fi.muni.cz/~kas/cosa/ |
3364 | S: Maintained | |
679655da | 3365 | F: drivers/net/wan/cosa* |
1da177e4 | 3366 | |
4371ee35 | 3367 | CPMAC ETHERNET DRIVER |
9dd4aaef | 3368 | M: Florian Fainelli <f.fainelli@gmail.com> |
4371ee35 FF |
3369 | L: netdev@vger.kernel.org |
3370 | S: Maintained | |
b544dbac | 3371 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 3372 | |
1da177e4 | 3373 | CPU FREQUENCY DRIVERS |
9c3646d1 | 3374 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
45c009a9 | 3375 | M: Viresh Kumar <viresh.kumar@linaro.org> |
a6c072c7 | 3376 | L: linux-pm@vger.kernel.org |
1da177e4 | 3377 | S: Maintained |
27209d91 VK |
3378 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
3379 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) | |
993e5483 | 3380 | B: https://bugzilla.kernel.org |
dabe73cb | 3381 | F: Documentation/cpu-freq/ |
679655da JP |
3382 | F: drivers/cpufreq/ |
3383 | F: include/linux/cpufreq.h | |
1da177e4 | 3384 | |
8a67f0ef VK |
3385 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
3386 | M: Viresh Kumar <viresh.kumar@linaro.org> | |
171d0ba8 | 3387 | M: Sudeep Holla <sudeep.holla@arm.com> |
8a67f0ef VK |
3388 | L: linux-pm@vger.kernel.org |
3389 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
3390 | S: Maintained | |
3391 | F: drivers/cpufreq/arm_big_little.h | |
3392 | F: drivers/cpufreq/arm_big_little.c | |
3393 | F: drivers/cpufreq/arm_big_little_dt.c | |
3394 | ||
14d2c34c | 3395 | CPUIDLE DRIVER - ARM BIG LITTLE |
b75f0050 JP |
3396 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
3397 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3398 | L: linux-pm@vger.kernel.org | |
3399 | L: linux-arm-kernel@lists.infradead.org | |
cea8321c | 3400 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
b75f0050 JP |
3401 | S: Maintained |
3402 | F: drivers/cpuidle/cpuidle-big_little.c | |
14d2c34c | 3403 | |
0c570c18 BZ |
3404 | CPUIDLE DRIVER - ARM EXYNOS |
3405 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
3406 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3407 | M: Kukjin Kim <kgene@kernel.org> | |
3408 | L: linux-pm@vger.kernel.org | |
3409 | L: linux-samsung-soc@vger.kernel.org | |
3410 | S: Supported | |
3411 | F: drivers/cpuidle/cpuidle-exynos.c | |
3412 | F: arch/arm/mach-exynos/pm.c | |
3413 | ||
a8e39c35 | 3414 | CPUIDLE DRIVERS |
9c3646d1 | 3415 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
a8e39c35 DL |
3416 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
3417 | L: linux-pm@vger.kernel.org | |
3418 | S: Maintained | |
cea8321c | 3419 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
2ed38cbe | 3420 | B: https://bugzilla.kernel.org |
a8e39c35 DL |
3421 | F: drivers/cpuidle/* |
3422 | F: include/linux/cpuidle.h | |
3423 | ||
1da177e4 | 3424 | CPUID/MSR DRIVER |
8b58be88 | 3425 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 3426 | S: Maintained |
679655da JP |
3427 | F: arch/x86/kernel/cpuid.c |
3428 | F: arch/x86/kernel/msr.c | |
1da177e4 | 3429 | |
7fe2f639 | 3430 | CPU POWER MONITORING SUBSYSTEM |
d8130624 | 3431 | M: Thomas Renninger <trenn@suse.com> |
103f1790 | 3432 | L: linux-pm@vger.kernel.org |
7fe2f639 | 3433 | S: Maintained |
14430813 | 3434 | F: tools/power/cpupower/ |
7fe2f639 | 3435 | |
1da177e4 | 3436 | CRAMFS FILESYSTEM |
ce00f85c | 3437 | W: http://sourceforge.net/projects/cramfs/ |
54886a71 | 3438 | S: Orphan / Obsolete |
679655da JP |
3439 | F: Documentation/filesystems/cramfs.txt |
3440 | F: fs/cramfs/ | |
1da177e4 LT |
3441 | |
3442 | CRIS PORT | |
8b58be88 JP |
3443 | M: Mikael Starvik <starvik@axis.com> |
3444 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
9937ac0c | 3445 | L: linux-cris-kernel@axis.com |
1da177e4 | 3446 | W: http://developer.axis.com |
9f273c24 | 3447 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git |
1da177e4 | 3448 | S: Maintained |
679655da | 3449 | F: arch/cris/ |
df621252 | 3450 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
3451 | |
3452 | CRYPTO API | |
8b58be88 JP |
3453 | M: Herbert Xu <herbert@gondor.apana.org.au> |
3454 | M: "David S. Miller" <davem@davemloft.net> | |
1da177e4 | 3455 | L: linux-crypto@vger.kernel.org |
9f273c24 | 3456 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git |
54e5881d | 3457 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 3458 | S: Maintained |
679655da | 3459 | F: Documentation/crypto/ |
fe1c445b | 3460 | F: Documentation/devicetree/bindings/crypto/ |
2ca87a17 | 3461 | F: Documentation/DocBook/crypto-API.tmpl |
679655da JP |
3462 | F: arch/*/crypto/ |
3463 | F: crypto/ | |
3464 | F: drivers/crypto/ | |
3465 | F: include/crypto/ | |
1da177e4 | 3466 | |
5b07bd57 | 3467 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 3468 | M: Neil Horman <nhorman@tuxdriver.com> |
5b07bd57 NH |
3469 | L: linux-crypto@vger.kernel.org |
3470 | S: Maintained | |
51a2228a JP |
3471 | F: crypto/ansi_cprng.c |
3472 | F: crypto/rng.c | |
5b07bd57 | 3473 | |
fc279cc2 HV |
3474 | CS3308 MEDIA DRIVER |
3475 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3476 | L: linux-media@vger.kernel.org | |
3477 | T: git git://linuxtv.org/media_tree.git | |
3478 | W: http://linuxtv.org | |
3479 | S: Odd Fixes | |
3480 | F: drivers/media/i2c/cs3308.c | |
3481 | F: drivers/media/i2c/cs3308.h | |
3482 | ||
9b4ffa48 | 3483 | CS5535 Audio ALSA driver |
8b58be88 | 3484 | M: Jaya Kumar <jayakumar.alsa@gmail.com> |
9b4ffa48 | 3485 | S: Maintained |
679655da | 3486 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 3487 | |
a910e4a9 | 3488 | CW1200 WLAN driver |
b75f0050 JP |
3489 | M: Solomon Peachy <pizza@shaftnet.org> |
3490 | S: Maintained | |
560424e9 | 3491 | F: drivers/net/wireless/st/cw1200/ |
a910e4a9 | 3492 | |
6d8425b1 | 3493 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 3494 | M: Andy Walls <awalls@md.metrocast.net> |
7b212edf | 3495 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
661263b5 | 3496 | L: linux-media@vger.kernel.org |
275ffde4 | 3497 | T: git git://linuxtv.org/media_tree.git |
a825eaec | 3498 | W: https://linuxtv.org |
30e10993 | 3499 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 3500 | S: Maintained |
618cd932 | 3501 | F: Documentation/media/v4l-drivers/cx18* |
90d72ac6 | 3502 | F: drivers/media/pci/cx18/ |
6c0f0359 | 3503 | F: include/uapi/linux/ivtv* |
6d8425b1 | 3504 | |
3f101d91 HV |
3505 | CX2341X MPEG ENCODER HELPER MODULE |
3506 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3507 | L: linux-media@vger.kernel.org | |
3508 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 3509 | W: https://linuxtv.org |
3f101d91 | 3510 | S: Maintained |
c368360b | 3511 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
3512 | F: include/media/cx2341x* |
3513 | ||
b8fe6e2c PB |
3514 | CX24120 MEDIA DRIVER |
3515 | M: Jemma Denson <jdenson@gmail.com> | |
3516 | M: Patrick Boettcher <patrick.boettcher@posteo.de> | |
3517 | L: linux-media@vger.kernel.org | |
a825eaec | 3518 | W: https://linuxtv.org |
b8fe6e2c PB |
3519 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3520 | S: Maintained | |
3521 | F: drivers/media/dvb-frontends/cx24120* | |
3522 | ||
20357578 | 3523 | CX88 VIDEO4LINUX DRIVER |
5dc8a864 MCC |
3524 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
3525 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
20357578 | 3526 | L: linux-media@vger.kernel.org |
a825eaec | 3527 | W: https://linuxtv.org |
20357578 MCC |
3528 | T: git git://linuxtv.org/media_tree.git |
3529 | S: Odd fixes | |
618cd932 | 3530 | F: Documentation/media/v4l-drivers/cx88* |
20357578 | 3531 | F: drivers/media/pci/cx88/ |
6d8425b1 | 3532 | |
91952bc0 AP |
3533 | CXD2820R MEDIA DRIVER |
3534 | M: Antti Palosaari <crope@iki.fi> | |
3535 | L: linux-media@vger.kernel.org | |
a825eaec | 3536 | W: https://linuxtv.org |
91952bc0 AP |
3537 | W: http://palosaari.fi/linux/ |
3538 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3539 | T: git git://linuxtv.org/anttip/media_tree.git | |
3540 | S: Maintained | |
3541 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 3542 | |
e5ec3789 | 3543 | CXGB3 ETHERNET DRIVER (CXGB3) |
cdc99239 | 3544 | M: Santosh Raspatur <santosh@chelsio.com> |
e5ec3789 SW |
3545 | L: netdev@vger.kernel.org |
3546 | W: http://www.chelsio.com | |
3547 | S: Supported | |
f7917c00 | 3548 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 | 3549 | |
d8ae3c33 | 3550 | CXGB3 ISCSI DRIVER (CXGB3I) |
49e7d9df JP |
3551 | M: Karen Xie <kxie@chelsio.com> |
3552 | L: linux-scsi@vger.kernel.org | |
3553 | W: http://www.chelsio.com | |
3554 | S: Supported | |
3555 | F: drivers/scsi/cxgbi/cxgb3i | |
d8ae3c33 | 3556 | |
e5ec3789 | 3557 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) |
8b58be88 | 3558 | M: Steve Wise <swise@chelsio.com> |
e6cc0fd1 | 3559 | L: linux-rdma@vger.kernel.org |
e5ec3789 SW |
3560 | W: http://www.openfabrics.org |
3561 | S: Supported | |
679655da | 3562 | F: drivers/infiniband/hw/cxgb3/ |
a85fb338 | 3563 | F: include/uapi/rdma/cxgb3-abi.h |
e5ec3789 | 3564 | |
be4c9bad | 3565 | CXGB4 ETHERNET DRIVER (CXGB4) |
56f16c74 | 3566 | M: Hariprasad S <hariprasad@chelsio.com> |
be4c9bad RD |
3567 | L: netdev@vger.kernel.org |
3568 | W: http://www.chelsio.com | |
3569 | S: Supported | |
f7917c00 | 3570 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad | 3571 | |
d8ae3c33 | 3572 | CXGB4 ISCSI DRIVER (CXGB4I) |
49e7d9df JP |
3573 | M: Karen Xie <kxie@chelsio.com> |
3574 | L: linux-scsi@vger.kernel.org | |
3575 | W: http://www.chelsio.com | |
3576 | S: Supported | |
3577 | F: drivers/scsi/cxgbi/cxgb4i | |
d8ae3c33 | 3578 | |
be4c9bad RD |
3579 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) |
3580 | M: Steve Wise <swise@chelsio.com> | |
3581 | L: linux-rdma@vger.kernel.org | |
3582 | W: http://www.openfabrics.org | |
3583 | S: Supported | |
3584 | F: drivers/infiniband/hw/cxgb4/ | |
e44ee2fd | 3585 | F: include/uapi/rdma/cxgb4-abi.h |
be4c9bad | 3586 | |
5c20a5c7 CL |
3587 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
3588 | M: Casey Leedom <leedom@chelsio.com> | |
3589 | L: netdev@vger.kernel.org | |
3590 | W: http://www.chelsio.com | |
3591 | S: Supported | |
f7917c00 | 3592 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 3593 | |
a9282d01 IM |
3594 | CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER |
3595 | M: Ian Munsie <imunsie@au1.ibm.com> | |
9d82fd2f | 3596 | M: Frederic Barrat <fbarrat@linux.vnet.ibm.com> |
a9282d01 IM |
3597 | L: linuxppc-dev@lists.ozlabs.org |
3598 | S: Supported | |
9d82fd2f | 3599 | F: arch/powerpc/platforms/powernv/pci-cxl.c |
a9282d01 | 3600 | F: drivers/misc/cxl/ |
ec249dd8 | 3601 | F: include/misc/cxl* |
a9282d01 IM |
3602 | F: include/uapi/misc/cxl.h |
3603 | F: Documentation/powerpc/cxl.txt | |
a9282d01 IM |
3604 | F: Documentation/ABI/testing/sysfs-class-cxl |
3605 | ||
11f43ae7 MO |
3606 | CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER |
3607 | M: Manoj N. Kumar <manoj@linux.vnet.ibm.com> | |
3608 | M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com> | |
b2c0627c | 3609 | M: Uma Krishnan <ukrishn@linux.vnet.ibm.com> |
11f43ae7 MO |
3610 | L: linux-scsi@vger.kernel.org |
3611 | S: Supported | |
3612 | F: drivers/scsi/cxlflash/ | |
3613 | F: include/uapi/scsi/cxlflash_ioctls.h | |
3614 | F: Documentation/powerpc/cxlflash.txt | |
3615 | ||
b52b97a3 GC |
3616 | STMMAC ETHERNET DRIVER |
3617 | M: Giuseppe Cavallaro <peppe.cavallaro@st.com> | |
91979b9d | 3618 | M: Alexandre Torgue <alexandre.torgue@st.com> |
b52b97a3 GC |
3619 | L: netdev@vger.kernel.org |
3620 | W: http://www.stlinux.com | |
3621 | S: Supported | |
7ac6653a | 3622 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 3623 | |
1da177e4 | 3624 | CYBERPRO FB DRIVER |
54176cc6 | 3625 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 3626 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 3627 | W: http://www.armlinux.org.uk/ |
1da177e4 | 3628 | S: Maintained |
8a61f013 | 3629 | F: drivers/video/fbdev/cyber2000fb.* |
9fa68eae | 3630 | |
1da177e4 | 3631 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 3632 | W: http://www.cyclades.com/ |
d459883e | 3633 | S: Orphan |
c897401b | 3634 | F: drivers/tty/cyclades.c |
679655da | 3635 | F: include/linux/cyclades.h |
c117ab84 | 3636 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
3637 | |
3638 | CYCLADES PC300 DRIVER | |
1da177e4 | 3639 | W: http://www.cyclades.com/ |
d459883e | 3640 | S: Orphan |
679655da | 3641 | F: drivers/net/wan/pc300* |
1da177e4 | 3642 | |
402f6ae4 AP |
3643 | CYPRESS_FIRMWARE MEDIA DRIVER |
3644 | M: Antti Palosaari <crope@iki.fi> | |
3645 | L: linux-media@vger.kernel.org | |
a825eaec | 3646 | W: https://linuxtv.org |
402f6ae4 AP |
3647 | W: http://palosaari.fi/linux/ |
3648 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3649 | T: git git://linuxtv.org/anttip/media_tree.git | |
3650 | S: Maintained | |
3651 | F: drivers/media/common/cypress_firmware* | |
3652 | ||
e3ae3525 | 3653 | CYTTSP TOUCHSCREEN DRIVER |
be9a6f40 | 3654 | M: Ferruh Yigit <fery@cypress.com> |
6305902c | 3655 | L: linux-input@vger.kernel.org |
be9a6f40 | 3656 | S: Supported |
6305902c JP |
3657 | F: drivers/input/touchscreen/cyttsp* |
3658 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 3659 | |
aaaf5fbf JK |
3660 | DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK |
3661 | M: Joshua Kinard <kumba@gentoo.org> | |
3662 | S: Maintained | |
3663 | F: drivers/rtc/rtc-ds1685.c | |
3664 | F: include/linux/rtc/ds1685.h | |
3665 | ||
1da177e4 | 3666 | DAMA SLAVE for AX.25 |
8b58be88 | 3667 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
3668 | W: http://yaina.de/jreuter/ |
3669 | W: http://www.qsl.net/dl1bke/ | |
3670 | L: linux-hams@vger.kernel.org | |
3671 | S: Maintained | |
679655da JP |
3672 | F: net/ax25/af_ax25.c |
3673 | F: net/ax25/ax25_dev.c | |
3674 | F: net/ax25/ax25_ds_* | |
3675 | F: net/ax25/ax25_in.c | |
3676 | F: net/ax25/ax25_out.c | |
3677 | F: net/ax25/ax25_timer.c | |
3678 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 3679 | |
e2d1d6c0 | 3680 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 3681 | L: netdev@vger.kernel.org |
5ff77428 | 3682 | S: Orphan |
679655da | 3683 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 3684 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
3685 | |
3686 | DC390/AM53C974 SCSI driver | |
d8130624 | 3687 | M: Hannes Reinecke <hare@suse.com> |
71bd849d | 3688 | L: linux-scsi@vger.kernel.org |
e2d1d6c0 | 3689 | S: Maintained |
71bd849d | 3690 | F: drivers/scsi/am53c974.c |
e2d1d6c0 | 3691 | |
1da177e4 | 3692 | DC395x SCSI driver |
61eee9a7 | 3693 | M: Oliver Neukum <oliver@neukum.org> |
8b58be88 JP |
3694 | M: Ali Akcaagac <aliakc@web.de> |
3695 | M: Jamie Lenehan <lenehan@twibble.org> | |
f5df5881 | 3696 | L: dc395x@twibble.org |
cf015e9f JP |
3697 | W: http://twibble.org/dist/dc395x/ |
3698 | W: http://lists.twibble.org/mailman/listinfo/dc395x/ | |
1da177e4 | 3699 | S: Maintained |
679655da JP |
3700 | F: Documentation/scsi/dc395x.txt |
3701 | F: drivers/scsi/dc395x.* | |
1da177e4 | 3702 | |
eb8edb08 | 3703 | DCCP PROTOCOL |
a89d030e | 3704 | M: Gerrit Renker <gerrit@erg.abdn.ac.uk> |
eb8edb08 | 3705 | L: dccp@vger.kernel.org |
c996d8b9 | 3706 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 3707 | S: Maintained |
679655da | 3708 | F: include/linux/dccp.h |
c117ab84 | 3709 | F: include/uapi/linux/dccp.h |
679655da JP |
3710 | F: include/linux/tfrc.h |
3711 | F: net/dccp/ | |
eb8edb08 | 3712 | |
1da177e4 | 3713 | DECnet NETWORK LAYER |
1da177e4 LT |
3714 | W: http://linux-decnet.sourceforge.net |
3715 | L: linux-decnet-user@lists.sourceforge.net | |
f546444d | 3716 | S: Orphan |
679655da JP |
3717 | F: Documentation/networking/decnet.txt |
3718 | F: net/decnet/ | |
1da177e4 | 3719 | |
ebff05b9 MR |
3720 | DECSTATION PLATFORM SUPPORT |
3721 | M: "Maciej W. Rozycki" <macro@linux-mips.org> | |
3722 | L: linux-mips@linux-mips.org | |
3723 | W: http://www.linux-mips.org/wiki/DECstation | |
3724 | S: Maintained | |
3725 | F: arch/mips/dec/ | |
3726 | F: arch/mips/include/asm/dec/ | |
3727 | F: arch/mips/include/asm/mach-dec/ | |
3728 | ||
1da177e4 | 3729 | DEFXX FDDI NETWORK DRIVER |
8b58be88 | 3730 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
1da177e4 | 3731 | S: Maintained |
33f810b2 | 3732 | F: drivers/net/fddi/defxx.* |
1da177e4 | 3733 | |
ad8f07cc | 3734 | DELL LAPTOP DRIVER |
8b58be88 | 3735 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
cdbff611 | 3736 | M: Pali Rohár <pali.rohar@gmail.com> |
d0944853 | 3737 | L: platform-driver-x86@vger.kernel.org |
ad8f07cc | 3738 | S: Maintained |
679655da | 3739 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 3740 | |
817a5cdb PR |
3741 | DELL LAPTOP RBTN DRIVER |
3742 | M: Pali Rohár <pali.rohar@gmail.com> | |
3743 | S: Maintained | |
3744 | F: drivers/platform/x86/dell-rbtn.* | |
3745 | ||
cdbff611 PR |
3746 | DELL LAPTOP FREEFALL DRIVER |
3747 | M: Pali Rohár <pali.rohar@gmail.com> | |
3748 | S: Maintained | |
3749 | F: drivers/platform/x86/dell-smo8800.c | |
3750 | ||
1da177e4 | 3751 | DELL LAPTOP SMM DRIVER |
a5afba16 | 3752 | M: Pali Rohár <pali.rohar@gmail.com> |
ef3522f7 | 3753 | S: Maintained |
a5afba16 | 3754 | F: drivers/hwmon/dell-smm-hwmon.c |
c117ab84 | 3755 | F: include/uapi/linux/i8k.h |
1da177e4 | 3756 | |
90563ec4 | 3757 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 3758 | M: Doug Warzecha <Douglas_Warzecha@dell.com> |
90563ec4 | 3759 | S: Maintained |
679655da JP |
3760 | F: Documentation/dcdbas.txt |
3761 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 3762 | |
0b3f6109 | 3763 | DELL WMI EXTRAS DRIVER |
8b58be88 | 3764 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
cdbff611 | 3765 | M: Pali Rohár <pali.rohar@gmail.com> |
0b3f6109 | 3766 | S: Maintained |
36b3a96f | 3767 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 3768 | |
5efc75e3 | 3769 | DESIGNWARE USB2 DRD IP DRIVER |
16272ae7 | 3770 | M: John Youn <johnyoun@synopsys.com> |
5efc75e3 | 3771 | L: linux-usb@vger.kernel.org |
18f340f9 | 3772 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
5efc75e3 | 3773 | S: Maintained |
197ba5f4 | 3774 | F: drivers/usb/dwc2/ |
5efc75e3 | 3775 | |
94ab23dd | 3776 | DESIGNWARE USB3 DRD IP DRIVER |
a55f6286 | 3777 | M: Felipe Balbi <balbi@kernel.org> |
94ab23dd | 3778 | L: linux-usb@vger.kernel.org |
94ab23dd FB |
3779 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
3780 | S: Maintained | |
3781 | F: drivers/usb/dwc3/ | |
3782 | ||
833c9545 JB |
3783 | DEVICE COREDUMP (DEV_COREDUMP) |
3784 | M: Johannes Berg <johannes@sipsolutions.net> | |
3785 | L: linux-kernel@vger.kernel.org | |
3786 | S: Maintained | |
3787 | F: drivers/base/devcoredump.c | |
3788 | F: include/linux/devcoredump.h | |
3789 | ||
89d07767 KP |
3790 | DEVICE FREQUENCY (DEVFREQ) |
3791 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
3792 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
88476d34 | 3793 | L: linux-pm@vger.kernel.org |
6a3cd722 | 3794 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git |
89d07767 KP |
3795 | S: Maintained |
3796 | F: drivers/devfreq/ | |
6a3cd722 CC |
3797 | F: include/linux/devfreq.h |
3798 | F: Documentation/devicetree/bindings/devfreq/ | |
89d07767 | 3799 | |
7dbded06 CC |
3800 | DEVICE FREQUENCY EVENT (DEVFREQ-EVENT) |
3801 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
3802 | L: linux-pm@vger.kernel.org | |
3803 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git | |
3804 | S: Supported | |
3805 | F: drivers/devfreq/event/ | |
3806 | F: drivers/devfreq/devfreq-event.c | |
3807 | F: include/linux/devfreq-event.h | |
3808 | F: Documentation/devicetree/bindings/devfreq/event/ | |
89d07767 | 3809 | |
490b864b CC |
3810 | BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS |
3811 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
3812 | L: linux-pm@vger.kernel.org | |
3813 | L: linux-samsung-soc@vger.kernel.org | |
3814 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git | |
3815 | S: Maintained | |
3816 | F: drivers/devfreq/exynos-bus.c | |
3817 | F: Documentation/devicetree/bindings/devfreq/exynos-bus.txt | |
3818 | ||
1da177e4 | 3819 | DEVICE NUMBER REGISTRY |
8b58be88 | 3820 | M: Torben Mathiasen <device@lanana.org> |
1da177e4 | 3821 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
3822 | S: Maintained |
3823 | ||
e2d1d6c0 | 3824 | DEVICE-MAPPER (LVM) |
854ecaad | 3825 | M: Alasdair Kergon <agk@redhat.com> |
8504eed3 | 3826 | M: Mike Snitzer <snitzer@redhat.com> |
854ecaad | 3827 | M: dm-devel@redhat.com |
e2d1d6c0 RD |
3828 | L: dm-devel@redhat.com |
3829 | W: http://sources.redhat.com/dm | |
8a6e2535 | 3830 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
41d35d25 | 3831 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git |
854ecaad | 3832 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 3833 | S: Maintained |
679655da JP |
3834 | F: Documentation/device-mapper/ |
3835 | F: drivers/md/dm* | |
854ecaad | 3836 | F: drivers/md/persistent-data/ |
679655da JP |
3837 | F: include/linux/device-mapper.h |
3838 | F: include/linux/dm-*.h | |
8504eed3 | 3839 | F: include/uapi/linux/dm-*.h |
e2d1d6c0 | 3840 | |
bfcd3a46 JP |
3841 | DEVLINK |
3842 | M: Jiri Pirko <jiri@mellanox.com> | |
3843 | L: netdev@vger.kernel.org | |
3844 | S: Supported | |
3845 | F: net/core/devlink.c | |
3846 | F: include/net/devlink.h | |
3847 | F: include/uapi/linux/devlink.h | |
3848 | ||
c0d995aa OST |
3849 | DIALOG SEMICONDUCTOR DRIVERS |
3850 | M: Support Opensource <support.opensource@diasemi.com> | |
3851 | W: http://www.dialog-semiconductor.com/products | |
3852 | S: Supported | |
3853 | F: Documentation/hwmon/da90?? | |
047cfd01 | 3854 | F: Documentation/devicetree/bindings/mfd/da90*.txt |
4eeb08b4 | 3855 | F: Documentation/devicetree/bindings/regulator/da92*.txt |
7c933772 | 3856 | F: Documentation/devicetree/bindings/sound/da[79]*.txt |
c0d995aa OST |
3857 | F: drivers/gpio/gpio-da90??.c |
3858 | F: drivers/hwmon/da90??-hwmon.c | |
7be72c2c | 3859 | F: drivers/iio/adc/da91??-*.c |
c0d995aa OST |
3860 | F: drivers/input/misc/da90??_onkey.c |
3861 | F: drivers/input/touchscreen/da9052_tsi.c | |
3862 | F: drivers/leds/leds-da90??.c | |
3863 | F: drivers/mfd/da903x.c | |
3864 | F: drivers/mfd/da90??-*.c | |
7be72c2c | 3865 | F: drivers/mfd/da91??-*.c |
8c0984e5 SR |
3866 | F: drivers/power/supply/da9052-battery.c |
3867 | F: drivers/power/supply/da91??-*.c | |
c0d995aa OST |
3868 | F: drivers/regulator/da903x.c |
3869 | F: drivers/regulator/da9???-regulator.[ch] | |
3870 | F: drivers/rtc/rtc-da90??.c | |
3871 | F: drivers/video/backlight/da90??_bl.c | |
3872 | F: drivers/watchdog/da90??_wdt.c | |
3873 | F: include/linux/mfd/da903x.h | |
3874 | F: include/linux/mfd/da9052/ | |
3875 | F: include/linux/mfd/da9055/ | |
047cfd01 | 3876 | F: include/linux/mfd/da9062/ |
c0d995aa | 3877 | F: include/linux/mfd/da9063/ |
7be72c2c | 3878 | F: include/linux/mfd/da9150/ |
4eeb08b4 | 3879 | F: include/linux/regulator/da9211.h |
c0d995aa OST |
3880 | F: include/sound/da[79]*.h |
3881 | F: sound/soc/codecs/da[79]*.[ch] | |
3882 | ||
6ea5dcdf WBG |
3883 | DIAMOND SYSTEMS GPIO-MM GPIO DRIVER |
3884 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
3885 | L: linux-gpio@vger.kernel.org | |
3886 | S: Maintained | |
3887 | F: drivers/gpio/gpio-gpio-mm.c | |
3888 | ||
599aa697 LL |
3889 | DIGI NEO AND CLASSIC PCI PRODUCTS |
3890 | M: Lidza Louina <lidza.louina@gmail.com> | |
542f3d5a | 3891 | M: Mark Hounschell <markh@compro.net> |
599aa697 LL |
3892 | L: driverdev-devel@linuxdriverproject.org |
3893 | S: Maintained | |
3894 | F: drivers/staging/dgnc/ | |
3895 | ||
335d7c58 | 3896 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 3897 | M: Guenter Roeck <linux@roeck-us.net> |
335d7c58 GR |
3898 | L: linux-i2c@vger.kernel.org |
3899 | S: Maintained | |
3900 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
3901 | ||
d475c634 MW |
3902 | DIRECT ACCESS (DAX) |
3903 | M: Matthew Wilcox <willy@linux.intel.com> | |
3904 | L: linux-fsdevel@vger.kernel.org | |
3905 | S: Supported | |
3906 | F: fs/dax.c | |
3907 | ||
e7839f25 | 3908 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 3909 | M: Eric Paris <eparis@parisplace.org> |
3c5119c0 | 3910 | S: Maintained |
679655da JP |
3911 | F: Documentation/filesystems/dnotify.txt |
3912 | F: fs/notify/dnotify/ | |
3913 | F: include/linux/dnotify.h | |
1da177e4 LT |
3914 | |
3915 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 3916 | M: Andries Brouwer <aeb@cwi.nl> |
1da177e4 LT |
3917 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
3918 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
3919 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
3920 | S: Maintained | |
3921 | ||
4480f15b | 3922 | DISKQUOTA |
d8130624 | 3923 | M: Jan Kara <jack@suse.com> |
1da177e4 | 3924 | S: Maintained |
679655da JP |
3925 | F: Documentation/filesystems/quota.txt |
3926 | F: fs/quota/ | |
3927 | F: include/linux/quota*.h | |
c117ab84 | 3928 | F: include/uapi/linux/quota*.h |
1da177e4 | 3929 | |
702686ad BT |
3930 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
3931 | M: Bernie Thompson <bernie@plugable.com> | |
3932 | L: linux-fbdev@vger.kernel.org | |
3933 | S: Maintained | |
3934 | W: http://plugable.com/category/projects/udlfb/ | |
8a61f013 | 3935 | F: drivers/video/fbdev/udlfb.c |
702686ad BT |
3936 | F: include/video/udlfb.h |
3937 | F: Documentation/fb/udlfb.txt | |
3938 | ||
e7839f25 | 3939 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
3940 | M: Christine Caulfield <ccaulfie@redhat.com> |
3941 | M: David Teigland <teigland@redhat.com> | |
a4644184 | 3942 | L: cluster-devel@redhat.com |
5be7b50f | 3943 | W: http://sources.redhat.com/cluster/ |
9f273c24 | 3944 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git |
5be7b50f | 3945 | S: Supported |
679655da | 3946 | F: fs/dlm/ |
5be7b50f | 3947 | |
53b6b3e0 SS |
3948 | DMA BUFFER SHARING FRAMEWORK |
3949 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
3950 | S: Maintained | |
3951 | L: linux-media@vger.kernel.org | |
3952 | L: dri-devel@lists.freedesktop.org | |
8ada6d2d | 3953 | L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers) |
35fac7e3 | 3954 | F: drivers/dma-buf/ |
e46d12c6 JP |
3955 | F: include/linux/dma-buf* |
3956 | F: include/linux/reservation.h | |
3957 | F: include/linux/*fence.h | |
53b6b3e0 | 3958 | F: Documentation/dma-buf-sharing.txt |
0b46fcdb | 3959 | T: git git://anongit.freedesktop.org/drm/drm-misc |
53b6b3e0 | 3960 | |
c483e065 GP |
3961 | SYNC FILE FRAMEWORK |
3962 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
3963 | R: Gustavo Padovan <gustavo@padovan.org> | |
3964 | S: Maintained | |
3965 | L: linux-media@vger.kernel.org | |
3966 | L: dri-devel@lists.freedesktop.org | |
c5ec903d GP |
3967 | F: drivers/dma-buf/sync_* |
3968 | F: drivers/dma-buf/sw_sync.c | |
c483e065 | 3969 | F: include/linux/sync_file.h |
c5ec903d | 3970 | F: include/uapi/linux/sync_file.h |
c483e065 | 3971 | F: Documentation/sync_file.txt |
0b46fcdb | 3972 | T: git git://anongit.freedesktop.org/drm/drm-misc |
c483e065 | 3973 | |
b3e5f263 | 3974 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 3975 | M: Vinod Koul <vinod.koul@intel.com> |
17b59560 VK |
3976 | L: dmaengine@vger.kernel.org |
3977 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
08223d80 | 3978 | S: Maintained |
679655da | 3979 | F: drivers/dma/ |
0ce3c066 | 3980 | F: include/linux/dmaengine.h |
c56d329e | 3981 | F: Documentation/devicetree/bindings/dma/ |
979a281e VK |
3982 | F: Documentation/dmaengine/ |
3983 | T: git git://git.infradead.org/users/vkoul/slave-dma.git | |
248a9dc3 | 3984 | |
b825037d | 3985 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 3986 | M: Juerg Haefliger <juergh@gmail.com> |
968ce1b1 | 3987 | L: linux-hwmon@vger.kernel.org |
b825037d | 3988 | S: Maintained |
679655da JP |
3989 | F: Documentation/hwmon/dme1737 |
3990 | F: drivers/hwmon/dme1737.c | |
b825037d | 3991 | |
1f31e1b1 | 3992 | DMI/SMBIOS SUPPORT |
d8130624 | 3993 | M: Jean Delvare <jdelvare@suse.com> |
1f31e1b1 | 3994 | S: Maintained |
d4aeef93 | 3995 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/ |
d7f96f97 | 3996 | F: Documentation/ABI/testing/sysfs-firmware-dmi-tables |
1f31e1b1 JD |
3997 | F: drivers/firmware/dmi-id.c |
3998 | F: drivers/firmware/dmi_scan.c | |
3999 | F: include/linux/dmi.h | |
4000 | ||
7d2c86b5 | 4001 | DOCUMENTATION |
ad3118b9 | 4002 | M: Jonathan Corbet <corbet@lwn.net> |
795fb7e7 JD |
4003 | L: linux-doc@vger.kernel.org |
4004 | S: Maintained | |
679655da | 4005 | F: Documentation/ |
42f41ecf JC |
4006 | F: scripts/docproc.c |
4007 | F: scripts/kernel-doc* | |
97be078b RD |
4008 | X: Documentation/ABI/ |
4009 | X: Documentation/devicetree/ | |
933a46b8 JC |
4010 | X: Documentation/acpi |
4011 | X: Documentation/power | |
4012 | X: Documentation/spi | |
618cd932 | 4013 | X: Documentation/media |
c51edfb1 | 4014 | T: git git://git.lwn.net/linux.git docs-next |
abbaeff3 | 4015 | |
1da177e4 | 4016 | DOUBLETALK DRIVER |
8b58be88 | 4017 | M: "James R. Van Zandt" <jrv@vanzandt.mv.com> |
1da177e4 LT |
4018 | L: blinux-list@redhat.com |
4019 | S: Maintained | |
679655da JP |
4020 | F: drivers/char/dtlk.c |
4021 | F: include/linux/dtlk.h | |
1da177e4 | 4022 | |
e2d1d6c0 | 4023 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 4024 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
4025 | L: linux-scsi@vger.kernel.org |
4026 | W: http://www.adaptec.com/ | |
4027 | S: Maintained | |
679655da JP |
4028 | F: drivers/scsi/dpt* |
4029 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 4030 | |
b411b363 | 4031 | DRBD DRIVER |
bc2c049d RK |
4032 | M: Philipp Reisner <philipp.reisner@linbit.com> |
4033 | M: Lars Ellenberg <lars.ellenberg@linbit.com> | |
4034 | L: drbd-dev@lists.linbit.com | |
28b8e8d4 | 4035 | W: http://www.drbd.org |
bc2c049d RK |
4036 | T: git git://git.linbit.com/linux-drbd.git |
4037 | T: git git://git.linbit.com/drbd-8.4.git | |
28b8e8d4 JP |
4038 | S: Supported |
4039 | F: drivers/block/drbd/ | |
4040 | F: lib/lru_cache.c | |
4041 | F: Documentation/blockdev/drbd/ | |
b411b363 | 4042 | |
dc7dfcd8 | 4043 | DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS |
879a5a00 | 4044 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
08deed1e | 4045 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 4046 | S: Supported |
679655da | 4047 | F: Documentation/kobject.txt |
7cfc51b9 | 4048 | F: drivers/base/ |
87544653 | 4049 | F: fs/debugfs/ |
dc7dfcd8 WS |
4050 | F: fs/kernfs/ |
4051 | F: fs/sysfs/ | |
87544653 | 4052 | F: include/linux/debugfs.h |
dc7dfcd8 | 4053 | F: include/linux/kobj* |
679655da | 4054 | F: lib/kobj* |
1da177e4 LT |
4055 | |
4056 | DRM DRIVERS | |
8b58be88 | 4057 | M: David Airlie <airlied@linux.ie> |
4c6a3999 | 4058 | L: dri-devel@lists.freedesktop.org |
b0447888 | 4059 | T: git git://people.freedesktop.org/~airlied/linux |
51b06f9f | 4060 | B: https://bugs.freedesktop.org/ |
5fc41a70 | 4061 | C: irc://chat.freenode.net/dri-devel |
1da177e4 | 4062 | S: Maintained |
679655da | 4063 | F: drivers/gpu/drm/ |
433e3b34 | 4064 | F: drivers/gpu/vga/ |
d28ab95b GU |
4065 | F: Documentation/devicetree/bindings/display/ |
4066 | F: Documentation/devicetree/bindings/gpu/ | |
4067 | F: Documentation/devicetree/bindings/video/ | |
621c5474 | 4068 | F: Documentation/gpu/ |
850e9411 | 4069 | F: include/drm/ |
c117ab84 | 4070 | F: include/uapi/drm/ |
1da177e4 | 4071 | |
d52ea7e3 DV |
4072 | DRM DRIVERS AND MISC GPU PATCHES |
4073 | M: Daniel Vetter <daniel.vetter@intel.com> | |
4074 | M: Jani Nikula <jani.nikula@linux.intel.com> | |
4075 | M: Sean Paul <seanpaul@chromium.org> | |
b7a2a230 | 4076 | W: https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html |
d52ea7e3 DV |
4077 | S: Maintained |
4078 | T: git git://anongit.freedesktop.org/drm/drm-misc | |
4079 | F: Documentation/gpu/ | |
4080 | F: drivers/gpu/vga/ | |
4081 | F: drivers/gpu/drm/* | |
4082 | F: include/drm/drm* | |
4083 | F: include/uapi/drm/drm* | |
4084 | ||
c842b693 EV |
4085 | DRM DRIVER FOR AST SERVER GRAPHICS CHIPS |
4086 | M: Dave Airlie <airlied@redhat.com> | |
4087 | S: Odd Fixes | |
4088 | F: drivers/gpu/drm/ast/ | |
4089 | ||
5620f47d DV |
4090 | DRM DRIVERS FOR BRIDGE CHIPS |
4091 | M: Archit Taneja <architt@codeaurora.org> | |
4092 | S: Maintained | |
4093 | T: git git://anongit.freedesktop.org/drm/drm-misc | |
4094 | F: drivers/gpu/drm/bridge/ | |
4095 | ||
c842b693 EV |
4096 | DRM DRIVER FOR BOCHS VIRTUAL GPU |
4097 | M: Gerd Hoffmann <kraxel@redhat.com> | |
4098 | S: Odd Fixes | |
4099 | F: drivers/gpu/drm/bochs/ | |
4100 | ||
4101 | DRM DRIVER FOR QEMU'S CIRRUS DEVICE | |
4102 | M: Dave Airlie <airlied@redhat.com> | |
4103 | S: Odd Fixes | |
4104 | F: drivers/gpu/drm/cirrus/ | |
4105 | ||
c26a4017 | 4106 | RADEON and AMDGPU DRM DRIVERS |
566f5939 AD |
4107 | M: Alex Deucher <alexander.deucher@amd.com> |
4108 | M: Christian König <christian.koenig@amd.com> | |
4109 | L: dri-devel@lists.freedesktop.org | |
4110 | T: git git://people.freedesktop.org/~agd5f/linux | |
4111 | S: Supported | |
4112 | F: drivers/gpu/drm/radeon/ | |
74c97375 | 4113 | F: include/uapi/drm/radeon_drm.h |
c26a4017 | 4114 | F: drivers/gpu/drm/amd/ |
74c97375 | 4115 | F: include/uapi/drm/amdgpu_drm.h |
566f5939 | 4116 | |
03e255b9 TR |
4117 | DRM PANEL DRIVERS |
4118 | M: Thierry Reding <thierry.reding@gmail.com> | |
4119 | L: dri-devel@lists.freedesktop.org | |
4120 | T: git git://anongit.freedesktop.org/tegra/linux.git | |
4121 | S: Maintained | |
4122 | F: drivers/gpu/drm/drm_panel.c | |
4123 | F: drivers/gpu/drm/panel/ | |
4124 | F: include/drm/drm_panel.h | |
2d799dde | 4125 | F: Documentation/devicetree/bindings/display/panel/ |
03e255b9 | 4126 | |
8daf7473 | 4127 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
cbce7107 | 4128 | M: Daniel Vetter <daniel.vetter@intel.com> |
47f95647 | 4129 | M: Jani Nikula <jani.nikula@linux.intel.com> |
362132d2 | 4130 | L: intel-gfx@lists.freedesktop.org |
7564fde3 | 4131 | W: https://01.org/linuxgraphics/ |
51b06f9f | 4132 | B: https://01.org/linuxgraphics/documentation/how-report-bugs |
5fc41a70 | 4133 | C: irc://chat.freenode.net/intel-gfx |
47f95647 | 4134 | Q: http://patchwork.freedesktop.org/project/intel-gfx/ |
89258a97 | 4135 | T: git git://anongit.freedesktop.org/drm-intel |
8daf7473 | 4136 | S: Supported |
14430813 | 4137 | F: drivers/gpu/drm/i915/ |
8daf7473 | 4138 | F: include/drm/i915* |
baceac3a | 4139 | F: include/uapi/drm/i915_drm.h |
621c5474 | 4140 | F: Documentation/gpu/i915.rst |
8daf7473 | 4141 | |
66a46e9d ZW |
4142 | INTEL GVT-g DRIVERS (Intel GPU Virtualization) |
4143 | M: Zhenyu Wang <zhenyuw@linux.intel.com> | |
4144 | M: Zhi Wang <zhi.a.wang@intel.com> | |
4145 | L: igvt-g-dev@lists.01.org | |
4146 | L: intel-gfx@lists.freedesktop.org | |
4147 | W: https://01.org/igvt-g | |
4148 | T: git https://github.com/01org/gvt-linux.git | |
4149 | S: Supported | |
4150 | F: drivers/gpu/drm/i915/gvt/ | |
4151 | ||
99763bb8 BB |
4152 | DRM DRIVERS FOR ATMEL HLCDC |
4153 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
4154 | L: dri-devel@lists.freedesktop.org | |
4155 | S: Supported | |
4156 | F: drivers/gpu/drm/atmel-hlcdc/ | |
4157 | F: Documentation/devicetree/bindings/drm/atmel/ | |
4158 | ||
bf1139df MR |
4159 | DRM DRIVERS FOR ALLWINNER A10 |
4160 | M: Maxime Ripard <maxime.ripard@free-electrons.com> | |
4161 | L: dri-devel@lists.freedesktop.org | |
4162 | S: Supported | |
4163 | F: drivers/gpu/drm/sun4i/ | |
4164 | F: Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt | |
4165 | ||
1de7ac68 NA |
4166 | DRM DRIVERS FOR AMLOGIC SOCS |
4167 | M: Neil Armstrong <narmstrong@baylibre.com> | |
4168 | L: dri-devel@lists.freedesktop.org | |
4169 | L: linux-amlogic@lists.infradead.org | |
4170 | W: http://linux-meson.com/ | |
4171 | S: Supported | |
4172 | F: drivers/gpu/drm/meson/ | |
4173 | F: Documentation/devicetree/bindings/display/amlogic,meson-vpu.txt | |
4174 | ||
398a6d4a KP |
4175 | DRM DRIVERS FOR EXYNOS |
4176 | M: Inki Dae <inki.dae@samsung.com> | |
f1501303 ID |
4177 | M: Joonyoung Shim <jy0922.shim@samsung.com> |
4178 | M: Seung-Woo Kim <sw0312.kim@samsung.com> | |
4179 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
398a6d4a | 4180 | L: dri-devel@lists.freedesktop.org |
25a58030 | 4181 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a | 4182 | S: Supported |
14430813 | 4183 | F: drivers/gpu/drm/exynos/ |
8fb9b15b EV |
4184 | F: include/uapi/drm/exynos_drm.h |
4185 | F: Documentation/devicetree/bindings/display/exynos/ | |
398a6d4a | 4186 | |
b55a1b9c | 4187 | DRM DRIVERS FOR FREESCALE DCU |
bc66757a | 4188 | M: Stefan Agner <stefan@agner.ch> |
b55a1b9c JW |
4189 | M: Alison Wang <alison.wang@freescale.com> |
4190 | L: dri-devel@lists.freedesktop.org | |
4191 | S: Supported | |
4192 | F: drivers/gpu/drm/fsl-dcu/ | |
2d799dde | 4193 | F: Documentation/devicetree/bindings/display/fsl,dcu.txt |
fb127b79 | 4194 | F: Documentation/devicetree/bindings/display/fsl,tcon.txt |
2d799dde | 4195 | F: Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt |
b55a1b9c | 4196 | |
0a3d775f PZ |
4197 | DRM DRIVERS FOR FREESCALE IMX |
4198 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
4199 | L: dri-devel@lists.freedesktop.org | |
4200 | S: Maintained | |
4201 | F: drivers/gpu/drm/imx/ | |
ef739aa4 | 4202 | F: drivers/gpu/ipu-v3/ |
2d799dde | 4203 | F: Documentation/devicetree/bindings/display/imx/ |
0a3d775f | 4204 | |
ba2199a6 PJ |
4205 | DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets) |
4206 | M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com> | |
4207 | L: dri-devel@lists.freedesktop.org | |
4208 | T: git git://github.com/patjak/drm-gma500 | |
4209 | S: Maintained | |
5ff18e42 | 4210 | F: drivers/gpu/drm/gma500/ |
ba2199a6 | 4211 | |
c84ffde9 XL |
4212 | DRM DRIVERS FOR HISILICON |
4213 | M: Xinliang Liu <z.liuxinliang@hisilicon.com> | |
4b4b40a0 | 4214 | M: Rongrong Zou <zourongrong@gmail.com> |
c84ffde9 XL |
4215 | R: Xinwei Kong <kong.kongxinwei@hisilicon.com> |
4216 | R: Chen Feng <puck.chen@hisilicon.com> | |
4217 | L: dri-devel@lists.freedesktop.org | |
4218 | T: git git://github.com/xin3liang/linux.git | |
4219 | S: Maintained | |
4220 | F: drivers/gpu/drm/hisilicon/ | |
4221 | F: Documentation/devicetree/bindings/display/hisilicon/ | |
4222 | ||
399516ab EV |
4223 | DRM DRIVER FOR INTEL I810 VIDEO CARDS |
4224 | S: Orphan / Obsolete | |
4225 | F: drivers/gpu/drm/i810/ | |
4226 | F: include/uapi/drm/i810_drm.h | |
4227 | ||
37b2a214 CH |
4228 | DRM DRIVERS FOR MEDIATEK |
4229 | M: CK Hu <ck.hu@mediatek.com> | |
4230 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
4231 | L: dri-devel@lists.freedesktop.org | |
4232 | S: Supported | |
4233 | F: drivers/gpu/drm/mediatek/ | |
4234 | F: Documentation/devicetree/bindings/display/mediatek/ | |
4235 | ||
06346451 EV |
4236 | DRM DRIVER FOR MSM ADRENO GPU |
4237 | M: Rob Clark <robdclark@gmail.com> | |
4238 | L: linux-arm-msm@vger.kernel.org | |
4239 | L: dri-devel@lists.freedesktop.org | |
4240 | L: freedreno@lists.freedesktop.org | |
4241 | T: git git://people.freedesktop.org/~robclark/linux | |
4242 | S: Maintained | |
4243 | F: drivers/gpu/drm/msm/ | |
4244 | F: include/uapi/drm/msm_drm.h | |
4245 | F: Documentation/devicetree/bindings/display/msm/ | |
4246 | ||
fad89bb3 EV |
4247 | DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS |
4248 | M: Ben Skeggs <bskeggs@redhat.com> | |
4249 | L: dri-devel@lists.freedesktop.org | |
4250 | L: nouveau@lists.freedesktop.org | |
4251 | T: git git://github.com/skeggsb/linux | |
4252 | S: Supported | |
4253 | F: drivers/gpu/drm/nouveau/ | |
4254 | F: include/uapi/drm/nouveau_drm.h | |
ba2199a6 | 4255 | |
bd3b49f2 | 4256 | DRM DRIVERS FOR NVIDIA TEGRA |
a5ad7a63 | 4257 | M: Thierry Reding <thierry.reding@gmail.com> |
bd3b49f2 TR |
4258 | L: dri-devel@lists.freedesktop.org |
4259 | L: linux-tegra@vger.kernel.org | |
a5ad7a63 | 4260 | T: git git://anongit.freedesktop.org/tegra/linux.git |
adabdb0c | 4261 | S: Supported |
dee8268f | 4262 | F: drivers/gpu/drm/tegra/ |
a5ad7a63 | 4263 | F: drivers/gpu/host1x/ |
e1e90644 | 4264 | F: include/linux/host1x.h |
a5ad7a63 | 4265 | F: include/uapi/drm/tegra_drm.h |
2d799dde | 4266 | F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt |
bd3b49f2 | 4267 | |
399516ab EV |
4268 | DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS |
4269 | S: Orphan / Obsolete | |
4270 | F: drivers/gpu/drm/mga/ | |
4271 | F: include/uapi/drm/mga_drm.h | |
4272 | ||
c842b693 EV |
4273 | DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS |
4274 | M: Dave Airlie <airlied@redhat.com> | |
4275 | S: Odd Fixes | |
4276 | F: drivers/gpu/drm/mgag200/ | |
4277 | ||
399516ab EV |
4278 | DRM DRIVER FOR RAGE 128 VIDEO CARDS |
4279 | S: Orphan / Obsolete | |
4280 | F: drivers/gpu/drm/r128/ | |
4281 | F: include/uapi/drm/r128_drm.h | |
4282 | ||
a284e9d1 LP |
4283 | DRM DRIVERS FOR RENESAS |
4284 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
4285 | L: dri-devel@lists.freedesktop.org | |
4a121096 | 4286 | L: linux-renesas-soc@vger.kernel.org |
2392ccd4 | 4287 | T: git git://linuxtv.org/pinchartl/fbdev |
a284e9d1 LP |
4288 | S: Supported |
4289 | F: drivers/gpu/drm/rcar-du/ | |
4290 | F: drivers/gpu/drm/shmobile/ | |
a284e9d1 | 4291 | F: include/linux/platform_data/shmob_drm.h |
33be436d | 4292 | F: Documentation/devicetree/bindings/display/renesas,du.txt |
a284e9d1 | 4293 | |
c842b693 EV |
4294 | DRM DRIVER FOR QXL VIRTUAL GPU |
4295 | M: Dave Airlie <airlied@redhat.com> | |
4296 | S: Odd Fixes | |
4297 | F: drivers/gpu/drm/qxl/ | |
4298 | F: include/uapi/drm/qxl_drm.h | |
a284e9d1 | 4299 | |
625e0346 HS |
4300 | DRM DRIVERS FOR ROCKCHIP |
4301 | M: Mark Yao <mark.yao@rock-chips.com> | |
4302 | L: dri-devel@lists.freedesktop.org | |
4303 | S: Maintained | |
4304 | F: drivers/gpu/drm/rockchip/ | |
f253f7eb | 4305 | F: Documentation/devicetree/bindings/display/rockchip/ |
625e0346 | 4306 | |
399516ab EV |
4307 | DRM DRIVER FOR SAVAGE VIDEO CARDS |
4308 | S: Orphan / Obsolete | |
4309 | F: drivers/gpu/drm/savage/ | |
4310 | F: include/uapi/drm/savage_drm.h | |
4311 | ||
4312 | DRM DRIVER FOR SIS VIDEO CARDS | |
4313 | S: Orphan / Obsolete | |
4314 | F: drivers/gpu/drm/sis/ | |
4315 | F: include/uapi/drm/sis_drm.h | |
625e0346 | 4316 | |
7f11c476 BG |
4317 | DRM DRIVERS FOR STI |
4318 | M: Benjamin Gaignard <benjamin.gaignard@linaro.org> | |
4319 | M: Vincent Abriou <vincent.abriou@st.com> | |
4320 | L: dri-devel@lists.freedesktop.org | |
4321 | T: git http://git.linaro.org/people/benjamin.gaignard/kernel.git | |
4322 | S: Maintained | |
4323 | F: drivers/gpu/drm/sti | |
2d799dde | 4324 | F: Documentation/devicetree/bindings/display/st,stih4xx.txt |
7f11c476 | 4325 | |
399516ab EV |
4326 | DRM DRIVER FOR TDFX VIDEO CARDS |
4327 | S: Orphan / Obsolete | |
4328 | F: drivers/gpu/drm/tdfx/ | |
4329 | ||
c842b693 EV |
4330 | DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS |
4331 | M: Dave Airlie <airlied@redhat.com> | |
4332 | S: Odd Fixes | |
4333 | F: drivers/gpu/drm/udl/ | |
4334 | ||
8bb0bce9 LS |
4335 | DRM DRIVERS FOR VIVANTE GPU IP |
4336 | M: Lucas Stach <l.stach@pengutronix.de> | |
54176cc6 | 4337 | R: Russell King <linux+etnaviv@armlinux.org.uk> |
8bb0bce9 | 4338 | R: Christian Gmeiner <christian.gmeiner@gmail.com> |
c4ae94a3 | 4339 | L: etnaviv@lists.freedesktop.org |
8bb0bce9 LS |
4340 | L: dri-devel@lists.freedesktop.org |
4341 | S: Maintained | |
8a9257a0 EV |
4342 | F: drivers/gpu/drm/etnaviv/ |
4343 | F: include/uapi/drm/etnaviv_drm.h | |
4344 | F: Documentation/devicetree/bindings/display/etnaviv/ | |
8bb0bce9 | 4345 | |
c4291702 EV |
4346 | DRM DRIVER FOR VMWARE VIRTUAL GPU |
4347 | M: "VMware Graphics" <linux-graphics-maintainer@vmware.com> | |
4348 | M: Sinclair Yeh <syeh@vmware.com> | |
4349 | M: Thomas Hellstrom <thellstrom@vmware.com> | |
4350 | L: dri-devel@lists.freedesktop.org | |
4351 | T: git git://people.freedesktop.org/~syeh/repos_linux | |
4352 | T: git git://people.freedesktop.org/~thomash/linux | |
4353 | S: Supported | |
4354 | F: drivers/gpu/drm/vmwgfx/ | |
4355 | F: include/uapi/drm/vmwgfx_drm.h | |
4356 | ||
8636d452 EA |
4357 | DRM DRIVERS FOR VC4 |
4358 | M: Eric Anholt <eric@anholt.net> | |
4359 | T: git git://github.com/anholt/linux | |
4360 | S: Supported | |
4361 | F: drivers/gpu/drm/vc4/ | |
4362 | F: include/uapi/drm/vc4_drm.h | |
4363 | F: Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt | |
8bb0bce9 | 4364 | |
5ef330a7 TV |
4365 | DRM DRIVERS FOR TI OMAP |
4366 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
4367 | L: dri-devel@lists.freedesktop.org | |
4368 | S: Maintained | |
4369 | F: drivers/gpu/drm/omapdrm/ | |
4370 | F: Documentation/devicetree/bindings/display/ti/ | |
4371 | ||
adb314ed TV |
4372 | DRM DRIVERS FOR TI LCDC |
4373 | M: Jyri Sarha <jsarha@ti.com> | |
4374 | R: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
4375 | L: dri-devel@lists.freedesktop.org | |
4376 | S: Maintained | |
4377 | F: drivers/gpu/drm/tilcdc/ | |
4378 | F: Documentation/devicetree/bindings/display/tilcdc/ | |
4379 | ||
dbb01037 SG |
4380 | DRM DRIVERS FOR ZTE ZX |
4381 | M: Shawn Guo <shawnguo@kernel.org> | |
4382 | L: dri-devel@lists.freedesktop.org | |
4383 | S: Maintained | |
4384 | F: drivers/gpu/drm/zte/ | |
4385 | F: Documentation/devicetree/bindings/display/zte,vou.txt | |
4386 | ||
598df1ac AK |
4387 | DSBR100 USB FM RADIO DRIVER |
4388 | M: Alexey Klimov <klimov.linux@gmail.com> | |
4389 | L: linux-media@vger.kernel.org | |
4390 | T: git git://linuxtv.org/media_tree.git | |
4391 | S: Maintained | |
4392 | F: drivers/media/radio/dsbr100.c | |
4393 | ||
1da177e4 | 4394 | DSCC4 DRIVER |
8b58be88 | 4395 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 | 4396 | L: netdev@vger.kernel.org |
1da177e4 | 4397 | S: Maintained |
679655da | 4398 | F: drivers/net/wan/dscc4.c |
1da177e4 | 4399 | |
cc11b140 HV |
4400 | DT3155 MEDIA DRIVER |
4401 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
4402 | L: linux-media@vger.kernel.org | |
4403 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 4404 | W: https://linuxtv.org |
cc11b140 HV |
4405 | S: Odd Fixes |
4406 | F: drivers/media/pci/dt3155/ | |
4407 | ||
91952bc0 AP |
4408 | DVB_USB_AF9015 MEDIA DRIVER |
4409 | M: Antti Palosaari <crope@iki.fi> | |
4410 | L: linux-media@vger.kernel.org | |
a825eaec | 4411 | W: https://linuxtv.org |
91952bc0 AP |
4412 | W: http://palosaari.fi/linux/ |
4413 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4414 | T: git git://linuxtv.org/anttip/media_tree.git | |
4415 | S: Maintained | |
4416 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
4417 | ||
4418 | DVB_USB_AF9035 MEDIA DRIVER | |
4419 | M: Antti Palosaari <crope@iki.fi> | |
4420 | L: linux-media@vger.kernel.org | |
a825eaec | 4421 | W: https://linuxtv.org |
91952bc0 AP |
4422 | W: http://palosaari.fi/linux/ |
4423 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4424 | T: git git://linuxtv.org/anttip/media_tree.git | |
4425 | S: Maintained | |
4426 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
4427 | ||
4428 | DVB_USB_ANYSEE MEDIA DRIVER | |
4429 | M: Antti Palosaari <crope@iki.fi> | |
4430 | L: linux-media@vger.kernel.org | |
a825eaec | 4431 | W: https://linuxtv.org |
91952bc0 AP |
4432 | W: http://palosaari.fi/linux/ |
4433 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4434 | T: git git://linuxtv.org/anttip/media_tree.git | |
4435 | S: Maintained | |
4436 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
4437 | ||
4438 | DVB_USB_AU6610 MEDIA DRIVER | |
4439 | M: Antti Palosaari <crope@iki.fi> | |
4440 | L: linux-media@vger.kernel.org | |
a825eaec | 4441 | W: https://linuxtv.org |
91952bc0 AP |
4442 | W: http://palosaari.fi/linux/ |
4443 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4444 | T: git git://linuxtv.org/anttip/media_tree.git | |
4445 | S: Maintained | |
4446 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
4447 | ||
4448 | DVB_USB_CE6230 MEDIA DRIVER | |
4449 | M: Antti Palosaari <crope@iki.fi> | |
4450 | L: linux-media@vger.kernel.org | |
a825eaec | 4451 | W: https://linuxtv.org |
91952bc0 AP |
4452 | W: http://palosaari.fi/linux/ |
4453 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4454 | T: git git://linuxtv.org/anttip/media_tree.git | |
4455 | S: Maintained | |
4456 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
4457 | ||
d099dea2 MK |
4458 | DVB_USB_CXUSB MEDIA DRIVER |
4459 | M: Michael Krufky <mkrufky@linuxtv.org> | |
4460 | L: linux-media@vger.kernel.org | |
a825eaec | 4461 | W: https://linuxtv.org |
d099dea2 MK |
4462 | W: http://github.com/mkrufky |
4463 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4464 | T: git git://linuxtv.org/media_tree.git | |
4465 | S: Maintained | |
9819da66 | 4466 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 4467 | |
91952bc0 | 4468 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
4469 | M: Antti Palosaari <crope@iki.fi> |
4470 | L: linux-media@vger.kernel.org | |
a825eaec | 4471 | W: https://linuxtv.org |
91952bc0 AP |
4472 | W: http://palosaari.fi/linux/ |
4473 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4474 | T: git git://linuxtv.org/anttip/media_tree.git | |
4475 | S: Maintained | |
91952bc0 | 4476 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 4477 | |
5560983b | 4478 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
4479 | M: Antti Palosaari <crope@iki.fi> |
4480 | L: linux-media@vger.kernel.org | |
a825eaec | 4481 | W: https://linuxtv.org |
91952bc0 AP |
4482 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
4483 | T: git git://linuxtv.org/anttip/media_tree.git | |
4484 | S: Maintained | |
5560983b | 4485 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 4486 | |
8856f5f2 MK |
4487 | DVB_USB_MXL111SF MEDIA DRIVER |
4488 | M: Michael Krufky <mkrufky@linuxtv.org> | |
4489 | L: linux-media@vger.kernel.org | |
a825eaec | 4490 | W: https://linuxtv.org |
8856f5f2 MK |
4491 | W: http://github.com/mkrufky |
4492 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4493 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
4494 | S: Maintained | |
4495 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
4496 | ||
91952bc0 AP |
4497 | DVB_USB_RTL28XXU MEDIA DRIVER |
4498 | M: Antti Palosaari <crope@iki.fi> | |
4499 | L: linux-media@vger.kernel.org | |
a825eaec | 4500 | W: https://linuxtv.org |
91952bc0 AP |
4501 | W: http://palosaari.fi/linux/ |
4502 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4503 | T: git git://linuxtv.org/anttip/media_tree.git | |
4504 | S: Maintained | |
4505 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
4506 | ||
4507 | DVB_USB_V2 MEDIA DRIVER | |
4508 | M: Antti Palosaari <crope@iki.fi> | |
4509 | L: linux-media@vger.kernel.org | |
a825eaec | 4510 | W: https://linuxtv.org |
91952bc0 AP |
4511 | W: http://palosaari.fi/linux/ |
4512 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4513 | T: git git://linuxtv.org/anttip/media_tree.git | |
4514 | S: Maintained | |
4515 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
4516 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
4517 | ||
ac0ac38f | 4518 | DYNAMIC DEBUG |
5c4a97d1 | 4519 | M: Jason Baron <jbaron@akamai.com> |
ac0ac38f JB |
4520 | S: Maintained |
4521 | F: lib/dynamic_debug.c | |
4522 | F: include/linux/dynamic_debug.h | |
4523 | ||
789c7048 | 4524 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 4525 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
789c7048 | 4526 | S: Maintained |
df621252 | 4527 | F: drivers/tty/serial/dz.* |
789c7048 | 4528 | |
f17effbe MF |
4529 | E3X0 POWER BUTTON DRIVER |
4530 | M: Moritz Fischer <moritz.fischer@ettus.com> | |
4531 | L: usrp-users@lists.ettus.com | |
4532 | W: http://www.ettus.com | |
4533 | S: Supported | |
4534 | F: drivers/input/misc/e3x0-button.c | |
4535 | F: Documentation/devicetree/bindings/input/e3x0-button.txt | |
4536 | ||
91952bc0 AP |
4537 | E4000 MEDIA DRIVER |
4538 | M: Antti Palosaari <crope@iki.fi> | |
4539 | L: linux-media@vger.kernel.org | |
a825eaec | 4540 | W: https://linuxtv.org |
91952bc0 AP |
4541 | W: http://palosaari.fi/linux/ |
4542 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4543 | T: git git://linuxtv.org/anttip/media_tree.git | |
4544 | S: Maintained | |
4545 | F: drivers/media/tuners/e4000* | |
4546 | ||
1da177e4 | 4547 | EATA ISA/EISA/PCI SCSI DRIVER |
8b58be88 | 4548 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
4549 | L: linux-scsi@vger.kernel.org |
4550 | S: Maintained | |
679655da | 4551 | F: drivers/scsi/eata.c |
1da177e4 | 4552 | |
91952bc0 AP |
4553 | EC100 MEDIA DRIVER |
4554 | M: Antti Palosaari <crope@iki.fi> | |
4555 | L: linux-media@vger.kernel.org | |
a825eaec | 4556 | W: https://linuxtv.org |
91952bc0 AP |
4557 | W: http://palosaari.fi/linux/ |
4558 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4559 | T: git git://linuxtv.org/anttip/media_tree.git | |
4560 | S: Maintained | |
4561 | F: drivers/media/dvb-frontends/ec100* | |
4562 | ||
237fead6 | 4563 | ECRYPT FILE SYSTEM |
0de9adf2 | 4564 | M: Tyler Hicks <tyhicks@canonical.com> |
a058bfbb | 4565 | L: ecryptfs@vger.kernel.org |
24a923e4 | 4566 | W: http://ecryptfs.org |
6dc7516e | 4567 | W: https://launchpad.net/ecryptfs |
9f273c24 | 4568 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git |
237fead6 | 4569 | S: Supported |
679655da JP |
4570 | F: Documentation/filesystems/ecryptfs.txt |
4571 | F: fs/ecryptfs/ | |
237fead6 | 4572 | |
da9bb1d2 | 4573 | EDAC-CORE |
aa15aa0e | 4574 | M: Borislav Petkov <bp@alien8.de> |
5dc8a864 MCC |
4575 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4576 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
91445c72 | 4577 | L: linux-edac@vger.kernel.org |
07cd6bf5 FW |
4578 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next |
4579 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next | |
8c2a6a40 | 4580 | S: Supported |
679655da | 4581 | F: Documentation/edac.txt |
91445c72 | 4582 | F: drivers/edac/ |
679655da | 4583 | F: include/linux/edac.h |
0e438e3f | 4584 | |
c476c23b | 4585 | EDAC-AMD64 |
487ba8e8 | 4586 | M: Borislav Petkov <bp@alien8.de> |
91445c72 | 4587 | L: linux-edac@vger.kernel.org |
487ba8e8 | 4588 | S: Maintained |
c476c23b BP |
4589 | F: drivers/edac/amd64_edac* |
4590 | ||
836dae5d | 4591 | EDAC-CALXEDA |
836dae5d RR |
4592 | M: Robert Richter <rric@kernel.org> |
4593 | L: linux-edac@vger.kernel.org | |
836dae5d RR |
4594 | S: Maintained |
4595 | F: drivers/edac/highbank* | |
4596 | ||
f65aad41 RB |
4597 | EDAC-CAVIUM |
4598 | M: Ralf Baechle <ralf@linux-mips.org> | |
4599 | M: David Daney <david.daney@cavium.com> | |
4600 | L: linux-edac@vger.kernel.org | |
4601 | L: linux-mips@linux-mips.org | |
f65aad41 RB |
4602 | S: Supported |
4603 | F: drivers/edac/octeon_edac* | |
4604 | ||
0e438e3f | 4605 | EDAC-E752X |
8b58be88 | 4606 | M: Mark Gross <mark.gross@intel.com> |
91445c72 | 4607 | L: linux-edac@vger.kernel.org |
0e438e3f | 4608 | S: Maintained |
679655da | 4609 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
4610 | |
4611 | EDAC-E7XXX | |
91445c72 | 4612 | L: linux-edac@vger.kernel.org |
0e438e3f | 4613 | S: Maintained |
679655da | 4614 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 4615 | |
7d136731 BP |
4616 | EDAC-FSL_DDR |
4617 | M: York Sun <york.sun@nxp.com> | |
4618 | L: linux-edac@vger.kernel.org | |
4619 | S: Maintained | |
4620 | F: drivers/edac/fsl_ddr_edac.* | |
4621 | ||
77c5f5d2 | 4622 | EDAC-GHES |
5dc8a864 MCC |
4623 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4624 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
77c5f5d2 | 4625 | L: linux-edac@vger.kernel.org |
77c5f5d2 | 4626 | S: Maintained |
2caa67a6 | 4627 | F: drivers/edac/ghes_edac.c |
77c5f5d2 | 4628 | |
6bc78404 | 4629 | EDAC-I82443BXGX |
8b58be88 | 4630 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 4631 | L: linux-edac@vger.kernel.org |
6bc78404 | 4632 | S: Maintained |
679655da | 4633 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
4634 | |
4635 | EDAC-I3000 | |
91445c72 | 4636 | L: linux-edac@vger.kernel.org |
c91d9075 | 4637 | S: Orphan |
679655da | 4638 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
4639 | |
4640 | EDAC-I5000 | |
91445c72 | 4641 | L: linux-edac@vger.kernel.org |
ba9a5918 | 4642 | S: Maintained |
679655da | 4643 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 4644 | |
44c12cb2 | 4645 | EDAC-I5400 |
5dc8a864 MCC |
4646 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4647 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
67c89316 | 4648 | L: linux-edac@vger.kernel.org |
44c12cb2 | 4649 | S: Maintained |
679655da | 4650 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 4651 | |
3c9c92b6 | 4652 | EDAC-I7300 |
5dc8a864 MCC |
4653 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4654 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
3c9c92b6 | 4655 | L: linux-edac@vger.kernel.org |
3c9c92b6 MCC |
4656 | S: Maintained |
4657 | F: drivers/edac/i7300_edac.c | |
4658 | ||
67c89316 | 4659 | EDAC-I7CORE |
5dc8a864 MCC |
4660 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4661 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
67c89316 | 4662 | L: linux-edac@vger.kernel.org |
67c89316 | 4663 | S: Maintained |
70aff0ce | 4664 | F: drivers/edac/i7core_edac.c |
67c89316 | 4665 | |
ba9a5918 | 4666 | EDAC-I82975X |
8b58be88 | 4667 | M: Ranganathan Desikan <ravi@jetztechnologies.com> |
25527885 | 4668 | M: "Arvind R." <arvino55@gmail.com> |
91445c72 | 4669 | L: linux-edac@vger.kernel.org |
ba9a5918 | 4670 | S: Maintained |
679655da | 4671 | F: drivers/edac/i82975x_edac.c |
ba9a5918 | 4672 | |
791b4706 JB |
4673 | EDAC-IE31200 |
4674 | M: Jason Baron <jbaron@akamai.com> | |
4675 | L: linux-edac@vger.kernel.org | |
791b4706 JB |
4676 | S: Maintained |
4677 | F: drivers/edac/ie31200_edac.c | |
4678 | ||
ccdfb979 | 4679 | EDAC-MPC85XX |
30c7469b | 4680 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
ccdfb979 | 4681 | L: linux-edac@vger.kernel.org |
ccdfb979 JT |
4682 | S: Maintained |
4683 | F: drivers/edac/mpc85xx_edac.[ch] | |
4684 | ||
ba9a5918 | 4685 | EDAC-PASEMI |
8b58be88 | 4686 | M: Egor Martovetsky <egor@pasemi.com> |
91445c72 | 4687 | L: linux-edac@vger.kernel.org |
6bc78404 | 4688 | S: Maintained |
679655da | 4689 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 4690 | |
0e438e3f | 4691 | EDAC-R82600 |
8b58be88 | 4692 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 4693 | L: linux-edac@vger.kernel.org |
0e438e3f | 4694 | S: Maintained |
679655da | 4695 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 4696 | |
4d096ca7 | 4697 | EDAC-SBRIDGE |
5dc8a864 MCC |
4698 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4699 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
4d096ca7 | 4700 | L: linux-edac@vger.kernel.org |
4d096ca7 MCC |
4701 | S: Maintained |
4702 | F: drivers/edac/sb_edac.c | |
4703 | ||
4ec656bd TL |
4704 | EDAC-SKYLAKE |
4705 | M: Tony Luck <tony.luck@intel.com> | |
4706 | L: linux-edac@vger.kernel.org | |
4707 | S: Maintained | |
4708 | F: drivers/edac/skx_edac.c | |
4709 | ||
995e1de4 LH |
4710 | EDAC-XGENE |
4711 | APPLIED MICRO (APM) X-GENE SOC EDAC | |
4712 | M: Loc Ho <lho@apm.com> | |
4713 | S: Supported | |
4714 | F: drivers/edac/xgene_edac.c | |
4715 | F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt | |
4716 | ||
af39917d CL |
4717 | EDIROL UA-101/UA-1000 DRIVER |
4718 | M: Clemens Ladisch <clemens@ladisch.de> | |
4719 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
4720 | T: git git://git.alsa-project.org/alsa-kernel.git | |
4721 | S: Maintained | |
4722 | F: sound/usb/misc/ua101.c | |
4723 | ||
1f7df953 | 4724 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
825fcfce | 4725 | M: Matt Fleming <matt@codeblueprint.co.uk> |
6026ed2f | 4726 | M: Ard Biesheuvel <ard.biesheuvel@linaro.org> |
1f7df953 | 4727 | L: linux-efi@vger.kernel.org |
6026ed2f | 4728 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git |
1f7df953 | 4729 | S: Maintained |
fb2efb5c | 4730 | F: Documentation/efi-stub.txt |
f135a176 | 4731 | F: arch/*/kernel/efi.c |
1f7df953 | 4732 | F: arch/x86/boot/compressed/eboot.[ch] |
f135a176 | 4733 | F: arch/*/include/asm/efi.h |
e8dfe6d8 MF |
4734 | F: arch/x86/platform/efi/ |
4735 | F: drivers/firmware/efi/ | |
1f7df953 | 4736 | F: include/linux/efi*.h |
f135a176 AB |
4737 | F: arch/arm/boot/compressed/efi-header.S |
4738 | F: arch/arm64/kernel/efi-entry.S | |
1f7df953 | 4739 | |
d68772b7 MF |
4740 | EFI VARIABLE FILESYSTEM |
4741 | M: Matthew Garrett <matthew.garrett@nebula.com> | |
4742 | M: Jeremy Kerr <jk@ozlabs.org> | |
825fcfce | 4743 | M: Matt Fleming <matt@codeblueprint.co.uk> |
d68772b7 MF |
4744 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
4745 | L: linux-efi@vger.kernel.org | |
4746 | S: Maintained | |
4747 | F: fs/efivarfs/ | |
4748 | ||
85a00d9b PJ |
4749 | EFIFB FRAMEBUFFER DRIVER |
4750 | L: linux-fbdev@vger.kernel.org | |
4751 | M: Peter Jones <pjones@redhat.com> | |
4752 | S: Maintained | |
8a61f013 | 4753 | F: drivers/video/fbdev/efifb.c |
85a00d9b | 4754 | |
ff6301da IH |
4755 | EFI TEST DRIVER |
4756 | L: linux-efi@vger.kernel.org | |
4757 | M: Ivan Hu <ivan.hu@canonical.com> | |
4758 | M: Matt Fleming <matt@codeblueprint.co.uk> | |
4759 | S: Maintained | |
4760 | F: drivers/firmware/efi/test/ | |
4761 | ||
0bee8d28 JT |
4762 | EFS FILESYSTEM |
4763 | W: http://aeschi.ch.eu.org/efs/ | |
4764 | S: Orphan | |
679655da | 4765 | F: fs/efs/ |
0bee8d28 | 4766 | |
aa8a9e25 | 4767 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
97b04197 | 4768 | M: Douglas Miller <dougmill@linux.vnet.ibm.com> |
aa8a9e25 BL |
4769 | L: netdev@vger.kernel.org |
4770 | S: Maintained | |
9aa32835 | 4771 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 4772 | |
f0319efe | 4773 | EM28XX VIDEO4LINUX DRIVER |
5dc8a864 MCC |
4774 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4775 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
f0319efe | 4776 | L: linux-media@vger.kernel.org |
a825eaec | 4777 | W: https://linuxtv.org |
f0319efe MCC |
4778 | T: git git://linuxtv.org/media_tree.git |
4779 | S: Maintained | |
4780 | F: drivers/media/usb/em28xx/ | |
618cd932 | 4781 | F: Documentation/media/v4l-drivers/em28xx* |
f0319efe | 4782 | |
3e3a7d66 | 4783 | EMBEDDED LINUX |
8b58be88 JP |
4784 | M: Paul Gortmaker <paul.gortmaker@windriver.com> |
4785 | M: Matt Mackall <mpm@selenic.com> | |
4786 | M: David Woodhouse <dwmw2@infradead.org> | |
3e3a7d66 DW |
4787 | L: linux-embedded@vger.kernel.org |
4788 | S: Maintained | |
4789 | ||
b8aca0c1 JS |
4790 | EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER |
4791 | M: James Smart <james.smart@broadcom.com> | |
4792 | M: Dick Kennedy <dick.kennedy@broadcom.com> | |
ce00f85c | 4793 | L: linux-scsi@vger.kernel.org |
b8aca0c1 | 4794 | W: http://www.broadcom.com |
ce00f85c | 4795 | S: Supported |
679655da | 4796 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 4797 | |
5f5bac82 | 4798 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 4799 | M: Michał Mirosław <mirq-linux@rere.qmqm.pl> |
5f5bac82 MM |
4800 | S: Maintained |
4801 | F: drivers/misc/cb710/ | |
4802 | F: drivers/mmc/host/cb710-mmc.* | |
4803 | F: include/linux/cb710.h | |
4804 | ||
931e39a1 ML |
4805 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
4806 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
4807 | S: Maintained | |
2a837449 | 4808 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 4809 | |
d5ca9006 | 4810 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 4811 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
d5ca9006 | 4812 | S: Maintained |
084bad91 | 4813 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
8a61f013 | 4814 | F: drivers/video/fbdev/s1d13xxxfb.c |
679655da | 4815 | F: include/video/s1d13xxxfb.h |
d5ca9006 | 4816 | |
38df6492 ME |
4817 | ET131X NETWORK DRIVER |
4818 | M: Mark Einon <mark.einon@gmail.com> | |
4819 | S: Odd Fixes | |
4820 | F: drivers/net/ethernet/agere/ | |
4821 | ||
1da177e4 | 4822 | ETHERNET BRIDGE |
adbbf69d | 4823 | M: Stephen Hemminger <stephen@networkplumber.org> |
3430284f | 4824 | L: bridge@lists.linux-foundation.org (moderated for non-subscribers) |
4c325313 | 4825 | L: netdev@vger.kernel.org |
c996d8b9 | 4826 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 4827 | S: Maintained |
679655da JP |
4828 | F: include/linux/netfilter_bridge/ |
4829 | F: net/bridge/ | |
1da177e4 | 4830 | |
22f08ad9 FF |
4831 | ETHERNET PHY LIBRARY |
4832 | M: Florian Fainelli <f.fainelli@gmail.com> | |
4833 | L: netdev@vger.kernel.org | |
4834 | S: Maintained | |
4835 | F: include/linux/phy.h | |
4836 | F: include/linux/phy_fixed.h | |
4837 | F: drivers/net/phy/ | |
4838 | F: Documentation/networking/phy.txt | |
4839 | F: drivers/of/of_mdio.c | |
4840 | F: drivers/of/of_net.c | |
4841 | ||
1da177e4 | 4842 | EXT2 FILE SYSTEM |
d8130624 | 4843 | M: Jan Kara <jack@suse.com> |
72be2ccf | 4844 | L: linux-ext4@vger.kernel.org |
1da177e4 | 4845 | S: Maintained |
679655da JP |
4846 | F: Documentation/filesystems/ext2.txt |
4847 | F: fs/ext2/ | |
4848 | F: include/linux/ext2* | |
1da177e4 | 4849 | |
72be2ccf | 4850 | EXT4 FILE SYSTEM |
8b58be88 | 4851 | M: "Theodore Ts'o" <tytso@mit.edu> |
3c373a5f | 4852 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
72be2ccf | 4853 | L: linux-ext4@vger.kernel.org |
08a225f1 | 4854 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 4855 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
9f273c24 | 4856 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git |
1da177e4 | 4857 | S: Maintained |
679655da JP |
4858 | F: Documentation/filesystems/ext4.txt |
4859 | F: fs/ext4/ | |
1da177e4 | 4860 | |
c5532b09 | 4861 | Extended Verification Module (EVM) |
74dd744f MZ |
4862 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
4863 | L: linux-ima-devel@lists.sourceforge.net | |
4864 | L: linux-security-module@vger.kernel.org | |
c5532b09 MZ |
4865 | S: Supported |
4866 | F: security/integrity/evm/ | |
4867 | ||
df6b3cfe MH |
4868 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
4869 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
4870 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
4871 | L: linux-kernel@vger.kernel.org | |
81df63a9 | 4872 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git |
df6b3cfe MH |
4873 | S: Maintained |
4874 | F: drivers/extcon/ | |
cd2c3e7f CC |
4875 | F: include/linux/extcon/ |
4876 | F: include/linux/extcon.h | |
df6b3cfe | 4877 | F: Documentation/extcon/ |
cd2c3e7f | 4878 | F: Documentation/devicetree/bindings/extcon/ |
df6b3cfe | 4879 | |
e2a75c44 | 4880 | EXYNOS DP DRIVER |
b7701755 | 4881 | M: Jingoo Han <jingoohan1@gmail.com> |
e2a75c44 JH |
4882 | L: dri-devel@lists.freedesktop.org |
4883 | S: Maintained | |
4884 | F: drivers/gpu/drm/exynos/exynos_dp* | |
4885 | ||
9b93a409 MS |
4886 | EXYNOS SYSMMU (IOMMU) driver |
4887 | M: Marek Szyprowski <m.szyprowski@samsung.com> | |
4888 | L: iommu@lists.linux-foundation.org | |
4889 | S: Maintained | |
4890 | F: drivers/iommu/exynos-iommu.c | |
4891 | ||
4a66d3fe NC |
4892 | EZchip NPS platform support |
4893 | M: Noam Camus <noamc@ezchip.com> | |
4894 | S: Supported | |
4895 | F: arch/arc/plat-eznps | |
4896 | F: arch/arc/boot/dts/eznps.dts | |
4897 | ||
e53004e2 | 4898 | F71805F HARDWARE MONITORING DRIVER |
d8130624 | 4899 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 4900 | L: linux-hwmon@vger.kernel.org |
e53004e2 | 4901 | S: Maintained |
679655da JP |
4902 | F: Documentation/hwmon/f71805f |
4903 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 4904 | |
eea977ed MB |
4905 | FC0011 TUNER DRIVER |
4906 | M: Michael Buesch <m@bues.ch> | |
4907 | L: linux-media@vger.kernel.org | |
4908 | S: Maintained | |
ccae7af2 MCC |
4909 | F: drivers/media/tuners/fc0011.h |
4910 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 4911 | |
91952bc0 AP |
4912 | FC2580 MEDIA DRIVER |
4913 | M: Antti Palosaari <crope@iki.fi> | |
4914 | L: linux-media@vger.kernel.org | |
a825eaec | 4915 | W: https://linuxtv.org |
91952bc0 AP |
4916 | W: http://palosaari.fi/linux/ |
4917 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4918 | T: git git://linuxtv.org/anttip/media_tree.git | |
4919 | S: Maintained | |
4920 | F: drivers/media/tuners/fc2580* | |
eea977ed | 4921 | |
88b2dbdb EP |
4922 | FANOTIFY |
4923 | M: Eric Paris <eparis@redhat.com> | |
4924 | S: Maintained | |
4925 | F: fs/notify/fanotify/ | |
4926 | F: include/linux/fanotify.h | |
c117ab84 | 4927 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 4928 | |
1da177e4 | 4929 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 4930 | M: Kevin Curtis <kevin.curtis@farsite.co.uk> |
1da177e4 LT |
4931 | W: http://www.farsite.co.uk/ |
4932 | S: Supported | |
679655da | 4933 | F: drivers/net/wan/farsync.* |
1da177e4 | 4934 | |
c5408b88 | 4935 | FAULT INJECTION SUPPORT |
8b58be88 | 4936 | M: Akinobu Mita <akinobu.mita@gmail.com> |
c5408b88 | 4937 | S: Supported |
679655da JP |
4938 | F: Documentation/fault-injection/ |
4939 | F: lib/fault-inject.c | |
c5408b88 | 4940 | |
053e514f NT |
4941 | FBTFT Framebuffer drivers |
4942 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
4943 | M: Noralf Trønnes <noralf@tronnes.org> | |
4944 | S: Maintained | |
4945 | F: drivers/staging/fbtft/ | |
4946 | ||
cae727db | 4947 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
49a75815 | 4948 | M: Johannes Thumshirn <jth@kernel.org> |
f4aaea6d | 4949 | L: fcoe-devel@open-fcoe.org |
cae727db RL |
4950 | W: www.Open-FCoE.org |
4951 | S: Supported | |
4952 | F: drivers/scsi/libfc/ | |
4953 | F: drivers/scsi/fcoe/ | |
4954 | F: include/scsi/fc/ | |
4955 | F: include/scsi/libfc.h | |
4956 | F: include/scsi/libfcoe.h | |
c117ab84 | 4957 | F: include/uapi/scsi/fc/ |
cae727db | 4958 | |
e2d1d6c0 | 4959 | FILE LOCKING (flock() and fcntl()/lockf()) |
8c836fa8 | 4960 | M: Jeff Layton <jlayton@poochiereds.net> |
9c3646d1 | 4961 | M: "J. Bruce Fields" <bfields@fieldses.org> |
e2d1d6c0 | 4962 | L: linux-fsdevel@vger.kernel.org |
1da177e4 | 4963 | S: Maintained |
679655da JP |
4964 | F: include/linux/fcntl.h |
4965 | F: include/linux/fs.h | |
c117ab84 CEB |
4966 | F: include/uapi/linux/fcntl.h |
4967 | F: include/uapi/linux/fs.h | |
679655da JP |
4968 | F: fs/fcntl.c |
4969 | F: fs/locks.c | |
1da177e4 | 4970 | |
e2d1d6c0 | 4971 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 4972 | M: Alexander Viro <viro@zeniv.linux.org.uk> |
e2d1d6c0 | 4973 | L: linux-fsdevel@vger.kernel.org |
173acc7c | 4974 | S: Maintained |
679655da | 4975 | F: fs/* |
173acc7c | 4976 | |
b26e0ed4 | 4977 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 4978 | M: Riku Voipio <riku.voipio@iki.fi> |
968ce1b1 | 4979 | L: linux-hwmon@vger.kernel.org |
b26e0ed4 | 4980 | S: Maintained |
d5ca6918 JP |
4981 | F: drivers/hwmon/f75375s.c |
4982 | F: include/linux/f75375s.h | |
b26e0ed4 | 4983 | |
a331b0c3 CL |
4984 | FIREWIRE AUDIO DRIVERS |
4985 | M: Clemens Ladisch <clemens@ladisch.de> | |
4986 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
4987 | T: git git://git.alsa-project.org/alsa-kernel.git | |
4988 | S: Maintained | |
4989 | F: sound/firewire/ | |
4990 | ||
eb86ec51 SR |
4991 | FIREWIRE MEDIA DRIVERS (firedtv) |
4992 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> | |
4993 | L: linux-media@vger.kernel.org | |
4994 | L: linux1394-devel@lists.sourceforge.net | |
4995 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
4996 | S: Maintained | |
4997 | F: drivers/media/firewire/ | |
4998 | ||
a511ce33 CB |
4999 | FIREWIRE SBP-2 TARGET |
5000 | M: Chris Boot <bootc@bootc.net> | |
5001 | L: linux-scsi@vger.kernel.org | |
5002 | L: target-devel@vger.kernel.org | |
5003 | L: linux1394-devel@lists.sourceforge.net | |
5004 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
5005 | S: Maintained | |
5006 | F: drivers/target/sbp/ | |
5007 | ||
7d2c86b5 | 5008 | FIREWIRE SUBSYSTEM |
8b58be88 | 5009 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
e2d1d6c0 | 5010 | L: linux1394-devel@lists.sourceforge.net |
958a29cb | 5011 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 5012 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 5013 | S: Maintained |
679655da | 5014 | F: drivers/firewire/ |
8f06ce3b SR |
5015 | F: include/linux/firewire.h |
5016 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 5017 | F: tools/firewire/ |
e2d1d6c0 RD |
5018 | |
5019 | FIRMWARE LOADER (request_firmware) | |
39e68089 | 5020 | M: Ming Lei <ming.lei@canonical.com> |
e7604239 | 5021 | M: Luis R. Rodriguez <mcgrof@kernel.org> |
39e68089 ML |
5022 | L: linux-kernel@vger.kernel.org |
5023 | S: Maintained | |
679655da JP |
5024 | F: Documentation/firmware_class/ |
5025 | F: drivers/base/firmware*.c | |
5026 | F: include/linux/firmware.h | |
e2d1d6c0 | 5027 | |
f730e3dc | 5028 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
9bb3c446 PK |
5029 | M: Joshua Morris <josh.h.morris@us.ibm.com> |
5030 | M: Philip Kelleher <pjk1939@linux.vnet.ibm.com> | |
5031 | S: Maintained | |
5032 | F: drivers/block/rsxx/ | |
5033 | ||
8206f664 | 5034 | FLOPPY DRIVER |
e5f6450c | 5035 | M: Jiri Kosina <jikos@kernel.org> |
8206f664 JK |
5036 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git |
5037 | S: Odd fixes | |
5038 | F: drivers/block/floppy.c | |
5039 | ||
9c9f32ed AR |
5040 | FMC SUBSYSTEM |
5041 | M: Alessandro Rubini <rubini@gnudd.com> | |
5042 | W: http://www.ohwr.org/projects/fmc-bus | |
5043 | S: Supported | |
5044 | F: drivers/fmc/ | |
5045 | F: include/linux/fmc*.h | |
5046 | F: include/linux/ipmi-fru.h | |
5047 | K: fmc_d.*register | |
5048 | ||
3c0ed7d5 AT |
5049 | FPGA MANAGER FRAMEWORK |
5050 | M: Alan Tull <atull@opensource.altera.com> | |
dd7d664a | 5051 | R: Moritz Fischer <moritz.fischer@ettus.com> |
7f1a5f04 | 5052 | L: linux-fpga@vger.kernel.org |
3c0ed7d5 | 5053 | S: Maintained |
e4998077 | 5054 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/atull/linux-fpga.git |
3c0ed7d5 AT |
5055 | F: drivers/fpga/ |
5056 | F: include/linux/fpga/fpga-mgr.h | |
5057 | W: http://www.rocketboards.org | |
5058 | ||
e2d1d6c0 | 5059 | FPU EMULATOR |
8b58be88 | 5060 | M: Bill Metzenthen <billm@melbpc.org.au> |
e769980f | 5061 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 5062 | S: Maintained |
679655da | 5063 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
5064 | |
5065 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 5066 | L: netdev@vger.kernel.org |
c173bfac | 5067 | S: Orphan |
679655da JP |
5068 | F: drivers/net/wan/dlci.c |
5069 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
5070 | |
5071 | FRAMEBUFFER LAYER | |
c69f677c | 5072 | L: linux-fbdev@vger.kernel.org |
b22fe37b | 5073 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
23860078 | 5074 | S: Orphan |
679655da | 5075 | F: Documentation/fb/ |
b22fe37b PM |
5076 | F: drivers/video/ |
5077 | F: include/video/ | |
679655da | 5078 | F: include/linux/fb.h |
c117ab84 CEB |
5079 | F: include/uapi/video/ |
5080 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 5081 | |
a57c188e | 5082 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 5083 | M: Timur Tabi <timur@tabi.org> |
a57c188e | 5084 | L: linux-fbdev@vger.kernel.org |
c4ef9bc4 | 5085 | S: Maintained |
8a61f013 | 5086 | F: drivers/video/fbdev/fsl-diu-fb.* |
a57c188e | 5087 | |
e2d1d6c0 | 5088 | FREESCALE DMA DRIVER |
8b58be88 JP |
5089 | M: Li Yang <leoli@freescale.com> |
5090 | M: Zhang Wei <zw@zh-kernel.org> | |
a4724ed6 | 5091 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 | 5092 | S: Maintained |
679655da | 5093 | F: drivers/dma/fsldma.* |
e2d1d6c0 | 5094 | |
44248aff HX |
5095 | FREESCALE GPMI NAND DRIVER |
5096 | M: Han Xu <han.xu@nxp.com> | |
5097 | L: linux-mtd@lists.infradead.org | |
5098 | S: Maintained | |
5099 | F: drivers/mtd/nand/gpmi-nand/* | |
5100 | ||
e2d1d6c0 | 5101 | FREESCALE I2C CPM DRIVER |
8b58be88 | 5102 | M: Jochen Friedrich <jochen@scram.de> |
a4724ed6 | 5103 | L: linuxppc-dev@lists.ozlabs.org |
846557d3 | 5104 | L: linux-i2c@vger.kernel.org |
0d2b405a | 5105 | S: Maintained |
679655da | 5106 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 5107 | |
60e8c5ab | 5108 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 5109 | M: Sascha Hauer <kernel@pengutronix.de> |
c69f677c | 5110 | L: linux-fbdev@vger.kernel.org |
efc03ecb | 5111 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
60e8c5ab | 5112 | S: Maintained |
bad985a1 | 5113 | F: include/linux/platform_data/video-imxfb.h |
8a61f013 | 5114 | F: drivers/video/fbdev/imxfb.c |
60e8c5ab | 5115 | |
4d8e2cef | 5116 | FREESCALE QUAD SPI DRIVER |
38714fbd | 5117 | M: Han Xu <han.xu@nxp.com> |
4d8e2cef HX |
5118 | L: linux-mtd@lists.infradead.org |
5119 | S: Maintained | |
5120 | F: drivers/mtd/spi-nor/fsl-quadspi.c | |
5121 | ||
4689a6b1 | 5122 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
5123 | M: Pantelis Antoniou <pantelis.antoniou@gmail.com> |
5124 | M: Vitaly Bordug <vbordug@ru.mvista.com> | |
a4724ed6 | 5125 | L: linuxppc-dev@lists.ozlabs.org |
4689a6b1 PA |
5126 | L: netdev@vger.kernel.org |
5127 | S: Maintained | |
ec21e2ec | 5128 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 5129 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 5130 | |
63a0a00b NA |
5131 | FREESCALE IMX / MXC FEC DRIVER |
5132 | M: Fugang Duan <fugang.duan@nxp.com> | |
5133 | L: netdev@vger.kernel.org | |
5134 | S: Maintained | |
5135 | F: drivers/net/ethernet/freescale/fec_main.c | |
5136 | F: drivers/net/ethernet/freescale/fec_ptp.c | |
5137 | F: drivers/net/ethernet/freescale/fec.h | |
5138 | F: Documentation/devicetree/bindings/net/fsl-fec.txt | |
5139 | ||
2fbfadb5 MB |
5140 | FREESCALE QORIQ DPAA FMAN DRIVER |
5141 | M: Madalin Bucur <madalin.bucur@nxp.com> | |
5142 | L: netdev@vger.kernel.org | |
5143 | S: Maintained | |
5144 | F: drivers/net/ethernet/freescale/fman | |
5145 | F: Documentation/devicetree/bindings/powerpc/fsl/fman.txt | |
5146 | ||
1b48706f | 5147 | FREESCALE SOC DRIVERS |
5148 | M: Scott Wood <oss@buserror.net> | |
5149 | L: linuxppc-dev@lists.ozlabs.org | |
5150 | L: linux-arm-kernel@lists.infradead.org | |
5151 | S: Maintained | |
5152 | F: drivers/soc/fsl/ | |
5153 | F: include/linux/fsl/ | |
5154 | ||
d9e9d82c | 5155 | FREESCALE QUICC ENGINE LIBRARY |
1b48706f | 5156 | M: Qiang Zhao <qiang.zhao@nxp.com> |
a4724ed6 | 5157 | L: linuxppc-dev@lists.ozlabs.org |
1b48706f | 5158 | S: Maintained |
7aa1aa6e ZQ |
5159 | F: drivers/soc/fsl/qe/ |
5160 | F: include/soc/fsl/*qe*.h | |
5161 | F: include/soc/fsl/*ucc*.h | |
d9e9d82c | 5162 | |
b55ef929 | 5163 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 5164 | M: Li Yang <leoli@freescale.com> |
6372594a | 5165 | L: linux-usb@vger.kernel.org |
a4724ed6 | 5166 | L: linuxppc-dev@lists.ozlabs.org |
a7205b30 | 5167 | S: Maintained |
faf2e1db | 5168 | F: drivers/usb/gadget/udc/fsl* |
a7205b30 | 5169 | |
beaf53bf | 5170 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 5171 | M: Li Yang <leoli@freescale.com> |
beaf53bf | 5172 | L: netdev@vger.kernel.org |
a4724ed6 | 5173 | L: linuxppc-dev@lists.ozlabs.org |
beaf53bf | 5174 | S: Maintained |
ec21e2ec | 5175 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 5176 | |
abb1ed7b CM |
5177 | FREESCALE eTSEC ETHERNET DRIVER (GIANFAR) |
5178 | M: Claudiu Manoil <claudiu.manoil@freescale.com> | |
5179 | L: netdev@vger.kernel.org | |
5180 | S: Maintained | |
5181 | F: drivers/net/ethernet/freescale/gianfar* | |
5182 | X: drivers/net/ethernet/freescale/gianfar_ptp.c | |
5183 | F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt | |
5184 | ||
c19b6d24 ZQ |
5185 | FREESCALE QUICC ENGINE UCC HDLC DRIVER |
5186 | M: Zhao Qiang <qiang.zhao@nxp.com> | |
5187 | L: netdev@vger.kernel.org | |
5188 | L: linuxppc-dev@lists.ozlabs.org | |
5189 | S: Maintained | |
5190 | F: drivers/net/wan/fsl_ucc_hdlc* | |
5191 | ||
d9e9d82c | 5192 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 5193 | M: Timur Tabi <timur@tabi.org> |
a4724ed6 | 5194 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 5195 | S: Maintained |
df621252 | 5196 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
5197 | |
5198 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 5199 | M: Timur Tabi <timur@tabi.org> |
dc85950a | 5200 | M: Nicolin Chen <nicoleotsuka@gmail.com> |
b4b98297 | 5201 | M: Xiubo Li <Xiubo.Lee@gmail.com> |
aeea2fdd | 5202 | R: Fabio Estevam <fabio.estevam@nxp.com> |
93711660 | 5203 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a4724ed6 | 5204 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 5205 | S: Maintained |
69aefcea | 5206 | F: sound/soc/fsl/fsl* |
dc85950a | 5207 | F: sound/soc/fsl/imx* |
69aefcea | 5208 | F: sound/soc/fsl/mpc8610_hpcd.c |
d9e9d82c | 5209 | |
1da177e4 | 5210 | FREEVXFS FILESYSTEM |
8b58be88 | 5211 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 LT |
5212 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
5213 | S: Maintained | |
679655da | 5214 | F: fs/freevxfs/ |
1da177e4 | 5215 | |
71038f52 | 5216 | FREEZER |
49db1903 | 5217 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 5218 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 5219 | L: linux-pm@vger.kernel.org |
71038f52 | 5220 | S: Supported |
679655da JP |
5221 | F: Documentation/power/freezing-of-tasks.txt |
5222 | F: include/linux/freezer.h | |
5223 | F: kernel/freezer.c | |
71038f52 | 5224 | |
839a1f79 KRW |
5225 | FRONTSWAP API |
5226 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
5227 | L: linux-kernel@vger.kernel.org | |
5228 | S: Maintained | |
5229 | F: mm/frontswap.c | |
5230 | F: include/linux/frontswap.h | |
5231 | ||
a5432f5a | 5232 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 5233 | M: David Howells <dhowells@redhat.com> |
e62d6e24 | 5234 | L: linux-cachefs@redhat.com (moderated for non-subscribers) |
a5432f5a DH |
5235 | S: Supported |
5236 | F: Documentation/filesystems/caching/ | |
5237 | F: fs/fscache/ | |
5238 | F: include/linux/fscache*.h | |
5239 | ||
598c7d7a TT |
5240 | FS-CRYPTO: FILE SYSTEM LEVEL ENCRYPTION SUPPORT |
5241 | M: Theodore Y. Ts'o <tytso@mit.edu> | |
5242 | M: Jaegeuk Kim <jaegeuk@kernel.org> | |
c1b22129 | 5243 | L: linux-fsdevel@vger.kernel.org |
598c7d7a TT |
5244 | S: Supported |
5245 | F: fs/crypto/ | |
5246 | F: include/linux/fscrypto.h | |
5247 | ||
f58ad8f5 | 5248 | F2FS FILE SYSTEM |
9b29d481 | 5249 | M: Jaegeuk Kim <jaegeuk@kernel.org> |
95129296 | 5250 | M: Chao Yu <yuchao0@huawei.com> |
f58ad8f5 | 5251 | L: linux-f2fs-devel@lists.sourceforge.net |
95129296 | 5252 | W: https://f2fs.wiki.kernel.org/ |
f58ad8f5 JK |
5253 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git |
5254 | S: Maintained | |
5255 | F: Documentation/filesystems/f2fs.txt | |
3bac380c | 5256 | F: Documentation/ABI/testing/sysfs-fs-f2fs |
f58ad8f5 JK |
5257 | F: fs/f2fs/ |
5258 | F: include/linux/f2fs_fs.h | |
62d43eeb | 5259 | F: include/trace/events/f2fs.h |
f58ad8f5 | 5260 | |
5ab7ffea | 5261 | FUJITSU FR-V (FRV) PORT |
0cf0305f | 5262 | S: Orphan |
679655da | 5263 | F: arch/frv/ |
1da177e4 | 5264 | |
20b93734 | 5265 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 5266 | M: Jonathan Woithe <jwoithe@just42.net> |
d0944853 | 5267 | L: platform-driver-x86@vger.kernel.org |
20b93734 | 5268 | S: Maintained |
679655da | 5269 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 5270 | |
4da621b6 HK |
5271 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
5272 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
5273 | M: Heungjun Kim <riverful.kim@samsung.com> | |
5274 | L: linux-media@vger.kernel.org | |
5275 | S: Maintained | |
90d72ac6 | 5276 | F: drivers/media/i2c/m5mols/ |
b5dcee22 | 5277 | F: include/media/i2c/m5mols.h |
4da621b6 | 5278 | |
2d24c490 RG |
5279 | FUJITSU TABLET EXTRAS |
5280 | M: Robert Gerlach <khnz@gmx.de> | |
5281 | L: platform-driver-x86@vger.kernel.org | |
5282 | S: Maintained | |
5283 | F: drivers/platform/x86/fujitsu-tablet.c | |
5284 | ||
04578f17 | 5285 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 5286 | M: Miklos Szeredi <miklos@szeredi.hu> |
4441f63a | 5287 | L: linux-fsdevel@vger.kernel.org |
04578f17 | 5288 | W: http://fuse.sourceforge.net/ |
0a30f612 | 5289 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git |
04578f17 | 5290 | S: Maintained |
679655da | 5291 | F: fs/fuse/ |
c117ab84 | 5292 | F: include/uapi/linux/fuse.h |
0a30f612 | 5293 | F: Documentation/filesystems/fuse.txt |
04578f17 | 5294 | |
1da177e4 | 5295 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 5296 | M: Rik Faith <faith@cs.unc.edu> |
1da177e4 | 5297 | L: linux-scsi@vger.kernel.org |
baaea1dc | 5298 | S: Odd Fixes (e.g., new signatures) |
679655da | 5299 | F: drivers/scsi/fdomain.* |
1da177e4 | 5300 | |
6b90bd4b ER |
5301 | GCC PLUGINS |
5302 | M: Kees Cook <keescook@chromium.org> | |
5303 | R: Emese Revfy <re.emese@gmail.com> | |
5304 | L: kernel-hardening@lists.openwall.com | |
5305 | S: Maintained | |
5306 | F: scripts/gcc-plugins/ | |
5307 | F: scripts/gcc-plugin.sh | |
68fdc678 | 5308 | F: scripts/Makefile.gcc-plugins |
6b90bd4b ER |
5309 | F: Documentation/gcc-plugins.txt |
5310 | ||
d8e2162c PO |
5311 | GCOV BASED KERNEL PROFILING |
5312 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
5313 | S: Maintained | |
5314 | F: kernel/gcov/ | |
2584bab2 | 5315 | F: Documentation/dev-tools/gcov.rst |
d8e2162c | 5316 | |
1da177e4 | 5317 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
8b58be88 | 5318 | M: Achim Leubner <achim_leubner@adaptec.com> |
1da177e4 LT |
5319 | L: linux-scsi@vger.kernel.org |
5320 | W: http://www.icp-vortex.com/ | |
5321 | S: Supported | |
679655da | 5322 | F: drivers/scsi/gdt* |
1da177e4 | 5323 | |
158daf16 JK |
5324 | GDB KERNEL DEBUGGING HELPER SCRIPTS |
5325 | M: Jan Kiszka <jan.kiszka@siemens.com> | |
e10af132 | 5326 | M: Kieran Bingham <kieran@bingham.xyz> |
158daf16 JK |
5327 | S: Supported |
5328 | F: scripts/gdb/ | |
5329 | ||
3169a1c7 HV |
5330 | GEMTEK FM RADIO RECEIVER DRIVER |
5331 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5332 | L: linux-media@vger.kernel.org | |
5333 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 5334 | W: https://linuxtv.org |
3169a1c7 HV |
5335 | S: Maintained |
5336 | F: drivers/media/radio/radio-gemtek* | |
5337 | ||
1c23af90 | 5338 | GENERIC GPIO I2C DRIVER |
880b0e26 | 5339 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1c23af90 | 5340 | S: Supported |
679655da JP |
5341 | F: drivers/i2c/busses/i2c-gpio.c |
5342 | F: include/linux/i2c-gpio.h | |
1c23af90 | 5343 | |
92ed1a76 PK |
5344 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
5345 | M: Peter Korsgaard <peter.korsgaard@barco.com> | |
5346 | L: linux-i2c@vger.kernel.org | |
5347 | S: Supported | |
e7065e20 JD |
5348 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
5349 | F: include/linux/i2c-mux-gpio.h | |
5350 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 5351 | |
9251ce95 | 5352 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 5353 | M: Krzysztof Halasa <khc@pm.waw.pl> |
1da177e4 LT |
5354 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
5355 | S: Maintained | |
679655da JP |
5356 | F: drivers/net/wan/c101.c |
5357 | F: drivers/net/wan/hd6457* | |
5358 | F: drivers/net/wan/hdlc* | |
5359 | F: drivers/net/wan/n2.c | |
5360 | F: drivers/net/wan/pc300too.c | |
5361 | F: drivers/net/wan/pci200syn.c | |
5362 | F: drivers/net/wan/wanxl* | |
1da177e4 | 5363 | |
1527aab6 | 5364 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 5365 | M: Arnd Bergmann <arnd@arndb.de> |
1527aab6 AB |
5366 | L: linux-arch@vger.kernel.org |
5367 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
5368 | S: Maintained | |
14430813 JP |
5369 | F: include/asm-generic/ |
5370 | F: include/uapi/asm-generic/ | |
1527aab6 | 5371 | |
ff764963 KVA |
5372 | GENERIC PHY FRAMEWORK |
5373 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
5374 | L: linux-kernel@vger.kernel.org | |
5375 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git | |
5376 | S: Supported | |
5377 | F: drivers/phy/ | |
5378 | F: include/linux/phy/ | |
5379 | ||
eea97aed KH |
5380 | GENERIC PM DOMAINS |
5381 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> | |
5382 | M: Kevin Hilman <khilman@kernel.org> | |
5383 | M: Ulf Hansson <ulf.hansson@linaro.org> | |
5384 | L: linux-pm@vger.kernel.org | |
5385 | S: Supported | |
5386 | F: drivers/base/power/domain*.c | |
5387 | F: include/linux/pm_domain.h | |
5388 | ||
ccb86a69 | 5389 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 5390 | M: "Michael S. Tsirkin" <mst@redhat.com> |
ccb86a69 | 5391 | L: kvm@vger.kernel.org |
ccb86a69 MT |
5392 | S: Supported |
5393 | F: drivers/uio/uio_pci_generic.c | |
5394 | ||
f8f1ec73 JP |
5395 | GET_MAINTAINER SCRIPT |
5396 | M: Joe Perches <joe@perches.com> | |
5397 | S: Maintained | |
5398 | F: scripts/get_maintainer.pl | |
5399 | ||
a7d5afe8 GKB |
5400 | GENWQE (IBM Generic Workqueue Card) |
5401 | M: Frank Haverkamp <haver@linux.vnet.ibm.com> | |
5402 | M: Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com> | |
5403 | S: Supported | |
5404 | F: drivers/misc/genwqe/ | |
5405 | ||
5be7b50f | 5406 | GFS2 FILE SYSTEM |
8b58be88 | 5407 | M: Steven Whitehouse <swhiteho@redhat.com> |
28666d6d | 5408 | M: Bob Peterson <rpeterso@redhat.com> |
a4644184 | 5409 | L: cluster-devel@redhat.com |
5be7b50f | 5410 | W: http://sources.redhat.com/cluster/ |
28666d6d | 5411 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git |
5be7b50f | 5412 | S: Supported |
679655da JP |
5413 | F: Documentation/filesystems/gfs2*.txt |
5414 | F: fs/gfs2/ | |
c117ab84 | 5415 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 5416 | |
0a34eb8f | 5417 | GIGASET ISDN DRIVERS |
6b096fde | 5418 | M: Paul Bolle <pebolle@tiscali.nl> |
0a34eb8f HL |
5419 | L: gigaset307x-common@lists.sourceforge.net |
5420 | W: http://gigaset307x.sourceforge.net/ | |
6b096fde | 5421 | S: Odd Fixes |
679655da JP |
5422 | F: Documentation/isdn/README.gigaset |
5423 | F: drivers/isdn/gigaset/ | |
c117ab84 | 5424 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 5425 | |
7eea35fe JP |
5426 | GO7007 MPEG CODEC |
5427 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
5428 | L: linux-media@vger.kernel.org | |
5429 | S: Maintained | |
5430 | F: drivers/media/usb/go7007/ | |
5431 | ||
ca96ea86 BN |
5432 | GOODIX TOUCHSCREEN |
5433 | M: Bastien Nocera <hadess@hadess.net> | |
5434 | L: linux-input@vger.kernel.org | |
5435 | S: Maintained | |
5436 | F: drivers/input/touchscreen/goodix.c | |
5437 | ||
a6a1cf3d BJZ |
5438 | GPIO MOCKUP DRIVER |
5439 | M: Bamvor Jian Zhang <bamvor.zhangjian@linaro.org> | |
5440 | L: linux-gpio@vger.kernel.org | |
5441 | S: Maintained | |
5442 | F: drivers/gpio/gpio-mockup.c | |
5443 | F: tools/testing/selftests/gpio/ | |
5444 | ||
a0dc00b4 | 5445 | GPIO SUBSYSTEM |
e4651a9f | 5446 | M: Linus Walleij <linus.walleij@linaro.org> |
f2fa75cd | 5447 | M: Alexandre Courbot <gnurou@gmail.com> |
d15b7179 | 5448 | L: linux-gpio@vger.kernel.org |
f2fa75cd LW |
5449 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git |
5450 | S: Maintained | |
cd97a449 | 5451 | F: Documentation/devicetree/bindings/gpio/ |
f2fa75cd | 5452 | F: Documentation/gpio/ |
40c159b7 | 5453 | F: Documentation/ABI/testing/gpio-cdev |
fe95046e | 5454 | F: Documentation/ABI/obsolete/sysfs-gpio |
a0dc00b4 | 5455 | F: drivers/gpio/ |
bdc6e95e AC |
5456 | F: include/linux/gpio/ |
5457 | F: include/linux/gpio.h | |
9b692346 | 5458 | F: include/asm-generic/gpio.h |
3c702e99 | 5459 | F: include/uapi/linux/gpio.h |
6d591c46 | 5460 | F: tools/gpio/ |
a0dc00b4 | 5461 | |
71a6d0af HW |
5462 | GRE DEMULTIPLEXER DRIVER |
5463 | M: Dmitry Kozlov <xeb@mail.ru> | |
5464 | L: netdev@vger.kernel.org | |
5465 | S: Maintained | |
11c26770 JP |
5466 | F: net/ipv4/gre_demux.c |
5467 | F: net/ipv4/gre_offload.c | |
71a6d0af HW |
5468 | F: include/net/gre.h |
5469 | ||
d4c41139 | 5470 | GRETH 10/100/1G Ethernet MAC device driver |
bbdd09eb | 5471 | M: Andreas Larsson <andreas@gaisler.com> |
d4c41139 KG |
5472 | L: netdev@vger.kernel.org |
5473 | S: Maintained | |
a31a96ad | 5474 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 5475 | |
629c1fb5 GKH |
5476 | GREYBUS SUBSYSTEM |
5477 | M: Johan Hovold <johan@kernel.org> | |
5478 | M: Alex Elder <elder@kernel.org> | |
5479 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
5480 | S: Maintained | |
5481 | F: drivers/staging/greybus/ | |
5482 | ||
926706c5 VA |
5483 | GREYBUS AUDIO PROTOCOLS DRIVERS |
5484 | M: Vaibhav Agarwal <vaibhav.sr@gmail.com> | |
88638cf1 | 5485 | M: Mark Greer <mgreer@animalcreek.com> |
926706c5 | 5486 | S: Maintained |
544a6944 MG |
5487 | F: drivers/staging/greybus/audio_apbridgea.c |
5488 | F: drivers/staging/greybus/audio_apbridgea.h | |
926706c5 | 5489 | F: drivers/staging/greybus/audio_codec.c |
544a6944 MG |
5490 | F: drivers/staging/greybus/audio_codec.h |
5491 | F: drivers/staging/greybus/audio_gb.c | |
5492 | F: drivers/staging/greybus/audio_manager.c | |
5493 | F: drivers/staging/greybus/audio_manager.h | |
5494 | F: drivers/staging/greybus/audio_manager_module.c | |
5495 | F: drivers/staging/greybus/audio_manager_private.h | |
5496 | F: drivers/staging/greybus/audio_manager_sysfs.c | |
926706c5 VA |
5497 | F: drivers/staging/greybus/audio_module.c |
5498 | F: drivers/staging/greybus/audio_topology.c | |
5499 | ||
2bbadafb RMS |
5500 | GREYBUS PROTOCOLS DRIVERS |
5501 | M: Rui Miguel Silva <rmfrfs@gmail.com> | |
5502 | S: Maintained | |
5503 | F: drivers/staging/greybus/sdio.c | |
5504 | F: drivers/staging/greybus/light.c | |
5505 | F: drivers/staging/greybus/gpio.c | |
5506 | F: drivers/staging/greybus/power_supply.c | |
5507 | F: drivers/staging/greybus/spi.c | |
5508 | F: drivers/staging/greybus/spilib.c | |
5509 | ||
7d700518 BD |
5510 | GREYBUS PROTOCOLS DRIVERS |
5511 | M: Bryan O'Donoghue <pure.logic@nexus-software.ie> | |
5512 | S: Maintained | |
5513 | F: drivers/staging/greybus/loopback.c | |
5514 | F: drivers/staging/greybus/timesync.c | |
5515 | F: drivers/staging/greybus/timesync_platform.c | |
5516 | ||
5bd16350 VK |
5517 | GREYBUS PROTOCOLS DRIVERS |
5518 | M: Viresh Kumar <vireshk@kernel.org> | |
5519 | S: Maintained | |
5520 | F: drivers/staging/greybus/authentication.c | |
5521 | F: drivers/staging/greybus/bootrom.c | |
5522 | F: drivers/staging/greybus/firmware.h | |
5523 | F: drivers/staging/greybus/fw-core.c | |
5524 | F: drivers/staging/greybus/fw-download.c | |
5525 | F: drivers/staging/greybus/fw-managament.c | |
5526 | F: drivers/staging/greybus/greybus_authentication.h | |
5527 | F: drivers/staging/greybus/greybus_firmware.h | |
5528 | F: drivers/staging/greybus/hid.c | |
5529 | F: drivers/staging/greybus/i2c.c | |
5530 | F: drivers/staging/greybus/spi.c | |
5531 | F: drivers/staging/greybus/spilib.c | |
5532 | F: drivers/staging/greybus/spilib.h | |
5533 | ||
8d904fe5 DL |
5534 | GREYBUS PROTOCOLS DRIVERS |
5535 | M: David Lin <dtwlin@gmail.com> | |
5536 | S: Maintained | |
5537 | F: drivers/staging/greybus/uart.c | |
5538 | F: drivers/staging/greybus/log.c | |
5539 | ||
92b8bd96 VH |
5540 | GREYBUS PLATFORM DRIVERS |
5541 | M: Vaibhav Hiremath <hvaibhav.linux@gmail.com> | |
5542 | S: Maintained | |
5543 | F: drivers/staging/greybus/arche-platform.c | |
5544 | F: drivers/staging/greybus/arche-apb-ctrl.c | |
5545 | F: drivers/staging/greybus/arche_platform.h | |
5546 | ||
7aae6e2d CAC |
5547 | GS1662 VIDEO SERIALIZER |
5548 | M: Charles-Antoine Couret <charles-antoine.couret@nexvision.fr> | |
5549 | L: linux-media@vger.kernel.org | |
5550 | T: git git://linuxtv.org/media_tree.git | |
5551 | S: Maintained | |
5552 | F: drivers/media/spi/gs1662.c | |
5553 | ||
e8deeae2 | 5554 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 5555 | M: Frank Zago <frank@zago.net> |
661263b5 | 5556 | L: linux-media@vger.kernel.org |
275ffde4 | 5557 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 5558 | S: Maintained |
0c0d06ca | 5559 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 5560 | |
4b3fa3c4 OL |
5561 | GSPCA GL860 SUBDRIVER |
5562 | M: Olivier Lorin <o.lorin@laposte.net> | |
5563 | L: linux-media@vger.kernel.org | |
275ffde4 | 5564 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 5565 | S: Maintained |
0c0d06ca | 5566 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 5567 | |
e8deeae2 | 5568 | GSPCA M5602 SUBDRIVER |
8b58be88 | 5569 | M: Erik Andren <erik.andren@gmail.com> |
661263b5 | 5570 | L: linux-media@vger.kernel.org |
275ffde4 | 5571 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 5572 | S: Maintained |
0c0d06ca | 5573 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
5574 | |
5575 | GSPCA PAC207 SONIXB SUBDRIVER | |
c0936df4 | 5576 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 5577 | L: linux-media@vger.kernel.org |
275ffde4 | 5578 | T: git git://linuxtv.org/media_tree.git |
c0936df4 | 5579 | S: Odd Fixes |
0c0d06ca | 5580 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 5581 | |
261982f1 | 5582 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 5583 | M: Brian Johnson <brijohn@gmail.com> |
261982f1 | 5584 | L: linux-media@vger.kernel.org |
275ffde4 | 5585 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 5586 | S: Maintained |
0c0d06ca | 5587 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 5588 | |
e8deeae2 | 5589 | GSPCA T613 SUBDRIVER |
8b58be88 | 5590 | M: Leandro Costantino <lcostantino@gmail.com> |
661263b5 | 5591 | L: linux-media@vger.kernel.org |
275ffde4 | 5592 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 5593 | S: Maintained |
0c0d06ca | 5594 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
5595 | |
5596 | GSPCA USB WEBCAM DRIVER | |
c0936df4 | 5597 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 5598 | L: linux-media@vger.kernel.org |
275ffde4 | 5599 | T: git git://linuxtv.org/media_tree.git |
c0936df4 | 5600 | S: Odd Fixes |
0c0d06ca | 5601 | F: drivers/media/usb/gspca/ |
e8deeae2 | 5602 | |
584ec979 | 5603 | GUID PARTITION TABLE (GPT) |
4f973c63 | 5604 | M: Davidlohr Bueso <dave@stgolabs.net> |
584ec979 DB |
5605 | L: linux-efi@vger.kernel.org |
5606 | S: Maintained | |
5607 | F: block/partitions/efi.* | |
5608 | ||
aa3c598b | 5609 | STK1160 USB VIDEO CAPTURE DRIVER |
3259aa57 | 5610 | M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> |
aa3c598b | 5611 | L: linux-media@vger.kernel.org |
275ffde4 | 5612 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
5613 | S: Maintained |
5614 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 5615 | |
4e456b86 YS |
5616 | H8/300 ARCHITECTURE |
5617 | M: Yoshinori Sato <ysato@users.sourceforge.jp> | |
b992c768 | 5618 | L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers) |
4e456b86 YS |
5619 | W: http://uclinux-h8.sourceforge.jp |
5620 | T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git | |
5621 | S: Maintained | |
5622 | F: arch/h8300/ | |
5623 | F: drivers/clocksource/h8300_*.c | |
5624 | F: drivers/clk/h8300/ | |
5625 | F: drivers/irqchip/irq-renesas-h8*.c | |
5626 | ||
71a6d0af HW |
5627 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
5628 | M: Frank Seidel <frank@f-seidel.de> | |
5629 | L: platform-driver-x86@vger.kernel.org | |
5630 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
5631 | S: Maintained | |
5632 | F: drivers/platform/x86/hdaps.c | |
5633 | ||
48fc9e26 HV |
5634 | HDPVR USB VIDEO ENCODER DRIVER |
5635 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5636 | L: linux-media@vger.kernel.org | |
5637 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 5638 | W: https://linuxtv.org |
48fc9e26 | 5639 | S: Odd Fixes |
14430813 | 5640 | F: drivers/media/usb/hdpvr/ |
48fc9e26 | 5641 | |
71a6d0af | 5642 | HWPOISON MEMORY FAILURE HANDLING |
f9625c48 | 5643 | M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> |
71a6d0af | 5644 | L: linux-mm@kvack.org |
71a6d0af HW |
5645 | S: Maintained |
5646 | F: mm/memory-failure.c | |
5647 | F: mm/hwpoison-inject.c | |
5648 | ||
5649 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
5650 | L: linuxppc-dev@lists.ozlabs.org | |
5651 | S: Odd Fixes | |
5652 | F: drivers/tty/hvc/ | |
5653 | ||
e5ab1477 AP |
5654 | HACKRF MEDIA DRIVER |
5655 | M: Antti Palosaari <crope@iki.fi> | |
5656 | L: linux-media@vger.kernel.org | |
a825eaec | 5657 | W: https://linuxtv.org |
e5ab1477 AP |
5658 | W: http://palosaari.fi/linux/ |
5659 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5660 | T: git git://linuxtv.org/anttip/media_tree.git | |
5661 | S: Maintained | |
5662 | F: drivers/media/usb/hackrf/ | |
5663 | ||
5b543965 | 5664 | HARDWARE MONITORING |
d8130624 | 5665 | M: Jean Delvare <jdelvare@suse.com> |
ca462085 | 5666 | M: Guenter Roeck <linux@roeck-us.net> |
968ce1b1 GR |
5667 | L: linux-hwmon@vger.kernel.org |
5668 | W: http://hwmon.wiki.kernel.org/ | |
a94ef4ed | 5669 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/ |
885374e3 | 5670 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 5671 | S: Maintained |
047f4ec2 | 5672 | F: Documentation/hwmon/ |
679655da | 5673 | F: drivers/hwmon/ |
047f4ec2 | 5674 | F: include/linux/hwmon*.h |
5b543965 | 5675 | |
844dd05f | 5676 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
5677 | M: Matt Mackall <mpm@selenic.com> |
5678 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
3eda7167 | 5679 | L: linux-crypto@vger.kernel.org |
c0d0787b | 5680 | S: Odd fixes |
f6c60b15 | 5681 | F: Documentation/devicetree/bindings/rng/ |
679655da JP |
5682 | F: Documentation/hw_random.txt |
5683 | F: drivers/char/hw_random/ | |
5684 | F: include/linux/hw_random.h | |
844dd05f | 5685 | |
8b37fcfc OBC |
5686 | HARDWARE SPINLOCK CORE |
5687 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
69ae9895 | 5688 | M: Bjorn Andersson <bjorn.andersson@linaro.org> |
d7586849 | 5689 | L: linux-remoteproc@vger.kernel.org |
8b37fcfc | 5690 | S: Maintained |
9f273c24 | 5691 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git |
2dbd8585 | 5692 | F: Documentation/devicetree/bindings/hwlock/ |
8b37fcfc | 5693 | F: Documentation/hwspinlock.txt |
2dbd8585 | 5694 | F: drivers/hwspinlock/ |
8b37fcfc OBC |
5695 | F: include/linux/hwspinlock.h |
5696 | ||
1da177e4 | 5697 | HARMONY SOUND DRIVER |
ac6aecbf | 5698 | L: linux-parisc@vger.kernel.org |
1da177e4 | 5699 | S: Maintained |
679655da | 5700 | F: sound/parisc/harmony.* |
1da177e4 | 5701 | |
91952bc0 AP |
5702 | HD29L2 MEDIA DRIVER |
5703 | M: Antti Palosaari <crope@iki.fi> | |
5704 | L: linux-media@vger.kernel.org | |
a825eaec | 5705 | W: https://linuxtv.org |
91952bc0 AP |
5706 | W: http://palosaari.fi/linux/ |
5707 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5708 | T: git git://linuxtv.org/anttip/media_tree.git | |
5709 | S: Maintained | |
5710 | F: drivers/media/dvb-frontends/hd29l2* | |
5711 | ||
214de83e BB |
5712 | HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER |
5713 | M: Brian Boylston <brian.boylston@hpe.com> | |
5714 | S: Supported | |
5715 | F: Documentation/watchdog/hpwdt.txt | |
5716 | F: drivers/watchdog/hpwdt.c | |
5717 | ||
9257aa49 | 5718 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
a0a268ad | 5719 | M: Don Brace <don.brace@microsemi.com> |
a0a268ad | 5720 | L: esc.storagedev@microsemi.com |
693373db | 5721 | L: linux-scsi@vger.kernel.org |
9257aa49 SC |
5722 | S: Supported |
5723 | F: Documentation/scsi/hpsa.txt | |
5724 | F: drivers/scsi/hpsa*.[ch] | |
5725 | F: include/linux/cciss*.h | |
c117ab84 | 5726 | F: include/uapi/linux/cciss*.h |
9257aa49 | 5727 | |
e2d1d6c0 | 5728 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
516fdcea | 5729 | M: Don Brace <don.brace@microsemi.com> |
516fdcea | 5730 | L: esc.storagedev@microsemi.com |
693373db | 5731 | L: linux-scsi@vger.kernel.org |
e2d1d6c0 | 5732 | S: Supported |
679655da JP |
5733 | F: Documentation/blockdev/cciss.txt |
5734 | F: drivers/block/cciss* | |
5735 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 5736 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 5737 | |
f48ad614 DD |
5738 | HFI1 DRIVER |
5739 | M: Mike Marciniszyn <mike.marciniszyn@intel.com> | |
5740 | M: Dennis Dalessandro <dennis.dalessandro@intel.com> | |
5741 | L: linux-rdma@vger.kernel.org | |
5742 | S: Supported | |
5743 | F: drivers/infiniband/hw/hfi1 | |
5744 | ||
1da177e4 | 5745 | HFS FILESYSTEM |
6cf515e1 GU |
5746 | L: linux-fsdevel@vger.kernel.org |
5747 | S: Orphan | |
679655da JP |
5748 | F: Documentation/filesystems/hfs.txt |
5749 | F: fs/hfs/ | |
1da177e4 | 5750 | |
ef575f47 GU |
5751 | HFSPLUS FILESYSTEM |
5752 | L: linux-fsdevel@vger.kernel.org | |
5753 | S: Orphan | |
5754 | F: Documentation/filesystems/hfsplus.txt | |
5755 | F: fs/hfsplus/ | |
5756 | ||
1da177e4 | 5757 | HGA FRAMEBUFFER DRIVER |
8b58be88 | 5758 | M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> |
1da177e4 LT |
5759 | L: linux-nvidia@lists.surfsouth.com |
5760 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
5761 | S: Maintained | |
8a61f013 | 5762 | F: drivers/video/fbdev/hgafb.c |
1da177e4 | 5763 | |
4480f15b | 5764 | HIBERNATION (aka Software Suspend, aka swsusp) |
49db1903 | 5765 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 5766 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 5767 | L: linux-pm@vger.kernel.org |
68656443 | 5768 | B: https://bugzilla.kernel.org |
e2d1d6c0 | 5769 | S: Supported |
679655da JP |
5770 | F: arch/x86/power/ |
5771 | F: drivers/base/power/ | |
5772 | F: kernel/power/ | |
5773 | F: include/linux/suspend.h | |
5774 | F: include/linux/freezer.h | |
5775 | F: include/linux/pm.h | |
679655da | 5776 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 5777 | |
4ef4caad | 5778 | HID CORE LAYER |
e5f6450c | 5779 | M: Jiri Kosina <jikos@kernel.org> |
406df153 | 5780 | R: Benjamin Tissoires <benjamin.tissoires@redhat.com> |
eb76c5c0 | 5781 | L: linux-input@vger.kernel.org |
54e5881d | 5782 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 5783 | S: Maintained |
679655da JP |
5784 | F: drivers/hid/ |
5785 | F: include/linux/hid* | |
c117ab84 | 5786 | F: include/uapi/linux/hid* |
4ef4caad | 5787 | |
30ee72f0 | 5788 | HID SENSOR HUB DRIVERS |
e5f6450c | 5789 | M: Jiri Kosina <jikos@kernel.org> |
30ee72f0 SP |
5790 | M: Jonathan Cameron <jic23@kernel.org> |
5791 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> | |
5792 | L: linux-input@vger.kernel.org | |
5793 | L: linux-iio@vger.kernel.org | |
5794 | S: Maintained | |
5795 | F: Documentation/hid/hid-sensor* | |
5796 | F: drivers/hid/hid-sensor-* | |
5797 | F: drivers/iio/*/hid-* | |
5798 | F: include/linux/hid-sensor-* | |
5799 | ||
38bed542 | 5800 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 5801 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 5802 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 5803 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 5804 | S: Maintained |
679655da | 5805 | F: Documentation/timers/ |
5cee9645 | 5806 | F: kernel/time/hrtimer.c |
88606e80 TG |
5807 | F: kernel/time/clockevents.c |
5808 | F: kernel/time/tick*.* | |
5809 | F: kernel/time/timer_*.c | |
05ed8490 | 5810 | F: include/linux/clockchips.h |
679655da | 5811 | F: include/linux/hrtimer.h |
38bed542 | 5812 | |
1da177e4 | 5813 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 5814 | L: linux-hams@vger.kernel.org |
8b64f2a0 | 5815 | S: Orphan |
679655da JP |
5816 | F: drivers/net/hamradio/dmascc.c |
5817 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 5818 | |
ede1e6f8 | 5819 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 5820 | M: HighPoint Linux Team <linux@highpoint-tech.com> |
ede1e6f8 HLT |
5821 | W: http://www.highpoint-tech.com |
5822 | S: Supported | |
679655da JP |
5823 | F: Documentation/scsi/hptiop.txt |
5824 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 5825 | |
1da177e4 | 5826 | HIPPI |
8b58be88 | 5827 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
5828 | L: linux-hippi@sunsite.dk |
5829 | S: Maintained | |
679655da | 5830 | F: include/linux/hippidevice.h |
c117ab84 | 5831 | F: include/uapi/linux/if_hippi.h |
679655da | 5832 | F: net/802/hippi.c |
ff5a3b50 | 5833 | F: drivers/net/hippi/ |
1da177e4 | 5834 | |
b30d74e4 DH |
5835 | HISILICON NETWORK SUBSYSTEM DRIVER |
5836 | M: Yisen Zhuang <yisen.zhuang@huawei.com> | |
5837 | M: Salil Mehta <salil.mehta@huawei.com> | |
5838 | L: netdev@vger.kernel.org | |
5839 | W: http://www.hisilicon.com | |
5840 | S: Maintained | |
5841 | F: drivers/net/ethernet/hisilicon/ | |
5842 | F: Documentation/devicetree/bindings/net/hisilicon*.txt | |
5843 | ||
66a9bae6 | 5844 | HISILICON ROCE DRIVER |
5845 | M: Lijun Ou <oulijun@huawei.com> | |
5846 | M: Wei Hu(Xavier) <xavier.huwei@huawei.com> | |
5847 | L: linux-rdma@vger.kernel.org | |
5848 | S: Maintained | |
5849 | F: drivers/infiniband/hw/hns/ | |
5850 | F: Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt | |
5851 | ||
16c6c252 JG |
5852 | HISILICON SAS Controller |
5853 | M: John Garry <john.garry@huawei.com> | |
5854 | W: http://www.hisilicon.com | |
5855 | S: Supported | |
5856 | F: drivers/scsi/hisi_sas/ | |
5857 | F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt | |
5858 | ||
ff1d2767 | 5859 | HOST AP DRIVER |
8b58be88 | 5860 | M: Jouni Malinen <j@w1.fi> |
724c6b35 | 5861 | L: linux-wireless@vger.kernel.org |
ffd74aca JM |
5862 | W: http://w1.fi/hostap-driver.html |
5863 | S: Obsolete | |
eb4f98d5 | 5864 | F: drivers/net/wireless/intersil/hostap/ |
ff1d2767 | 5865 | |
dd8cd779 | 5866 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 5867 | L: platform-driver-x86@vger.kernel.org |
95c70215 | 5868 | S: Orphan |
679655da | 5869 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 5870 | |
e2d1d6c0 | 5871 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 5872 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 5873 | S: Maintained |
7e25d724 | 5874 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 5875 | |
7d2c86b5 | 5876 | HPET: High Precision Event Timers driver |
8b58be88 | 5877 | M: Clemens Ladisch <clemens@ladisch.de> |
b9b0332f | 5878 | S: Maintained |
679655da JP |
5879 | F: Documentation/timers/hpet.txt |
5880 | F: drivers/char/hpet.c | |
5881 | F: include/linux/hpet.h | |
c117ab84 | 5882 | F: include/uapi/linux/hpet.h |
b9b0332f | 5883 | |
e07b5d79 | 5884 | HPET: x86 |
9e06f631 | 5885 | S: Orphan |
679655da JP |
5886 | F: arch/x86/kernel/hpet.c |
5887 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 5888 | |
1da177e4 | 5889 | HPFS FILESYSTEM |
8b58be88 | 5890 | M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> |
1da177e4 LT |
5891 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
5892 | S: Maintained | |
679655da | 5893 | F: fs/hpfs/ |
1da177e4 | 5894 | |
3441cded | 5895 | HSI SUBSYSTEM |
56459ea9 SR |
5896 | M: Sebastian Reichel <sre@kernel.org> |
5897 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git | |
3441cded SR |
5898 | S: Maintained |
5899 | F: Documentation/ABI/testing/sysfs-bus-hsi | |
70fc1f54 | 5900 | F: Documentation/device-drivers/serial-interfaces.rst |
3441cded SR |
5901 | F: drivers/hsi/ |
5902 | F: include/linux/hsi/ | |
5903 | F: include/uapi/linux/hsi/ | |
5904 | ||
7d2c86b5 | 5905 | HSO 3G MODEM DRIVER |
8b58be88 | 5906 | M: Jan Dumon <j.dumon@option.com> |
11cd29b0 DJB |
5907 | W: http://www.pharscape.org |
5908 | S: Maintained | |
679655da | 5909 | F: drivers/net/usb/hso.c |
11cd29b0 | 5910 | |
19990e29 AB |
5911 | HSR NETWORK PROTOCOL |
5912 | M: Arvid Brodin <arvid.brodin@alten.se> | |
5913 | L: netdev@vger.kernel.org | |
5914 | S: Maintained | |
5915 | F: net/hsr/ | |
5916 | ||
5a18c343 | 5917 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 5918 | M: Pau Oliva Fora <pof@eslack.org> |
5a18c343 POF |
5919 | L: linux-input@vger.kernel.org |
5920 | S: Maintained | |
679655da | 5921 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 5922 | |
1da177e4 | 5923 | HUGETLB FILESYSTEM |
6d49e352 | 5924 | M: Nadia Yvette Chambers <nyc@holomorphy.com> |
1da177e4 | 5925 | S: Maintained |
679655da | 5926 | F: fs/hugetlbfs/ |
1da177e4 | 5927 | |
fe713d60 JCT |
5928 | HVA ST MEDIA DRIVER |
5929 | M: Jean-Christophe Trotin <jean-christophe.trotin@st.com> | |
5930 | L: linux-media@vger.kernel.org | |
5931 | T: git git://linuxtv.org/media_tree.git | |
5932 | W: https://linuxtv.org | |
5933 | S: Supported | |
5934 | F: drivers/media/platform/sti/hva | |
5935 | ||
05183189 | 5936 | Hyper-V CORE AND DRIVERS |
9c3646d1 | 5937 | M: "K. Y. Srinivasan" <kys@microsoft.com> |
05183189 S |
5938 | M: Haiyang Zhang <haiyangz@microsoft.com> |
5939 | L: devel@linuxdriverproject.org | |
5940 | S: Maintained | |
a4162747 HZ |
5941 | F: arch/x86/include/asm/mshyperv.h |
5942 | F: arch/x86/include/uapi/asm/hyperv.h | |
5943 | F: arch/x86/kernel/cpu/mshyperv.c | |
05183189 | 5944 | F: drivers/hid/hid-hyperv.c |
a4162747 | 5945 | F: drivers/hv/ |
f92ca80b | 5946 | F: drivers/input/serio/hyperv-keyboard.c |
4daace0d | 5947 | F: drivers/pci/host/pci-hyperv.c |
05183189 | 5948 | F: drivers/net/hyperv/ |
a4162747 | 5949 | F: drivers/scsi/storvsc_drv.c |
95096f2f | 5950 | F: drivers/uio/uio_hv_generic.c |
8a61f013 | 5951 | F: drivers/video/fbdev/hyperv_fb.c |
a4162747 HZ |
5952 | F: include/linux/hyperv.h |
5953 | F: tools/hv/ | |
54bf725e | 5954 | F: Documentation/ABI/stable/sysfs-bus-vmbus |
05183189 | 5955 | |
7724fd04 PR |
5956 | I2C MUXES |
5957 | M: Peter Rosin <peda@axentia.se> | |
5958 | L: linux-i2c@vger.kernel.org | |
5959 | S: Maintained | |
2254d24a | 5960 | F: Documentation/i2c/i2c-topology |
7724fd04 PR |
5961 | F: Documentation/i2c/muxes/ |
5962 | F: Documentation/devicetree/bindings/i2c/i2c-mux* | |
e8813c15 | 5963 | F: Documentation/devicetree/bindings/i2c/i2c-arb* |
0ac8eb64 | 5964 | F: Documentation/devicetree/bindings/i2c/i2c-gate* |
7724fd04 PR |
5965 | F: drivers/i2c/i2c-mux.c |
5966 | F: drivers/i2c/muxes/ | |
5967 | F: include/linux/i2c-mux.h | |
5968 | ||
d85c8a6a | 5969 | I2C OVER PARALLEL PORT |
d8130624 | 5970 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
5971 | L: linux-i2c@vger.kernel.org |
5972 | S: Maintained | |
5973 | F: Documentation/i2c/busses/i2c-parport | |
5974 | F: Documentation/i2c/busses/i2c-parport-light | |
5975 | F: drivers/i2c/busses/i2c-parport.c | |
5976 | F: drivers/i2c/busses/i2c-parport-light.c | |
5977 | ||
5978 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
d8130624 | 5979 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
5980 | L: linux-i2c@vger.kernel.org |
5981 | S: Maintained | |
5982 | F: Documentation/i2c/busses/i2c-ali1535 | |
5983 | F: Documentation/i2c/busses/i2c-ali1563 | |
5984 | F: Documentation/i2c/busses/i2c-ali15x3 | |
5985 | F: Documentation/i2c/busses/i2c-amd756 | |
5986 | F: Documentation/i2c/busses/i2c-amd8111 | |
5987 | F: Documentation/i2c/busses/i2c-i801 | |
5988 | F: Documentation/i2c/busses/i2c-nforce2 | |
5989 | F: Documentation/i2c/busses/i2c-piix4 | |
5990 | F: Documentation/i2c/busses/i2c-sis5595 | |
5991 | F: Documentation/i2c/busses/i2c-sis630 | |
5992 | F: Documentation/i2c/busses/i2c-sis96x | |
5993 | F: Documentation/i2c/busses/i2c-via | |
5994 | F: Documentation/i2c/busses/i2c-viapro | |
5995 | F: drivers/i2c/busses/i2c-ali1535.c | |
5996 | F: drivers/i2c/busses/i2c-ali1563.c | |
5997 | F: drivers/i2c/busses/i2c-ali15x3.c | |
5998 | F: drivers/i2c/busses/i2c-amd756.c | |
5999 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
6000 | F: drivers/i2c/busses/i2c-amd8111.c | |
6001 | F: drivers/i2c/busses/i2c-i801.c | |
6002 | F: drivers/i2c/busses/i2c-isch.c | |
6003 | F: drivers/i2c/busses/i2c-nforce2.c | |
6004 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
6005 | F: drivers/i2c/busses/i2c-piix4.c | |
6006 | F: drivers/i2c/busses/i2c-sis5595.c | |
6007 | F: drivers/i2c/busses/i2c-sis630.c | |
6008 | F: drivers/i2c/busses/i2c-sis96x.c | |
6009 | F: drivers/i2c/busses/i2c-via.c | |
6010 | F: drivers/i2c/busses/i2c-viapro.c | |
6011 | ||
cb7f07a4 NH |
6012 | I2C/SMBUS ISMT DRIVER |
6013 | M: Seth Heasley <seth.heasley@intel.com> | |
6014 | M: Neil Horman <nhorman@tuxdriver.com> | |
6015 | L: linux-i2c@vger.kernel.org | |
6016 | F: drivers/i2c/busses/i2c-ismt.c | |
6017 | F: Documentation/i2c/busses/i2c-ismt | |
6018 | ||
6ea884db | 6019 | I2C/SMBUS STUB DRIVER |
d8130624 | 6020 | M: Jean Delvare <jdelvare@suse.com> |
846557d3 | 6021 | L: linux-i2c@vger.kernel.org |
6ea884db | 6022 | S: Maintained |
8547a5bc | 6023 | F: drivers/i2c/i2c-stub.c |
6ea884db | 6024 | |
5b543965 | 6025 | I2C SUBSYSTEM |
14d77c4d | 6026 | M: Wolfram Sang <wsa@the-dreams.de> |
846557d3 | 6027 | L: linux-i2c@vger.kernel.org |
9d4ea27a WS |
6028 | W: https://i2c.wiki.kernel.org/ |
6029 | Q: https://patchwork.ozlabs.org/project/linux-i2c/list/ | |
14d77c4d | 6030 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
1da177e4 | 6031 | S: Maintained |
40ed1b4c | 6032 | F: Documentation/devicetree/bindings/i2c/ |
679655da JP |
6033 | F: Documentation/i2c/ |
6034 | F: drivers/i2c/ | |
630bc46e | 6035 | F: drivers/i2c/*/ |
679655da | 6036 | F: include/linux/i2c.h |
03b70d62 | 6037 | F: include/linux/i2c-*.h |
c117ab84 CEB |
6038 | F: include/uapi/linux/i2c.h |
6039 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 6040 | |
4560d677 WS |
6041 | I2C ACPI SUPPORT |
6042 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
6043 | L: linux-i2c@vger.kernel.org | |
6044 | L: linux-acpi@vger.kernel.org | |
6045 | S: Maintained | |
4560d677 | 6046 | |
d85c8a6a | 6047 | I2C-TAOS-EVM DRIVER |
d8130624 | 6048 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
6049 | L: linux-i2c@vger.kernel.org |
6050 | S: Maintained | |
6051 | F: Documentation/i2c/busses/i2c-taos-evm | |
6052 | F: drivers/i2c/busses/i2c-taos-evm.c | |
6053 | ||
e8c76eed | 6054 | I2C-TINY-USB DRIVER |
8b58be88 | 6055 | M: Till Harbaum <till@harbaum.org> |
846557d3 | 6056 | L: linux-i2c@vger.kernel.org |
932d1872 | 6057 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 6058 | S: Maintained |
679655da | 6059 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 6060 | |
1da177e4 | 6061 | i386 BOOT CODE |
8b58be88 | 6062 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 6063 | S: Maintained |
679655da | 6064 | F: arch/x86/boot/ |
1da177e4 LT |
6065 | |
6066 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 6067 | M: "H. Peter Anvin" <hpa@zytor.com> |
54e5881d | 6068 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
6069 | S: Maintained |
6070 | ||
1da177e4 | 6071 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
6072 | M: Tony Luck <tony.luck@intel.com> |
6073 | M: Fenghua Yu <fenghua.yu@intel.com> | |
1da177e4 | 6074 | L: linux-ia64@vger.kernel.org |
6b1c70b1 | 6075 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 6076 | S: Maintained |
679655da | 6077 | F: arch/ia64/ |
1da177e4 | 6078 | |
4cd38750 LDSB |
6079 | IBM Power VMX Cryptographic instructions |
6080 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> | |
5cd01fe1 | 6081 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> |
4cd38750 LDSB |
6082 | L: linux-crypto@vger.kernel.org |
6083 | S: Supported | |
6084 | F: drivers/crypto/vmx/Makefile | |
6085 | F: drivers/crypto/vmx/Kconfig | |
6086 | F: drivers/crypto/vmx/vmx.c | |
6087 | F: drivers/crypto/vmx/aes* | |
6088 | F: drivers/crypto/vmx/ghash* | |
6089 | F: drivers/crypto/vmx/ppc-xlate.pl | |
6090 | ||
956c203c | 6091 | IBM Power in-Nest Crypto Acceleration |
4cd38750 | 6092 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> |
5cd01fe1 | 6093 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> |
956c203c KY |
6094 | L: linux-crypto@vger.kernel.org |
6095 | S: Supported | |
28bceeaa DS |
6096 | F: drivers/crypto/nx/Makefile |
6097 | F: drivers/crypto/nx/Kconfig | |
6098 | F: drivers/crypto/nx/nx-aes* | |
6099 | F: drivers/crypto/nx/nx-sha* | |
6100 | F: drivers/crypto/nx/nx.* | |
6101 | F: drivers/crypto/nx/nx_csbcpb.h | |
6102 | F: drivers/crypto/nx/nx_debugfs.h | |
956c203c | 6103 | |
0e16aafb | 6104 | IBM Power 842 compression accelerator |
41656aa7 | 6105 | M: Dan Streetman <ddstreet@ieee.org> |
0e16aafb | 6106 | S: Supported |
28bceeaa DS |
6107 | F: drivers/crypto/nx/Makefile |
6108 | F: drivers/crypto/nx/Kconfig | |
7011a122 | 6109 | F: drivers/crypto/nx/nx-842* |
2da572c9 | 6110 | F: include/linux/sw842.h |
2062c5b6 | 6111 | F: crypto/842.c |
2da572c9 | 6112 | F: lib/842/ |
0e16aafb | 6113 | |
1da177e4 | 6114 | IBM Power Linux RAID adapter |
8b58be88 | 6115 | M: Brian King <brking@us.ibm.com> |
1da177e4 | 6116 | S: Supported |
679655da | 6117 | F: drivers/scsi/ipr.* |
1da177e4 | 6118 | |
9d348af4 | 6119 | IBM Power Virtual Ethernet Device Driver |
eddd63a6 | 6120 | M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> |
9d348af4 SL |
6121 | L: netdev@vger.kernel.org |
6122 | S: Supported | |
9aa32835 | 6123 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 6124 | |
032c5e82 TF |
6125 | IBM Power SRIOV Virtual NIC Device Driver |
6126 | M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> | |
6127 | M: John Allen <jallen@linux.vnet.ibm.com> | |
6128 | L: netdev@vger.kernel.org | |
6129 | S: Supported | |
6130 | F: drivers/net/ethernet/ibm/ibmvnic.* | |
6131 | ||
e6babec6 | 6132 | IBM Power Virtual SCSI Device Drivers |
bcbde52b | 6133 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
4b7652cc RJ |
6134 | L: linux-scsi@vger.kernel.org |
6135 | S: Supported | |
e6babec6 | 6136 | F: drivers/scsi/ibmvscsi/ibmvscsi* |
88a678bb BL |
6137 | F: include/scsi/viosrp.h |
6138 | ||
6139 | IBM Power Virtual SCSI Device Target Driver | |
6140 | M: Bryant G. Ly <bryantly@linux.vnet.ibm.com> | |
6141 | M: Michael Cyr <mikecyr@linux.vnet.ibm.com> | |
6142 | L: linux-scsi@vger.kernel.org | |
6143 | L: target-devel@vger.kernel.org | |
6144 | S: Supported | |
6145 | F: drivers/scsi/ibmvscsi_tgt/ | |
e6babec6 NF |
6146 | |
6147 | IBM Power Virtual FC Device Drivers | |
44b4dad9 | 6148 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
e6babec6 NF |
6149 | L: linux-scsi@vger.kernel.org |
6150 | S: Supported | |
6151 | F: drivers/scsi/ibmvscsi/ibmvfc* | |
4b7652cc | 6152 | |
1da177e4 | 6153 | IBM ServeRAID RAID DRIVER |
f9213e78 | 6154 | S: Orphan |
679655da | 6155 | F: drivers/scsi/ips.* |
1da177e4 | 6156 | |
6ed9f9c4 PT |
6157 | ICH LPC AND GPIO DRIVER |
6158 | M: Peter Tyser <ptyser@xes-inc.com> | |
6159 | S: Maintained | |
6160 | F: drivers/mfd/lpc_ich.c | |
6161 | F: drivers/gpio/gpio-ich.c | |
6162 | ||
1e7106fc | 6163 | IDE SUBSYSTEM |
8b58be88 | 6164 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 6165 | L: linux-ide@vger.kernel.org |
8a6e2535 | 6166 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 6167 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 6168 | S: Maintained |
679655da JP |
6169 | F: Documentation/ide/ |
6170 | F: drivers/ide/ | |
6171 | F: include/linux/ide.h | |
1da177e4 | 6172 | |
6cb8c13d IP |
6173 | IDEAPAD LAPTOP EXTRAS DRIVER |
6174 | M: Ike Panhc <ike.pan@canonical.com> | |
6175 | L: platform-driver-x86@vger.kernel.org | |
6176 | W: http://launchpad.net/ideapad-laptop | |
6177 | S: Maintained | |
6178 | F: drivers/platform/x86/ideapad-laptop.c | |
6179 | ||
1ea4c161 AM |
6180 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
6181 | M: Andrey Moiseev <o2g.org.ru@gmail.com> | |
6182 | L: linux-input@vger.kernel.org | |
6183 | W: https://github.com/o2genum/ideapad-slidebar | |
6184 | S: Maintained | |
6185 | F: drivers/input/misc/ideapad_slidebar.c | |
6186 | ||
0f861e8c | 6187 | IDE/ATAPI DRIVERS |
487ba8e8 | 6188 | M: Borislav Petkov <bp@alien8.de> |
9c5b0ce4 | 6189 | L: linux-ide@vger.kernel.org |
c404c199 | 6190 | S: Maintained |
679655da JP |
6191 | F: Documentation/cdrom/ide-cd |
6192 | F: drivers/ide/ide-cd* | |
1da177e4 | 6193 | |
02cf2286 | 6194 | IEEE 802.15.4 SUBSYSTEM |
aff3eaa0 | 6195 | M: Alexander Aring <aar@pengutronix.de> |
5cc92049 | 6196 | M: Stefan Schmidt <stefan@osg.samsung.com> |
ebef9c12 | 6197 | L: linux-wpan@vger.kernel.org |
aff3eaa0 AA |
6198 | W: http://wpan.cakelab.org/ |
6199 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git | |
6200 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
02cf2286 SL |
6201 | S: Maintained |
6202 | F: net/ieee802154/ | |
68653359 | 6203 | F: net/mac802154/ |
251741b1 | 6204 | F: drivers/net/ieee802154/ |
580947d3 AA |
6205 | F: include/linux/nl802154.h |
6206 | F: include/linux/ieee802154.h | |
6207 | F: include/net/nl802154.h | |
6208 | F: include/net/mac802154.h | |
6209 | F: include/net/af_ieee802154.h | |
6210 | F: include/net/cfg802154.h | |
6211 | F: include/net/ieee802154_netdev.h | |
ebef9c12 | 6212 | F: Documentation/networking/ieee802154.txt |
02cf2286 | 6213 | |
b1c97193 SY |
6214 | IGORPLUG-USB IR RECEIVER |
6215 | M: Sean Young <sean@mess.org> | |
6216 | L: linux-media@vger.kernel.org | |
6217 | S: Maintained | |
6218 | F: drivers/media/rc/igorplugusb.c | |
6219 | ||
40ad4a30 SY |
6220 | IGUANAWORKS USB IR TRANSCEIVER |
6221 | M: Sean Young <sean@mess.org> | |
6222 | L: linux-media@vger.kernel.org | |
6223 | S: Maintained | |
6224 | F: drivers/media/rc/iguanair.c | |
6225 | ||
ed13134b PR |
6226 | IIO DIGITAL POTENTIOMETER DAC |
6227 | M: Peter Rosin <peda@axentia.se> | |
6228 | L: linux-iio@vger.kernel.org | |
6229 | S: Maintained | |
7fde1484 | 6230 | F: Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac |
ed13134b | 6231 | F: Documentation/devicetree/bindings/iio/dac/dpot-dac.txt |
7fde1484 | 6232 | F: drivers/iio/dac/dpot-dac.c |
ed13134b | 6233 | |
e778aa14 PR |
6234 | IIO ENVELOPE DETECTOR |
6235 | M: Peter Rosin <peda@axentia.se> | |
6236 | L: linux-iio@vger.kernel.org | |
6237 | S: Maintained | |
b475f80b | 6238 | F: Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector |
e778aa14 | 6239 | F: Documentation/devicetree/bindings/iio/adc/envelope-detector.txt |
b475f80b | 6240 | F: drivers/iio/adc/envelope-detector.c |
e778aa14 | 6241 | |
9545f86e | 6242 | IIO SUBSYSTEM AND DRIVERS |
030a13d7 | 6243 | M: Jonathan Cameron <jic23@kernel.org> |
f0d61161 LPC |
6244 | R: Hartmut Knaack <knaack.h@gmx.de> |
6245 | R: Lars-Peter Clausen <lars@metafoo.de> | |
6fca5aa8 | 6246 | R: Peter Meerwald-Stadler <pmeerw@pmeerw.net> |
9545f86e | 6247 | L: linux-iio@vger.kernel.org |
21d41655 | 6248 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git |
9545f86e | 6249 | S: Maintained |
866b148a | 6250 | F: Documentation/devicetree/bindings/iio/ |
03e7c251 | 6251 | F: drivers/iio/ |
9545f86e | 6252 | F: drivers/staging/iio/ |
8fe671fc | 6253 | F: include/linux/iio/ |
817020cf | 6254 | F: tools/iio/ |
9545f86e | 6255 | |
65519263 SG |
6256 | IKANOS/ADI EAGLE ADSL USB DRIVER |
6257 | M: Matthieu Castet <castet.matthieu@free.fr> | |
6258 | M: Stanislaw Gruszka <stf_xl@wp.pl> | |
6259 | S: Maintained | |
6260 | F: drivers/usb/atm/ueagle-atm.c | |
6261 | ||
8ef3ff27 PB |
6262 | IMGTEC ASCII LCD DRIVER |
6263 | M: Paul Burton <paul.burton@imgtec.com> | |
6264 | S: Maintained | |
6265 | F: Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt | |
0cad855f | 6266 | F: drivers/auxdisplay/img-ascii-lcd.c |
8ef3ff27 | 6267 | |
e89ab51f GR |
6268 | INA209 HARDWARE MONITOR DRIVER |
6269 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 6270 | L: linux-hwmon@vger.kernel.org |
e89ab51f GR |
6271 | S: Maintained |
6272 | F: Documentation/hwmon/ina209 | |
6273 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
6274 | F: drivers/hwmon/ina209.c | |
6275 | ||
6276 | INA2XX HARDWARE MONITOR DRIVER | |
6277 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 6278 | L: linux-hwmon@vger.kernel.org |
e89ab51f GR |
6279 | S: Maintained |
6280 | F: Documentation/hwmon/ina2xx | |
6281 | F: drivers/hwmon/ina2xx.c | |
6282 | F: include/linux/platform_data/ina2xx.h | |
6283 | ||
14dc124f SIG |
6284 | INDUSTRY PACK SUBSYSTEM (IPACK) |
6285 | M: Samuel Iglesias Gonsalvez <siglesias@igalia.com> | |
6286 | M: Jens Taprogge <jens.taprogge@taprogge.org> | |
6287 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
6288 | L: industrypack-devel@lists.sourceforge.net | |
6289 | W: http://industrypack.sourceforge.net | |
6290 | S: Maintained | |
6291 | F: drivers/ipack/ | |
6292 | ||
8adc53fd ZLK |
6293 | INGENIC JZ4780 DMA Driver |
6294 | M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> | |
6295 | S: Maintained | |
6296 | F: drivers/dma/dma-jz4780.c | |
6297 | ||
87cf40e6 HH |
6298 | INGENIC JZ4780 NAND DRIVER |
6299 | M: Harvey Hunt <harveyhuntnexus@gmail.com> | |
6300 | L: linux-mtd@lists.infradead.org | |
6301 | S: Maintained | |
6302 | F: drivers/mtd/nand/jz4780_* | |
6303 | ||
aa7168f4 | 6304 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
74dd744f | 6305 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
bfd33c4b | 6306 | M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com> |
74dd744f MZ |
6307 | L: linux-ima-devel@lists.sourceforge.net |
6308 | L: linux-ima-user@lists.sourceforge.net | |
6309 | L: linux-security-module@vger.kernel.org | |
9f273c24 | 6310 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git |
aa7168f4 | 6311 | S: Supported |
679655da | 6312 | F: security/integrity/ima/ |
aa7168f4 | 6313 | |
9a4ea5a9 JH |
6314 | IMGTEC IR DECODER DRIVER |
6315 | M: James Hogan <james.hogan@imgtec.com> | |
6316 | S: Maintained | |
6317 | F: drivers/media/rc/img-ir/ | |
6318 | ||
1da177e4 | 6319 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 6320 | L: linux-fbdev@vger.kernel.org |
843393d3 | 6321 | S: Orphan |
8a61f013 | 6322 | F: drivers/video/fbdev/imsttfb.c |
1da177e4 LT |
6323 | |
6324 | INFINIBAND SUBSYSTEM | |
b6b2bbe6 | 6325 | M: Doug Ledford <dledford@redhat.com> |
8b58be88 JP |
6326 | M: Sean Hefty <sean.hefty@intel.com> |
6327 | M: Hal Rosenstock <hal.rosenstock@gmail.com> | |
e6cc0fd1 | 6328 | L: linux-rdma@vger.kernel.org |
605841f5 | 6329 | W: http://www.openfabrics.org/ |
8a6e2535 | 6330 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
2936ae04 | 6331 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git |
1da177e4 | 6332 | S: Supported |
679655da JP |
6333 | F: Documentation/infiniband/ |
6334 | F: drivers/infiniband/ | |
c117ab84 | 6335 | F: include/uapi/linux/if_infiniband.h |
954138dc YD |
6336 | F: include/uapi/rdma/ |
6337 | F: include/rdma/ | |
1da177e4 | 6338 | |
c9f04f58 | 6339 | INOTIFY |
8b58be88 JP |
6340 | M: John McCutchan <john@johnmccutchan.com> |
6341 | M: Robert Love <rlove@rlove.org> | |
6342 | M: Eric Paris <eparis@parisplace.org> | |
c9f04f58 | 6343 | S: Maintained |
679655da JP |
6344 | F: Documentation/filesystems/inotify.txt |
6345 | F: fs/notify/inotify/ | |
6346 | F: include/linux/inotify.h | |
c117ab84 | 6347 | F: include/uapi/linux/inotify.h |
c9f04f58 | 6348 | |
e2d1d6c0 | 6349 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 | 6350 | M: Dmitry Torokhov <dmitry.torokhov@gmail.com> |
e2d1d6c0 | 6351 | L: linux-input@vger.kernel.org |
8a6e2535 | 6352 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 6353 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 6354 | S: Maintained |
679655da | 6355 | F: drivers/input/ |
f4eea7e2 | 6356 | F: include/linux/input.h |
c117ab84 | 6357 | F: include/uapi/linux/input.h |
f4eea7e2 | 6358 | F: include/linux/input/ |
e52d8398 | 6359 | F: Documentation/devicetree/bindings/input/ |
e2d1d6c0 | 6360 | |
3267a87f | 6361 | INPUT MULTITOUCH (MT) PROTOCOL |
75dd112a | 6362 | M: Henrik Rydberg <rydberg@bitmath.org> |
3267a87f | 6363 | L: linux-input@vger.kernel.org |
75dd112a | 6364 | S: Odd fixes |
3267a87f | 6365 | F: Documentation/input/multi-touch-protocol.txt |
7f9c2454 | 6366 | F: drivers/input/input-mt.c |
3267a87f HR |
6367 | K: \b(ABS|SYN)_MT_ |
6368 | ||
97fa99a3 JY |
6369 | INTEL ASoC BDW/HSW DRIVERS |
6370 | M: Jie Yang <yang.jie@linux.intel.com> | |
e5747e40 | 6371 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
97fa99a3 | 6372 | S: Supported |
e8e1225d JP |
6373 | F: sound/soc/intel/common/sst-dsp* |
6374 | F: sound/soc/intel/common/sst-firmware.c | |
6375 | F: sound/soc/intel/boards/broadwell.c | |
6376 | F: sound/soc/intel/haswell/ | |
97fa99a3 | 6377 | |
4ac13e17 DJ |
6378 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
6379 | M: Intel SCU Linux support <intel-linux-scu@intel.com> | |
fdc5813f | 6380 | M: Artur Paszkiewicz <artur.paszkiewicz@intel.com> |
4ac13e17 | 6381 | L: linux-scsi@vger.kernel.org |
7106891a DJ |
6382 | T: git git://git.code.sf.net/p/intel-sas/isci |
6383 | S: Supported | |
4ac13e17 | 6384 | F: drivers/scsi/isci/ |
4ac13e17 | 6385 | |
ecc83e52 AH |
6386 | INTEL HID EVENT DRIVER |
6387 | M: Alex Hung <alex.hung@canonical.com> | |
6388 | L: platform-driver-x86@vger.kernel.org | |
6389 | S: Maintained | |
6390 | F: drivers/platform/x86/intel-hid.c | |
6391 | ||
332e0812 AK |
6392 | INTEL VIRTUAL BUTTON DRIVER |
6393 | M: AceLan Kao <acelan.kao@canonical.com> | |
6394 | L: platform-driver-x86@vger.kernel.org | |
6395 | S: Maintained | |
6396 | F: drivers/platform/x86/intel-vbtn.c | |
6397 | ||
26717172 | 6398 | INTEL IDLE DRIVER |
6af33995 | 6399 | M: Jacob Pan <jacob.jun.pan@linux.intel.com> |
26717172 | 6400 | M: Len Brown <lenb@kernel.org> |
bf1c138e | 6401 | L: linux-pm@vger.kernel.org |
08deed1e | 6402 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
2ed38cbe | 6403 | B: https://bugzilla.kernel.org |
26717172 LB |
6404 | S: Supported |
6405 | F: drivers/idle/intel_idle.c | |
6406 | ||
8fb861fa SP |
6407 | INTEL INTEGRATED SENSOR HUB DRIVER |
6408 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> | |
6409 | M: Jiri Kosina <jikos@kernel.org> | |
6410 | L: linux-input@vger.kernel.org | |
6411 | S: Maintained | |
6412 | F: drivers/hid/intel-ish-hid/ | |
6413 | ||
7c1ac18d | 6414 | INTEL PSTATE DRIVER |
58ac1f62 SP |
6415 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> |
6416 | M: Len Brown <lenb@kernel.org> | |
7c1ac18d KCA |
6417 | L: linux-pm@vger.kernel.org |
6418 | S: Supported | |
6419 | F: drivers/cpufreq/intel_pstate.c | |
6420 | ||
9eb8ef74 | 6421 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
d8e38754 | 6422 | M: Maik Broemme <mbroemme@libmpq.org> |
c69f677c | 6423 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 6424 | S: Maintained |
679655da | 6425 | F: Documentation/fb/intelfb.txt |
8a61f013 | 6426 | F: drivers/video/fbdev/intelfb/ |
9eb8ef74 | 6427 | |
1da177e4 | 6428 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 6429 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 6430 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 6431 | S: Maintained |
8a61f013 | 6432 | F: drivers/video/fbdev/i810/ |
1da177e4 | 6433 | |
f4a9bc4c | 6434 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 6435 | M: Sujith Thomas <sujith.thomas@intel.com> |
d0944853 | 6436 | L: platform-driver-x86@vger.kernel.org |
5ca92bd9 | 6437 | W: https://01.org/linux-acpi |
f4a9bc4c | 6438 | S: Supported |
679655da | 6439 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 6440 | |
248a9dc3 | 6441 | INTEL I/OAT DMA DRIVER |
18ebd564 | 6442 | M: Dave Jiang <dave.jiang@intel.com> |
08223d80 | 6443 | R: Dan Williams <dan.j.williams@intel.com> |
18ebd564 DJ |
6444 | L: dmaengine@vger.kernel.org |
6445 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
6446 | S: Supported | |
679655da | 6447 | F: drivers/dma/ioat* |
248a9dc3 | 6448 | |
6c8909b4 | 6449 | INTEL IOMMU (VT-d) |
8b58be88 | 6450 | M: David Woodhouse <dwmw2@infradead.org> |
6c8909b4 | 6451 | L: iommu@lists.linux-foundation.org |
54e5881d | 6452 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 6453 | S: Supported |
3fb39615 | 6454 | F: drivers/iommu/intel-iommu.c |
679655da | 6455 | F: include/linux/intel-iommu.h |
6c8909b4 | 6456 | |
b3e5f263 | 6457 | INTEL IOP-ADMA DMA DRIVER |
08223d80 | 6458 | R: Dan Williams <dan.j.williams@intel.com> |
1dd8372d | 6459 | S: Odd fixes |
679655da | 6460 | F: drivers/dma/iop-adma.c |
b3e5f263 | 6461 | |
9251ce95 | 6462 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
5529c2cd | 6463 | M: Krzysztof Halasa <khalasa@piap.pl> |
9251ce95 | 6464 | S: Maintained |
679655da JP |
6465 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
6466 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
6467 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
6468 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 6469 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 6470 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 6471 | |
844dd05f | 6472 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 6473 | M: Deepak Saxena <dsaxena@plexity.net> |
844dd05f | 6474 | S: Maintained |
679655da | 6475 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 6476 | |
2f302324 | 6477 | INTEL ETHERNET DRIVERS |
8b58be88 | 6478 | M: Jeff Kirsher <jeffrey.t.kirsher@intel.com> |
eff471b1 | 6479 | L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers) |
f6fde11a | 6480 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 6481 | W: http://e1000.sourceforge.net/ |
2f302324 JK |
6482 | Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/ |
6483 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git | |
6484 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git | |
1da177e4 | 6485 | S: Supported |
0d164401 JK |
6486 | F: Documentation/networking/e100.txt |
6487 | F: Documentation/networking/e1000.txt | |
6488 | F: Documentation/networking/e1000e.txt | |
6489 | F: Documentation/networking/igb.txt | |
6490 | F: Documentation/networking/igbvf.txt | |
6491 | F: Documentation/networking/ixgb.txt | |
6492 | F: Documentation/networking/ixgbe.txt | |
6493 | F: Documentation/networking/ixgbevf.txt | |
1bff6529 | 6494 | F: Documentation/networking/i40e.txt |
105bf2fe | 6495 | F: Documentation/networking/i40evf.txt |
dee1ad47 | 6496 | F: drivers/net/ethernet/intel/ |
bc90d291 | 6497 | F: drivers/net/ethernet/intel/*/ |
1da177e4 | 6498 | |
6e4de866 FL |
6499 | INTEL RDMA RNIC DRIVER |
6500 | M: Faisal Latif <faisal.latif@intel.com> | |
6501 | R: Chien Tin Tung <chien.tin.tung@intel.com> | |
6502 | R: Mustafa Ismail <mustafa.ismail@intel.com> | |
6503 | R: Shiraz Saleem <shiraz.saleem@intel.com> | |
6504 | R: Tatyana Nikolova <tatyana.e.nikolova@intel.com> | |
6505 | L: linux-rdma@vger.kernel.org | |
6506 | S: Supported | |
6507 | F: drivers/infiniband/hw/i40iw/ | |
6508 | ||
224f9e6d AS |
6509 | INTEL MERRIFIELD GPIO DRIVER |
6510 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> | |
6511 | L: linux-gpio@vger.kernel.org | |
6512 | S: Maintained | |
6513 | F: drivers/gpio/gpio-merrifield.c | |
6514 | ||
0963d59b LW |
6515 | INTEL-MID GPIO DRIVER |
6516 | M: David Cohen <david.a.cohen@linux.intel.com> | |
6517 | L: linux-gpio@vger.kernel.org | |
6518 | S: Maintained | |
6519 | F: drivers/gpio/gpio-intel-mid.c | |
6520 | ||
ca907a90 SY |
6521 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
6522 | M: Stanislav Yakovlev <stas.yakovlev@gmail.com> | |
724c6b35 | 6523 | L: linux-wireless@vger.kernel.org |
ca907a90 | 6524 | S: Maintained |
679655da | 6525 | F: Documentation/networking/README.ipw2100 |
679655da | 6526 | F: Documentation/networking/README.ipw2200 |
367a1092 | 6527 | F: drivers/net/wireless/intel/ipw2x00/ |
826d2abe | 6528 | |
5760b0a5 AS |
6529 | INTEL(R) TRACE HUB |
6530 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> | |
6531 | S: Supported | |
6532 | F: Documentation/trace/intel_th.txt | |
6533 | F: drivers/hwtracing/intel_th/ | |
6534 | ||
4bd96a7a | 6535 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
74b18e17 | 6536 | M: Ning Sun <ning.sun@intel.com> |
4bd96a7a SW |
6537 | L: tboot-devel@lists.sourceforge.net |
6538 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 6539 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
6540 | S: Supported |
6541 | F: Documentation/intel_txt.txt | |
6542 | F: include/linux/tboot.h | |
6543 | F: arch/x86/kernel/tboot.c | |
6544 | ||
8a70da82 | 6545 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 6546 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 6547 | M: linux-wimax@intel.com |
49e7d9df | 6548 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
6549 | S: Supported |
6550 | W: http://linuxwimax.org | |
679655da JP |
6551 | F: Documentation/wimax/README.i2400m |
6552 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 6553 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 6554 | |
1c0ce89c SG |
6555 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
6556 | M: Stanislaw Gruszka <sgruszka@redhat.com> | |
efa3144e | 6557 | L: linux-wireless@vger.kernel.org |
1c0ce89c | 6558 | S: Supported |
7ac9a364 | 6559 | F: drivers/net/wireless/intel/iwlegacy/ |
efa3144e | 6560 | |
b481de9c | 6561 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 6562 | M: Johannes Berg <johannes.berg@intel.com> |
6161b02b | 6563 | M: Emmanuel Grumbach <emmanuel.grumbach@intel.com> |
af5e964f | 6564 | M: Luca Coelho <luciano.coelho@intel.com> |
7b9aebf0 | 6565 | M: Intel Linux Wireless <linuxwifi@intel.com> |
b481de9c | 6566 | L: linux-wireless@vger.kernel.org |
b481de9c | 6567 | W: http://intellinuxwireless.org |
b62ff718 | 6568 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 6569 | S: Supported |
e705c121 | 6570 | F: drivers/net/wireless/intel/iwlwifi/ |
b481de9c | 6571 | |
de8fe023 TW |
6572 | INTEL MANAGEMENT ENGINE (mei) |
6573 | M: Tomas Winkler <tomas.winkler@intel.com> | |
6574 | L: linux-kernel@vger.kernel.org | |
6575 | S: Supported | |
c117ab84 | 6576 | F: include/uapi/linux/mei.h |
5069288b | 6577 | F: include/linux/mei_cl_bus.h |
de8fe023 | 6578 | F: drivers/misc/mei/* |
222818c3 | 6579 | F: drivers/watchdog/mei_wdt.c |
e07950a1 | 6580 | F: Documentation/misc-devices/mei/* |
986b891a | 6581 | F: samples/mei/* |
de8fe023 | 6582 | |
50ceb98b SD |
6583 | INTEL MIC DRIVERS (mic) |
6584 | M: Sudeep Dutt <sudeep.dutt@intel.com> | |
6585 | M: Ashutosh Dixit <ashutosh.dixit@intel.com> | |
6586 | S: Supported | |
6587 | W: https://github.com/sudeepdutt/mic | |
6588 | W: http://software.intel.com/en-us/mic-developer | |
6589 | F: include/linux/mic_bus.h | |
6590 | F: include/linux/scif.h | |
6591 | F: include/uapi/linux/mic_common.h | |
6592 | F: include/uapi/linux/mic_ioctl.h | |
9f273c24 | 6593 | F: include/uapi/linux/scif_ioctl.h |
50ceb98b SD |
6594 | F: drivers/misc/mic/ |
6595 | F: drivers/dma/mic_x100_dma.c | |
6596 | F: drivers/dma/mic_x100_dma.h | |
9f273c24 | 6597 | F: Documentation/mic/ |
50ceb98b | 6598 | |
fdca4f16 | 6599 | INTEL PMC/P-Unit IPC DRIVER |
0a8b8353 | 6600 | M: Zha Qipeng<qipeng.zha@intel.com> |
6601 | L: platform-driver-x86@vger.kernel.org | |
6602 | S: Maintained | |
6603 | F: drivers/platform/x86/intel_pmc_ipc.c | |
fdca4f16 | 6604 | F: drivers/platform/x86/intel_punit_ipc.c |
0a8b8353 | 6605 | F: arch/x86/include/asm/intel_pmc_ipc.h |
fdca4f16 | 6606 | F: arch/x86/include/asm/intel_punit_ipc.h |
0a8b8353 | 6607 | |
378f956e SKC |
6608 | INTEL TELEMETRY DRIVER |
6609 | M: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com> | |
6610 | L: platform-driver-x86@vger.kernel.org | |
6611 | S: Maintained | |
378f956e | 6612 | F: arch/x86/include/asm/intel_telemetry.h |
f1fc3cd8 | 6613 | F: drivers/platform/x86/intel_telemetry* |
0a8b8353 | 6614 | |
b740d2e9 RB |
6615 | INTEL PMC CORE DRIVER |
6616 | M: Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com> | |
6617 | M: Vishwanath Somayaji <vishwanath.somayaji@intel.com> | |
6618 | L: platform-driver-x86@vger.kernel.org | |
6619 | S: Maintained | |
6620 | F: arch/x86/include/asm/pmc_core.h | |
6621 | F: drivers/platform/x86/intel_pmc_core* | |
6622 | ||
3904b28e LW |
6623 | INVENSENSE MPU-3050 GYROSCOPE DRIVER |
6624 | M: Linus Walleij <linus.walleij@linaro.org> | |
6625 | L: linux-iio@vger.kernel.org | |
6626 | S: Maintained | |
6627 | F: drivers/iio/gyro/mpu3050* | |
6628 | F: Documentation/devicetree/bindings/iio/gyroscope/inv,mpu3050.txt | |
6629 | ||
cb109a0e | 6630 | IOC3 ETHERNET DRIVER |
8b58be88 | 6631 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 LT |
6632 | L: linux-mips@linux-mips.org |
6633 | S: Maintained | |
8862bf1e | 6634 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 6635 | |
cb109a0e | 6636 | IOC3 SERIAL DRIVER |
8b58be88 | 6637 | M: Pat Gefre <pfg@sgi.com> |
d39e0721 | 6638 | L: linux-serial@vger.kernel.org |
cb109a0e | 6639 | S: Maintained |
df621252 | 6640 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 6641 | |
0b6e8569 SW |
6642 | IOMMU DRIVERS |
6643 | M: Joerg Roedel <joro@8bytes.org> | |
6644 | L: iommu@lists.linux-foundation.org | |
6645 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git | |
6646 | S: Maintained | |
efcd94c0 | 6647 | F: Documentation/devicetree/bindings/iommu/ |
0b6e8569 SW |
6648 | F: drivers/iommu/ |
6649 | ||
4480f15b | 6650 | IP MASQUERADING |
8b58be88 | 6651 | M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar> |
1da177e4 | 6652 | S: Maintained |
679655da | 6653 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 6654 | |
4409ebe9 | 6655 | IPMI SUBSYSTEM |
8b58be88 | 6656 | M: Corey Minyard <minyard@acm.org> |
b0c90653 | 6657 | L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers) |
4409ebe9 CM |
6658 | W: http://openipmi.sourceforge.net/ |
6659 | S: Supported | |
679655da JP |
6660 | F: Documentation/IPMI.txt |
6661 | F: drivers/char/ipmi/ | |
6662 | F: include/linux/ipmi* | |
c117ab84 | 6663 | F: include/uapi/linux/ipmi* |
4409ebe9 | 6664 | |
2d800897 KW |
6665 | QCOM AUDIO (ASoC) DRIVERS |
6666 | M: Patrick Lai <plai@codeaurora.org> | |
6667 | M: Banajit Goswami <bgoswami@codeaurora.org> | |
6668 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
6669 | S: Supported | |
6670 | F: sound/soc/qcom/ | |
6671 | ||
e2d1d6c0 | 6672 | IPS SCSI RAID DRIVER |
8b58be88 | 6673 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
6674 | L: linux-scsi@vger.kernel.org |
6675 | W: http://www.adaptec.com/ | |
6676 | S: Maintained | |
679655da | 6677 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
6678 | |
6679 | IPVS | |
8b58be88 JP |
6680 | M: Wensong Zhang <wensong@linux-vs.org> |
6681 | M: Simon Horman <horms@verge.net.au> | |
6682 | M: Julian Anastasov <ja@ssi.bg> | |
979b6c13 | 6683 | L: netdev@vger.kernel.org |
e2d1d6c0 | 6684 | L: lvs-devel@vger.kernel.org |
1da177e4 | 6685 | S: Maintained |
9f273c24 FW |
6686 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git |
6687 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git | |
679655da | 6688 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 6689 | F: include/net/ip_vs.h |
c117ab84 | 6690 | F: include/uapi/linux/ip_vs.h |
679655da | 6691 | F: net/netfilter/ipvs/ |
1da177e4 | 6692 | |
e7839f25 | 6693 | IPWIRELESS DRIVER |
e5f6450c | 6694 | M: Jiri Kosina <jikos@kernel.org> |
d8130624 | 6695 | M: David Sterba <dsterba@suse.com> |
92094aa0 | 6696 | S: Odd Fixes |
282361a0 | 6697 | F: drivers/tty/ipwireless/ |
099dc4fb | 6698 | |
e2d1d6c0 | 6699 | IPX NETWORK LAYER |
8b58be88 | 6700 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 RD |
6701 | L: netdev@vger.kernel.org |
6702 | S: Maintained | |
679655da | 6703 | F: include/net/ipx.h |
c117ab84 | 6704 | F: include/uapi/linux/ipx.h |
679655da | 6705 | F: net/ipx/ |
e2d1d6c0 | 6706 | |
1da177e4 | 6707 | IRDA SUBSYSTEM |
8b58be88 | 6708 | M: Samuel Ortiz <samuel@sortiz.org> |
a2ac953d | 6709 | L: irda-users@lists.sourceforge.net (subscribers-only) |
ced649ea | 6710 | L: netdev@vger.kernel.org |
1da177e4 | 6711 | W: http://irda.sourceforge.net/ |
f353976d | 6712 | S: Maintained |
e0057975 | 6713 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
6714 | F: Documentation/networking/irda.txt |
6715 | F: drivers/net/irda/ | |
6716 | F: include/net/irda/ | |
6717 | F: net/irda/ | |
1da177e4 | 6718 | |
a800c7cc TG |
6719 | IRQ SUBSYSTEM |
6720 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 6721 | L: linux-kernel@vger.kernel.org |
a800c7cc | 6722 | S: Maintained |
75fc2d37 | 6723 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc | 6724 | F: kernel/irq/ |
2ed9fd28 JC |
6725 | |
6726 | IRQCHIP DRIVERS | |
6727 | M: Thomas Gleixner <tglx@linutronix.de> | |
6728 | M: Jason Cooper <jason@lakedaemon.net> | |
54d9ffc4 | 6729 | M: Marc Zyngier <marc.zyngier@arm.com> |
2ed9fd28 JC |
6730 | L: linux-kernel@vger.kernel.org |
6731 | S: Maintained | |
6732 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core | |
6733 | T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core | |
5b5a9069 | 6734 | F: Documentation/devicetree/bindings/interrupt-controller/ |
edd96900 | 6735 | F: drivers/irqchip/ |
a800c7cc | 6736 | |
7ab3a837 | 6737 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
b09dec2c | 6738 | M: Marc Zyngier <marc.zyngier@arm.com> |
7ab3a837 | 6739 | S: Maintained |
b09dec2c | 6740 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
7ab3a837 GL |
6741 | F: Documentation/IRQ-domain.txt |
6742 | F: include/linux/irqdomain.h | |
6743 | F: kernel/irq/irqdomain.c | |
b09dec2c | 6744 | F: kernel/irq/msi.c |
7ab3a837 | 6745 | |
ad7afc38 WBG |
6746 | ISA |
6747 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
6748 | S: Maintained | |
6749 | F: Documentation/isa.txt | |
6750 | F: drivers/base/isa.c | |
6751 | F: include/linux/isa.h | |
6752 | ||
e2d1d6c0 | 6753 | ISAPNP |
8b58be88 | 6754 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 6755 | S: Maintained |
679655da JP |
6756 | F: Documentation/isapnp.txt |
6757 | F: drivers/pnp/isapnp/ | |
6758 | F: include/linux/isapnp.h | |
e2d1d6c0 | 6759 | |
d39b8420 HV |
6760 | ISA RADIO MODULE |
6761 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
6762 | L: linux-media@vger.kernel.org | |
6763 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 6764 | W: https://linuxtv.org |
d39b8420 HV |
6765 | S: Maintained |
6766 | F: drivers/media/radio/radio-isa* | |
6767 | ||
71a6d0af HW |
6768 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
6769 | M: Peter Jones <pjones@redhat.com> | |
6770 | M: Konrad Rzeszutek Wilk <konrad@kernel.org> | |
6771 | S: Maintained | |
6772 | F: drivers/firmware/iscsi_ibft* | |
6773 | ||
14816b1e | 6774 | ISCSI |
623290a2 LD |
6775 | M: Lee Duncan <lduncan@suse.com> |
6776 | M: Chris Leech <cleech@redhat.com> | |
14816b1e | 6777 | L: open-iscsi@googlegroups.com |
623290a2 | 6778 | W: www.open-iscsi.com |
14816b1e | 6779 | S: Maintained |
679655da JP |
6780 | F: drivers/scsi/*iscsi* |
6781 | F: include/scsi/*iscsi* | |
14816b1e | 6782 | |
1e65eb42 OG |
6783 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
6784 | M: Or Gerlitz <ogerlitz@mellanox.com> | |
e7d2c25d | 6785 | M: Sagi Grimberg <sagi@grimberg.me> |
1e65eb42 OG |
6786 | M: Roi Dayan <roid@mellanox.com> |
6787 | L: linux-rdma@vger.kernel.org | |
6788 | S: Supported | |
6789 | W: http://www.openfabrics.org | |
6790 | W: www.open-iscsi.org | |
6791 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
14430813 | 6792 | F: drivers/infiniband/ulp/iser/ |
1e65eb42 | 6793 | |
2b70e5fd | 6794 | ISCSI EXTENSIONS FOR RDMA (ISER) TARGET |
e7d2c25d | 6795 | M: Sagi Grimberg <sagi@grimberg.me> |
2b70e5fd SG |
6796 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
6797 | L: linux-rdma@vger.kernel.org | |
6798 | L: target-devel@vger.kernel.org | |
6799 | S: Supported | |
6800 | W: http://www.linux-iscsi.org | |
6801 | F: drivers/infiniband/ulp/isert | |
6802 | ||
1da177e4 | 6803 | ISDN SUBSYSTEM |
8b58be88 | 6804 | M: Karsten Keil <isdn@linux-pingi.de> |
d5d52273 | 6805 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
3da0ae62 | 6806 | L: netdev@vger.kernel.org |
1da177e4 | 6807 | W: http://www.isdn4linux.de |
54e5881d | 6808 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 6809 | S: Maintained |
679655da JP |
6810 | F: Documentation/isdn/ |
6811 | F: drivers/isdn/ | |
6812 | F: include/linux/isdn.h | |
6813 | F: include/linux/isdn/ | |
c117ab84 CEB |
6814 | F: include/uapi/linux/isdn.h |
6815 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
6816 | |
6817 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 6818 | M: Armin Schindler <mac@melware.de> |
d5d52273 | 6819 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
1da177e4 LT |
6820 | W: http://www.melware.de |
6821 | S: Maintained | |
679655da | 6822 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 6823 | |
d624870f | 6824 | IT87 HARDWARE MONITORING DRIVER |
d8130624 | 6825 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 6826 | L: linux-hwmon@vger.kernel.org |
d624870f JD |
6827 | S: Maintained |
6828 | F: Documentation/hwmon/it87 | |
6829 | F: drivers/hwmon/it87.c | |
6830 | ||
d7104bff AP |
6831 | IT913X MEDIA DRIVER |
6832 | M: Antti Palosaari <crope@iki.fi> | |
6833 | L: linux-media@vger.kernel.org | |
a825eaec | 6834 | W: https://linuxtv.org |
d7104bff AP |
6835 | W: http://palosaari.fi/linux/ |
6836 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6837 | T: git git://linuxtv.org/anttip/media_tree.git | |
6838 | S: Maintained | |
249c697e | 6839 | F: drivers/media/tuners/it913x* |
d7104bff | 6840 | |
91821ff3 | 6841 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 6842 | M: Andy Walls <awalls@md.metrocast.net> |
7b212edf | 6843 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
661263b5 | 6844 | L: linux-media@vger.kernel.org |
275ffde4 | 6845 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
6846 | W: http://www.ivtvdriver.org |
6847 | S: Maintained | |
618cd932 | 6848 | F: Documentation/media/v4l-drivers/ivtv* |
90d72ac6 | 6849 | F: drivers/media/pci/ivtv/ |
c117ab84 | 6850 | F: include/uapi/linux/ivtv* |
91821ff3 | 6851 | |
68620bdd MP |
6852 | IX2505V MEDIA DRIVER |
6853 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
6854 | L: linux-media@vger.kernel.org | |
a825eaec | 6855 | W: https://linuxtv.org |
68620bdd MP |
6856 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
6857 | S: Maintained | |
6858 | F: drivers/media/dvb-frontends/ix2505v* | |
6859 | ||
4453d736 GR |
6860 | JC42.4 TEMPERATURE SENSOR DRIVER |
6861 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 6862 | L: linux-hwmon@vger.kernel.org |
4453d736 GR |
6863 | S: Maintained |
6864 | F: drivers/hwmon/jc42.c | |
6865 | F: Documentation/hwmon/jc42 | |
6866 | ||
e2d1d6c0 | 6867 | JFS FILESYSTEM |
3256f80f | 6868 | M: Dave Kleikamp <shaggy@kernel.org> |
e2d1d6c0 RD |
6869 | L: jfs-discussion@lists.sourceforge.net |
6870 | W: http://jfs.sourceforge.net/ | |
54e5881d | 6871 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 6872 | S: Maintained |
679655da JP |
6873 | F: Documentation/filesystems/jfs.txt |
6874 | F: fs/jfs/ | |
e2d1d6c0 | 6875 | |
95252236 | 6876 | JME NETWORK DRIVER |
8b58be88 | 6877 | M: Guo-Fu Tseng <cooldavid@cooldavid.org> |
95252236 GFT |
6878 | L: netdev@vger.kernel.org |
6879 | S: Maintained | |
63d24a0e | 6880 | F: drivers/net/ethernet/jme.* |
95252236 | 6881 | |
1da177e4 | 6882 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 6883 | M: David Woodhouse <dwmw2@infradead.org> |
6d85d066 DW |
6884 | L: linux-mtd@lists.infradead.org |
6885 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 6886 | S: Maintained |
679655da | 6887 | F: fs/jffs2/ |
c117ab84 | 6888 | F: include/uapi/linux/jffs2.h |
1da177e4 | 6889 | |
d183e11a TT |
6890 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) |
6891 | M: "Theodore Ts'o" <tytso@mit.edu> | |
c290ea01 | 6892 | M: Jan Kara <jack@suse.com> |
d183e11a TT |
6893 | L: linux-ext4@vger.kernel.org |
6894 | S: Maintained | |
6895 | F: fs/jbd2/ | |
6896 | F: include/linux/jbd2.h | |
ae0718f8 | 6897 | |
207dab5f MU |
6898 | JPU V4L2 MEM2MEM DRIVER FOR RENESAS |
6899 | M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com> | |
6900 | L: linux-media@vger.kernel.org | |
6901 | S: Maintained | |
6902 | F: drivers/media/platform/rcar_jpu.c | |
6903 | ||
fd8b6cb4 | 6904 | JSM Neo PCI based serial card |
df247081 | 6905 | M: Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com> |
fd8b6cb4 BL |
6906 | L: linux-serial@vger.kernel.org |
6907 | S: Maintained | |
df621252 | 6908 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 6909 | |
af39917d CL |
6910 | K10TEMP HARDWARE MONITORING DRIVER |
6911 | M: Clemens Ladisch <clemens@ladisch.de> | |
968ce1b1 | 6912 | L: linux-hwmon@vger.kernel.org |
af39917d CL |
6913 | S: Maintained |
6914 | F: Documentation/hwmon/k10temp | |
6915 | F: drivers/hwmon/k10temp.c | |
6916 | ||
4660cb35 | 6917 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 6918 | M: Rudolf Marek <r.marek@assembler.cz> |
968ce1b1 | 6919 | L: linux-hwmon@vger.kernel.org |
ae0718f8 | 6920 | S: Maintained |
679655da JP |
6921 | F: Documentation/hwmon/k8temp |
6922 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 6923 | |
0ba1d91d AR |
6924 | KASAN |
6925 | M: Andrey Ryabinin <aryabinin@virtuozzo.com> | |
6926 | R: Alexander Potapenko <glider@google.com> | |
6927 | R: Dmitry Vyukov <dvyukov@google.com> | |
6928 | L: kasan-dev@googlegroups.com | |
6929 | S: Maintained | |
6930 | F: arch/*/include/asm/kasan.h | |
6931 | F: arch/*/mm/kasan_init* | |
2757aafa | 6932 | F: Documentation/dev-tools/kasan.rst |
64f8ebaf | 6933 | F: include/linux/kasan*.h |
0ba1d91d AR |
6934 | F: lib/test_kasan.c |
6935 | F: mm/kasan/ | |
6936 | F: scripts/Makefile.kasan | |
6937 | ||
1da177e4 | 6938 | KCONFIG |
5eb1f99e | 6939 | M: "Yann E. MORIN" <yann.morin.1998@free.fr> |
347d12d7 | 6940 | L: linux-kbuild@vger.kernel.org |
cea8321c | 6941 | T: git git://gitorious.org/linux-kconfig/linux-kconfig |
5eb1f99e | 6942 | S: Maintained |
679655da JP |
6943 | F: Documentation/kbuild/kconfig-language.txt |
6944 | F: scripts/kconfig/ | |
1da177e4 | 6945 | |
ea6c2089 | 6946 | KDUMP |
f871f191 VG |
6947 | M: Dave Young <dyoung@redhat.com> |
6948 | M: Baoquan He <bhe@redhat.com> | |
6949 | R: Vivek Goyal <vgoyal@redhat.com> | |
34633993 | 6950 | L: kexec@lists.infradead.org |
ea6c2089 VG |
6951 | W: http://lse.sourceforge.net/kdump/ |
6952 | S: Maintained | |
80811493 | 6953 | F: Documentation/kdump/ |
ea6c2089 | 6954 | |
f41bf02f HV |
6955 | KEENE FM RADIO TRANSMITTER DRIVER |
6956 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
6957 | L: linux-media@vger.kernel.org | |
6958 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 6959 | W: https://linuxtv.org |
f41bf02f HV |
6960 | S: Maintained |
6961 | F: drivers/media/radio/radio-keene* | |
6962 | ||
1da177e4 | 6963 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 6964 | M: Ian Kent <raven@themaw.net> |
f694fc97 | 6965 | L: autofs@vger.kernel.org |
1da177e4 | 6966 | S: Maintained |
679655da | 6967 | F: fs/autofs4/ |
1da177e4 | 6968 | |
70fb7ba6 | 6969 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
d8130624 | 6970 | M: Michal Marek <mmarek@suse.com> |
08deed1e JP |
6971 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
6972 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 6973 | L: linux-kbuild@vger.kernel.org |
5ce45962 | 6974 | S: Maintained |
679655da JP |
6975 | F: Documentation/kbuild/ |
6976 | F: Makefile | |
6977 | F: scripts/Makefile.* | |
70fb7ba6 MM |
6978 | F: scripts/basic/ |
6979 | F: scripts/mk* | |
6980 | F: scripts/package/ | |
1da177e4 LT |
6981 | |
6982 | KERNEL JANITORS | |
c3000e03 | 6983 | L: kernel-janitors@vger.kernel.org |
10466f5a | 6984 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 6985 | S: Odd Fixes |
1da177e4 | 6986 | |
e8b43555 | 6987 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 6988 | M: "J. Bruce Fields" <bfields@fieldses.org> |
883985f6 | 6989 | M: Jeff Layton <jlayton@poochiereds.net> |
16141c02 | 6990 | L: linux-nfs@vger.kernel.org |
1da177e4 | 6991 | W: http://nfs.sourceforge.net/ |
9f273c24 | 6992 | T: git git://linux-nfs.org/~bfields/linux.git |
98fac23f | 6993 | S: Supported |
679655da | 6994 | F: fs/nfsd/ |
c117ab84 | 6995 | F: include/uapi/linux/nfsd/ |
679655da JP |
6996 | F: fs/lockd/ |
6997 | F: fs/nfs_common/ | |
6998 | F: net/sunrpc/ | |
6999 | F: include/linux/lockd/ | |
7000 | F: include/linux/sunrpc/ | |
c117ab84 | 7001 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 7002 | |
13b122b3 SK |
7003 | KERNEL SELFTEST FRAMEWORK |
7004 | M: Shuah Khan <shuahkh@osg.samsung.com> | |
90effdcd | 7005 | M: Shuah Khan <shuah@kernel.org> |
64f00850 | 7006 | L: linux-kselftest@vger.kernel.org |
13b122b3 SK |
7007 | T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest |
7008 | S: Maintained | |
7009 | F: tools/testing/selftests | |
7010 | ||
426d62e2 | 7011 | KERNEL VIRTUAL MACHINE (KVM) |
c93a64fe | 7012 | M: Paolo Bonzini <pbonzini@redhat.com> |
3d8e15dd | 7013 | M: Radim Krčmář <rkrcmar@redhat.com> |
1fc9d2bf | 7014 | L: kvm@vger.kernel.org |
e3e58478 | 7015 | W: http://www.linux-kvm.org |
a94b40a6 | 7016 | T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git |
426d62e2 | 7017 | S: Supported |
c93a64fe PB |
7018 | F: Documentation/*/kvm*.txt |
7019 | F: Documentation/virtual/kvm/ | |
679655da | 7020 | F: arch/*/kvm/ |
1662e862 CB |
7021 | F: arch/x86/kernel/kvm.c |
7022 | F: arch/x86/kernel/kvmclock.c | |
679655da JP |
7023 | F: arch/*/include/asm/kvm* |
7024 | F: include/linux/kvm* | |
c117ab84 | 7025 | F: include/uapi/linux/kvm* |
679655da | 7026 | F: virt/kvm/ |
6d0a1a61 | 7027 | F: tools/kvm/ |
426d62e2 | 7028 | |
ad8003d3 | 7029 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 7030 | M: Joerg Roedel <joro@8bytes.org> |
1fc9d2bf | 7031 | L: kvm@vger.kernel.org |
038161de | 7032 | W: http://www.linux-kvm.org/ |
7de609c8 | 7033 | S: Maintained |
679655da | 7034 | F: arch/x86/include/asm/svm.h |
679655da | 7035 | F: arch/x86/kvm/svm.c |
426d62e2 | 7036 | |
513014b7 | 7037 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
d8130624 | 7038 | M: Alexander Graf <agraf@suse.com> |
1fc9d2bf | 7039 | L: kvm-ppc@vger.kernel.org |
038161de | 7040 | W: http://www.linux-kvm.org/ |
6a7f972d | 7041 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 7042 | S: Supported |
679655da JP |
7043 | F: arch/powerpc/include/asm/kvm* |
7044 | F: arch/powerpc/kvm/ | |
513014b7 | 7045 | |
85f8fffe | 7046 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 7047 | M: Christian Borntraeger <borntraeger@de.ibm.com> |
4ae57b6c | 7048 | M: Cornelia Huck <cornelia.huck@de.ibm.com> |
85f8fffe CB |
7049 | L: linux-s390@vger.kernel.org |
7050 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
9f273c24 | 7051 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git |
85f8fffe | 7052 | S: Supported |
679655da JP |
7053 | F: Documentation/s390/kvm.txt |
7054 | F: arch/s390/include/asm/kvm* | |
80811493 | 7055 | F: arch/s390/kvm/ |
85f8fffe | 7056 | |
a749474d | 7057 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
0f4ca79e | 7058 | M: Christoffer Dall <christoffer.dall@linaro.org> |
5c8818b4 MZ |
7059 | M: Marc Zyngier <marc.zyngier@arm.com> |
7060 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
a749474d CD |
7061 | L: kvmarm@lists.cs.columbia.edu |
7062 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
1b1ebe82 | 7063 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git |
0f4ca79e | 7064 | S: Supported |
a749474d CD |
7065 | F: arch/arm/include/uapi/asm/kvm* |
7066 | F: arch/arm/include/asm/kvm* | |
7067 | F: arch/arm/kvm/ | |
5c8818b4 MZ |
7068 | F: virt/kvm/arm/ |
7069 | F: include/kvm/arm_* | |
a749474d | 7070 | |
6394a3ec | 7071 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
5c8818b4 | 7072 | M: Christoffer Dall <christoffer.dall@linaro.org> |
6394a3ec MZ |
7073 | M: Marc Zyngier <marc.zyngier@arm.com> |
7074 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
7075 | L: kvmarm@lists.cs.columbia.edu | |
7076 | S: Maintained | |
7077 | F: arch/arm64/include/uapi/asm/kvm* | |
7078 | F: arch/arm64/include/asm/kvm* | |
7079 | F: arch/arm64/kvm/ | |
7080 | ||
bfd3d532 JH |
7081 | KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips) |
7082 | M: James Hogan <james.hogan@imgtec.com> | |
7083 | L: linux-mips@linux-mips.org | |
7084 | S: Supported | |
7085 | F: arch/mips/include/uapi/asm/kvm* | |
7086 | F: arch/mips/include/asm/kvm* | |
7087 | F: arch/mips/kvm/ | |
7088 | ||
dc009d92 | 7089 | KEXEC |
8b58be88 | 7090 | M: Eric Biederman <ebiederm@xmission.com> |
2f327dad | 7091 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 7092 | L: kexec@lists.infradead.org |
dc009d92 | 7093 | S: Maintained |
679655da | 7094 | F: include/linux/kexec.h |
c117ab84 | 7095 | F: include/uapi/linux/kexec.h |
10540a69 | 7096 | F: kernel/kexec* |
dc009d92 | 7097 | |
e971461f DH |
7098 | KEYS/KEYRINGS: |
7099 | M: David Howells <dhowells@redhat.com> | |
aa62efff | 7100 | L: keyrings@vger.kernel.org |
e971461f | 7101 | S: Maintained |
d410fa4e | 7102 | F: Documentation/security/keys.txt |
e971461f DH |
7103 | F: include/linux/key.h |
7104 | F: include/linux/key-type.h | |
75aeddd1 DH |
7105 | F: include/linux/keyctl.h |
7106 | F: include/uapi/linux/keyctl.h | |
e971461f DH |
7107 | F: include/keys/ |
7108 | F: security/keys/ | |
7109 | ||
7f3c68be | 7110 | KEYS-TRUSTED |
74dd744f MZ |
7111 | M: David Safford <safford@us.ibm.com> |
7112 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> | |
7f3c68be | 7113 | L: linux-security-module@vger.kernel.org |
aa62efff | 7114 | L: keyrings@vger.kernel.org |
7f3c68be | 7115 | S: Supported |
d410fa4e | 7116 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
7117 | F: include/keys/trusted-type.h |
7118 | F: security/keys/trusted.c | |
7119 | F: security/keys/trusted.h | |
7120 | ||
7121 | KEYS-ENCRYPTED | |
74dd744f MZ |
7122 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
7123 | M: David Safford <safford@us.ibm.com> | |
7f3c68be | 7124 | L: linux-security-module@vger.kernel.org |
aa62efff | 7125 | L: keyrings@vger.kernel.org |
7f3c68be | 7126 | S: Supported |
d410fa4e | 7127 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 7128 | F: include/keys/encrypted-type.h |
19c90aa6 | 7129 | F: security/keys/encrypted-keys/ |
7f3c68be | 7130 | |
5b778dad | 7131 | KGDB / KDB /debug_core |
8b58be88 | 7132 | M: Jason Wessel <jason.wessel@windriver.com> |
4063eb5f | 7133 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 | 7134 | L: kgdb-bugreport@lists.sourceforge.net |
9f273c24 | 7135 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git |
e3e2aaf7 | 7136 | S: Maintained |
679655da JP |
7137 | F: Documentation/DocBook/kgdb.tmpl |
7138 | F: drivers/misc/kgdbts.c | |
df621252 | 7139 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 7140 | F: include/linux/kdb.h |
679655da | 7141 | F: include/linux/kgdb.h |
4063eb5f | 7142 | F: kernel/debug/ |
e3e2aaf7 | 7143 | |
456db8cc | 7144 | KMEMCHECK |
8b58be88 | 7145 | M: Vegard Nossum <vegardno@ifi.uio.no> |
2ed1c525 | 7146 | M: Pekka Enberg <penberg@kernel.org> |
b9ce08c0 | 7147 | S: Maintained |
9c296b46 | 7148 | F: Documentation/dev-tools/kmemcheck.rst |
410d7a97 JP |
7149 | F: arch/x86/include/asm/kmemcheck.h |
7150 | F: arch/x86/mm/kmemcheck/ | |
7151 | F: include/linux/kmemcheck.h | |
7152 | F: mm/kmemcheck.c | |
b9ce08c0 | 7153 | |
c3bb4d24 | 7154 | KMEMLEAK |
8b58be88 | 7155 | M: Catalin Marinas <catalin.marinas@arm.com> |
c3bb4d24 | 7156 | S: Maintained |
ca90a7a3 | 7157 | F: Documentation/dev-tools/kmemleak.rst |
c3bb4d24 CM |
7158 | F: include/linux/kmemleak.h |
7159 | F: mm/kmemleak.c | |
7160 | F: mm/kmemleak-test.c | |
7161 | ||
89559a61 | 7162 | KPROBES |
a320817c | 7163 | M: Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com> |
8b58be88 JP |
7164 | M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> |
7165 | M: "David S. Miller" <davem@davemloft.net> | |
353def94 | 7166 | M: Masami Hiramatsu <mhiramat@kernel.org> |
89559a61 | 7167 | S: Maintained |
679655da JP |
7168 | F: Documentation/kprobes.txt |
7169 | F: include/linux/kprobes.h | |
7170 | F: kernel/kprobes.c | |
89559a61 | 7171 | |
70e84049 | 7172 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 7173 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
7174 | W: http://miguelojeda.es/auxdisplay.htm |
7175 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 7176 | S: Maintained |
679655da JP |
7177 | F: Documentation/auxdisplay/ks0108 |
7178 | F: drivers/auxdisplay/ks0108.c | |
7179 | F: include/linux/ks0108.h | |
70e84049 | 7180 | |
1b69c6d0 DA |
7181 | L3MDEV |
7182 | M: David Ahern <dsa@cumulusnetworks.com> | |
7183 | L: netdev@vger.kernel.org | |
7184 | S: Maintained | |
7185 | F: net/l3mdev | |
7186 | F: include/net/l3mdev.h | |
7187 | ||
9ca44355 | 7188 | LANTIQ MIPS ARCHITECTURE |
bdb40e8e | 7189 | M: John Crispin <john@phrozen.org> |
9ca44355 JC |
7190 | L: linux-mips@linux-mips.org |
7191 | S: Maintained | |
7192 | F: arch/mips/lantiq | |
7193 | ||
1da177e4 | 7194 | LAPB module |
1da177e4 | 7195 | L: linux-x25@vger.kernel.org |
bf9915cc | 7196 | S: Orphan |
679655da JP |
7197 | F: Documentation/networking/lapb-module.txt |
7198 | F: include/*/lapb.h | |
7199 | F: net/lapb/ | |
1da177e4 LT |
7200 | |
7201 | LASI 53c700 driver for PARISC | |
8b58be88 | 7202 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
7203 | L: linux-scsi@vger.kernel.org |
7204 | S: Maintained | |
679655da JP |
7205 | F: Documentation/scsi/53c700.txt |
7206 | F: drivers/scsi/53c700* | |
1da177e4 | 7207 | |
263de9b5 | 7208 | LED SUBSYSTEM |
8b58be88 | 7209 | M: Richard Purdie <rpurdie@rpsys.net> |
48b945a1 | 7210 | M: Jacek Anaszewski <j.anaszewski@samsung.com> |
dbfa048d | 7211 | M: Pavel Machek <pavel@ucw.cz> |
aa69cb8c | 7212 | L: linux-leds@vger.kernel.org |
b8926ba0 | 7213 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git |
263de9b5 | 7214 | S: Maintained |
85c90368 | 7215 | F: Documentation/devicetree/bindings/leds/ |
679655da JP |
7216 | F: drivers/leds/ |
7217 | F: include/linux/leds.h | |
263de9b5 | 7218 | |
b0461a44 | 7219 | LEGACY EEPROM DRIVER |
d8130624 | 7220 | M: Jean Delvare <jdelvare@suse.com> |
b0461a44 JD |
7221 | S: Maintained |
7222 | F: Documentation/misc-devices/eeprom | |
7223 | F: drivers/misc/eeprom/eeprom.c | |
7224 | ||
1da177e4 | 7225 | LEGO USB Tower driver |
8b58be88 | 7226 | M: Juergen Stuber <starblue@users.sourceforge.net> |
1da177e4 LT |
7227 | L: legousb-devel@lists.sourceforge.net |
7228 | W: http://legousb.sourceforge.net/ | |
7229 | S: Maintained | |
679655da | 7230 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 7231 | |
055616a8 MK |
7232 | LG2160 MEDIA DRIVER |
7233 | M: Michael Krufky <mkrufky@linuxtv.org> | |
7234 | L: linux-media@vger.kernel.org | |
a825eaec | 7235 | W: https://linuxtv.org |
055616a8 MK |
7236 | W: http://github.com/mkrufky |
7237 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7238 | T: git git://linuxtv.org/mkrufky/tuners.git | |
7239 | S: Maintained | |
7240 | F: drivers/media/dvb-frontends/lg2160.* | |
7241 | ||
6f0e7725 MK |
7242 | LGDT3305 MEDIA DRIVER |
7243 | M: Michael Krufky <mkrufky@linuxtv.org> | |
7244 | L: linux-media@vger.kernel.org | |
a825eaec | 7245 | W: https://linuxtv.org |
6f0e7725 MK |
7246 | W: http://github.com/mkrufky |
7247 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7248 | T: git git://linuxtv.org/mkrufky/tuners.git | |
7249 | S: Maintained | |
7250 | F: drivers/media/dvb-frontends/lgdt3305.* | |
7251 | ||
568a17ff | 7252 | LGUEST |
8b58be88 | 7253 | M: Rusty Russell <rusty@rustcorp.com.au> |
a4724ed6 | 7254 | L: lguest@lists.ozlabs.org |
568a17ff | 7255 | W: http://lguest.ozlabs.org/ |
72e91863 | 7256 | S: Odd Fixes |
070f420b | 7257 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
7258 | F: arch/x86/lguest/ |
7259 | F: drivers/lguest/ | |
7260 | F: include/linux/lguest*.h | |
070f420b | 7261 | F: tools/lguest/ |
568a17ff | 7262 | |
32ac7cb2 TH |
7263 | LIBATA SUBSYSTEM (Serial and Parallel ATA drivers) |
7264 | M: Tejun Heo <tj@kernel.org> | |
7265 | L: linux-ide@vger.kernel.org | |
7266 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
7267 | S: Maintained | |
7268 | F: drivers/ata/ | |
7269 | F: include/linux/ata.h | |
7270 | F: include/linux/libata.h | |
d2abf98e | 7271 | F: Documentation/devicetree/bindings/ata/ |
32ac7cb2 TH |
7272 | |
7273 | LIBATA PATA ARASAN COMPACT FLASH CONTROLLER | |
da89947b | 7274 | M: Viresh Kumar <vireshk@kernel.org> |
32ac7cb2 TH |
7275 | L: linux-ide@vger.kernel.org |
7276 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
7277 | S: Maintained | |
7278 | F: include/linux/pata_arasan_cf_data.h | |
7279 | F: drivers/ata/pata_arasan_cf.c | |
7280 | ||
c7fa056c BZ |
7281 | LIBATA PATA DRIVERS |
7282 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
7283 | M: Tejun Heo <tj@kernel.org> | |
7284 | L: linux-ide@vger.kernel.org | |
7285 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
7286 | S: Maintained | |
7287 | F: drivers/ata/pata_*.c | |
7288 | F: drivers/ata/ata_generic.c | |
7289 | ||
32ac7cb2 TH |
7290 | LIBATA SATA AHCI PLATFORM devices support |
7291 | M: Hans de Goede <hdegoede@redhat.com> | |
7292 | M: Tejun Heo <tj@kernel.org> | |
7293 | L: linux-ide@vger.kernel.org | |
7294 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
7295 | S: Maintained | |
7296 | F: drivers/ata/ahci_platform.c | |
7297 | F: drivers/ata/libahci_platform.c | |
7298 | F: include/linux/ahci_platform.h | |
7299 | ||
7300 | LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER | |
7301 | M: Mikael Pettersson <mikpelinux@gmail.com> | |
7302 | L: linux-ide@vger.kernel.org | |
7303 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
7304 | S: Maintained | |
7305 | F: drivers/ata/sata_promise.* | |
7306 | ||
1acd437c SL |
7307 | LIBLOCKDEP |
7308 | M: Sasha Levin <sasha.levin@oracle.com> | |
7309 | S: Maintained | |
7310 | F: tools/lib/lockdep/ | |
7311 | ||
bc30196f DW |
7312 | LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM |
7313 | M: Dan Williams <dan.j.williams@intel.com> | |
7314 | L: linux-nvdimm@lists.01.org | |
7315 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
9f273c24 | 7316 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git |
bc30196f DW |
7317 | S: Supported |
7318 | F: drivers/nvdimm/* | |
7319 | F: include/linux/nd.h | |
7320 | F: include/linux/libnvdimm.h | |
7321 | F: include/uapi/linux/ndctl.h | |
7322 | ||
7323 | LIBNVDIMM BLK: MMIO-APERTURE DRIVER | |
7324 | M: Ross Zwisler <ross.zwisler@linux.intel.com> | |
7325 | L: linux-nvdimm@lists.01.org | |
7326 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
7327 | S: Supported | |
7328 | F: drivers/nvdimm/blk.c | |
7329 | F: drivers/nvdimm/region_devs.c | |
7330 | F: drivers/acpi/nfit* | |
7331 | ||
7332 | LIBNVDIMM BTT: BLOCK TRANSLATION TABLE | |
7333 | M: Vishal Verma <vishal.l.verma@intel.com> | |
7334 | L: linux-nvdimm@lists.01.org | |
7335 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
7336 | S: Supported | |
7337 | F: drivers/nvdimm/btt* | |
7338 | ||
7339 | LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER | |
7340 | M: Ross Zwisler <ross.zwisler@linux.intel.com> | |
7341 | L: linux-nvdimm@lists.01.org | |
7342 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
7343 | S: Supported | |
7344 | F: drivers/nvdimm/pmem.c | |
b864bc17 | 7345 | F: include/linux/pmem.h |
40603526 | 7346 | F: arch/*/include/asm/pmem.h |
bc30196f | 7347 | |
cd9e9808 MB |
7348 | LIGHTNVM PLATFORM SUPPORT |
7349 | M: Matias Bjorling <mb@lightnvm.io> | |
7350 | W: http://github/OpenChannelSSD | |
4ead1a25 | 7351 | L: linux-block@vger.kernel.org |
cd9e9808 MB |
7352 | S: Maintained |
7353 | F: drivers/lightnvm/ | |
7354 | F: include/linux/lightnvm.h | |
7355 | F: include/uapi/linux/lightnvm.h | |
7356 | ||
852bb9f5 | 7357 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
7358 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
7359 | M: Paul Mackerras <paulus@samba.org> | |
ea668936 | 7360 | M: Michael Ellerman <mpe@ellerman.id.au> |
ad654f25 | 7361 | W: https://github.com/linuxppc/linux/wiki |
a4724ed6 | 7362 | L: linuxppc-dev@lists.ozlabs.org |
8a6e2535 | 7363 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
9958084a | 7364 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git |
1da177e4 | 7365 | S: Supported |
11c34c7d JP |
7366 | F: Documentation/powerpc/ |
7367 | F: arch/powerpc/ | |
ef69b03d ME |
7368 | F: drivers/char/tpm/tpm_ibmvtpm* |
7369 | F: drivers/crypto/nx/ | |
7370 | F: drivers/crypto/vmx/ | |
7371 | F: drivers/net/ethernet/ibm/ibmveth.* | |
7372 | F: drivers/net/ethernet/ibm/ibmvnic.* | |
66725152 | 7373 | F: drivers/pci/hotplug/pnv_php.c |
ef69b03d ME |
7374 | F: drivers/pci/hotplug/rpa* |
7375 | F: drivers/scsi/ibmvscsi/ | |
ad654f25 | 7376 | F: tools/testing/selftests/powerpc |
ef69b03d ME |
7377 | N: opal |
7378 | N: /pmac | |
7379 | N: powermac | |
7380 | N: powernv | |
7381 | N: [^a-z0-9]ps3 | |
7382 | N: pseries | |
1da177e4 LT |
7383 | |
7384 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 7385 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
1da177e4 | 7386 | W: http://www.penguinppc.org/ |
a4724ed6 | 7387 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 7388 | S: Maintained |
11c34c7d JP |
7389 | F: arch/powerpc/platforms/powermac/ |
7390 | F: drivers/macintosh/ | |
1da177e4 | 7391 | |
77a76369 | 7392 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 7393 | M: Anatolij Gustschin <agust@denx.de> |
a4724ed6 | 7394 | L: linuxppc-dev@lists.ozlabs.org |
cba5b1c6 | 7395 | T: git git://git.denx.de/linux-denx-agust.git |
1da177e4 | 7396 | S: Maintained |
11c34c7d JP |
7397 | F: arch/powerpc/platforms/512x/ |
7398 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
7399 | |
7400 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
49e7d9df | 7401 | M: Alistair Popple <alistair@popple.id.au> |
8b58be88 | 7402 | M: Matt Porter <mporter@kernel.crashing.org> |
1da177e4 | 7403 | W: http://www.penguinppc.org/ |
a4724ed6 | 7404 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 7405 | S: Maintained |
11c34c7d JP |
7406 | F: arch/powerpc/platforms/40x/ |
7407 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 7408 | |
260c02a9 | 7409 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
a4724ed6 | 7410 | L: linuxppc-dev@lists.ozlabs.org |
cdeb8994 | 7411 | S: Orphan |
11c34c7d JP |
7412 | F: arch/powerpc/*/*virtex* |
7413 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 7414 | |
e93adf1e | 7415 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 | 7416 | M: Vitaly Bordug <vitb@kernel.crashing.org> |
e93adf1e | 7417 | W: http://www.penguinppc.org/ |
a4724ed6 | 7418 | L: linuxppc-dev@lists.ozlabs.org |
e93adf1e | 7419 | S: Maintained |
a2b1f7c8 | 7420 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 7421 | |
1da177e4 | 7422 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
44451d4d | 7423 | M: Scott Wood <oss@buserror.net> |
8b58be88 | 7424 | M: Kumar Gala <galak@kernel.crashing.org> |
ce00f85c | 7425 | W: http://www.penguinppc.org/ |
a4724ed6 | 7426 | L: linuxppc-dev@lists.ozlabs.org |
a1e0fb42 | 7427 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git |
ce00f85c | 7428 | S: Maintained |
11c34c7d | 7429 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 7430 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 7431 | |
ab06ff3a | 7432 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
a4724ed6 | 7433 | L: linuxppc-dev@lists.ozlabs.org |
56a5b8da | 7434 | S: Orphan |
11c34c7d JP |
7435 | F: arch/powerpc/platforms/pasemi/ |
7436 | F: drivers/*/*pasemi* | |
7437 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 7438 | |
1da177e4 | 7439 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 7440 | M: Chris Wright <chrisw@sous-sol.org> |
1a4520be | 7441 | L: linux-security-module@vger.kernel.org |
1da177e4 LT |
7442 | S: Supported |
7443 | ||
a23ce6da HW |
7444 | LIS3LV02D ACCELEROMETER DRIVER |
7445 | M: Eric Piel <eric.piel@tremplin-utc.net> | |
7446 | S: Maintained | |
ff606677 JD |
7447 | F: Documentation/misc-devices/lis3lv02d |
7448 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 7449 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 7450 | |
b700e7f0 SJ |
7451 | LIVE PATCHING |
7452 | M: Josh Poimboeuf <jpoimboe@redhat.com> | |
06e1c170 | 7453 | M: Jessica Yu <jeyu@redhat.com> |
e5f6450c | 7454 | M: Jiri Kosina <jikos@kernel.org> |
06e1c170 JP |
7455 | M: Miroslav Benes <mbenes@suse.cz> |
7456 | R: Petr Mladek <pmladek@suse.com> | |
b700e7f0 SJ |
7457 | S: Maintained |
7458 | F: kernel/livepatch/ | |
7459 | F: include/linux/livepatch.h | |
7460 | F: arch/x86/include/asm/livepatch.h | |
7461 | F: arch/x86/kernel/livepatch.c | |
5e4e3844 | 7462 | F: Documentation/livepatch/ |
b700e7f0 | 7463 | F: Documentation/ABI/testing/sysfs-kernel-livepatch |
13d1cf7e | 7464 | F: samples/livepatch/ |
b700e7f0 | 7465 | L: live-patching@vger.kernel.org |
74d50da3 | 7466 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git |
b700e7f0 | 7467 | |
ea861d73 KC |
7468 | LINUX KERNEL DUMP TEST MODULE (LKDTM) |
7469 | M: Kees Cook <keescook@chromium.org> | |
7470 | S: Maintained | |
426f3a53 | 7471 | F: drivers/misc/lkdtm* |
ea861d73 | 7472 | |
e2d1d6c0 | 7473 | LLC (802.2) |
8b58be88 | 7474 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 | 7475 | S: Maintained |
679655da | 7476 | F: include/linux/llc.h |
c117ab84 | 7477 | F: include/uapi/linux/llc.h |
679655da JP |
7478 | F: include/net/llc* |
7479 | F: net/llc/ | |
e2d1d6c0 | 7480 | |
4e233cbe AD |
7481 | LM73 HARDWARE MONITOR DRIVER |
7482 | M: Guillaume Ligneul <guillaume.ligneul@gmail.com> | |
968ce1b1 | 7483 | L: linux-hwmon@vger.kernel.org |
4e233cbe AD |
7484 | S: Maintained |
7485 | F: drivers/hwmon/lm73.c | |
7486 | ||
156e2d1a | 7487 | LM78 HARDWARE MONITOR DRIVER |
d8130624 | 7488 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 7489 | L: linux-hwmon@vger.kernel.org |
156e2d1a JD |
7490 | S: Maintained |
7491 | F: Documentation/hwmon/lm78 | |
7492 | F: drivers/hwmon/lm78.c | |
7493 | ||
1da177e4 | 7494 | LM83 HARDWARE MONITOR DRIVER |
d8130624 | 7495 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 7496 | L: linux-hwmon@vger.kernel.org |
1da177e4 | 7497 | S: Maintained |
679655da JP |
7498 | F: Documentation/hwmon/lm83 |
7499 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
7500 | |
7501 | LM90 HARDWARE MONITOR DRIVER | |
d8130624 | 7502 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 7503 | L: linux-hwmon@vger.kernel.org |
1da177e4 | 7504 | S: Maintained |
679655da | 7505 | F: Documentation/hwmon/lm90 |
aae7bce4 | 7506 | F: Documentation/devicetree/bindings/hwmon/lm90.txt |
679655da | 7507 | F: drivers/hwmon/lm90.c |
1da177e4 | 7508 | |
917cc4e6 GR |
7509 | LM95234 HARDWARE MONITOR DRIVER |
7510 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7511 | L: linux-hwmon@vger.kernel.org |
917cc4e6 GR |
7512 | S: Maintained |
7513 | F: Documentation/hwmon/lm95234 | |
7514 | F: drivers/hwmon/lm95234.c | |
7515 | ||
68620bdd MP |
7516 | LME2510 MEDIA DRIVER |
7517 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
7518 | L: linux-media@vger.kernel.org | |
a825eaec | 7519 | W: https://linuxtv.org |
68620bdd MP |
7520 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
7521 | S: Maintained | |
7522 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
7523 | ||
d4c3be70 | 7524 | LOCKING PRIMITIVES |
8b58be88 JP |
7525 | M: Peter Zijlstra <peterz@infradead.org> |
7526 | M: Ingo Molnar <mingo@redhat.com> | |
981c3a4f | 7527 | L: linux-kernel@vger.kernel.org |
d4c3be70 | 7528 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core |
512e67f9 | 7529 | S: Maintained |
d4c3be70 | 7530 | F: Documentation/locking/ |
679655da | 7531 | F: include/linux/lockdep.h |
d4c3be70 IM |
7532 | F: include/linux/spinlock*.h |
7533 | F: arch/*/include/asm/spinlock*.h | |
7534 | F: include/linux/rwlock*.h | |
7535 | F: include/linux/mutex*.h | |
7536 | F: arch/*/include/asm/mutex*.h | |
7537 | F: include/linux/rwsem*.h | |
7538 | F: arch/*/include/asm/rwsem.h | |
7539 | F: include/linux/seqlock.h | |
7540 | F: lib/locking*.[ch] | |
7486d6da | 7541 | F: kernel/locking/ |
512e67f9 | 7542 | |
dde33348 | 7543 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 7544 | M: "Richard Russon (FlatCap)" <ldm@flatcap.org> |
dde33348 AA |
7545 | L: linux-ntfs-dev@lists.sourceforge.net |
7546 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 7547 | S: Maintained |
679655da | 7548 | F: Documentation/ldm.txt |
20d16fef | 7549 | F: block/partitions/ldm.* |
1da177e4 | 7550 | |
ef6ada3d JE |
7551 | LogFS |
7552 | M: Joern Engel <joern@logfs.org> | |
756ccb3c | 7553 | M: Prasad Joshi <prasadjoshi.linux@gmail.com> |
ef6ada3d JE |
7554 | L: logfs@logfs.org |
7555 | W: logfs.org | |
7556 | S: Maintained | |
7557 | F: fs/logfs/ | |
7558 | ||
c87e34ef | 7559 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
9495e835 SS |
7560 | M: Sathya Prakash <sathya.prakash@broadcom.com> |
7561 | M: Chaitra P B <chaitra.basappa@broadcom.com> | |
7562 | M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com> | |
7563 | L: MPT-FusionLinux.pdl@broadcom.com | |
c87e34ef | 7564 | L: linux-scsi@vger.kernel.org |
9495e835 | 7565 | W: http://www.avagotech.com/support/ |
c87e34ef | 7566 | S: Supported |
679655da | 7567 | F: drivers/message/fusion/ |
500c152a | 7568 | F: drivers/scsi/mpt2sas/ |
7569 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 7570 | |
1da177e4 | 7571 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 7572 | M: Matthew Wilcox <matthew@wil.cx> |
1da177e4 LT |
7573 | L: linux-scsi@vger.kernel.org |
7574 | S: Maintained | |
679655da | 7575 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 7576 | |
e5f5c99a GR |
7577 | LTC4261 HARDWARE MONITOR DRIVER |
7578 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7579 | L: linux-hwmon@vger.kernel.org |
e5f5c99a GR |
7580 | S: Maintained |
7581 | F: Documentation/hwmon/ltc4261 | |
7582 | F: drivers/hwmon/ltc4261.c | |
7583 | ||
81365c31 | 7584 | LTP (Linux Test Project) |
28b8e8d4 | 7585 | M: Mike Frysinger <vapier@gentoo.org> |
7d1ae8a8 | 7586 | M: Cyril Hrubis <chrubis@suse.cz> |
0526109a | 7587 | M: Wanlong Gao <wanlong.gao@gmail.com> |
f2eb7f6f CH |
7588 | M: Jan Stancek <jstancek@redhat.com> |
7589 | M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com> | |
7590 | M: Alexey Kodanev <alexey.kodanev@oracle.com> | |
0526109a | 7591 | L: ltp@lists.linux.it (subscribers-only) |
f2eb7f6f | 7592 | W: http://linux-test-project.github.io/ |
7d1ae8a8 | 7593 | T: git git://github.com/linux-test-project/ltp.git |
81365c31 MF |
7594 | S: Maintained |
7595 | ||
c12a54b3 | 7596 | M32R ARCHITECTURE |
c12a54b3 | 7597 | W: http://www.linux-m32r.org/ |
b4174867 | 7598 | S: Orphan |
679655da | 7599 | F: arch/m32r/ |
c12a54b3 | 7600 | |
1da177e4 | 7601 | M68K ARCHITECTURE |
8b58be88 | 7602 | M: Geert Uytterhoeven <geert@linux-m68k.org> |
1da177e4 LT |
7603 | L: linux-m68k@lists.linux-m68k.org |
7604 | W: http://www.linux-m68k.org/ | |
54e5881d | 7605 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 7606 | S: Maintained |
679655da | 7607 | F: arch/m68k/ |
9db35182 | 7608 | F: drivers/zorro/ |
1da177e4 LT |
7609 | |
7610 | M68K ON APPLE MACINTOSH | |
8b58be88 | 7611 | M: Joshua Thompson <funaho@jurai.org> |
1da177e4 | 7612 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 7613 | L: linux-m68k@lists.linux-m68k.org |
1da177e4 | 7614 | S: Maintained |
9db35182 | 7615 | F: arch/m68k/mac/ |
1da177e4 LT |
7616 | |
7617 | M68K ON HP9000/300 | |
8b58be88 | 7618 | M: Philip Blundell <philb@gnu.org> |
1da177e4 LT |
7619 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
7620 | S: Maintained | |
679655da | 7621 | F: arch/m68k/hp300/ |
1da177e4 | 7622 | |
74425546 AP |
7623 | M88DS3103 MEDIA DRIVER |
7624 | M: Antti Palosaari <crope@iki.fi> | |
7625 | L: linux-media@vger.kernel.org | |
a825eaec | 7626 | W: https://linuxtv.org |
74425546 AP |
7627 | W: http://palosaari.fi/linux/ |
7628 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7629 | T: git git://linuxtv.org/anttip/media_tree.git | |
7630 | S: Maintained | |
7631 | F: drivers/media/dvb-frontends/m88ds3103* | |
7632 | ||
68620bdd MP |
7633 | M88RS2000 MEDIA DRIVER |
7634 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
7635 | L: linux-media@vger.kernel.org | |
a825eaec | 7636 | W: https://linuxtv.org |
68620bdd MP |
7637 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
7638 | S: Maintained | |
7639 | F: drivers/media/dvb-frontends/m88rs2000* | |
7640 | ||
07a092fa | 7641 | MA901 MASTERKIT USB FM RADIO DRIVER |
b75f0050 JP |
7642 | M: Alexey Klimov <klimov.linux@gmail.com> |
7643 | L: linux-media@vger.kernel.org | |
7644 | T: git git://linuxtv.org/media_tree.git | |
7645 | S: Maintained | |
7646 | F: drivers/media/radio/radio-ma901.c | |
07a092fa | 7647 | |
64a327a7 | 7648 | MAC80211 |
8b58be88 | 7649 | M: Johannes Berg <johannes@sipsolutions.net> |
64a327a7 | 7650 | L: linux-wireless@vger.kernel.org |
491b26b4 | 7651 | W: http://wireless.kernel.org/ |
ce466579 JB |
7652 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
7653 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 7654 | S: Maintained |
679655da JP |
7655 | F: Documentation/networking/mac80211-injection.txt |
7656 | F: include/net/mac80211.h | |
7657 | F: net/mac80211/ | |
2af8c4dc | 7658 | F: drivers/net/wireless/mac80211_hwsim.[ch] |
64a327a7 | 7659 | |
b863ceb7 | 7660 | MACVLAN DRIVER |
8b58be88 | 7661 | M: Patrick McHardy <kaber@trash.net> |
b863ceb7 PM |
7662 | L: netdev@vger.kernel.org |
7663 | S: Maintained | |
679655da JP |
7664 | F: drivers/net/macvlan.c |
7665 | F: include/linux/if_macvlan.h | |
b863ceb7 | 7666 | |
2b6d83e2 JB |
7667 | MAILBOX API |
7668 | M: Jassi Brar <jassisinghbrar@gmail.com> | |
7669 | L: linux-kernel@vger.kernel.org | |
7670 | S: Maintained | |
7671 | F: drivers/mailbox/ | |
7672 | F: include/linux/mailbox_client.h | |
7673 | F: include/linux/mailbox_controller.h | |
7674 | ||
faf1668c | 7675 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 7676 | M: Michael Kerrisk <mtk.manpages@gmail.com> |
795fb7e7 | 7677 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 7678 | L: linux-man@vger.kernel.org |
1b53dc74 | 7679 | S: Maintained |
faf1668c | 7680 | |
0d3cd4b6 VD |
7681 | MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER |
7682 | M: Andrew Lunn <andrew@lunn.ch> | |
7683 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> | |
b26bff6e | 7684 | L: netdev@vger.kernel.org |
0d3cd4b6 VD |
7685 | S: Maintained |
7686 | F: drivers/net/dsa/mv88e6xxx/ | |
b26bff6e | 7687 | F: Documentation/devicetree/bindings/net/dsa/marvell.txt |
0d3cd4b6 | 7688 | |
8427defd | 7689 | MARVELL ARMADA DRM SUPPORT |
54176cc6 | 7690 | M: Russell King <rmk+kernel@armlinux.org.uk> |
8427defd RK |
7691 | S: Maintained |
7692 | F: drivers/gpu/drm/armada/ | |
4418833e EV |
7693 | F: include/uapi/drm/armada_drm.h |
7694 | F: Documentation/devicetree/bindings/display/armada/ | |
8427defd | 7695 | |
c4d007bc TP |
7696 | MARVELL CRYPTO DRIVER |
7697 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
7698 | M: Arnaud Ebalard <arno@natisbad.org> | |
7699 | F: drivers/crypto/marvell/ | |
7700 | S: Maintained | |
7701 | L: linux-crypto@vger.kernel.org | |
7702 | ||
44c14c1d | 7703 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
7704 | M: Mirko Lindner <mlindner@marvell.com> | |
adbbf69d | 7705 | M: Stephen Hemminger <stephen@networkplumber.org> |
44c14c1d | 7706 | L: netdev@vger.kernel.org |
7707 | S: Maintained | |
7708 | F: drivers/net/ethernet/marvell/sk* | |
7709 | ||
74cda169 | 7710 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 7711 | L: libertas-dev@lists.infradead.org |
8ac3e99e | 7712 | S: Orphan |
f988d640 | 7713 | F: drivers/net/wireless/marvell/libertas/ |
74cda169 | 7714 | |
b60d6975 | 7715 | MARVELL MV643XX ETHERNET DRIVER |
4e3faf88 | 7716 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
979b6c13 | 7717 | L: netdev@vger.kernel.org |
f5ca8502 | 7718 | S: Maintained |
527a6266 | 7719 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 7720 | F: include/linux/mv643xx.h |
1da177e4 | 7721 | |
370b8ed9 TP |
7722 | MARVELL MVNETA ETHERNET DRIVER |
7723 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
7724 | L: netdev@vger.kernel.org | |
7725 | S: Maintained | |
7726 | F: drivers/net/ethernet/marvell/mvneta.* | |
7727 | ||
fcad584d | 7728 | MARVELL MWIFIEX WIRELESS DRIVER |
b9d31704 | 7729 | M: Amitkumar Karwar <akarwar@marvell.com> |
550795fc | 7730 | M: Nishant Sarmukadam <nishants@marvell.com> |
fcad584d BZ |
7731 | L: linux-wireless@vger.kernel.org |
7732 | S: Maintained | |
277b024e | 7733 | F: drivers/net/wireless/marvell/mwifiex/ |
fcad584d | 7734 | |
a2c3f656 | 7735 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 7736 | M: Lennert Buytenhek <buytenh@wantstofly.org> |
a2c3f656 | 7737 | L: linux-wireless@vger.kernel.org |
16345910 | 7738 | S: Odd Fixes |
de60f1dc | 7739 | F: drivers/net/wireless/marvell/mwl8k.c |
a2c3f656 | 7740 | |
2a69567b | 7741 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 7742 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 7743 | S: Odd Fixes |
1fa7e547 | 7744 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 7745 | |
1da177e4 | 7746 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 7747 | L: linux-fbdev@vger.kernel.org |
52653199 | 7748 | S: Orphan |
8a61f013 | 7749 | F: drivers/video/fbdev/matrox/matroxfb_* |
c117ab84 | 7750 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 7751 | |
ca462085 GR |
7752 | MAX16065 HARDWARE MONITOR DRIVER |
7753 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7754 | L: linux-hwmon@vger.kernel.org |
ca462085 GR |
7755 | S: Maintained |
7756 | F: Documentation/hwmon/max16065 | |
7757 | F: drivers/hwmon/max16065.c | |
7758 | ||
1f61cab8 GR |
7759 | MAX20751 HARDWARE MONITOR DRIVER |
7760 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7761 | L: linux-hwmon@vger.kernel.org |
1f61cab8 GR |
7762 | S: Maintained |
7763 | F: Documentation/hwmon/max20751 | |
7764 | F: drivers/hwmon/max20751.c | |
7765 | ||
d20620de | 7766 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
968ce1b1 | 7767 | L: linux-hwmon@vger.kernel.org |
34924b23 | 7768 | S: Orphan |
679655da JP |
7769 | F: Documentation/hwmon/max6650 |
7770 | F: drivers/hwmon/max6650.c | |
d20620de | 7771 | |
e89ab51f GR |
7772 | MAX6697 HARDWARE MONITOR DRIVER |
7773 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7774 | L: linux-hwmon@vger.kernel.org |
e89ab51f GR |
7775 | S: Maintained |
7776 | F: Documentation/hwmon/max6697 | |
7777 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
7778 | F: drivers/hwmon/max6697.c | |
7779 | F: include/linux/platform_data/max6697.h | |
7780 | ||
3b2af7f7 PR |
7781 | MAX9860 MONO AUDIO VOICE CODEC DRIVER |
7782 | M: Peter Rosin <peda@axentia.se> | |
7783 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
7784 | S: Maintained | |
7785 | F: Documentation/devicetree/bindings/sound/max9860.txt | |
7786 | F: sound/soc/codecs/max9860.* | |
7787 | ||
f8f847b5 | 7788 | MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS |
326dce07 KK |
7789 | M: Krzysztof Kozlowski <krzk@kernel.org> |
7790 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
f8f847b5 KK |
7791 | L: linux-pm@vger.kernel.org |
7792 | S: Supported | |
8c0984e5 SR |
7793 | F: drivers/power/supply/max14577_charger.c |
7794 | F: drivers/power/supply/max77693_charger.c | |
f8f847b5 | 7795 | |
3811405e JMC |
7796 | MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS |
7797 | M: Javier Martinez Canillas <javier@osg.samsung.com> | |
7798 | L: linux-kernel@vger.kernel.org | |
7799 | S: Supported | |
96173cc6 | 7800 | F: drivers/*/*max77802*.c |
3811405e JMC |
7801 | F: Documentation/devicetree/bindings/*/*max77802.txt |
7802 | F: include/dt-bindings/*/*max77802.h | |
7803 | ||
befeb596 KK |
7804 | MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS |
7805 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
326dce07 KK |
7806 | M: Krzysztof Kozlowski <krzk@kernel.org> |
7807 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
befeb596 KK |
7808 | L: linux-kernel@vger.kernel.org |
7809 | S: Supported | |
86cf635a | 7810 | F: drivers/*/max14577*.c |
0998a436 | 7811 | F: drivers/*/max77686*.c |
86cf635a | 7812 | F: drivers/*/max77693*.c |
befeb596 KK |
7813 | F: drivers/extcon/extcon-max14577.c |
7814 | F: drivers/extcon/extcon-max77693.c | |
7815 | F: drivers/rtc/rtc-max77686.c | |
7816 | F: drivers/clk/clk-max77686.c | |
7817 | F: Documentation/devicetree/bindings/mfd/max14577.txt | |
377452f4 | 7818 | F: Documentation/devicetree/bindings/*/max77686.txt |
befeb596 KK |
7819 | F: Documentation/devicetree/bindings/mfd/max77693.txt |
7820 | F: Documentation/devicetree/bindings/clock/maxim,max77686.txt | |
7821 | F: include/linux/mfd/max14577*.h | |
7822 | F: include/linux/mfd/max77686*.h | |
7823 | F: include/linux/mfd/max77693*.h | |
7824 | ||
9be3c9a5 HV |
7825 | MAXIRADIO FM RADIO RECEIVER DRIVER |
7826 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7827 | L: linux-media@vger.kernel.org | |
7828 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 7829 | W: https://linuxtv.org |
9be3c9a5 HV |
7830 | S: Maintained |
7831 | F: drivers/media/radio/radio-maxiradio* | |
7832 | ||
c05dc2cc PR |
7833 | MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER |
7834 | M: Peter Rosin <peda@axentia.se> | |
7835 | L: linux-iio@vger.kernel.org | |
7836 | S: Maintained | |
2704e300 | 7837 | F: Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531 |
c05dc2cc PR |
7838 | F: drivers/iio/potentiometer/mcp4531.c |
7839 | ||
3b8df5fd WBG |
7840 | MEASUREMENT COMPUTING CIO-DAC IIO DRIVER |
7841 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
7842 | L: linux-iio@vger.kernel.org | |
7843 | S: Maintained | |
7844 | F: drivers/iio/dac/cio-dac.c | |
7845 | ||
7b49235e LP |
7846 | MEDIA DRIVERS FOR RENESAS - FCP |
7847 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
7848 | L: linux-media@vger.kernel.org | |
7849 | L: linux-renesas-soc@vger.kernel.org | |
7850 | T: git git://linuxtv.org/media_tree.git | |
7851 | S: Supported | |
7852 | F: Documentation/devicetree/bindings/media/renesas,fcp.txt | |
7853 | F: drivers/media/platform/rcar-fcp.c | |
7854 | F: include/media/rcar-fcp.h | |
7855 | ||
474cde66 NS |
7856 | MEDIA DRIVERS FOR RENESAS - VIN |
7857 | M: Niklas Söderlund <niklas.soderlund@ragnatech.se> | |
7858 | L: linux-media@vger.kernel.org | |
7859 | L: linux-renesas-soc@vger.kernel.org | |
7860 | T: git git://linuxtv.org/media_tree.git | |
7861 | S: Supported | |
7862 | F: Documentation/devicetree/bindings/media/rcar_vin.txt | |
7863 | F: drivers/media/platform/rcar-vin/ | |
7864 | ||
6f32a8c9 LP |
7865 | MEDIA DRIVERS FOR RENESAS - VSP1 |
7866 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
7867 | L: linux-media@vger.kernel.org | |
4a121096 | 7868 | L: linux-renesas-soc@vger.kernel.org |
6f32a8c9 LP |
7869 | T: git git://linuxtv.org/media_tree.git |
7870 | S: Supported | |
7871 | F: Documentation/devicetree/bindings/media/renesas,vsp1.txt | |
7872 | F: drivers/media/platform/vsp1/ | |
7873 | ||
fae2080a AO |
7874 | MEDIA DRIVERS FOR HELENE |
7875 | M: Abylay Ospan <aospan@netup.ru> | |
7876 | L: linux-media@vger.kernel.org | |
7877 | W: https://linuxtv.org | |
7878 | W: http://netup.tv/ | |
7879 | T: git git://linuxtv.org/media_tree.git | |
7880 | S: Supported | |
7881 | F: drivers/media/dvb-frontends/helene* | |
7882 | ||
dacf9ce8 KS |
7883 | MEDIA DRIVERS FOR ASCOT2E |
7884 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 7885 | M: Abylay Ospan <aospan@netup.ru> |
dacf9ce8 | 7886 | L: linux-media@vger.kernel.org |
a825eaec | 7887 | W: https://linuxtv.org |
dacf9ce8 KS |
7888 | W: http://netup.tv/ |
7889 | T: git git://linuxtv.org/media_tree.git | |
7890 | S: Supported | |
7891 | F: drivers/media/dvb-frontends/ascot2e* | |
7892 | ||
a6dc60ff KS |
7893 | MEDIA DRIVERS FOR CXD2841ER |
7894 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 7895 | M: Abylay Ospan <aospan@netup.ru> |
a6dc60ff | 7896 | L: linux-media@vger.kernel.org |
a825eaec | 7897 | W: https://linuxtv.org |
a6dc60ff KS |
7898 | W: http://netup.tv/ |
7899 | T: git git://linuxtv.org/media_tree.git | |
7900 | S: Supported | |
7901 | F: drivers/media/dvb-frontends/cxd2841er* | |
7902 | ||
a5d32b35 KS |
7903 | MEDIA DRIVERS FOR HORUS3A |
7904 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 7905 | M: Abylay Ospan <aospan@netup.ru> |
a5d32b35 | 7906 | L: linux-media@vger.kernel.org |
a825eaec | 7907 | W: https://linuxtv.org |
a5d32b35 KS |
7908 | W: http://netup.tv/ |
7909 | T: git git://linuxtv.org/media_tree.git | |
7910 | S: Supported | |
7911 | F: drivers/media/dvb-frontends/horus3a* | |
7912 | ||
e025273b KS |
7913 | MEDIA DRIVERS FOR LNBH25 |
7914 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 7915 | M: Abylay Ospan <aospan@netup.ru> |
e025273b | 7916 | L: linux-media@vger.kernel.org |
a825eaec | 7917 | W: https://linuxtv.org |
e025273b KS |
7918 | W: http://netup.tv/ |
7919 | T: git git://linuxtv.org/media_tree.git | |
7920 | S: Supported | |
7921 | F: drivers/media/dvb-frontends/lnbh25* | |
7922 | ||
52b1eaf4 KS |
7923 | MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices |
7924 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 7925 | M: Abylay Ospan <aospan@netup.ru> |
52b1eaf4 | 7926 | L: linux-media@vger.kernel.org |
a825eaec | 7927 | W: https://linuxtv.org |
52b1eaf4 KS |
7928 | W: http://netup.tv/ |
7929 | T: git git://linuxtv.org/media_tree.git | |
7930 | S: Supported | |
7931 | F: drivers/media/pci/netup_unidvb/* | |
7932 | ||
127c49ae | 7933 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
5dc8a864 MCC |
7934 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
7935 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
127c49ae JP |
7936 | P: LinuxTV.org Project |
7937 | L: linux-media@vger.kernel.org | |
a825eaec | 7938 | W: https://linuxtv.org |
8a6e2535 | 7939 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 7940 | T: git git://linuxtv.org/media_tree.git |
127c49ae | 7941 | S: Maintained |
618cd932 | 7942 | F: Documentation/media/ |
127c49ae | 7943 | F: drivers/media/ |
ffe06198 | 7944 | F: drivers/staging/media/ |
eb4b0ec7 | 7945 | F: include/linux/platform_data/media/ |
127c49ae | 7946 | F: include/media/ |
6c0f0359 MCC |
7947 | F: include/uapi/linux/dvb/ |
7948 | F: include/uapi/linux/videodev2.h | |
7949 | F: include/uapi/linux/media.h | |
7950 | F: include/uapi/linux/v4l2-* | |
7951 | F: include/uapi/linux/meye.h | |
7952 | F: include/uapi/linux/ivtv* | |
7953 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 7954 | |
0c272fc9 JC |
7955 | MEDIATEK ETHERNET DRIVER |
7956 | M: Felix Fietkau <nbd@openwrt.org> | |
7957 | M: John Crispin <blogic@openwrt.org> | |
7958 | L: netdev@vger.kernel.org | |
7959 | S: Maintained | |
7960 | F: drivers/net/ethernet/mediatek/ | |
7961 | ||
c869f77d JK |
7962 | MEDIATEK MT7601U WIRELESS LAN DRIVER |
7963 | M: Jakub Kicinski <kubakici@wp.pl> | |
7964 | L: linux-wireless@vger.kernel.org | |
7965 | S: Maintained | |
7966 | F: drivers/net/wireless/mediatek/mt7601u/ | |
7967 | ||
e399065b | 7968 | MEGARAID SCSI/SAS DRIVERS |
295dde2f KD |
7969 | M: Kashyap Desai <kashyap.desai@broadcom.com> |
7970 | M: Sumit Saxena <sumit.saxena@broadcom.com> | |
7971 | M: Shivasharan S <shivasharan.srikanteshwara@broadcom.com> | |
7972 | L: megaraidlinux.pdl@broadcom.com | |
baaea1dc | 7973 | L: linux-scsi@vger.kernel.org |
295dde2f | 7974 | W: http://www.avagotech.com/support/ |
ce00f85c | 7975 | S: Maintained |
679655da JP |
7976 | F: Documentation/scsi/megaraid.txt |
7977 | F: drivers/scsi/megaraid.* | |
7978 | F: drivers/scsi/megaraid/ | |
757e0108 | 7979 | |
ff43f433 SJ |
7980 | MELFAS MIP4 TOUCHSCREEN DRIVER |
7981 | M: Sangwon Jee <jeesw@melfas.com> | |
7982 | W: http://www.melfas.com | |
7983 | S: Supported | |
7984 | F: drivers/input/touchscreen/melfas_mip4.c | |
7985 | F: Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt | |
7986 | ||
2c46c9d5 | 7987 | MELLANOX ETHERNET DRIVER (mlx4_en) |
c40e4096 | 7988 | M: Tariq Toukan <tariqt@mellanox.com> |
b75f0050 | 7989 | L: netdev@vger.kernel.org |
2c46c9d5 AV |
7990 | S: Supported |
7991 | W: http://www.mellanox.com | |
7992 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
7993 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
7994 | ||
e7523a49 OG |
7995 | MELLANOX ETHERNET DRIVER (mlx5e) |
7996 | M: Saeed Mahameed <saeedm@mellanox.com> | |
7997 | L: netdev@vger.kernel.org | |
7998 | S: Supported | |
7999 | W: http://www.mellanox.com | |
8000 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
8001 | F: drivers/net/ethernet/mellanox/mlx5/core/en_* | |
8002 | ||
93c1edb2 JP |
8003 | MELLANOX ETHERNET SWITCH DRIVERS |
8004 | M: Jiri Pirko <jiri@mellanox.com> | |
8005 | M: Ido Schimmel <idosch@mellanox.com> | |
8006 | L: netdev@vger.kernel.org | |
8007 | S: Supported | |
8008 | W: http://www.mellanox.com | |
8009 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
8010 | F: drivers/net/ethernet/mellanox/mlxsw/ | |
8011 | ||
be4fdf99 VP |
8012 | MELLANOX MLXCPLD LED DRIVER |
8013 | M: Vadim Pasternak <vadimp@mellanox.com> | |
8014 | L: linux-leds@vger.kernel.org | |
8015 | S: Supported | |
8016 | F: drivers/leds/leds-mlxcpld.c | |
8017 | F: Documentation/leds/leds-mlxcpld.txt | |
8018 | ||
58cbbee2 VP |
8019 | MELLANOX PLATFORM DRIVER |
8020 | M: Vadim Pasternak <vadimp@mellanox.com> | |
8021 | L: platform-driver-x86@vger.kernel.org | |
8022 | S: Supported | |
8023 | F: arch/x86/platform/mellanox/mlx-platform.c | |
8024 | ||
8700e3e7 MS |
8025 | SOFT-ROCE DRIVER (rxe) |
8026 | M: Moni Shoua <monis@mellanox.com> | |
8027 | L: linux-rdma@vger.kernel.org | |
8028 | S: Supported | |
8029 | W: https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home | |
8030 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
701b4bf6 | 8031 | F: drivers/infiniband/sw/rxe/ |
8700e3e7 MS |
8032 | F: include/uapi/rdma/rdma_user_rxe.h |
8033 | ||
5b25b13a MD |
8034 | MEMBARRIER SUPPORT |
8035 | M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
8036 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
8037 | L: linux-kernel@vger.kernel.org | |
8038 | S: Supported | |
8039 | F: kernel/membarrier.c | |
8040 | F: include/uapi/linux/membarrier.h | |
8041 | ||
70ea91f1 SR |
8042 | MEMORY MANAGEMENT |
8043 | L: linux-mm@kvack.org | |
70ea91f1 SR |
8044 | W: http://www.linux-mm.org |
8045 | S: Maintained | |
679655da | 8046 | F: include/linux/mm.h |
551450bb CS |
8047 | F: include/linux/gfp.h |
8048 | F: include/linux/mmzone.h | |
8049 | F: include/linux/memory_hotplug.h | |
8050 | F: include/linux/vmalloc.h | |
679655da | 8051 | F: mm/ |
70ea91f1 | 8052 | |
f4e9ce66 | 8053 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 8054 | M: David Woodhouse <dwmw2@infradead.org> |
242c325e | 8055 | M: Brian Norris <computersforpeace@gmail.com> |
30656167 BB |
8056 | M: Boris Brezillon <boris.brezillon@free-electrons.com> |
8057 | M: Marek Vasut <marek.vasut@gmail.com> | |
8058 | M: Richard Weinberger <richard@nod.at> | |
8059 | M: Cyrille Pitchen <cyrille.pitchen@atmel.com> | |
1da177e4 | 8060 | L: linux-mtd@lists.infradead.org |
8a6e2535 JP |
8061 | W: http://www.linux-mtd.infradead.org/ |
8062 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
242c325e | 8063 | T: git git://git.infradead.org/linux-mtd.git |
ab95eac9 | 8064 | T: git git://git.infradead.org/l2-mtd.git |
1da177e4 | 8065 | S: Maintained |
becc7ae5 | 8066 | F: Documentation/devicetree/bindings/mtd/ |
679655da JP |
8067 | F: drivers/mtd/ |
8068 | F: include/linux/mtd/ | |
c117ab84 | 8069 | F: include/uapi/mtd/ |
1da177e4 | 8070 | |
26c57ef1 | 8071 | MEN A21 WATCHDOG DRIVER |
30c7469b | 8072 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
26c57ef1 | 8073 | L: linux-watchdog@vger.kernel.org |
30c7469b | 8074 | S: Maintained |
26c57ef1 JT |
8075 | F: drivers/watchdog/mena21_wdt.c |
8076 | ||
3764e82e | 8077 | MEN CHAMELEON BUS (mcb) |
30c7469b JT |
8078 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
8079 | S: Maintained | |
3764e82e JT |
8080 | F: drivers/mcb/ |
8081 | F: include/linux/mcb.h | |
b9f2f459 | 8082 | F: Documentation/men-chameleon-bus.txt |
3764e82e | 8083 | |
48b490d2 AW |
8084 | MEN F21BMC (Board Management Controller) |
8085 | M: Andreas Werner <andreas.werner@men.de> | |
8086 | S: Supported | |
8087 | F: drivers/mfd/menf21bmc.c | |
8088 | F: drivers/watchdog/menf21bmc_wdt.c | |
8089 | F: drivers/leds/leds-menf21bmc.c | |
8090 | F: drivers/hwmon/menf21bmc_hwmon.c | |
8091 | F: Documentation/hwmon/menf21bmc | |
8092 | ||
12285945 JH |
8093 | METAG ARCHITECTURE |
8094 | M: James Hogan <james.hogan@imgtec.com> | |
d668d9ed | 8095 | L: linux-metag@vger.kernel.org |
9f273c24 | 8096 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git |
f23d0e24 | 8097 | S: Odd Fixes |
12285945 JH |
8098 | F: arch/metag/ |
8099 | F: Documentation/metag/ | |
8100 | F: Documentation/devicetree/bindings/metag/ | |
2d799dde | 8101 | F: Documentation/devicetree/bindings/interrupt-controller/img,* |
a2c5d4ed | 8102 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
8103 | F: drivers/irqchip/irq-metag.c |
8104 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 | 8105 | F: drivers/tty/metag_da.c |
12285945 | 8106 | |
c6375b0a | 8107 | MICROBLAZE ARCHITECTURE |
8b58be88 | 8108 | M: Michal Simek <monstr@monstr.eu> |
c6375b0a MS |
8109 | W: http://www.monstr.eu/fdt/ |
8110 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
8111 | S: Supported | |
0a8c7914 | 8112 | F: arch/microblaze/ |
1da177e4 | 8113 | |
5615c371 NF |
8114 | MICROCHIP / ATMEL AT91 / AT32 SERIAL DRIVER |
8115 | M: Richard Genoud <richard.genoud@gmail.com> | |
8116 | S: Maintained | |
8117 | F: drivers/tty/serial/atmel_serial.c | |
8118 | F: include/linux/atmel_serial.h | |
8119 | ||
71fb2c74 SW |
8120 | MICROCHIP / ATMEL ISC DRIVER |
8121 | M: Songjun Wu <songjun.wu@microchip.com> | |
8122 | L: linux-media@vger.kernel.org | |
8123 | S: Supported | |
8124 | F: drivers/media/platform/atmel/atmel-isc.c | |
8125 | F: drivers/media/platform/atmel/atmel-isc-regs.h | |
8126 | F: devicetree/bindings/media/atmel-isc.txt | |
8127 | ||
2508a45a CY |
8128 | MICROSOFT SURFACE PRO 3 BUTTON DRIVER |
8129 | M: Chen Yu <yu.c.chen@intel.com> | |
8130 | L: platform-driver-x86@vger.kernel.org | |
8131 | S: Supported | |
8132 | F: drivers/platform/x86/surfacepro3_button.c | |
8133 | ||
1da177e4 | 8134 | MICROTEK X6 SCANNER |
61eee9a7 | 8135 | M: Oliver Neukum <oliver@neukum.org> |
1da177e4 | 8136 | S: Maintained |
679655da | 8137 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
8138 | |
8139 | MIPS | |
8b58be88 | 8140 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 8141 | L: linux-mips@linux-mips.org |
6097050d | 8142 | W: http://www.linux-mips.org/ |
b05e988e | 8143 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 8144 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 8145 | S: Supported |
f46d92e8 | 8146 | F: Documentation/devicetree/bindings/mips/ |
679655da JP |
8147 | F: Documentation/mips/ |
8148 | F: arch/mips/ | |
1da177e4 | 8149 | |
413ef3f6 KC |
8150 | MIPS/LOONGSON1 ARCHITECTURE |
8151 | M: Keguang Zhang <keguang.zhang@gmail.com> | |
8152 | L: linux-mips@linux-mips.org | |
8153 | S: Maintained | |
8154 | F: arch/mips/loongson32/ | |
8155 | F: arch/mips/include/asm/mach-loongson32/ | |
8156 | F: drivers/*/*loongson1* | |
8157 | F: drivers/*/*/*loongson1* | |
8158 | ||
08b7620a HV |
8159 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
8160 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8161 | L: linux-media@vger.kernel.org | |
8162 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 8163 | W: https://linuxtv.org |
08b7620a HV |
8164 | S: Odd Fixes |
8165 | F: drivers/media/radio/radio-miropcm20* | |
8166 | ||
c09befcb OG |
8167 | MELLANOX MLX4 core VPI driver |
8168 | M: Yishai Hadas <yishaih@mellanox.com> | |
e126ba97 EC |
8169 | L: netdev@vger.kernel.org |
8170 | L: linux-rdma@vger.kernel.org | |
8171 | W: http://www.mellanox.com | |
8172 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
c09befcb OG |
8173 | S: Supported |
8174 | F: drivers/net/ethernet/mellanox/mlx4/ | |
8175 | F: include/linux/mlx4/ | |
9ce28a20 | 8176 | F: include/uapi/rdma/mlx4-abi.h |
c09befcb OG |
8177 | |
8178 | MELLANOX MLX4 IB driver | |
8179 | M: Yishai Hadas <yishaih@mellanox.com> | |
8180 | L: linux-rdma@vger.kernel.org | |
8181 | W: http://www.mellanox.com | |
e126ba97 | 8182 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
c09befcb OG |
8183 | S: Supported |
8184 | F: drivers/infiniband/hw/mlx4/ | |
8185 | F: include/linux/mlx4/ | |
8186 | ||
595a4d8f | 8187 | MELLANOX MLX5 core VPI driver |
45788f1f | 8188 | M: Saeed Mahameed <saeedm@mellanox.com> |
595a4d8f OG |
8189 | M: Matan Barak <matanb@mellanox.com> |
8190 | M: Leon Romanovsky <leonro@mellanox.com> | |
e126ba97 EC |
8191 | L: netdev@vger.kernel.org |
8192 | L: linux-rdma@vger.kernel.org | |
8193 | W: http://www.mellanox.com | |
8194 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
e126ba97 EC |
8195 | S: Supported |
8196 | F: drivers/net/ethernet/mellanox/mlx5/core/ | |
8197 | F: include/linux/mlx5/ | |
3085e29e | 8198 | F: include/uapi/rdma/mlx5-abi.h |
e126ba97 | 8199 | |
595a4d8f OG |
8200 | MELLANOX MLX5 IB driver |
8201 | M: Matan Barak <matanb@mellanox.com> | |
8202 | M: Leon Romanovsky <leonro@mellanox.com> | |
b75f0050 JP |
8203 | L: linux-rdma@vger.kernel.org |
8204 | W: http://www.mellanox.com | |
8205 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
b75f0050 | 8206 | S: Supported |
b75f0050 | 8207 | F: drivers/infiniband/hw/mlx5/ |
595a4d8f | 8208 | F: include/linux/mlx5/ |
e126ba97 | 8209 | |
764589b6 CM |
8210 | MELEXIS MLX90614 DRIVER |
8211 | M: Crt Mori <cmo@melexis.com> | |
8212 | L: linux-iio@vger.kernel.org | |
8213 | W: http://www.melexis.com | |
8214 | S: Supported | |
8215 | F: drivers/iio/temperature/mlx90614.c | |
8216 | ||
6c223761 KB |
8217 | MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi) |
8218 | M: Don Brace <don.brace@microsemi.com> | |
8219 | L: esc.storagedev@microsemi.com | |
8220 | L: linux-scsi@vger.kernel.org | |
8221 | S: Supported | |
8222 | F: drivers/scsi/smartpqi/smartpqi*.[ch] | |
8223 | F: drivers/scsi/smartpqi/Kconfig | |
8224 | F: drivers/scsi/smartpqi/Makefile | |
8225 | F: include/linux/cciss*.h | |
8226 | F: include/uapi/linux/cciss*.h | |
425b490b | 8227 | F: Documentation/scsi/smartpqi.txt |
6c223761 | 8228 | |
0ce277e4 AP |
8229 | MN88472 MEDIA DRIVER |
8230 | M: Antti Palosaari <crope@iki.fi> | |
8231 | L: linux-media@vger.kernel.org | |
a825eaec | 8232 | W: https://linuxtv.org |
0ce277e4 AP |
8233 | W: http://palosaari.fi/linux/ |
8234 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
0ce277e4 | 8235 | S: Maintained |
94d0eaa4 | 8236 | F: drivers/media/dvb-frontends/mn88472* |
0ce277e4 | 8237 | |
4f4d238f AP |
8238 | MN88473 MEDIA DRIVER |
8239 | M: Antti Palosaari <crope@iki.fi> | |
8240 | L: linux-media@vger.kernel.org | |
a825eaec | 8241 | W: https://linuxtv.org |
4f4d238f AP |
8242 | W: http://palosaari.fi/linux/ |
8243 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4f4d238f | 8244 | S: Maintained |
877ba50b | 8245 | F: drivers/media/dvb-frontends/mn88473* |
4f4d238f | 8246 | |
1da177e4 | 8247 | MODULE SUPPORT |
a467a672 | 8248 | M: Jessica Yu <jeyu@redhat.com> |
8b58be88 | 8249 | M: Rusty Russell <rusty@rustcorp.com.au> |
1da177e4 | 8250 | S: Maintained |
679655da JP |
8251 | F: include/linux/module.h |
8252 | F: kernel/module.c | |
1da177e4 LT |
8253 | |
8254 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 8255 | W: http://popies.net/meye/ |
b7788e13 | 8256 | S: Orphan |
618cd932 | 8257 | F: Documentation/media/v4l-drivers/meye* |
90d72ac6 | 8258 | F: drivers/media/pci/meye/ |
6c0f0359 | 8259 | F: include/uapi/linux/meye.h |
1da177e4 | 8260 | |
b9705b60 | 8261 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 8262 | M: Jiri Slaby <jirislaby@gmail.com> |
d735410a | 8263 | S: Maintained |
679655da | 8264 | F: Documentation/serial/moxa-smartio |
c897401b | 8265 | F: drivers/tty/mxser.* |
d735410a | 8266 | |
889b2f87 AK |
8267 | MR800 AVERMEDIA USB FM RADIO DRIVER |
8268 | M: Alexey Klimov <klimov.linux@gmail.com> | |
8269 | L: linux-media@vger.kernel.org | |
8270 | T: git git://linuxtv.org/media_tree.git | |
8271 | S: Maintained | |
8272 | F: drivers/media/radio/radio-mr800.c | |
8273 | ||
d7155691 AO |
8274 | MRF24J40 IEEE 802.15.4 RADIO DRIVER |
8275 | M: Alan Ott <alan@signal11.us> | |
8276 | L: linux-wpan@vger.kernel.org | |
8277 | S: Maintained | |
8278 | F: drivers/net/ieee802154/mrf24j40.c | |
2e6fd648 | 8279 | F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt |
d7155691 | 8280 | |
8c4c731a | 8281 | MSI LAPTOP SUPPORT |
182ae55c | 8282 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 8283 | L: platform-driver-x86@vger.kernel.org |
8c4c731a | 8284 | S: Maintained |
679655da | 8285 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 8286 | |
0f1006b1 | 8287 | MSI WMI SUPPORT |
d0944853 | 8288 | L: platform-driver-x86@vger.kernel.org |
5ee7041e | 8289 | S: Orphan |
0f1006b1 AA |
8290 | F: drivers/platform/x86/msi-wmi.c |
8291 | ||
19a628a0 AP |
8292 | MSI001 MEDIA DRIVER |
8293 | M: Antti Palosaari <crope@iki.fi> | |
8294 | L: linux-media@vger.kernel.org | |
a825eaec | 8295 | W: https://linuxtv.org |
19a628a0 AP |
8296 | W: http://palosaari.fi/linux/ |
8297 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8298 | T: git git://linuxtv.org/anttip/media_tree.git | |
8299 | S: Maintained | |
0185e197 | 8300 | F: drivers/media/tuners/msi001* |
19a628a0 | 8301 | |
7570589d | 8302 | MSI2500 MEDIA DRIVER |
2c57213f AP |
8303 | M: Antti Palosaari <crope@iki.fi> |
8304 | L: linux-media@vger.kernel.org | |
a825eaec | 8305 | W: https://linuxtv.org |
2c57213f AP |
8306 | W: http://palosaari.fi/linux/ |
8307 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8308 | T: git git://linuxtv.org/anttip/media_tree.git | |
8309 | S: Maintained | |
7570589d | 8310 | F: drivers/media/usb/msi2500/ |
2c57213f | 8311 | |
159eeea4 RJ |
8312 | MSYSTEMS DISKONCHIP G3 MTD DRIVER |
8313 | M: Robert Jarzmik <robert.jarzmik@free.fr> | |
8314 | L: linux-mtd@lists.infradead.org | |
8315 | S: Maintained | |
8316 | F: drivers/mtd/devices/docg3* | |
8317 | ||
62a37dc7 | 8318 | MT9M032 APTINA SENSOR DRIVER |
0e837fb9 LP |
8319 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
8320 | L: linux-media@vger.kernel.org | |
8321 | T: git git://linuxtv.org/media_tree.git | |
8322 | S: Maintained | |
8323 | F: drivers/media/i2c/mt9m032.c | |
b5dcee22 | 8324 | F: include/media/i2c/mt9m032.h |
0e837fb9 | 8325 | |
62a37dc7 | 8326 | MT9P031 APTINA CAMERA SENSOR |
0e837fb9 LP |
8327 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
8328 | L: linux-media@vger.kernel.org | |
8329 | T: git git://linuxtv.org/media_tree.git | |
8330 | S: Maintained | |
8331 | F: drivers/media/i2c/mt9p031.c | |
b5dcee22 | 8332 | F: include/media/i2c/mt9p031.h |
0e837fb9 | 8333 | |
62a37dc7 | 8334 | MT9T001 APTINA CAMERA SENSOR |
0e837fb9 LP |
8335 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
8336 | L: linux-media@vger.kernel.org | |
8337 | T: git git://linuxtv.org/media_tree.git | |
8338 | S: Maintained | |
8339 | F: drivers/media/i2c/mt9t001.c | |
b5dcee22 | 8340 | F: include/media/i2c/mt9t001.h |
0e837fb9 | 8341 | |
62a37dc7 | 8342 | MT9V032 APTINA CAMERA SENSOR |
0e837fb9 LP |
8343 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
8344 | L: linux-media@vger.kernel.org | |
8345 | T: git git://linuxtv.org/media_tree.git | |
8346 | S: Maintained | |
f2272e13 | 8347 | F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt |
0e837fb9 | 8348 | F: drivers/media/i2c/mt9v032.c |
b5dcee22 | 8349 | F: include/media/i2c/mt9v032.h |
0e837fb9 | 8350 | |
4e0d13cb | 8351 | MULTIFUNCTION DEVICES (MFD) |
f7d3210e | 8352 | M: Lee Jones <lee.jones@linaro.org> |
7caa7991 | 8353 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git |
4e0d13cb | 8354 | S: Supported |
80366127 | 8355 | F: Documentation/devicetree/bindings/mfd/ |
679655da | 8356 | F: drivers/mfd/ |
55b5940d | 8357 | F: include/linux/mfd/ |
4e0d13cb | 8358 | |
5c4e6f13 | 8359 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
e18eaf8f | 8360 | M: Ulf Hansson <ulf.hansson@linaro.org> |
b2503a94 | 8361 | L: linux-mmc@vger.kernel.org |
82bb095e | 8362 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git |
245feaa6 | 8363 | S: Maintained |
2810984b | 8364 | F: Documentation/devicetree/bindings/mmc/ |
679655da JP |
8365 | F: drivers/mmc/ |
8366 | F: include/linux/mmc/ | |
c117ab84 | 8367 | F: include/uapi/linux/mmc/ |
baca2da4 | 8368 | |
15a0580c | 8369 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 8370 | S: Orphan |
679655da JP |
8371 | F: drivers/mmc/host/mmc_spi.c |
8372 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 8373 | |
1da177e4 | 8374 | MULTISOUND SOUND DRIVER |
8b58be88 | 8375 | M: Andrew Veliath <andrewtv@usa.net> |
1da177e4 | 8376 | S: Maintained |
679655da JP |
8377 | F: Documentation/sound/oss/MultiSound |
8378 | F: sound/oss/msnd* | |
1da177e4 | 8379 | |
d735410a | 8380 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 8381 | S: Orphan |
c897401b | 8382 | F: drivers/tty/isicom.c |
679655da | 8383 | F: include/linux/isicom.h |
d735410a | 8384 | |
550a7375 | 8385 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
3b243519 | 8386 | M: Bin Liu <b-liu@ti.com> |
795fb7e7 | 8387 | L: linux-usb@vger.kernel.org |
43b416e5 | 8388 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 8389 | S: Maintained |
679655da | 8390 | F: drivers/usb/musb/ |
550a7375 | 8391 | |
ea0af5f6 MK |
8392 | MXL5007T MEDIA DRIVER |
8393 | M: Michael Krufky <mkrufky@linuxtv.org> | |
8394 | L: linux-media@vger.kernel.org | |
a825eaec | 8395 | W: https://linuxtv.org |
ea0af5f6 MK |
8396 | W: http://github.com/mkrufky |
8397 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8398 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8399 | S: Maintained | |
8400 | F: drivers/media/tuners/mxl5007t.* | |
8401 | ||
45d59d70 MV |
8402 | MXSFB DRM DRIVER |
8403 | M: Marek Vasut <marex@denx.de> | |
8404 | S: Supported | |
8405 | F: drivers/gpu/drm/mxsfb/ | |
8406 | F: Documentation/devicetree/bindings/display/mxsfb-drm.txt | |
8407 | ||
2d3cf588 | 8408 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
205057ae | 8409 | M: Hyong-Youb Kim <hykim@myri.com> |
2d3cf588 | 8410 | L: netdev@vger.kernel.org |
205057ae | 8411 | W: https://www.myricom.com/support/downloads/myri10ge.html |
2d3cf588 | 8412 | S: Supported |
93f7848b | 8413 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 8414 | |
9df4f913 BB |
8415 | NAND FLASH SUBSYSTEM |
8416 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
8417 | R: Richard Weinberger <richard@nod.at> | |
8418 | L: linux-mtd@lists.infradead.org | |
8419 | W: http://www.linux-mtd.infradead.org/ | |
8420 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
8421 | T: git git://github.com/linux-nand/linux.git | |
8422 | S: Maintained | |
8423 | F: drivers/mtd/nand/ | |
8424 | F: include/linux/mtd/nand*.h | |
8425 | ||
1da177e4 | 8426 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 8427 | S: Orphan |
d9fb9f38 | 8428 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 8429 | |
23dc05a3 DM |
8430 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
8431 | M: Daniel Mack <zonque@gmail.com> | |
8432 | S: Maintained | |
e5747e40 | 8433 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
23dc05a3 DM |
8434 | W: http://www.native-instruments.com |
8435 | F: sound/usb/caiaq/ | |
8436 | ||
1da177e4 | 8437 | NCP FILESYSTEM |
52653199 PV |
8438 | M: Petr Vandrovec <petr@vandrovec.name> |
8439 | S: Odd Fixes | |
679655da | 8440 | F: fs/ncpfs/ |
1da177e4 | 8441 | |
a79b0322 FT |
8442 | NCR 5380 SCSI DRIVERS |
8443 | M: Finn Thain <fthain@telegraphics.com.au> | |
8444 | M: Michael Schmitz <schmitzmic@gmail.com> | |
8445 | L: linux-scsi@vger.kernel.org | |
8446 | S: Maintained | |
8447 | F: Documentation/scsi/g_NCR5380.txt | |
8448 | F: drivers/scsi/NCR5380.* | |
8449 | F: drivers/scsi/arm/cumana_1.c | |
8450 | F: drivers/scsi/arm/oak.c | |
a79b0322 FT |
8451 | F: drivers/scsi/atari_scsi.* |
8452 | F: drivers/scsi/dmx3191d.c | |
a79b0322 | 8453 | F: drivers/scsi/g_NCR5380.* |
a79b0322 | 8454 | F: drivers/scsi/mac_scsi.* |
a79b0322 FT |
8455 | F: drivers/scsi/sun3_scsi.* |
8456 | F: drivers/scsi/sun3_scsi_vme.c | |
a79b0322 | 8457 | |
1da177e4 | 8458 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
8b58be88 | 8459 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
8460 | L: linux-scsi@vger.kernel.org |
8461 | S: Maintained | |
679655da | 8462 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 8463 | |
4aa3eb4c GR |
8464 | NCT6775 HARDWARE MONITOR DRIVER |
8465 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 8466 | L: linux-hwmon@vger.kernel.org |
4aa3eb4c GR |
8467 | S: Maintained |
8468 | F: Documentation/hwmon/nct6775 | |
8469 | F: drivers/hwmon/nct6775.c | |
8470 | ||
3c2d774c | 8471 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 8472 | M: Faisal Latif <faisal.latif@intel.com> |
e6cc0fd1 | 8473 | L: linux-rdma@vger.kernel.org |
e3d33cb1 | 8474 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
8475 | S: Supported |
8476 | F: drivers/infiniband/hw/nes/ | |
c546b2a3 | 8477 | F: include/uapi/rdma/nes-abi.h |
3c2d774c | 8478 | |
be2f2e84 | 8479 | NETEM NETWORK EMULATOR |
adbbf69d | 8480 | M: Stephen Hemminger <stephen@networkplumber.org> |
3430284f | 8481 | L: netem@lists.linux-foundation.org (moderated for non-subscribers) |
be2f2e84 | 8482 | S: Maintained |
679655da | 8483 | F: net/sched/sch_netem.c |
be2f2e84 | 8484 | |
b2f5a051 | 8485 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 8486 | M: Jon Mason <jdmason@kudzu.us> |
4a58448b | 8487 | L: netdev@vger.kernel.org |
4a58448b | 8488 | S: Supported |
679655da | 8489 | F: Documentation/networking/s2io.txt |
b2f5a051 | 8490 | F: Documentation/networking/vxge.txt |
86387e1a | 8491 | F: drivers/net/ethernet/neterion/ |
4a58448b | 8492 | |
db9cf3a3 | 8493 | NETFILTER ({IP,IP6,ARP,EB,NF}TABLES) |
0e05e192 | 8494 | M: Pablo Neira Ayuso <pablo@netfilter.org> |
8b58be88 | 8495 | M: Patrick McHardy <kaber@trash.net> |
42010ed0 | 8496 | M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> |
1a03b81d | 8497 | L: netfilter-devel@vger.kernel.org |
82b98543 | 8498 | L: coreteam@netfilter.org |
1da177e4 LT |
8499 | W: http://www.netfilter.org/ |
8500 | W: http://www.iptables.org/ | |
42010ed0 PNA |
8501 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
8502 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
8503 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1da177e4 | 8504 | S: Supported |
679655da JP |
8505 | F: include/linux/netfilter* |
8506 | F: include/linux/netfilter/ | |
8507 | F: include/net/netfilter/ | |
c117ab84 CEB |
8508 | F: include/uapi/linux/netfilter* |
8509 | F: include/uapi/linux/netfilter/ | |
679655da JP |
8510 | F: net/*/netfilter.c |
8511 | F: net/*/netfilter/ | |
8512 | F: net/netfilter/ | |
91c269a0 | 8513 | F: net/bridge/br_netfilter*.c |
1da177e4 | 8514 | |
4cc67735 | 8515 | NETLABEL |
87a0874c | 8516 | M: Paul Moore <paul@paul-moore.com> |
4cc67735 PM |
8517 | W: http://netlabel.sf.net |
8518 | L: netdev@vger.kernel.org | |
87a0874c | 8519 | S: Maintained |
80811493 | 8520 | F: Documentation/netlabel/ |
679655da JP |
8521 | F: include/net/netlabel.h |
8522 | F: net/netlabel/ | |
4cc67735 | 8523 | |
1da177e4 | 8524 | NETROM NETWORK LAYER |
8b58be88 | 8525 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 8526 | L: linux-hams@vger.kernel.org |
d34cb28a | 8527 | W: http://www.linux-ax25.org/ |
1da177e4 | 8528 | S: Maintained |
679655da | 8529 | F: include/net/netrom.h |
c117ab84 | 8530 | F: include/uapi/linux/netrom.h |
679655da | 8531 | F: net/netrom/ |
1da177e4 | 8532 | |
4c352362 JK |
8533 | NETRONOME ETHERNET DRIVERS |
8534 | M: Jakub Kicinski <jakub.kicinski@netronome.com> | |
4c352362 JK |
8535 | L: oss-drivers@netronome.com |
8536 | S: Maintained | |
8537 | F: drivers/net/ethernet/netronome/ | |
8538 | ||
5ddb88c0 | 8539 | NETWORK BLOCK DEVICE (NBD) |
4ca5829a | 8540 | M: Markus Pargmann <mpa@pengutronix.de> |
1da177e4 | 8541 | S: Maintained |
5e4b269b | 8542 | L: nbd-general@lists.sourceforge.net |
4ca5829a | 8543 | T: git git://git.pengutronix.de/git/mpa/linux-nbd.git |
679655da JP |
8544 | F: Documentation/blockdev/nbd.txt |
8545 | F: drivers/block/nbd.c | |
c117ab84 | 8546 | F: include/uapi/linux/nbd.h |
1da177e4 | 8547 | |
6e43650c NH |
8548 | NETWORK DROP MONITOR |
8549 | M: Neil Horman <nhorman@tuxdriver.com> | |
8550 | L: netdev@vger.kernel.org | |
8551 | S: Maintained | |
8552 | W: https://fedorahosted.org/dropwatch/ | |
8553 | F: net/core/drop_monitor.c | |
8554 | ||
3ed6e498 AL |
8555 | NETWORKING [DSA] |
8556 | M: Andrew Lunn <andrew@lunn.ch> | |
8557 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> | |
8558 | M: Florian Fainelli <f.fainelli@gmail.com> | |
8559 | S: Maintained | |
8560 | F: net/dsa/ | |
8561 | F: include/net/dsa.h | |
8562 | F: drivers/net/dsa/ | |
8563 | ||
1da177e4 | 8564 | NETWORKING [GENERAL] |
8b58be88 | 8565 | M: "David S. Miller" <davem@davemloft.net> |
979b6c13 | 8566 | L: netdev@vger.kernel.org |
b1e8fd54 | 8567 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 8568 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
8569 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
8570 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 8571 | S: Maintained |
679655da JP |
8572 | F: net/ |
8573 | F: include/net/ | |
018d21ed JP |
8574 | F: include/linux/in.h |
8575 | F: include/linux/net.h | |
8576 | F: include/linux/netdevice.h | |
c117ab84 CEB |
8577 | F: include/uapi/linux/in.h |
8578 | F: include/uapi/linux/net.h | |
8579 | F: include/uapi/linux/netdevice.h | |
0c7aecd4 | 8580 | F: include/uapi/linux/net_namespace.h |
7e814a6c | 8581 | F: tools/net/ |
f4e53f9a | 8582 | F: tools/testing/selftests/net/ |
335a67d2 | 8583 | F: lib/random32.c |
1da177e4 LT |
8584 | |
8585 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
8586 | M: "David S. Miller" <davem@davemloft.net> |
8587 | M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> | |
8b58be88 JP |
8588 | M: James Morris <jmorris@namei.org> |
8589 | M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> | |
8590 | M: Patrick McHardy <kaber@trash.net> | |
979b6c13 | 8591 | L: netdev@vger.kernel.org |
08deed1e | 8592 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 8593 | S: Maintained |
679655da JP |
8594 | F: net/ipv4/ |
8595 | F: net/ipv6/ | |
8596 | F: include/net/ip* | |
0a14842f | 8597 | F: arch/x86/net/* |
1da177e4 | 8598 | |
73b7656c DM |
8599 | NETWORKING [IPSEC] |
8600 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
8601 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
8602 | M: "David S. Miller" <davem@davemloft.net> | |
8603 | L: netdev@vger.kernel.org | |
d1fc5024 SK |
8604 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git |
8605 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git | |
73b7656c | 8606 | S: Maintained |
5826bdd1 | 8607 | F: net/core/flow.c |
73b7656c DM |
8608 | F: net/xfrm/ |
8609 | F: net/key/ | |
8610 | F: net/ipv4/xfrm* | |
d1fc5024 SK |
8611 | F: net/ipv4/esp4.c |
8612 | F: net/ipv4/ah4.c | |
8613 | F: net/ipv4/ipcomp.c | |
8614 | F: net/ipv4/ip_vti.c | |
73b7656c | 8615 | F: net/ipv6/xfrm* |
d1fc5024 SK |
8616 | F: net/ipv6/esp6.c |
8617 | F: net/ipv6/ah6.c | |
8618 | F: net/ipv6/ipcomp6.c | |
8619 | F: net/ipv6/ip6_vti.c | |
73b7656c DM |
8620 | F: include/uapi/linux/xfrm.h |
8621 | F: include/net/xfrm.h | |
8622 | ||
10e2ff1c | 8623 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 8624 | M: Paul Moore <paul@paul-moore.com> |
10e2ff1c JM |
8625 | L: netdev@vger.kernel.org |
8626 | S: Maintained | |
8627 | ||
29f8f632 | 8628 | NETWORKING [WIRELESS] |
2cb4abd1 | 8629 | L: linux-wireless@vger.kernel.org |
8a6e2535 | 8630 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
29f8f632 | 8631 | |
788873ac JP |
8632 | NETWORKING DRIVERS |
8633 | L: netdev@vger.kernel.org | |
8634 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 8635 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
8636 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
8637 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac | 8638 | S: Odd Fixes |
156f4fbc | 8639 | F: Documentation/devicetree/bindings/net/ |
788873ac | 8640 | F: drivers/net/ |
018d21ed | 8641 | F: include/linux/if_* |
0b63bf1f | 8642 | F: include/linux/netdevice.h |
0b63bf1f JD |
8643 | F: include/linux/etherdevice.h |
8644 | F: include/linux/fcdevice.h | |
8645 | F: include/linux/fddidevice.h | |
8646 | F: include/linux/hippidevice.h | |
8647 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
8648 | F: include/uapi/linux/if_* |
8649 | F: include/uapi/linux/netdevice.h | |
788873ac | 8650 | |
0e324cf6 JL |
8651 | NETWORKING DRIVERS (WIRELESS) |
8652 | M: Kalle Valo <kvalo@codeaurora.org> | |
8653 | L: linux-wireless@vger.kernel.org | |
8654 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ | |
9f273c24 FW |
8655 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git |
8656 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git | |
0e324cf6 | 8657 | S: Maintained |
182fd9ee | 8658 | F: Documentation/devicetree/bindings/net/wireless/ |
0e324cf6 JL |
8659 | F: drivers/net/wireless/ |
8660 | ||
3d396eb1 | 8661 | NETXEN (1/10) GbE SUPPORT |
67f0160f MY |
8662 | M: Manish Chopra <manish.chopra@cavium.com> |
8663 | M: Rahul Verma <rahul.verma@cavium.com> | |
8664 | M: Dept-GELinuxNICDev@cavium.com | |
3d396eb1 | 8665 | L: netdev@vger.kernel.org |
3d396eb1 | 8666 | S: Supported |
aa43c215 | 8667 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 8668 | |
6423d30f AAJ |
8669 | NFC SUBSYSTEM |
8670 | M: Lauro Ramos Venancio <lauro.venancio@openbossa.org> | |
8671 | M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org> | |
8672 | M: Samuel Ortiz <sameo@linux.intel.com> | |
8673 | L: linux-wireless@vger.kernel.org | |
1eb3b216 | 8674 | L: linux-nfc@lists.01.org (subscribers-only) |
0293ba20 | 8675 | S: Supported |
6423d30f | 8676 | F: net/nfc/ |
55eb94f9 | 8677 | F: include/net/nfc/ |
c117ab84 | 8678 | F: include/uapi/linux/nfc.h |
6423d30f | 8679 | F: drivers/nfc/ |
397d6497 CR |
8680 | F: include/linux/platform_data/nfcmrvl.h |
8681 | F: include/linux/platform_data/nxp-nci.h | |
08eaa1e0 | 8682 | F: include/linux/platform_data/pn544.h |
397d6497 CR |
8683 | F: include/linux/platform_data/st21nfca.h |
8684 | F: include/linux/platform_data/st-nci.h | |
7ebb88e5 | 8685 | F: Documentation/devicetree/bindings/net/nfc/ |
3d396eb1 | 8686 | |
e8b43555 | 8687 | NFS, SUNRPC, AND LOCKD CLIENTS |
cd7b996a | 8688 | M: Trond Myklebust <trond.myklebust@primarydata.com> |
0e3b137f | 8689 | M: Anna Schumaker <anna.schumaker@netapp.com> |
78f58153 TM |
8690 | L: linux-nfs@vger.kernel.org |
8691 | W: http://client.linux-nfs.org | |
cd7b996a | 8692 | T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git |
1da177e4 | 8693 | S: Maintained |
679655da JP |
8694 | F: fs/lockd/ |
8695 | F: fs/nfs/ | |
8696 | F: fs/nfs_common/ | |
8697 | F: net/sunrpc/ | |
8698 | F: include/linux/lockd/ | |
8699 | F: include/linux/nfs* | |
8700 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
8701 | F: include/uapi/linux/nfs* |
8702 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 8703 | |
85ef9cea | 8704 | NILFS2 FILESYSTEM |
e2126935 | 8705 | M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> |
6aff43f8 | 8706 | L: linux-nilfs@vger.kernel.org |
f9472265 | 8707 | W: http://nilfs.sourceforge.net/ |
9e92e516 | 8708 | W: http://nilfs.osdn.jp/ |
e2126935 | 8709 | T: git git://github.com/konis/nilfs2.git |
85ef9cea | 8710 | S: Supported |
679655da JP |
8711 | F: Documentation/filesystems/nilfs2.txt |
8712 | F: fs/nilfs2/ | |
c35c7ac5 | 8713 | F: include/trace/events/nilfs2.h |
e63e88bc RK |
8714 | F: include/uapi/linux/nilfs2_api.h |
8715 | F: include/uapi/linux/nilfs2_ondisk.h | |
85ef9cea | 8716 | |
1da177e4 | 8717 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 8718 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
1da177e4 LT |
8719 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
8720 | S: Maintained | |
679655da JP |
8721 | F: Documentation/scsi/NinjaSCSI.txt |
8722 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
8723 | |
8724 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
8725 | M: GOTO Masanori <gotom@debian.or.jp> |
8726 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> | |
1da177e4 LT |
8727 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
8728 | S: Maintained | |
679655da JP |
8729 | F: Documentation/scsi/NinjaSCSI.txt |
8730 | F: drivers/scsi/nsp32* | |
1da177e4 | 8731 | |
383b8fb9 LFT |
8732 | NIOS2 ARCHITECTURE |
8733 | M: Ley Foon Tan <lftan@altera.com> | |
8734 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
0094dc40 | 8735 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git |
383b8fb9 LFT |
8736 | S: Maintained |
8737 | F: arch/nios2/ | |
8738 | ||
2a6afddb | 8739 | NOKIA N900 POWER SUPPLY DRIVERS |
e35a49b1 | 8740 | R: Pali Rohár <pali.rohar@gmail.com> |
2a6afddb | 8741 | F: include/linux/power/bq2415x_charger.h |
081bab21 | 8742 | F: include/linux/power/bq27xxx_battery.h |
2a6afddb | 8743 | F: include/linux/power/isp1704_charger.h |
8c0984e5 SR |
8744 | F: drivers/power/supply/bq2415x_charger.c |
8745 | F: drivers/power/supply/bq27xxx_battery.c | |
8746 | F: drivers/power/supply/bq27xxx_battery_i2c.c | |
8747 | F: drivers/power/supply/isp1704_charger.c | |
8748 | F: drivers/power/supply/rx51_battery.c | |
2a6afddb | 8749 | |
a1bd3bae | 8750 | NTB DRIVER CORE |
9ef6bf6c JM |
8751 | M: Jon Mason <jdmason@kudzu.us> |
8752 | M: Dave Jiang <dave.jiang@intel.com> | |
a1bd3bae | 8753 | M: Allen Hubbe <Allen.Hubbe@emc.com> |
5e9fd733 | 8754 | L: linux-ntb@googlegroups.com |
fce8a7bb | 8755 | S: Supported |
2984411f JM |
8756 | W: https://github.com/jonmason/ntb/wiki |
8757 | T: git git://github.com/jonmason/ntb.git | |
fce8a7bb | 8758 | F: drivers/ntb/ |
548c237c | 8759 | F: drivers/net/ntb_netdev.c |
fce8a7bb | 8760 | F: include/linux/ntb.h |
a1bd3bae | 8761 | F: include/linux/ntb_transport.h |
a9c59ef7 | 8762 | F: tools/testing/selftests/ntb/ |
fce8a7bb | 8763 | |
e26a5843 AH |
8764 | NTB INTEL DRIVER |
8765 | M: Jon Mason <jdmason@kudzu.us> | |
8766 | M: Dave Jiang <dave.jiang@intel.com> | |
5e9fd733 | 8767 | L: linux-ntb@googlegroups.com |
e26a5843 AH |
8768 | S: Supported |
8769 | W: https://github.com/jonmason/ntb/wiki | |
8770 | T: git git://github.com/jonmason/ntb.git | |
8771 | F: drivers/ntb/hw/intel/ | |
fce8a7bb | 8772 | |
a1b36958 XY |
8773 | NTB AMD DRIVER |
8774 | M: Xiangliang Yu <Xiangliang.Yu@amd.com> | |
8775 | L: linux-ntb@googlegroups.com | |
8776 | S: Supported | |
8777 | F: drivers/ntb/hw/amd/ | |
8778 | ||
1da177e4 | 8779 | NTFS FILESYSTEM |
2818ef50 | 8780 | M: Anton Altaparmakov <anton@tuxera.com> |
1da177e4 | 8781 | L: linux-ntfs-dev@lists.sourceforge.net |
2818ef50 | 8782 | W: http://www.tuxera.com/ |
e6f4dee7 | 8783 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 8784 | S: Supported |
679655da JP |
8785 | F: Documentation/filesystems/ntfs.txt |
8786 | F: fs/ntfs/ | |
1da177e4 | 8787 | |
9eb8ef74 | 8788 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 8789 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 8790 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 8791 | S: Maintained |
8a61f013 JH |
8792 | F: drivers/video/fbdev/riva/ |
8793 | F: drivers/video/fbdev/nvidia/ | |
1da177e4 | 8794 | |
79461681 | 8795 | NVM EXPRESS DRIVER |
b3975e94 JF |
8796 | M: Keith Busch <keith.busch@intel.com> |
8797 | M: Jens Axboe <axboe@fb.com> | |
79461681 | 8798 | L: linux-nvme@lists.infradead.org |
b3975e94 JF |
8799 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
8800 | W: https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/ | |
79461681 | 8801 | S: Supported |
57dacad5 | 8802 | F: drivers/nvme/host/ |
79461681 MW |
8803 | F: include/linux/nvme.h |
8804 | ||
a07b4970 CH |
8805 | NVM EXPRESS TARGET DRIVER |
8806 | M: Christoph Hellwig <hch@lst.de> | |
8807 | M: Sagi Grimberg <sagi@grimberg.me> | |
8808 | L: linux-nvme@lists.infradead.org | |
8809 | S: Supported | |
8810 | F: drivers/nvme/target/ | |
8811 | ||
b1ad1475 JS |
8812 | NVM EXPRESS FC TRANSPORT DRIVERS |
8813 | M: James Smart <james.smart@broadcom.com> | |
8814 | L: linux-nvme@lists.infradead.org | |
8815 | S: Supported | |
8816 | F: include/linux/nvme-fc.h | |
d6d20012 | 8817 | F: include/linux/nvme-fc-driver.h |
e399441d | 8818 | F: drivers/nvme/host/fc.c |
c5343203 | 8819 | F: drivers/nvme/target/fc.c |
475d0fe7 | 8820 | F: drivers/nvme/target/fcloop.c |
b1ad1475 | 8821 | |
aee4b9bd SK |
8822 | NVMEM FRAMEWORK |
8823 | M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> | |
8824 | M: Maxime Ripard <maxime.ripard@free-electrons.com> | |
8825 | S: Maintained | |
8826 | F: drivers/nvmem/ | |
8827 | F: Documentation/devicetree/bindings/nvmem/ | |
8828 | F: include/linux/nvmem-consumer.h | |
8829 | F: include/linux/nvmem-provider.h | |
8830 | ||
dece4585 CP |
8831 | NXP-NCI NFC DRIVER |
8832 | M: Clément Perrochaud <clement.perrochaud@effinnov.com> | |
8833 | R: Charles Gorand <charles.gorand@effinnov.com> | |
8834 | L: linux-nfc@lists.01.org (moderated for non-subscribers) | |
8835 | S: Supported | |
8836 | F: drivers/nfc/nxp-nci | |
8837 | ||
f50d7146 | 8838 | NXP TDA998X DRM DRIVER |
54176cc6 | 8839 | M: Russell King <rmk+kernel@armlinux.org.uk> |
f50d7146 RK |
8840 | S: Supported |
8841 | F: drivers/gpu/drm/i2c/tda998x_drv.c | |
8842 | F: include/drm/i2c/tda998x.h | |
8843 | ||
fbace43e PR |
8844 | NXP TFA9879 DRIVER |
8845 | M: Peter Rosin <peda@axentia.se> | |
8846 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
8847 | S: Maintained | |
8848 | F: sound/soc/codecs/tfa9879* | |
8849 | ||
442f04c3 JP |
8850 | OBJTOOL |
8851 | M: Josh Poimboeuf <jpoimboe@redhat.com> | |
8852 | S: Supported | |
8853 | F: tools/objtool/ | |
8854 | ||
f5525786 | 8855 | OMAP SUPPORT |
0e24bdd4 | 8856 | M: Tony Lindgren <tony@atomide.com> |
f5525786 TL |
8857 | L: linux-omap@vger.kernel.org |
8858 | W: http://www.muru.com/linux/omap/ | |
8859 | W: http://linux.omap.com/ | |
8a6e2535 | 8860 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 8861 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 8862 | S: Maintained |
4e04d5a3 | 8863 | F: arch/arm/*omap*/ |
026da812 FB |
8864 | F: arch/arm/configs/omap1_defconfig |
8865 | F: arch/arm/configs/omap2plus_defconfig | |
046d0a37 | 8866 | F: drivers/i2c/busses/i2c-omap.c |
dc68cd11 FB |
8867 | F: drivers/irqchip/irq-omap-intc.c |
8868 | F: drivers/mfd/*omap*.c | |
8869 | F: drivers/mfd/menelaus.c | |
8870 | F: drivers/mfd/palmas.c | |
8871 | F: drivers/mfd/tps65217.c | |
8872 | F: drivers/mfd/tps65218.c | |
8873 | F: drivers/mfd/tps65910.c | |
8874 | F: drivers/mfd/twl-core.[ch] | |
8875 | F: drivers/mfd/twl4030*.c | |
8876 | F: drivers/mfd/twl6030*.c | |
8877 | F: drivers/mfd/twl6040*.c | |
8878 | F: drivers/regulator/palmas-regulator*.c | |
8879 | F: drivers/regulator/pbias-regulator.c | |
8880 | F: drivers/regulator/tps65217-regulator.c | |
8881 | F: drivers/regulator/tps65218-regulator.c | |
8882 | F: drivers/regulator/tps65910-regulator.c | |
8883 | F: drivers/regulator/twl-regulator.c | |
cac28ae6 | 8884 | F: drivers/regulator/twl6030-regulator.c |
046d0a37 | 8885 | F: include/linux/i2c-omap.h |
f5525786 | 8886 | |
50f29fbd | 8887 | OMAP DEVICE TREE SUPPORT |
cdb55ab0 | 8888 | M: Benoît Cousson <bcousson@baylibre.com> |
50f29fbd TL |
8889 | M: Tony Lindgren <tony@atomide.com> |
8890 | L: linux-omap@vger.kernel.org | |
d0fb18c5 | 8891 | L: devicetree@vger.kernel.org |
50f29fbd TL |
8892 | S: Maintained |
8893 | F: arch/arm/boot/dts/*omap* | |
8894 | F: arch/arm/boot/dts/*am3* | |
05eb20fa NM |
8895 | F: arch/arm/boot/dts/*am4* |
8896 | F: arch/arm/boot/dts/*am5* | |
8897 | F: arch/arm/boot/dts/*dra7* | |
50f29fbd | 8898 | |
f5525786 | 8899 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 8900 | M: Paul Walmsley <paul@pwsan.com> |
f5525786 TL |
8901 | L: linux-omap@vger.kernel.org |
8902 | S: Maintained | |
8903 | F: arch/arm/*omap*/*clock* | |
8904 | ||
8905 | OMAP POWER MANAGEMENT SUPPORT | |
3cf2efd5 | 8906 | M: Kevin Hilman <khilman@kernel.org> |
f5525786 TL |
8907 | L: linux-omap@vger.kernel.org |
8908 | S: Maintained | |
8909 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 8910 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 8911 | |
d21db568 | 8912 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
ff2de822 | 8913 | M: Rajendra Nayak <rnayak@codeaurora.org> |
692ab1f3 PW |
8914 | M: Paul Walmsley <paul@pwsan.com> |
8915 | L: linux-omap@vger.kernel.org | |
8916 | S: Maintained | |
d21db568 | 8917 | F: arch/arm/mach-omap2/prm* |
692ab1f3 | 8918 | |
f5525786 | 8919 | OMAP AUDIO SUPPORT |
6c284903 | 8920 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
7ec41ee5 | 8921 | M: Jarkko Nikula <jarkko.nikula@bitmer.com> |
e5747e40 | 8922 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
f5525786 TL |
8923 | L: linux-omap@vger.kernel.org |
8924 | S: Maintained | |
8925 | F: sound/soc/omap/ | |
8926 | ||
18640193 TL |
8927 | OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT |
8928 | M: Roger Quadros <rogerq@ti.com> | |
8929 | M: Tony Lindgren <tony@atomide.com> | |
8930 | L: linux-omap@vger.kernel.org | |
8931 | S: Maintained | |
8932 | F: drivers/memory/omap-gpmc.c | |
8933 | F: arch/arm/mach-omap2/*gpmc* | |
8934 | ||
f5525786 | 8935 | OMAP FRAMEBUFFER SUPPORT |
830e6384 | 8936 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
c69f677c | 8937 | L: linux-fbdev@vger.kernel.org |
f5525786 TL |
8938 | L: linux-omap@vger.kernel.org |
8939 | S: Maintained | |
8a61f013 | 8940 | F: drivers/video/fbdev/omap/ |
f5525786 | 8941 | |
676eec0d | 8942 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 8943 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
178ff4c9 | 8944 | L: linux-omap@vger.kernel.org |
676eec0d | 8945 | L: linux-fbdev@vger.kernel.org |
178ff4c9 | 8946 | S: Maintained |
8a61f013 | 8947 | F: drivers/video/fbdev/omap2/ |
178ff4c9 TV |
8948 | F: Documentation/arm/OMAP/DSS |
8949 | ||
8b37fcfc OBC |
8950 | OMAP HARDWARE SPINLOCK SUPPORT |
8951 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
8952 | L: linux-omap@vger.kernel.org | |
8953 | S: Maintained | |
8954 | F: drivers/hwspinlock/omap_hwspinlock.c | |
8b37fcfc | 8955 | |
f5525786 | 8956 | OMAP MMC SUPPORT |
8b58be88 | 8957 | M: Jarkko Lavinen <jarkko.lavinen@nokia.com> |
f5525786 TL |
8958 | L: linux-omap@vger.kernel.org |
8959 | S: Maintained | |
653f41b5 MC |
8960 | F: drivers/mmc/host/omap.c |
8961 | ||
8962 | OMAP HS MMC SUPPORT | |
0a4585c6 | 8963 | L: linux-mmc@vger.kernel.org |
653f41b5 | 8964 | L: linux-omap@vger.kernel.org |
dfa5d196 | 8965 | S: Orphan |
653f41b5 | 8966 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
8967 | |
8968 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 8969 | M: Deepak Saxena <dsaxena@plexity.net> |
f5525786 TL |
8970 | S: Maintained |
8971 | F: drivers/char/hw_random/omap-rng.c | |
8972 | ||
f400c82e | 8973 | OMAP HWMOD SUPPORT |
cdb55ab0 | 8974 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
8975 | M: Paul Walmsley <paul@pwsan.com> |
8976 | L: linux-omap@vger.kernel.org | |
8977 | S: Maintained | |
8fc8b12b | 8978 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e | 8979 | |
8633fb30 PW |
8980 | OMAP HWMOD DATA |
8981 | M: Paul Walmsley <paul@pwsan.com> | |
8982 | L: linux-omap@vger.kernel.org | |
8983 | S: Maintained | |
8984 | F: arch/arm/mach-omap2/omap_hwmod*data* | |
8985 | ||
f400c82e | 8986 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES |
cdb55ab0 | 8987 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
8988 | L: linux-omap@vger.kernel.org |
8989 | S: Maintained | |
8990 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
8991 | ||
0db83ced | 8992 | OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS) |
7e8970e1 LP |
8993 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
8994 | L: linux-media@vger.kernel.org | |
8995 | S: Maintained | |
7eec52db | 8996 | F: Documentation/devicetree/bindings/media/ti,omap3isp.txt |
90d72ac6 | 8997 | F: drivers/media/platform/omap3isp/ |
0db83ced | 8998 | F: drivers/staging/media/omap4iss/ |
7e8970e1 | 8999 | |
f5525786 | 9000 | OMAP USB SUPPORT |
f5525786 TL |
9001 | L: linux-usb@vger.kernel.org |
9002 | L: linux-omap@vger.kernel.org | |
3b243519 | 9003 | S: Orphan |
a16fbd65 JP |
9004 | F: drivers/usb/*/*omap* |
9005 | F: arch/arm/*omap*/usb* | |
f5525786 | 9006 | |
6d994710 | 9007 | OMAP GPIO DRIVER |
fe643528 | 9008 | M: Grygorii Strashko <grygorii.strashko@ti.com> |
97215800 | 9009 | M: Santosh Shilimkar <ssantosh@kernel.org> |
3cf2efd5 | 9010 | M: Kevin Hilman <khilman@kernel.org> |
6d994710 KH |
9011 | L: linux-omap@vger.kernel.org |
9012 | S: Maintained | |
fe643528 | 9013 | F: Documentation/devicetree/bindings/gpio/gpio-omap.txt |
6d994710 KH |
9014 | F: drivers/gpio/gpio-omap.c |
9015 | ||
c351e290 MJ |
9016 | OMAP/NEWFLOW NANOBONE MACHINE SUPPORT |
9017 | M: Mark Jackson <mpfj@newflow.co.uk> | |
9018 | L: linux-omap@vger.kernel.org | |
9019 | S: Maintained | |
9020 | F: arch/arm/boot/dts/am335x-nano.dts | |
9021 | ||
0ad122d9 | 9022 | OMFS FILESYSTEM |
8b58be88 | 9023 | M: Bob Copeland <me@bobcopeland.com> |
0ad122d9 BC |
9024 | L: linux-karma-devel@lists.sourceforge.net |
9025 | S: Maintained | |
679655da JP |
9026 | F: Documentation/filesystems/omfs.txt |
9027 | F: fs/omfs/ | |
0ad122d9 | 9028 | |
c1986ee9 | 9029 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 9030 | M: Harald Welte <laforge@gnumonks.org> |
c1986ee9 | 9031 | S: Maintained |
679655da JP |
9032 | F: drivers/char/pcmcia/cm4000_cs.c |
9033 | F: include/linux/cm4000_cs.h | |
c117ab84 | 9034 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 9035 | |
77c44ab1 | 9036 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 9037 | M: Harald Welte <laforge@gnumonks.org> |
77c44ab1 | 9038 | S: Maintained |
679655da | 9039 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 9040 | |
77d5140f | 9041 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 9042 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 9043 | L: linux-media@vger.kernel.org |
275ffde4 | 9044 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 9045 | S: Maintained |
90d72ac6 | 9046 | F: drivers/media/i2c/ov7670.c |
77d5140f | 9047 | |
431bca73 | 9048 | ONENAND FLASH DRIVER |
8b58be88 | 9049 | M: Kyungmin Park <kyungmin.park@samsung.com> |
431bca73 TG |
9050 | L: linux-mtd@lists.infradead.org |
9051 | S: Maintained | |
679655da JP |
9052 | F: drivers/mtd/onenand/ |
9053 | F: include/linux/mtd/onenand*.h | |
431bca73 | 9054 | |
1da177e4 | 9055 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 9056 | M: Willem Riede <osst@riede.org> |
1da177e4 LT |
9057 | L: osst-users@lists.sourceforge.net |
9058 | L: linux-scsi@vger.kernel.org | |
9059 | S: Maintained | |
f7269cfc JD |
9060 | F: Documentation/scsi/osst.txt |
9061 | F: drivers/scsi/osst.* | |
9062 | F: drivers/scsi/osst_*.h | |
9063 | F: drivers/scsi/st.h | |
1da177e4 | 9064 | |
e2d1d6c0 | 9065 | OPENCORES I2C BUS DRIVER |
8b58be88 | 9066 | M: Peter Korsgaard <jacmet@sunsite.dk> |
846557d3 | 9067 | L: linux-i2c@vger.kernel.org |
e2d1d6c0 | 9068 | S: Maintained |
679655da JP |
9069 | F: Documentation/i2c/busses/i2c-ocores |
9070 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 9071 | |
860c44c1 | 9072 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
5d3ad8a6 | 9073 | M: Rob Herring <robh+dt@kernel.org> |
c8fb70a3 | 9074 | M: Frank Rowand <frowand.list@gmail.com> |
d0fb18c5 | 9075 | L: devicetree@vger.kernel.org |
a7fefe9f | 9076 | W: http://www.devicetree.org/ |
fcdec35e | 9077 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git |
860c44c1 | 9078 | S: Maintained |
f8828205 | 9079 | F: drivers/of/ |
860c44c1 | 9080 | F: include/linux/of*.h |
f8828205 | 9081 | F: scripts/dtc/ |
860c44c1 | 9082 | |
f8828205 | 9083 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
5d3ad8a6 | 9084 | M: Rob Herring <robh+dt@kernel.org> |
f8828205 | 9085 | M: Mark Rutland <mark.rutland@arm.com> |
f8828205 | 9086 | L: devicetree@vger.kernel.org |
9f273c24 | 9087 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git |
fcdec35e | 9088 | Q: http://patchwork.ozlabs.org/project/devicetree-bindings/list/ |
f8828205 GL |
9089 | S: Maintained |
9090 | F: Documentation/devicetree/ | |
9091 | F: arch/*/boot/dts/ | |
9092 | F: include/dt-bindings/ | |
9093 | ||
2bb65f56 PA |
9094 | OPEN FIRMWARE AND DEVICE TREE OVERLAYS |
9095 | M: Pantelis Antoniou <pantelis.antoniou@konsulko.com> | |
9096 | L: devicetree@vger.kernel.org | |
9097 | S: Maintained | |
9098 | F: Documentation/devicetree/dynamic-resolution-notes.txt | |
9099 | F: Documentation/devicetree/overlay-notes.txt | |
9100 | F: drivers/of/overlay.c | |
9101 | F: drivers/of/resolver.c | |
9102 | ||
19f9d392 JB |
9103 | OPENRISC ARCHITECTURE |
9104 | M: Jonas Bonn <jonas@southpole.se> | |
d01e1f35 SH |
9105 | M: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi> |
9106 | M: Stafford Horne <shorne@gmail.com> | |
9107 | L: openrisc@lists.librecores.org | |
9108 | W: http://openrisc.io | |
19f9d392 | 9109 | S: Maintained |
14430813 | 9110 | F: arch/openrisc/ |
19f9d392 | 9111 | |
ccb1352e | 9112 | OPENVSWITCH |
4f337ed5 | 9113 | M: Pravin Shelar <pshelar@nicira.com> |
b422da7c | 9114 | L: netdev@vger.kernel.org |
ccb1352e JG |
9115 | L: dev@openvswitch.org |
9116 | W: http://openvswitch.org | |
ccb1352e JG |
9117 | S: Maintained |
9118 | F: net/openvswitch/ | |
b422da7c | 9119 | F: include/uapi/linux/openvswitch.h |
ccb1352e | 9120 | |
875fa6fb VK |
9121 | OPERATING PERFORMANCE POINTS (OPP) |
9122 | M: Viresh Kumar <vireshk@kernel.org> | |
9123 | M: Nishanth Menon <nm@ti.com> | |
9124 | M: Stephen Boyd <sboyd@codeaurora.org> | |
9125 | L: linux-pm@vger.kernel.org | |
9126 | S: Maintained | |
9127 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git | |
9128 | F: drivers/base/power/opp/ | |
9129 | F: include/linux/pm_opp.h | |
9130 | F: Documentation/power/opp.txt | |
9131 | F: Documentation/devicetree/bindings/opp/ | |
9132 | ||
af39917d CL |
9133 | OPL4 DRIVER |
9134 | M: Clemens Ladisch <clemens@ladisch.de> | |
9135 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
9136 | T: git git://git.alsa-project.org/alsa-kernel.git | |
9137 | S: Maintained | |
9138 | F: sound/drivers/opl4/ | |
9139 | ||
1da177e4 | 9140 | OPROFILE |
4cf7e718 | 9141 | M: Robert Richter <rric@kernel.org> |
1da177e4 LT |
9142 | L: oprofile-list@lists.sf.net |
9143 | S: Maintained | |
81c4a8a6 | 9144 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
9145 | F: arch/*/oprofile/ |
9146 | F: drivers/oprofile/ | |
9147 | F: include/linux/oprofile.h | |
1da177e4 | 9148 | |
e2d1d6c0 | 9149 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
0a966fa8 | 9150 | M: Mark Fasheh <mfasheh@versity.com> |
d6351db2 | 9151 | M: Joel Becker <jlbec@evilplan.org> |
e2d1d6c0 | 9152 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
01945fa2 | 9153 | W: http://ocfs2.wiki.kernel.org |
e2d1d6c0 | 9154 | S: Supported |
679655da JP |
9155 | F: Documentation/filesystems/ocfs2.txt |
9156 | F: Documentation/filesystems/dlmfs.txt | |
9157 | F: fs/ocfs2/ | |
e2d1d6c0 | 9158 | |
1da177e4 | 9159 | ORINOCO DRIVER |
724c6b35 | 9160 | L: linux-wireless@vger.kernel.org |
491b26b4 | 9161 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 9162 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 9163 | S: Orphan |
2be45b66 | 9164 | F: drivers/net/wireless/intersil/orinoco/ |
1da177e4 | 9165 | |
42c55aa8 | 9166 | OSD LIBRARY and FILESYSTEM |
fadc0752 | 9167 | M: Boaz Harrosh <ooo@electrozaur.com> |
f1f6630b | 9168 | M: Benny Halevy <bhalevy@primarydata.com> |
68274794 BH |
9169 | L: osd-dev@open-osd.org |
9170 | W: http://open-osd.org | |
54e5881d | 9171 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 9172 | S: Maintained |
42c55aa8 | 9173 | F: drivers/scsi/osd/ |
6b6f0b6c | 9174 | F: include/scsi/osd_* |
42c55aa8 | 9175 | F: fs/exofs/ |
68274794 | 9176 | |
ef94b186 | 9177 | OVERLAY FILESYSTEM |
7c37fbda | 9178 | M: Miklos Szeredi <miklos@szeredi.hu> |
1d113735 MS |
9179 | L: linux-unionfs@vger.kernel.org |
9180 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git | |
7c37fbda | 9181 | S: Supported |
1d113735 | 9182 | F: fs/overlayfs/ |
7c37fbda NB |
9183 | F: Documentation/filesystems/overlayfs.txt |
9184 | ||
85096169 MM |
9185 | ORANGEFS FILESYSTEM |
9186 | M: Mike Marshall <hubcap@omnibond.com> | |
b39c3cf4 | 9187 | L: pvfs2-developers@beowulf-underground.org (subscribers-only) |
85096169 MM |
9188 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git |
9189 | S: Supported | |
9190 | F: fs/orangefs/ | |
9191 | F: Documentation/filesystems/orangefs.txt | |
9192 | ||
e2d1d6c0 | 9193 | P54 WIRELESS DRIVER |
084cb0fe | 9194 | M: Christian Lamparter <chunkeey@googlemail.com> |
e2d1d6c0 | 9195 | L: linux-wireless@vger.kernel.org |
084cb0fe | 9196 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 9197 | S: Maintained |
d3466830 | 9198 | F: drivers/net/wireless/intersil/p54/ |
e2d1d6c0 | 9199 | |
f5cd7872 | 9200 | PA SEMI ETHERNET DRIVER |
f5cd7872 | 9201 | L: netdev@vger.kernel.org |
56a5b8da | 9202 | S: Orphan |
ded19add | 9203 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 9204 | |
beb58aa3 | 9205 | PA SEMI SMBUS DRIVER |
846557d3 | 9206 | L: linux-i2c@vger.kernel.org |
56a5b8da | 9207 | S: Orphan |
679655da | 9208 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 9209 | |
48fc267e SK |
9210 | PADATA PARALLEL EXECUTION MECHANISM |
9211 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
48fc267e SK |
9212 | L: linux-crypto@vger.kernel.org |
9213 | S: Maintained | |
9214 | F: kernel/padata.c | |
9215 | F: include/linux/padata.h | |
9216 | F: Documentation/padata.txt | |
9217 | ||
709ee531 | 9218 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 9219 | M: Harald Welte <laforge@gnumonks.org> |
d0944853 | 9220 | L: platform-driver-x86@vger.kernel.org |
709ee531 | 9221 | S: Maintained |
679655da | 9222 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 9223 | |
368dd5ac | 9224 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 | 9225 | M: David Howells <dhowells@redhat.com> |
4fa97181 DH |
9226 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
9227 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
9228 | S: Maintained | |
679655da JP |
9229 | F: Documentation/mn10300/ |
9230 | F: arch/mn10300/ | |
4fa97181 | 9231 | |
305b37bd KS |
9232 | PARALLEL LCD/KEYPAD PANEL DRIVER |
9233 | M: Willy Tarreau <willy@haproxy.com> | |
9234 | M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com> | |
9235 | S: Odd Fixes | |
9236 | F: Documentation/misc-devices/lcd-panel-cgram.txt | |
9237 | F: drivers/misc/panel.c | |
9238 | ||
64dfff03 SM |
9239 | PARALLEL PORT SUBSYSTEM |
9240 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
80567564 | 9241 | M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk> |
3dd1a329 | 9242 | L: linux-parport@lists.infradead.org (subscribers-only) |
64dfff03 | 9243 | S: Maintained |
679655da JP |
9244 | F: drivers/parport/ |
9245 | F: include/linux/parport*.h | |
9246 | F: drivers/char/ppdev.c | |
c117ab84 | 9247 | F: include/uapi/linux/ppdev.h |
64dfff03 | 9248 | F: Documentation/parport*.txt |
1da177e4 | 9249 | |
4cdf6bc2 | 9250 | PARAVIRT_OPS INTERFACE |
d633180c | 9251 | M: Jeremy Fitzhardinge <jeremy@goop.org> |
8b58be88 JP |
9252 | M: Chris Wright <chrisw@sous-sol.org> |
9253 | M: Alok Kataria <akataria@vmware.com> | |
9254 | M: Rusty Russell <rusty@rustcorp.com.au> | |
c996d8b9 | 9255 | L: virtualization@lists.linux-foundation.org |
4cdf6bc2 | 9256 | S: Supported |
a2e19991 | 9257 | F: Documentation/virtual/paravirt_ops.txt |
679655da JP |
9258 | F: arch/*/kernel/paravirt* |
9259 | F: arch/*/include/asm/paravirt.h | |
47ae4b05 | 9260 | F: include/linux/hypervisor.h |
4cdf6bc2 | 9261 | |
e2d1d6c0 | 9262 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 9263 | M: Tim Waugh <tim@cyberelk.net> |
e2d1d6c0 | 9264 | L: linux-parport@lists.infradead.org (subscribers-only) |
e2d1d6c0 | 9265 | S: Maintained |
679655da JP |
9266 | F: Documentation/blockdev/paride.txt |
9267 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
9268 | |
9269 | PARISC ARCHITECTURE | |
b8828770 | 9270 | M: "James E.J. Bottomley" <jejb@parisc-linux.org> |
b38a03b8 | 9271 | M: Helge Deller <deller@gmx.de> |
e2d1d6c0 RD |
9272 | L: linux-parisc@vger.kernel.org |
9273 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 9274 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 9275 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 9276 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 9277 | S: Maintained |
679655da | 9278 | F: arch/parisc/ |
2b6bac9e | 9279 | F: Documentation/parisc/ |
679655da | 9280 | F: drivers/parisc/ |
2b6bac9e HD |
9281 | F: drivers/char/agp/parisc-agp.c |
9282 | F: drivers/input/serio/gscps2.c | |
9283 | F: drivers/parport/parport_gsc.* | |
9284 | F: drivers/tty/serial/8250/8250_gsc.c | |
8a61f013 | 9285 | F: drivers/video/fbdev/sti* |
2b6bac9e HD |
9286 | F: drivers/video/console/sti* |
9287 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 9288 | |
1662d32c | 9289 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 9290 | M: Jim Cromie <jim.cromie@gmail.com> |
968ce1b1 | 9291 | L: linux-hwmon@vger.kernel.org |
1662d32c | 9292 | S: Maintained |
679655da JP |
9293 | F: Documentation/hwmon/pc87360 |
9294 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
9295 | |
9296 | PC8736x GPIO DRIVER | |
8b58be88 | 9297 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 9298 | S: Maintained |
679655da | 9299 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 9300 | |
1ad107fd | 9301 | PC87427 HARDWARE MONITORING DRIVER |
d8130624 | 9302 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 9303 | L: linux-hwmon@vger.kernel.org |
1ad107fd JD |
9304 | S: Maintained |
9305 | F: Documentation/hwmon/pc87427 | |
9306 | F: drivers/hwmon/pc87427.c | |
9307 | ||
b26e0ed4 | 9308 | PCA9532 LED DRIVER |
8b58be88 | 9309 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 | 9310 | S: Maintained |
d5ca6918 JP |
9311 | F: drivers/leds/leds-pca9532.c |
9312 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 9313 | |
5ce914a8 | 9314 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 9315 | M: Guenter Roeck <linux@roeck-us.net> |
5ce914a8 GR |
9316 | L: linux-i2c@vger.kernel.org |
9317 | S: Maintained | |
b4f0b74e | 9318 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 9319 | |
3971dae5 | 9320 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 9321 | M: Khalid Aziz <khalid@gonehiking.org> |
3971dae5 KA |
9322 | S: Maintained |
9323 | F: drivers/firmware/pcdp.* | |
9324 | ||
065c6359 | 9325 | PCI ERROR RECOVERY |
6305902c | 9326 | M: Linas Vepstas <linasvepstas@gmail.com> |
c1f69db7 | 9327 | L: linux-pci@vger.kernel.org |
065c6359 | 9328 | S: Supported |
679655da | 9329 | F: Documentation/PCI/pci-error-recovery.txt |
065c6359 | 9330 | |
78c1cffd RC |
9331 | PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC |
9332 | M: Russell Currey <ruscur@russell.cc> | |
9333 | L: linuxppc-dev@lists.ozlabs.org | |
9334 | S: Supported | |
9335 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
9336 | F: arch/powerpc/kernel/eeh*.c | |
9337 | F: arch/powerpc/platforms/*/eeh*.c | |
9338 | F: arch/powerpc/include/*/eeh*.h | |
9339 | ||
1da177e4 | 9340 | PCI SUBSYSTEM |
5ac3a6d2 | 9341 | M: Bjorn Helgaas <bhelgaas@google.com> |
2905474d | 9342 | L: linux-pci@vger.kernel.org |
99662dd1 | 9343 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 9344 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 9345 | S: Supported |
92a1fe2e | 9346 | F: Documentation/devicetree/bindings/pci/ |
679655da JP |
9347 | F: Documentation/PCI/ |
9348 | F: drivers/pci/ | |
9349 | F: include/linux/pci* | |
6b49ee49 | 9350 | F: arch/x86/pci/ |
cad01f91 | 9351 | F: arch/x86/kernel/quirks.c |
1da177e4 | 9352 | |
eaa6111b LFT |
9353 | PCI DRIVER FOR ALTERA PCIE IP |
9354 | M: Ley Foon Tan <lftan@altera.com> | |
9355 | L: rfi@lists.rocketboards.org (moderated for non-subscribers) | |
9356 | L: linux-pci@vger.kernel.org | |
9357 | S: Supported | |
9358 | F: Documentation/devicetree/bindings/pci/altera-pcie.txt | |
9359 | F: drivers/pci/host/pcie-altera.c | |
9360 | ||
b7e78170 RH |
9361 | PCI DRIVER FOR ARM VERSATILE PLATFORM |
9362 | M: Rob Herring <robh@kernel.org> | |
9363 | L: linux-pci@vger.kernel.org | |
9364 | L: linux-arm-kernel@lists.infradead.org | |
9365 | S: Maintained | |
9366 | F: Documentation/devicetree/bindings/pci/versatile.txt | |
9367 | F: drivers/pci/host/pci-versatile.c | |
9368 | ||
3dc9d38c TP |
9369 | PCI DRIVER FOR ARMADA 8K |
9370 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
9371 | L: linux-pci@vger.kernel.org | |
9372 | L: linux-arm-kernel@lists.infradead.org | |
9373 | S: Maintained | |
9374 | F: Documentation/devicetree/bindings/pci/pci-armada8k.txt | |
9375 | F: drivers/pci/host/pcie-armada8k.c | |
9376 | ||
5f6b6ccd TI |
9377 | PCI DRIVER FOR APPLIEDMICRO XGENE |
9378 | M: Tanmay Inamdar <tinamdar@apm.com> | |
9379 | L: linux-pci@vger.kernel.org | |
9380 | L: linux-arm-kernel@lists.infradead.org | |
9381 | S: Maintained | |
9382 | F: Documentation/devicetree/bindings/pci/xgene-pci.txt | |
9383 | F: drivers/pci/host/pci-xgene.c | |
9384 | ||
62d0ff83 ML |
9385 | PCI DRIVER FOR FREESCALE LAYERSCAPE |
9386 | M: Minghuan Lian <minghuan.Lian@freescale.com> | |
9387 | M: Mingkai Hu <mingkai.hu@freescale.com> | |
9388 | M: Roy Zang <tie-fei.zang@freescale.com> | |
9389 | L: linuxppc-dev@lists.ozlabs.org | |
9390 | L: linux-pci@vger.kernel.org | |
9391 | L: linux-arm-kernel@lists.infradead.org | |
9392 | S: Maintained | |
9393 | F: drivers/pci/host/*layerscape* | |
9394 | ||
f0b75693 | 9395 | PCI DRIVER FOR IMX6 |
286fbaef | 9396 | M: Richard Zhu <hongxing.zhu@nxp.com> |
1ba55f55 | 9397 | M: Lucas Stach <l.stach@pengutronix.de> |
f0b75693 BH |
9398 | L: linux-pci@vger.kernel.org |
9399 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9400 | S: Maintained | |
12e46064 | 9401 | F: Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt |
f0b75693 BH |
9402 | F: drivers/pci/host/*imx6* |
9403 | ||
0c4ffcfe MK |
9404 | PCI DRIVER FOR TI KEYSTONE |
9405 | M: Murali Karicheri <m-karicheri2@ti.com> | |
9406 | L: linux-pci@vger.kernel.org | |
9407 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9408 | S: Maintained | |
9409 | F: drivers/pci/host/*keystone* | |
9410 | ||
f0b75693 BH |
9411 | PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support) |
9412 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
9413 | M: Jason Cooper <jason@lakedaemon.net> | |
9414 | L: linux-pci@vger.kernel.org | |
9415 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9416 | S: Maintained | |
9417 | F: drivers/pci/host/*mvebu* | |
9418 | ||
8c39d710 TP |
9419 | PCI DRIVER FOR AARDVARK (Marvell Armada 3700) |
9420 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
9421 | L: linux-pci@vger.kernel.org | |
9422 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9423 | S: Maintained | |
441106d9 | 9424 | F: Documentation/devicetree/bindings/pci/aardvark-pci.txt |
8c39d710 TP |
9425 | F: drivers/pci/host/pci-aardvark.c |
9426 | ||
0447cfd7 TR |
9427 | PCI DRIVER FOR NVIDIA TEGRA |
9428 | M: Thierry Reding <thierry.reding@gmail.com> | |
9429 | L: linux-tegra@vger.kernel.org | |
f0b75693 | 9430 | L: linux-pci@vger.kernel.org |
0447cfd7 TR |
9431 | S: Supported |
9432 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt | |
9433 | F: drivers/pci/host/pci-tegra.c | |
9434 | ||
47ff3de9 KVA |
9435 | PCI DRIVER FOR TI DRA7XX |
9436 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
9437 | L: linux-omap@vger.kernel.org | |
9438 | L: linux-pci@vger.kernel.org | |
9439 | S: Supported | |
9440 | F: Documentation/devicetree/bindings/pci/ti-pci.txt | |
9441 | F: drivers/pci/host/pci-dra7xx.c | |
9442 | ||
f0b75693 BH |
9443 | PCI DRIVER FOR RENESAS R-CAR |
9444 | M: Simon Horman <horms@verge.net.au> | |
9445 | L: linux-pci@vger.kernel.org | |
4a121096 | 9446 | L: linux-renesas-soc@vger.kernel.org |
f0b75693 BH |
9447 | S: Maintained |
9448 | F: drivers/pci/host/*rcar* | |
9449 | ||
4af82255 | 9450 | PCI DRIVER FOR SAMSUNG EXYNOS |
b7701755 | 9451 | M: Jingoo Han <jingoohan1@gmail.com> |
4af82255 | 9452 | L: linux-pci@vger.kernel.org |
f0b75693 BH |
9453 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9454 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
4af82255 JH |
9455 | S: Maintained |
9456 | F: drivers/pci/host/pci-exynos.c | |
9457 | ||
f0b75693 | 9458 | PCI DRIVER FOR SYNOPSIS DESIGNWARE |
b7701755 | 9459 | M: Jingoo Han <jingoohan1@gmail.com> |
fc2480f9 | 9460 | M: Joao Pinto <Joao.Pinto@synopsys.com> |
5a3aa2a8 JP |
9461 | L: linux-pci@vger.kernel.org |
9462 | S: Maintained | |
9463 | F: Documentation/devicetree/bindings/pci/designware-pcie.txt | |
fc2480f9 | 9464 | F: drivers/pci/host/*designware* |
5a3aa2a8 | 9465 | |
cf28855b WD |
9466 | PCI DRIVER FOR GENERIC OF HOSTS |
9467 | M: Will Deacon <will.deacon@arm.com> | |
9468 | L: linux-pci@vger.kernel.org | |
9469 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9470 | S: Maintained | |
9471 | F: Documentation/devicetree/bindings/pci/host-generic-pci.txt | |
4e64dbe2 | 9472 | F: drivers/pci/host/pci-host-common.c |
cf28855b WD |
9473 | F: drivers/pci/host/pci-host-generic.c |
9474 | ||
185a383a KB |
9475 | PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD) |
9476 | M: Keith Busch <keith.busch@intel.com> | |
9477 | L: linux-pci@vger.kernel.org | |
9478 | S: Supported | |
bc79c985 | 9479 | F: drivers/pci/host/vmd.c |
185a383a | 9480 | |
51b66a6c | 9481 | PCIE DRIVER FOR ST SPEAR13XX |
110baab1 | 9482 | M: Pratyush Anand <pratyush.anand@gmail.com> |
51b66a6c | 9483 | L: linux-pci@vger.kernel.org |
110baab1 | 9484 | S: Maintained |
51b66a6c PA |
9485 | F: drivers/pci/host/*spear* |
9486 | ||
af1169b4 LFT |
9487 | PCI MSI DRIVER FOR ALTERA MSI IP |
9488 | M: Ley Foon Tan <lftan@altera.com> | |
9489 | L: rfi@lists.rocketboards.org (moderated for non-subscribers) | |
9490 | L: linux-pci@vger.kernel.org | |
9491 | S: Supported | |
9492 | F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt | |
9493 | F: drivers/pci/host/pcie-altera-msi.c | |
51b66a6c | 9494 | |
dcd19de3 DD |
9495 | PCI MSI DRIVER FOR APPLIEDMICRO XGENE |
9496 | M: Duc Dang <dhdang@apm.com> | |
9497 | L: linux-pci@vger.kernel.org | |
9498 | L: linux-arm-kernel@lists.infradead.org | |
9499 | S: Maintained | |
9500 | F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt | |
9501 | F: drivers/pci/host/pci-xgene-msi.c | |
9502 | ||
a3cbfae1 NC |
9503 | PCIE DRIVER FOR AXIS ARTPEC |
9504 | M: Niklas Cassel <niklas.cassel@axis.com> | |
9505 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
9506 | L: linux-arm-kernel@axis.com | |
9507 | L: linux-pci@vger.kernel.org | |
9508 | S: Maintained | |
9509 | F: Documentation/devicetree/bindings/pci/axis,artpec* | |
9510 | F: drivers/pci/host/*artpec* | |
9511 | ||
500a1d9a ZW |
9512 | PCIE DRIVER FOR HISILICON |
9513 | M: Zhou Wang <wangzhou1@hisilicon.com> | |
5930fe4e | 9514 | M: Gabriele Paoloni <gabriele.paoloni@huawei.com> |
500a1d9a ZW |
9515 | L: linux-pci@vger.kernel.org |
9516 | S: Maintained | |
9517 | F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt | |
9518 | F: drivers/pci/host/pcie-hisi.c | |
9519 | ||
e77f847d SL |
9520 | PCIE DRIVER FOR ROCKCHIP |
9521 | M: Shawn Lin <shawn.lin@rock-chips.com> | |
9522 | M: Wenrui Li <wenrui.li@rock-chips.com> | |
9523 | L: linux-pci@vger.kernel.org | |
9524 | L: linux-rockchip@lists.infradead.org | |
9525 | S: Maintained | |
9526 | F: Documentation/devicetree/bindings/pci/rockchip-pcie.txt | |
9527 | F: drivers/pci/host/pcie-rockchip.c | |
9528 | ||
82a82383 SV |
9529 | PCIE DRIVER FOR QUALCOMM MSM |
9530 | M: Stanimir Varbanov <svarbanov@mm-sol.com> | |
9531 | L: linux-pci@vger.kernel.org | |
9532 | L: linux-arm-msm@vger.kernel.org | |
9533 | S: Maintained | |
9534 | F: drivers/pci/host/*qcom* | |
9535 | ||
f12b76e5 DD |
9536 | PCIE DRIVER FOR CAVIUM THUNDERX |
9537 | M: David Daney <david.daney@cavium.com> | |
9538 | L: linux-pci@vger.kernel.org | |
9539 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9540 | S: Supported | |
9541 | F: Documentation/devicetree/bindings/pci/pci-thunder-* | |
9542 | F: drivers/pci/host/pci-thunder-* | |
9543 | ||
1da177e4 | 9544 | PCMCIA SUBSYSTEM |
4230dfc9 | 9545 | P: Linux PCMCIA Team |
f5df5881 | 9546 | L: linux-pcmcia@lists.infradead.org |
6650e0a5 | 9547 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
9f273c24 | 9548 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git |
4230dfc9 | 9549 | S: Maintained |
679655da | 9550 | F: Documentation/pcmcia/ |
a67cd548 | 9551 | F: tools/pcmcia/ |
679655da JP |
9552 | F: drivers/pcmcia/ |
9553 | F: include/pcmcia/ | |
1da177e4 LT |
9554 | |
9555 | PCNET32 NETWORK DRIVER | |
227fb925 | 9556 | M: Don Fry <pcnet32@frontier.com> |
979b6c13 | 9557 | L: netdev@vger.kernel.org |
1da177e4 | 9558 | S: Maintained |
b955f6ca | 9559 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 9560 | |
48fc267e SK |
9561 | PCRYPT PARALLEL CRYPTO ENGINE |
9562 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
9563 | L: linux-crypto@vger.kernel.org | |
9564 | S: Maintained | |
9565 | F: crypto/pcrypt.c | |
9566 | F: include/crypto/pcrypt.h | |
9567 | ||
e72df0b8 TH |
9568 | PER-CPU MEMORY ALLOCATOR |
9569 | M: Tejun Heo <tj@kernel.org> | |
93e205a7 | 9570 | M: Christoph Lameter <cl@linux.com> |
e72df0b8 TH |
9571 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
9572 | S: Maintained | |
9573 | F: include/linux/percpu*.h | |
9574 | F: mm/percpu*.c | |
9575 | F: arch/*/include/asm/percpu.h | |
9576 | ||
ad4ecbcb | 9577 | PER-TASK DELAY ACCOUNTING |
185e595f | 9578 | M: Balbir Singh <bsingharora@gmail.com> |
ad4ecbcb | 9579 | S: Maintained |
679655da JP |
9580 | F: include/linux/delayacct.h |
9581 | F: kernel/delayacct.c | |
ad4ecbcb | 9582 | |
57c0c15b | 9583 | PERFORMANCE EVENTS SUBSYSTEM |
daecbd26 | 9584 | M: Peter Zijlstra <peterz@infradead.org> |
dd9b238c | 9585 | M: Ingo Molnar <mingo@redhat.com> |
f80c5393 | 9586 | M: Arnaldo Carvalho de Melo <acme@kernel.org> |
a54d690e | 9587 | R: Alexander Shishkin <alexander.shishkin@linux.intel.com> |
981c3a4f | 9588 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 9589 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 9590 | S: Supported |
d53e8365 | 9591 | F: kernel/events/* |
a003236c | 9592 | F: include/linux/perf_event.h |
c117ab84 | 9593 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
9594 | F: arch/*/kernel/perf_event*.c |
9595 | F: arch/*/kernel/*/perf_event*.c | |
9596 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 9597 | F: arch/*/include/asm/perf_event.h |
a003236c | 9598 | F: arch/*/kernel/perf_callchain.c |
b0a434fb | 9599 | F: arch/*/events/* |
a003236c | 9600 | F: tools/perf/ |
6c0b3244 | 9601 | |
dd49d0f5 | 9602 | PERSONALITY HANDLING |
8b58be88 | 9603 | M: Christoph Hellwig <hch@infradead.org> |
dd49d0f5 JC |
9604 | L: linux-abi-devel@lists.sourceforge.net |
9605 | S: Maintained | |
679655da | 9606 | F: include/linux/personality.h |
c117ab84 | 9607 | F: include/uapi/linux/personality.h |
dd49d0f5 | 9608 | |
838e7a03 | 9609 | PHONET PROTOCOL |
2a06b40f | 9610 | M: Remi Denis-Courmont <courmisch@gmail.com> |
838e7a03 RDC |
9611 | S: Supported |
9612 | F: Documentation/networking/phonet.txt | |
9613 | F: include/linux/phonet.h | |
9614 | F: include/net/phonet/ | |
c117ab84 | 9615 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
9616 | F: net/phonet/ |
9617 | ||
1da177e4 | 9618 | PHRAM MTD DRIVER |
8b58be88 | 9619 | M: Joern Engel <joern@lazybastard.org> |
1da177e4 LT |
9620 | L: linux-mtd@lists.infradead.org |
9621 | S: Maintained | |
679655da | 9622 | F: drivers/mtd/devices/phram.c |
1da177e4 | 9623 | |
efdbb10e BP |
9624 | PICOLCD HID DRIVER |
9625 | M: Bruno Prémont <bonbons@linux-vserver.org> | |
9626 | L: linux-input@vger.kernel.org | |
9627 | S: Maintained | |
9628 | F: drivers/hid/hid-picolcd* | |
9629 | ||
a53bfa07 JI |
9630 | PICOXCELL SUPPORT |
9631 | M: Jamie Iles <jamie@jamieiles.com> | |
9632 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9633 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
9634 | S: Supported | |
b8733987 | 9635 | F: arch/arm/boot/dts/picoxcell* |
14430813 | 9636 | F: arch/arm/mach-picoxcell/ |
b8733987 | 9637 | F: drivers/crypto/picoxcell* |
a53bfa07 | 9638 | |
2744e8af LW |
9639 | PIN CONTROL SUBSYSTEM |
9640 | M: Linus Walleij <linus.walleij@linaro.org> | |
c11f042b | 9641 | L: linux-gpio@vger.kernel.org |
dbe752a3 | 9642 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git |
2744e8af | 9643 | S: Maintained |
9feeed94 | 9644 | F: Documentation/devicetree/bindings/pinctrl/ |
fefb6245 | 9645 | F: Documentation/pinctrl.txt |
07f29ba6 | 9646 | F: drivers/pinctrl/ |
8e406fe4 | 9647 | F: include/linux/pinctrl/ |
2744e8af | 9648 | |
2201bbb8 JCPV |
9649 | PIN CONTROLLER - ATMEL AT91 |
9650 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> | |
9651 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9652 | S: Maintained | |
c654b6bf | 9653 | F: drivers/pinctrl/pinctrl-at91.* |
2201bbb8 | 9654 | |
33d3690c LD |
9655 | PIN CONTROLLER - ATMEL AT91 PIO4 |
9656 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
9657 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9658 | L: linux-gpio@vger.kernel.org | |
9659 | S: Supported | |
9660 | F: drivers/pinctrl/pinctrl-at91-pio4.* | |
9661 | ||
cbd1b652 MW |
9662 | PIN CONTROLLER - INTEL |
9663 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
9664 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> | |
9665 | S: Maintained | |
9666 | F: drivers/pinctrl/intel/ | |
2201bbb8 | 9667 | |
9963b536 LP |
9668 | PIN CONTROLLER - RENESAS |
9669 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
1a4ca6dd | 9670 | M: Geert Uytterhoeven <geert+renesas@glider.be> |
4a121096 | 9671 | L: linux-renesas-soc@vger.kernel.org |
9963b536 LP |
9672 | S: Maintained |
9673 | F: drivers/pinctrl/sh-pfc/ | |
9674 | ||
b75e60d6 | 9675 | PIN CONTROLLER - SAMSUNG |
fea685e9 | 9676 | M: Tomasz Figa <tomasz.figa@gmail.com> |
326dce07 | 9677 | M: Krzysztof Kozlowski <krzk@kernel.org> |
44b03c10 | 9678 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
b75e60d6 DA |
9679 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9680 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
9681 | S: Maintained | |
9b5b33f6 | 9682 | F: drivers/pinctrl/samsung/ |
5db7e3bb KK |
9683 | F: include/dt-bindings/pinctrl/samsung.h |
9684 | F: Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt | |
b75e60d6 | 9685 | |
13cbd906 TL |
9686 | PIN CONTROLLER - SINGLE |
9687 | M: Tony Lindgren <tony@atomide.com> | |
9688 | M: Haojian Zhuang <haojian.zhuang@linaro.org> | |
9689 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9690 | L: linux-omap@vger.kernel.org | |
9691 | S: Maintained | |
9692 | F: drivers/pinctrl/pinctrl-single.c | |
9693 | ||
deda8287 | 9694 | PIN CONTROLLER - ST SPEAR |
da89947b | 9695 | M: Viresh Kumar <vireshk@kernel.org> |
deda8287 VK |
9696 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9697 | W: http://www.st.com/spear | |
9698 | S: Maintained | |
8e406fe4 | 9699 | F: drivers/pinctrl/spear/ |
deda8287 | 9700 | |
11a1cf34 JH |
9701 | PISTACHIO SOC SUPPORT |
9702 | M: James Hartley <james.hartley@imgtec.com> | |
9703 | M: Ionela Voinescu <ionela.voinescu@imgtec.com> | |
9704 | L: linux-mips@linux-mips.org | |
9705 | S: Maintained | |
9706 | F: arch/mips/pistachio/ | |
9707 | F: arch/mips/include/asm/mach-pistachio/ | |
9708 | F: arch/mips/boot/dts/pistachio/ | |
9709 | F: arch/mips/configs/pistachio*_defconfig | |
9710 | ||
249a6771 | 9711 | PKTCDVD DRIVER |
5a8b187c JA |
9712 | S: Orphan |
9713 | M: linux-block@vger.kernel.org | |
679655da JP |
9714 | F: drivers/block/pktcdvd.c |
9715 | F: include/linux/pktcdvd.h | |
c117ab84 | 9716 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 9717 | |
b31d8273 G |
9718 | PKUNITY SOC DRIVERS |
9719 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
9720 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
9721 | S: Maintained | |
ceebf4d5 | 9722 | T: git git://github.com/gxt/linux.git |
b31d8273 | 9723 | F: drivers/input/serio/i8042-unicore32io.h |
d10e4a66 | 9724 | F: drivers/i2c/busses/i2c-puv3.c |
8a61f013 | 9725 | F: drivers/video/fbdev/fb-puv3.c |
2809e80b | 9726 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 9727 | |
9d2ecfb7 | 9728 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 9729 | M: Guenter Roeck <linux@roeck-us.net> |
968ce1b1 GR |
9730 | L: linux-hwmon@vger.kernel.org |
9731 | W: http://hwmon.wiki.kernel.org/ | |
9d2ecfb7 GR |
9732 | W: http://www.roeck-us.net/linux/drivers/ |
9733 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
9734 | S: Maintained | |
9735 | F: Documentation/hwmon/pmbus | |
9736 | F: drivers/hwmon/pmbus/ | |
9737 | F: include/linux/i2c/pmbus.h | |
9738 | ||
89a36810 | 9739 | PMC SIERRA MaxRAID DRIVER |
89a36810 AR |
9740 | L: linux-scsi@vger.kernel.org |
9741 | W: http://www.pmc-sierra.com/ | |
3cdea4d7 | 9742 | S: Orphan |
89a36810 AR |
9743 | F: drivers/scsi/pmcraid.* |
9744 | ||
dbf9bfe6 | 9745 | PMC SIERRA PM8001 DRIVER |
d32477e2 | 9746 | M: Jack Wang <jinpu.wang@profitbricks.com> |
dbf9bfe6 | 9747 | M: lindar_liu@usish.com |
f5a7b525 | 9748 | L: pmchba@pmcs.com |
dbf9bfe6 | 9749 | L: linux-scsi@vger.kernel.org |
9750 | S: Supported | |
9751 | F: drivers/scsi/pm8001/ | |
9752 | ||
1da177e4 | 9753 | POSIX CLOCKS and TIMERS |
8b58be88 | 9754 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 9755 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 9756 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
5cee9645 | 9757 | S: Maintained |
679655da JP |
9758 | F: fs/timerfd.c |
9759 | F: include/linux/timer* | |
5cee9645 | 9760 | F: kernel/time/*timer* |
1da177e4 | 9761 | |
7b06a6d7 RW |
9762 | POWER MANAGEMENT CORE |
9763 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> | |
9764 | L: linux-pm@vger.kernel.org | |
9765 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
68656443 | 9766 | B: https://bugzilla.kernel.org |
7b06a6d7 RW |
9767 | S: Supported |
9768 | F: drivers/base/power/ | |
9769 | F: include/linux/pm.h | |
9770 | F: include/linux/pm_* | |
9771 | F: include/linux/powercap.h | |
9772 | F: drivers/powercap/ | |
9773 | ||
3be86148 | 9774 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
ad8464a2 | 9775 | M: Sebastian Reichel <sre@kernel.org> |
ad8464a2 | 9776 | L: linux-pm@vger.kernel.org |
58db9505 | 9777 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git |
3be86148 | 9778 | S: Maintained |
f3332532 | 9779 | F: Documentation/devicetree/bindings/power/supply/ |
679655da | 9780 | F: include/linux/power_supply.h |
8c0984e5 | 9781 | F: drivers/power/supply/ |
3be86148 | 9782 | |
514f161a MR |
9783 | POWER STATE COORDINATION INTERFACE (PSCI) |
9784 | M: Mark Rutland <mark.rutland@arm.com> | |
9785 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
9786 | L: linux-arm-kernel@lists.infradead.org | |
9787 | S: Maintained | |
9788 | F: drivers/firmware/psci.c | |
9789 | F: include/linux/psci.h | |
9790 | F: include/uapi/linux/psci.h | |
9791 | ||
43a1dd9b SJS |
9792 | POWERNV OPERATOR PANEL LCD DISPLAY DRIVER |
9793 | M: Suraj Jitindar Singh <sjitindarsingh@gmail.com> | |
9794 | L: linuxppc-dev@lists.ozlabs.org | |
9795 | S: Maintained | |
9796 | F: drivers/char/powernv-op-panel.c | |
9797 | ||
1da177e4 | 9798 | PNP SUPPORT |
9c3646d1 | 9799 | M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> |
1da177e4 | 9800 | S: Maintained |
679655da | 9801 | F: drivers/pnp/ |
1da177e4 LT |
9802 | |
9803 | PPP PROTOCOL DRIVERS AND COMPRESSORS | |
8b58be88 | 9804 | M: Paul Mackerras <paulus@samba.org> |
1da177e4 LT |
9805 | L: linux-ppp@vger.kernel.org |
9806 | S: Maintained | |
224cf5ad | 9807 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
9808 | |
9809 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 9810 | M: Mitchell Blank Jr <mitch@sfgoth.com> |
1da177e4 | 9811 | S: Maintained |
679655da | 9812 | F: net/atm/pppoatm.c |
c117ab84 | 9813 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
9814 | |
9815 | PPP OVER ETHERNET | |
8b58be88 | 9816 | M: Michal Ostrowski <mostrows@earthlink.net> |
1da177e4 | 9817 | S: Maintained |
224cf5ad JK |
9818 | F: drivers/net/ppp/pppoe.c |
9819 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 9820 | |
a6d2370b | 9821 | PPP OVER L2TP |
8b58be88 | 9822 | M: James Chapman <jchapman@katalix.com> |
a6d2370b | 9823 | S: Maintained |
90ca28d1 | 9824 | F: net/l2tp/l2tp_ppp.c |
679655da | 9825 | F: include/linux/if_pppol2tp.h |
c117ab84 | 9826 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 9827 | |
eae9d2ba | 9828 | PPS SUPPORT |
8b58be88 | 9829 | M: Rodolfo Giometti <giometti@enneenne.com> |
eae9d2ba RG |
9830 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
9831 | L: linuxpps@ml.enneenne.com (subscribers-only) | |
9832 | S: Maintained | |
cabaaf41 JP |
9833 | F: Documentation/pps/ |
9834 | F: drivers/pps/ | |
9835 | F: include/linux/pps*.h | |
eae9d2ba | 9836 | |
71a6d0af HW |
9837 | PPTP DRIVER |
9838 | M: Dmitry Kozlov <xeb@mail.ru> | |
9839 | L: netdev@vger.kernel.org | |
9840 | S: Maintained | |
224cf5ad | 9841 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
9842 | W: http://sourceforge.net/projects/accel-pptp |
9843 | ||
1da177e4 | 9844 | PREEMPTIBLE KERNEL |
8b58be88 | 9845 | M: Robert Love <rml@tech9.net> |
1da177e4 LT |
9846 | L: kpreempt-tech@lists.sourceforge.net |
9847 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
9848 | S: Supported | |
679655da JP |
9849 | F: Documentation/preempt-locking.txt |
9850 | F: include/linux/preempt.h | |
1da177e4 LT |
9851 | |
9852 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 9853 | M: "Luis R. Rodriguez" <mcgrof@gmail.com> |
724c6b35 | 9854 | L: linux-wireless@vger.kernel.org |
9ef80804 | 9855 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 9856 | S: Obsolete |
c12edfe2 | 9857 | F: drivers/net/wireless/intersil/prism54/ |
1da177e4 | 9858 | |
02c18891 | 9859 | PS3 NETWORK SUPPORT |
b809b9ca | 9860 | M: Geoff Levand <geoff@infradead.org> |
02c18891 | 9861 | L: netdev@vger.kernel.org |
a14ab6b6 | 9862 | L: linuxppc-dev@lists.ozlabs.org |
b809b9ca | 9863 | S: Maintained |
8df158ac | 9864 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 9865 | |
f58a9d17 | 9866 | PS3 PLATFORM SUPPORT |
b809b9ca | 9867 | M: Geoff Levand <geoff@infradead.org> |
a4724ed6 | 9868 | L: linuxppc-dev@lists.ozlabs.org |
b809b9ca | 9869 | S: Maintained |
679655da JP |
9870 | F: arch/powerpc/boot/ps3* |
9871 | F: arch/powerpc/include/asm/lv1call.h | |
9872 | F: arch/powerpc/include/asm/ps3*.h | |
9873 | F: arch/powerpc/platforms/ps3/ | |
9874 | F: drivers/*/ps3* | |
9875 | F: drivers/ps3/ | |
fec629b8 | 9876 | F: drivers/rtc/rtc-ps3.c |
679655da | 9877 | F: drivers/usb/host/*ps3.c |
fec629b8 | 9878 | F: sound/ppc/snd_ps3* |
f58a9d17 | 9879 | |
cffb4add | 9880 | PS3VRAM DRIVER |
8b58be88 | 9881 | M: Jim Paris <jim@jtan.com> |
3715a5d0 | 9882 | M: Geoff Levand <geoff@infradead.org> |
a14ab6b6 | 9883 | L: linuxppc-dev@lists.ozlabs.org |
cffb4add | 9884 | S: Maintained |
8a3977cb | 9885 | F: drivers/block/ps3vram.c |
cffb4add | 9886 | |
8defe599 | 9887 | PSTORE FILESYSTEM |
9d5e2a02 | 9888 | M: Anton Vorontsov <anton@enomsg.org> |
8defe599 AV |
9889 | M: Colin Cross <ccross@android.com> |
9890 | M: Kees Cook <keescook@chromium.org> | |
9891 | M: Tony Luck <tony.luck@intel.com> | |
9892 | S: Maintained | |
9f273c24 | 9893 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
8defe599 AV |
9894 | F: fs/pstore/ |
9895 | F: include/linux/pstore* | |
04851772 | 9896 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 AV |
9897 | F: drivers/acpi/apei/erst.c |
9898 | ||
7fbc415d RC |
9899 | PTP HARDWARE CLOCK SUPPORT |
9900 | M: Richard Cochran <richardcochran@gmail.com> | |
e7333e3c | 9901 | L: netdev@vger.kernel.org |
7fbc415d RC |
9902 | S: Maintained |
9903 | W: http://linuxptp.sourceforge.net/ | |
9904 | F: Documentation/ABI/testing/sysfs-ptp | |
9905 | F: Documentation/ptp/* | |
0ecb3cdd | 9906 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
9907 | F: drivers/net/phy/dp83640* |
9908 | F: drivers/ptp/* | |
9909 | F: include/linux/ptp_cl* | |
9910 | ||
cf94a4d1 | 9911 | PTRACE SUPPORT |
e846ee5f | 9912 | M: Roland McGrath <roland@hack.frob.com> |
8b58be88 | 9913 | M: Oleg Nesterov <oleg@redhat.com> |
cf94a4d1 CH |
9914 | S: Maintained |
9915 | F: include/asm-generic/syscall.h | |
9916 | F: include/linux/ptrace.h | |
9917 | F: include/linux/regset.h | |
9918 | F: include/linux/tracehook.h | |
c117ab84 | 9919 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
9920 | F: kernel/ptrace.c |
9921 | ||
3e9d7ba7 HV |
9922 | PULSE8-CEC DRIVER |
9923 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9924 | L: linux-media@vger.kernel.org | |
9925 | T: git git://linuxtv.org/media_tree.git | |
9926 | S: Maintained | |
9927 | F: drivers/staging/media/pulse8-cec | |
9928 | ||
8320204a | 9929 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 9930 | M: Mike Isely <isely@pobox.com> |
16e9495d | 9931 | L: pvrusb2@isely.net (subscribers-only) |
661263b5 | 9932 | L: linux-media@vger.kernel.org |
8320204a | 9933 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 9934 | T: git git://linuxtv.org/media_tree.git |
8320204a | 9935 | S: Maintained |
618cd932 | 9936 | F: Documentation/media/v4l-drivers/pvrusb2* |
0c0d06ca | 9937 | F: drivers/media/usb/pvrusb2/ |
8320204a | 9938 | |
39532e6c | 9939 | PWC WEBCAM DRIVER |
c0936df4 | 9940 | M: Hans Verkuil <hverkuil@xs4all.nl> |
39532e6c HG |
9941 | L: linux-media@vger.kernel.org |
9942 | T: git git://linuxtv.org/media_tree.git | |
c0936df4 | 9943 | S: Odd Fixes |
39532e6c HG |
9944 | F: drivers/media/usb/pwc/* |
9945 | ||
93c090b3 | 9946 | PWM FAN DRIVER |
774e0362 | 9947 | M: Kamil Debski <kamil@wypas.org> |
0faf7dd5 | 9948 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
968ce1b1 | 9949 | L: linux-hwmon@vger.kernel.org |
93c090b3 KD |
9950 | S: Supported |
9951 | F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt | |
9952 | F: Documentation/hwmon/pwm-fan | |
9953 | F: drivers/hwmon/pwm-fan.c | |
9954 | ||
200efedd | 9955 | PWM SUBSYSTEM |
aa3495f7 TR |
9956 | M: Thierry Reding <thierry.reding@gmail.com> |
9957 | L: linux-pwm@vger.kernel.org | |
0c2498f1 | 9958 | S: Maintained |
006e854f | 9959 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git |
200efedd TR |
9960 | F: Documentation/pwm.txt |
9961 | F: Documentation/devicetree/bindings/pwm/ | |
9962 | F: include/linux/pwm.h | |
0c2498f1 | 9963 | F: drivers/pwm/ |
a140b98d TR |
9964 | F: drivers/video/backlight/pwm_bl.c |
9965 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 9966 | |
30ec261e | 9967 | PXA2xx/PXA3xx SUPPORT |
8da5e302 | 9968 | M: Daniel Mack <daniel@zonque.org> |
a323f664 | 9969 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
8da5e302 | 9970 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 9971 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 | 9972 | T: git git://github.com/hzhuang1/linux.git |
8da5e302 | 9973 | T: git git://github.com/rjarzmik/linux.git |
1da177e4 | 9974 | S: Maintained |
e68d7c14 | 9975 | F: arch/arm/boot/dts/pxa* |
679655da | 9976 | F: arch/arm/mach-pxa/ |
820439f1 | 9977 | F: drivers/dma/pxa* |
679655da | 9978 | F: drivers/pcmcia/pxa2xx* |
1403ead9 | 9979 | F: drivers/pinctrl/pxa/ |
9df92e6c | 9980 | F: drivers/spi/spi-pxa2xx* |
faf2e1db | 9981 | F: drivers/usb/gadget/udc/pxa2* |
679655da | 9982 | F: include/sound/pxa2xx-lib.h |
bec4c99e | 9983 | F: sound/arm/pxa* |
14430813 | 9984 | F: sound/soc/pxa/ |
1da177e4 | 9985 | |
f3154a46 RJ |
9986 | PXA GPIO DRIVER |
9987 | M: Robert Jarzmik <robert.jarzmik@free.fr> | |
9988 | L: linux-gpio@vger.kernel.org | |
9989 | S: Maintained | |
9990 | F: drivers/gpio/gpio-pxa.c | |
9991 | ||
ec64d3bf EG |
9992 | PXA3xx NAND FLASH DRIVER |
9993 | M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> | |
9994 | L: linux-mtd@lists.infradead.org | |
9995 | S: Maintained | |
9a67f099 | 9996 | F: drivers/mtd/nand/pxa3xx_nand.c |
ec64d3bf | 9997 | |
3f640c61 | 9998 | MMP SUPPORT |
8b58be88 | 9999 | M: Eric Miao <eric.y.miao@gmail.com> |
a323f664 | 10000 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
e8e6cb32 | 10001 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 HZ |
10002 | T: git git://github.com/hzhuang1/linux.git |
10003 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 10004 | S: Maintained |
e68d7c14 | 10005 | F: arch/arm/boot/dts/mmp* |
3f640c61 | 10006 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 10007 | |
272f133a PO |
10008 | PXA MMCI DRIVER |
10009 | S: Orphan | |
10010 | ||
57f63bc8 | 10011 | PXA RTC DRIVER |
8b58be88 | 10012 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
57f63bc8 RJ |
10013 | L: rtc-linux@googlegroups.com |
10014 | S: Maintained | |
10015 | ||
cea4001a | 10016 | QAT DRIVER |
90ab5a81 TS |
10017 | M: Giovanni Cabiddu <giovanni.cabiddu@intel.com> |
10018 | M: Salvatore Benedetto <salvatore.benedetto@intel.com> | |
49e7d9df JP |
10019 | L: qat-linux@intel.com |
10020 | S: Supported | |
10021 | F: drivers/crypto/qat/ | |
cea4001a | 10022 | |
52a09a04 | 10023 | QIB DRIVER |
8473c603 | 10024 | M: Mike Marciniszyn <infinipath@intel.com> |
52a09a04 MM |
10025 | L: linux-rdma@vger.kernel.org |
10026 | S: Supported | |
10027 | F: drivers/infiniband/hw/qib/ | |
10028 | ||
5e9772b9 JS |
10029 | QLOGIC QLA1280 SCSI DRIVER |
10030 | M: Michael Reed <mdr@sgi.com> | |
10031 | L: linux-scsi@vger.kernel.org | |
10032 | S: Maintained | |
10033 | F: drivers/scsi/qla1280.[ch] | |
10034 | ||
1da177e4 | 10035 | QLOGIC QLA2XXX FC-SCSI DRIVER |
2c804eb0 | 10036 | M: qla2xxx-upstream@qlogic.com |
1da177e4 LT |
10037 | L: linux-scsi@vger.kernel.org |
10038 | S: Supported | |
679655da JP |
10039 | F: Documentation/scsi/LICENSE.qla2xxx |
10040 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 10041 | |
883c98fe | 10042 | QLOGIC QLA4XXX iSCSI DRIVER |
1018b8b9 | 10043 | M: QLogic-Storage-Upstream@qlogic.com |
883c98fe RA |
10044 | L: linux-scsi@vger.kernel.org |
10045 | S: Supported | |
bacfb81b | 10046 | F: Documentation/scsi/LICENSE.qla4xxx |
883c98fe RA |
10047 | F: drivers/scsi/qla4xxx/ |
10048 | ||
5a4faa87 | 10049 | QLOGIC QLA3XXX NETWORK DRIVER |
67f0160f | 10050 | M: Dept-GELinuxNICDev@cavium.com |
5a4faa87 RM |
10051 | L: netdev@vger.kernel.org |
10052 | S: Supported | |
679655da | 10053 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 10054 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 10055 | |
0ec00f03 | 10056 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
67f0160f MY |
10057 | M: Harish Patil <harish.patil@cavium.com> |
10058 | M: Manish Chopra <manish.chopra@cavium.com> | |
10059 | M: Dept-GELinuxNICDev@cavium.com | |
0ec00f03 AKS |
10060 | L: netdev@vger.kernel.org |
10061 | S: Supported | |
aa43c215 | 10062 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 10063 | |
c4e84bde | 10064 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
67f0160f MY |
10065 | M: Harish Patil <harish.patil@cavium.com> |
10066 | M: Manish Chopra <manish.chopra@cavium.com> | |
10067 | M: Dept-GELinuxNICDev@cavium.com | |
c4e84bde RM |
10068 | L: netdev@vger.kernel.org |
10069 | S: Supported | |
aa43c215 | 10070 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 10071 | |
fe56b9e6 | 10072 | QLOGIC QL4xxx ETHERNET DRIVER |
67f0160f MY |
10073 | M: Yuval Mintz <Yuval.Mintz@cavium.com> |
10074 | M: Ariel Elior <Ariel.Elior@cavium.com> | |
10075 | M: everest-linux-l2@cavium.com | |
fe56b9e6 YM |
10076 | L: netdev@vger.kernel.org |
10077 | S: Supported | |
10078 | F: drivers/net/ethernet/qlogic/qed/ | |
10079 | F: include/linux/qed/ | |
10080 | F: drivers/net/ethernet/qlogic/qede/ | |
10081 | ||
1da177e4 | 10082 | QNX4 FILESYSTEM |
8b58be88 | 10083 | M: Anders Larsen <al@alarsen.net> |
1da177e4 LT |
10084 | W: http://www.alarsen.net/linux/qnx4fs/ |
10085 | S: Maintained | |
80811493 | 10086 | F: fs/qnx4/ |
c117ab84 CEB |
10087 | F: include/uapi/linux/qnx4_fs.h |
10088 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 10089 | |
d8b97569 SY |
10090 | QORIQ DPAA2 FSL-MC BUS DRIVER |
10091 | M: Stuart Yoder <stuart.yoder@nxp.com> | |
10092 | L: linux-kernel@vger.kernel.org | |
10093 | S: Maintained | |
10094 | F: drivers/staging/fsl-mc/ | |
10095 | ||
91952bc0 AP |
10096 | QT1010 MEDIA DRIVER |
10097 | M: Antti Palosaari <crope@iki.fi> | |
10098 | L: linux-media@vger.kernel.org | |
a825eaec | 10099 | W: https://linuxtv.org |
91952bc0 AP |
10100 | W: http://palosaari.fi/linux/ |
10101 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10102 | T: git git://linuxtv.org/anttip/media_tree.git | |
10103 | S: Maintained | |
10104 | F: drivers/media/tuners/qt1010* | |
10105 | ||
966fb5ec SM |
10106 | QUALCOMM ATHEROS ATH9K WIRELESS DRIVER |
10107 | M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com> | |
10108 | L: linux-wireless@vger.kernel.org | |
10109 | L: ath9k-devel@lists.ath9k.org | |
10110 | W: http://wireless.kernel.org/en/users/Drivers/ath9k | |
10111 | S: Supported | |
10112 | F: drivers/net/wireless/ath/ath9k/ | |
10113 | ||
2ea0ffcb KV |
10114 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
10115 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
10116 | L: ath10k@lists.infradead.org | |
10117 | W: http://wireless.kernel.org/en/users/Drivers/ath10k | |
9f273c24 | 10118 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git |
2ea0ffcb KV |
10119 | S: Supported |
10120 | F: drivers/net/wireless/ath/ath10k/ | |
10121 | ||
b9b17deb TT |
10122 | QUALCOMM EMAC GIGABIT ETHERNET DRIVER |
10123 | M: Timur Tabi <timur@codeaurora.org> | |
10124 | L: netdev@vger.kernel.org | |
10125 | S: Supported | |
10126 | F: drivers/net/ethernet/qualcomm/emac/ | |
10127 | ||
4f4567cf RK |
10128 | QUALCOMM HEXAGON ARCHITECTURE |
10129 | M: Richard Kuo <rkuo@codeaurora.org> | |
10130 | L: linux-hexagon@vger.kernel.org | |
9f273c24 | 10131 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git |
4f4567cf RK |
10132 | S: Supported |
10133 | F: arch/hexagon/ | |
10134 | ||
8e84c258 EK |
10135 | QUALCOMM WCN36XX WIRELESS DRIVER |
10136 | M: Eugene Krasnikov <k.eugene.e@gmail.com> | |
10137 | L: wcn36xx@lists.infradead.org | |
10138 | W: http://wireless.kernel.org/en/users/Drivers/wcn36xx | |
10139 | T: git git://github.com/KrasnikovEugene/wcn36xx.git | |
10140 | S: Supported | |
10141 | F: drivers/net/wireless/ath/wcn36xx/ | |
10142 | ||
eeca9a67 MT |
10143 | QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT |
10144 | M: Gabriel Somlo <somlo@cmu.edu> | |
10145 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
10146 | L: qemu-devel@nongnu.org | |
10147 | S: Maintained | |
10148 | F: drivers/firmware/qemu_fw_cfg.c | |
10149 | ||
602adf40 | 10150 | RADOS BLOCK DEVICE (RBD) |
0f5417ce SW |
10151 | M: Ilya Dryomov <idryomov@gmail.com> |
10152 | M: Sage Weil <sage@redhat.com> | |
527a88b9 | 10153 | M: Alex Elder <elder@kernel.org> |
398ecff5 | 10154 | L: ceph-devel@vger.kernel.org |
09d90327 SW |
10155 | W: http://ceph.com/ |
10156 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
6e67b7ae | 10157 | T: git git://github.com/ceph/ceph-client.git |
602adf40 | 10158 | S: Supported |
398ecff5 | 10159 | F: Documentation/ABI/testing/sysfs-bus-rbd |
602adf40 YS |
10160 | F: drivers/block/rbd.c |
10161 | F: drivers/block/rbd_types.h | |
10162 | ||
1da177e4 | 10163 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 10164 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
c69f677c | 10165 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 10166 | S: Maintained |
8a61f013 | 10167 | F: drivers/video/fbdev/aty/radeon* |
c117ab84 | 10168 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 10169 | |
c6c9b34c | 10170 | RADIOSHARK RADIO DRIVER |
c0936df4 | 10171 | M: Hans Verkuil <hverkuil@xs4all.nl> |
c6c9b34c HG |
10172 | L: linux-media@vger.kernel.org |
10173 | T: git git://linuxtv.org/media_tree.git | |
10174 | S: Maintained | |
10175 | F: drivers/media/radio/radio-shark.c | |
10176 | ||
10177 | RADIOSHARK2 RADIO DRIVER | |
c0936df4 | 10178 | M: Hans Verkuil <hverkuil@xs4all.nl> |
c6c9b34c HG |
10179 | L: linux-media@vger.kernel.org |
10180 | T: git git://linuxtv.org/media_tree.git | |
10181 | S: Maintained | |
10182 | F: drivers/media/radio/radio-shark2.c | |
10183 | F: drivers/media/radio/radio-tea5777.c | |
10184 | ||
1da177e4 | 10185 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 10186 | M: Paul Mackerras <paulus@samba.org> |
c69f677c | 10187 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 10188 | S: Maintained |
8a61f013 | 10189 | F: drivers/video/fbdev/aty/aty128fb.c |
1da177e4 | 10190 | |
a0fd81a9 | 10191 | RALINK MIPS ARCHITECTURE |
bdb40e8e | 10192 | M: John Crispin <john@phrozen.org> |
a0fd81a9 JC |
10193 | L: linux-mips@linux-mips.org |
10194 | S: Maintained | |
10195 | F: arch/mips/ralink | |
10196 | ||
e7839f25 | 10197 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 10198 | P: rt2x00 project |
b182427e | 10199 | M: Stanislaw Gruszka <sgruszka@redhat.com> |
f198f98e | 10200 | M: Helmut Schaa <helmut.schaa@googlemail.com> |
95ea3627 | 10201 | L: linux-wireless@vger.kernel.org |
95ea3627 | 10202 | S: Maintained |
33aca94d | 10203 | F: drivers/net/wireless/ralink/rt2x00/ |
95ea3627 | 10204 | |
9db5579b | 10205 | RAMDISK RAM BLOCK DEVICE DRIVER |
ea7618ec | 10206 | M: Jens Axboe <axboe@kernel.dk> |
9db5579b | 10207 | S: Maintained |
679655da JP |
10208 | F: Documentation/blockdev/ramdisk.txt |
10209 | F: drivers/block/brd.c | |
9db5579b | 10210 | |
9e95ce27 | 10211 | RANDOM NUMBER DRIVER |
0624bcaa | 10212 | M: "Theodore Ts'o" <tytso@mit.edu> |
9e95ce27 | 10213 | S: Maintained |
679655da | 10214 | F: drivers/char/random.c |
9e95ce27 | 10215 | |
394b701c | 10216 | RAPIDIO SUBSYSTEM |
8b58be88 | 10217 | M: Matt Porter <mporter@kernel.crashing.org> |
b8bc1dd3 | 10218 | M: Alexandre Bounine <alexandre.bounine@idt.com> |
394b701c | 10219 | S: Maintained |
679655da | 10220 | F: drivers/rapidio/ |
394b701c | 10221 | |
e2d1d6c0 | 10222 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 10223 | L: linux-wireless@vger.kernel.org |
f52a5490 | 10224 | S: Orphan |
679655da | 10225 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
10226 | |
10227 | RCUTORTURE MODULE | |
e0198b29 | 10228 | M: Josh Triplett <josh@joshtriplett.org> |
8b58be88 | 10229 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
981c3a4f | 10230 | L: linux-kernel@vger.kernel.org |
f9094d8e | 10231 | S: Supported |
08deed1e | 10232 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da | 10233 | F: Documentation/RCU/torture.txt |
34e2d560 | 10234 | F: kernel/rcu/rcutorture.c |
e2d1d6c0 | 10235 | |
c87b9c60 PM |
10236 | RCUTORTURE TEST FRAMEWORK |
10237 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
ab0afd6c | 10238 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
10239 | R: Steven Rostedt <rostedt@goodmis.org> |
10240 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
96a39bc4 | 10241 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
981c3a4f | 10242 | L: linux-kernel@vger.kernel.org |
c87b9c60 PM |
10243 | S: Supported |
10244 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
10245 | F: tools/testing/selftests/rcutorture | |
10246 | ||
c1f766b5 | 10247 | RDC R-321X SoC |
8b58be88 | 10248 | M: Florian Fainelli <florian@openwrt.org> |
c1f766b5 FF |
10249 | S: Maintained |
10250 | ||
db17f395 | 10251 | RDC R6040 FAST ETHERNET DRIVER |
35566e96 | 10252 | M: Florian Fainelli <f.fainelli@gmail.com> |
db17f395 FF |
10253 | L: netdev@vger.kernel.org |
10254 | S: Maintained | |
58565a35 | 10255 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 10256 | |
a09ed661 | 10257 | RDS - RELIABLE DATAGRAM SOCKETS |
72f26eee | 10258 | M: Santosh Shilimkar <santosh.shilimkar@oracle.com> |
10259 | L: netdev@vger.kernel.org | |
10260 | L: linux-rdma@vger.kernel.org | |
fbb5a558 | 10261 | L: rds-devel@oss.oracle.com (moderated for non-subscribers) |
72f26eee | 10262 | W: https://oss.oracle.com/projects/rds/ |
a09ed661 | 10263 | S: Supported |
679655da | 10264 | F: net/rds/ |
72f26eee | 10265 | F: Documentation/networking/rds.txt |
a09ed661 | 10266 | |
0194621b DD |
10267 | RDMAVT - RDMA verbs software |
10268 | M: Dennis Dalessandro <dennis.dalessandro@intel.com> | |
10269 | L: linux-rdma@vger.kernel.org | |
10270 | S: Supported | |
10271 | F: drivers/infiniband/sw/rdmavt | |
10272 | ||
595182bc | 10273 | READ-COPY UPDATE (RCU) |
8b58be88 | 10274 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
ab0afd6c | 10275 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
10276 | R: Steven Rostedt <rostedt@goodmis.org> |
10277 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
96a39bc4 | 10278 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
981c3a4f | 10279 | L: linux-kernel@vger.kernel.org |
9fab9787 | 10280 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 10281 | S: Supported |
08deed1e | 10282 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 10283 | F: Documentation/RCU/ |
9fab9787 | 10284 | X: Documentation/RCU/torture.txt |
f9094d8e | 10285 | F: include/linux/rcu* |
4102adab PM |
10286 | X: include/linux/srcu.h |
10287 | F: kernel/rcu/ | |
34e2d560 | 10288 | X: kernel/torture.c |
595182bc | 10289 | |
0c86edc0 | 10290 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 10291 | M: Alessandro Zummo <a.zummo@towertech.it> |
7c6f84f8 | 10292 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
76465493 | 10293 | L: rtc-linux@googlegroups.com |
8a6e2535 | 10294 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
4733f397 | 10295 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git |
0c86edc0 | 10296 | S: Maintained |
7af6a2e1 | 10297 | F: Documentation/devicetree/bindings/rtc/ |
679655da JP |
10298 | F: Documentation/rtc.txt |
10299 | F: drivers/rtc/ | |
10300 | F: include/linux/rtc.h | |
c117ab84 | 10301 | F: include/uapi/linux/rtc.h |
fe23c336 AB |
10302 | F: include/linux/rtc/ |
10303 | F: include/linux/platform_data/rtc-* | |
10304 | F: tools/testing/selftests/timers/rtctest.c | |
0c86edc0 | 10305 | |
0e400c53 MB |
10306 | REALTEK AUDIO CODECS |
10307 | M: Bard Liao <bardliao@realtek.com> | |
10308 | M: Oder Chiou <oder_chiou@realtek.com> | |
10309 | S: Maintained | |
10310 | F: sound/soc/codecs/rt* | |
10311 | F: include/sound/rt*.h | |
10312 | ||
1da177e4 | 10313 | REISERFS FILE SYSTEM |
76c4e5ea | 10314 | L: reiserfs-devel@vger.kernel.org |
1da177e4 | 10315 | S: Supported |
679655da | 10316 | F: fs/reiserfs/ |
1da177e4 | 10317 | |
b83a313b | 10318 | REGISTER MAP ABSTRACTION |
b02e48f2 | 10319 | M: Mark Brown <broonie@kernel.org> |
dd060bc9 | 10320 | L: linux-kernel@vger.kernel.org |
b83a313b MB |
10321 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
10322 | S: Supported | |
9398a639 | 10323 | F: Documentation/devicetree/bindings/regmap/ |
b83a313b MB |
10324 | F: drivers/base/regmap/ |
10325 | F: include/linux/regmap.h | |
10326 | ||
400e64df OBC |
10327 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
10328 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
69ae9895 | 10329 | M: Bjorn Andersson <bjorn.andersson@linaro.org> |
d7586849 | 10330 | L: linux-remoteproc@vger.kernel.org |
6bb697b6 | 10331 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df | 10332 | S: Maintained |
15ebc72d | 10333 | F: Documentation/devicetree/bindings/remoteproc/ |
400e64df | 10334 | F: Documentation/remoteproc.txt |
15ebc72d | 10335 | F: drivers/remoteproc/ |
6fc26488 | 10336 | F: include/linux/remoteproc.h |
400e64df | 10337 | |
d8115db5 OBC |
10338 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
10339 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
69ae9895 | 10340 | M: Bjorn Andersson <bjorn.andersson@linaro.org> |
d7586849 | 10341 | L: linux-remoteproc@vger.kernel.org |
d8115db5 OBC |
10342 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git |
10343 | S: Maintained | |
10344 | F: drivers/rpmsg/ | |
10345 | F: Documentation/rpmsg.txt | |
10346 | F: include/linux/rpmsg.h | |
10347 | ||
fedc81e7 GU |
10348 | RENESAS CLOCK DRIVERS |
10349 | M: Geert Uytterhoeven <geert+renesas@glider.be> | |
10350 | L: linux-renesas-soc@vger.kernel.org | |
10351 | S: Supported | |
10352 | F: drivers/clk/renesas/ | |
10353 | ||
8e6569af SS |
10354 | RENESAS ETHERNET DRIVERS |
10355 | R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> | |
10356 | L: netdev@vger.kernel.org | |
4a121096 | 10357 | L: linux-renesas-soc@vger.kernel.org |
8e6569af SS |
10358 | F: drivers/net/ethernet/renesas/ |
10359 | F: include/linux/sh_eth.h | |
10360 | ||
3e46c397 YS |
10361 | RENESAS USB2 PHY DRIVER |
10362 | M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> | |
4a121096 | 10363 | L: linux-renesas-soc@vger.kernel.org |
3e46c397 YS |
10364 | S: Maintained |
10365 | F: drivers/phy/phy-rcar-gen3-usb2.c | |
10366 | ||
1b0fe6be PZ |
10367 | RESET CONTROLLER FRAMEWORK |
10368 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
9f273c24 | 10369 | T: git git://git.pengutronix.de/git/pza/linux |
1b0fe6be PZ |
10370 | S: Maintained |
10371 | F: drivers/reset/ | |
10372 | F: Documentation/devicetree/bindings/reset/ | |
b2f6dd7b | 10373 | F: include/dt-bindings/reset/ |
1b0fe6be PZ |
10374 | F: include/linux/reset.h |
10375 | F: include/linux/reset-controller.h | |
10376 | ||
e0897645 | 10377 | RFKILL |
8b58be88 | 10378 | M: Johannes Berg <johannes@sipsolutions.net> |
19d337df | 10379 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
10380 | W: http://wireless.kernel.org/ |
10381 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
10382 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 10383 | S: Maintained |
505c9247 | 10384 | F: Documentation/rfkill.txt |
80811493 | 10385 | F: net/rfkill/ |
e0897645 | 10386 | |
933685ca TG |
10387 | RHASHTABLE |
10388 | M: Thomas Graf <tgraf@suug.ch> | |
39ec406d | 10389 | M: Herbert Xu <herbert@gondor.apana.org.au> |
933685ca TG |
10390 | L: netdev@vger.kernel.org |
10391 | S: Maintained | |
10392 | F: lib/rhashtable.c | |
10393 | F: include/linux/rhashtable.h | |
10394 | ||
67e054e9 ML |
10395 | RICOH SMARTMEDIA/XD DRIVER |
10396 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
10397 | S: Maintained | |
21c26f50 JP |
10398 | F: drivers/mtd/nand/r852.c |
10399 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 10400 | |
92634125 ML |
10401 | RICOH R5C592 MEMORYSTICK DRIVER |
10402 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
10403 | S: Maintained | |
10404 | F: drivers/memstick/host/r592.* | |
10405 | ||
27f1d2f9 SA |
10406 | ROCCAT DRIVERS |
10407 | M: Stefan Achatz <erazor_de@users.sourceforge.net> | |
10408 | W: http://sourceforge.net/projects/roccat/ | |
10409 | S: Maintained | |
10410 | F: drivers/hid/hid-roccat* | |
10411 | F: include/linux/hid-roccat* | |
10412 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* | |
10413 | ||
4b8ac966 JP |
10414 | ROCKER DRIVER |
10415 | M: Jiri Pirko <jiri@resnulli.us> | |
4b8ac966 JP |
10416 | L: netdev@vger.kernel.org |
10417 | S: Supported | |
10418 | F: drivers/net/ethernet/rocker/ | |
10419 | ||
1da177e4 LT |
10420 | ROCKETPORT DRIVER |
10421 | P: Comtrol Corp. | |
1da177e4 LT |
10422 | W: http://www.comtrol.com |
10423 | S: Maintained | |
679655da | 10424 | F: Documentation/serial/rocket.txt |
c897401b | 10425 | F: drivers/tty/rocket* |
1da177e4 | 10426 | |
7645c2f4 KC |
10427 | ROCKETPORT EXPRESS/INFINITY DRIVER |
10428 | M: Kevin Cernekee <cernekee@gmail.com> | |
10429 | L: linux-serial@vger.kernel.org | |
10430 | S: Odd Fixes | |
10431 | F: drivers/tty/serial/rp2.* | |
10432 | ||
1da177e4 | 10433 | ROSE NETWORK LAYER |
8b58be88 | 10434 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 10435 | L: linux-hams@vger.kernel.org |
d34cb28a | 10436 | W: http://www.linux-ax25.org/ |
1da177e4 | 10437 | S: Maintained |
679655da | 10438 | F: include/net/rose.h |
c117ab84 | 10439 | F: include/uapi/linux/rose.h |
679655da | 10440 | F: net/rose/ |
1da177e4 | 10441 | |
91952bc0 AP |
10442 | RTL2830 MEDIA DRIVER |
10443 | M: Antti Palosaari <crope@iki.fi> | |
10444 | L: linux-media@vger.kernel.org | |
a825eaec | 10445 | W: https://linuxtv.org |
91952bc0 AP |
10446 | W: http://palosaari.fi/linux/ |
10447 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10448 | T: git git://linuxtv.org/anttip/media_tree.git | |
10449 | S: Maintained | |
10450 | F: drivers/media/dvb-frontends/rtl2830* | |
10451 | ||
27a0aacf AP |
10452 | RTL2832 MEDIA DRIVER |
10453 | M: Antti Palosaari <crope@iki.fi> | |
10454 | L: linux-media@vger.kernel.org | |
a825eaec | 10455 | W: https://linuxtv.org |
27a0aacf AP |
10456 | W: http://palosaari.fi/linux/ |
10457 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10458 | T: git git://linuxtv.org/anttip/media_tree.git | |
10459 | S: Maintained | |
10460 | F: drivers/media/dvb-frontends/rtl2832* | |
10461 | ||
ba6e6f6e AP |
10462 | RTL2832_SDR MEDIA DRIVER |
10463 | M: Antti Palosaari <crope@iki.fi> | |
10464 | L: linux-media@vger.kernel.org | |
a825eaec | 10465 | W: https://linuxtv.org |
ba6e6f6e AP |
10466 | W: http://palosaari.fi/linux/ |
10467 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10468 | T: git git://linuxtv.org/anttip/media_tree.git | |
10469 | S: Maintained | |
b4bb1c28 | 10470 | F: drivers/media/dvb-frontends/rtl2832_sdr* |
ba6e6f6e | 10471 | |
59840488 | 10472 | RTL8180 WIRELESS DRIVER |
605bebe2 | 10473 | L: linux-wireless@vger.kernel.org |
491b26b4 | 10474 | W: http://wireless.kernel.org/ |
54e5881d | 10475 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7be6ff65 | 10476 | S: Orphan |
62141726 | 10477 | F: drivers/net/wireless/realtek/rtl818x/rtl8180/ |
605bebe2 | 10478 | |
59840488 | 10479 | RTL8187 WIRELESS DRIVER |
9f0939bf | 10480 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
8b58be88 JP |
10481 | M: Hin-Tak Leung <htl10@users.sourceforge.net> |
10482 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
7d2c86b5 | 10483 | L: linux-wireless@vger.kernel.org |
491b26b4 | 10484 | W: http://wireless.kernel.org/ |
54e5881d | 10485 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 10486 | S: Maintained |
62141726 | 10487 | F: drivers/net/wireless/realtek/rtl818x/rtl8187/ |
59840488 | 10488 | |
3cf0c8ad LF |
10489 | RTL8192CE WIRELESS DRIVER |
10490 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
10491 | M: Chaoming Li <chaoming_li@realsil.com.cn> | |
10492 | L: linux-wireless@vger.kernel.org | |
491b26b4 | 10493 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
10494 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
10495 | S: Maintained | |
62141726 KV |
10496 | F: drivers/net/wireless/realtek/rtlwifi/ |
10497 | F: drivers/net/wireless/realtek/rtlwifi/rtl8192ce/ | |
59840488 | 10498 | |
26f1fad2 JS |
10499 | RTL8XXXU WIRELESS DRIVER (rtl8xxxu) |
10500 | M: Jes Sorensen <Jes.Sorensen@redhat.com> | |
10501 | L: linux-wireless@vger.kernel.org | |
171a900c | 10502 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel |
26f1fad2 JS |
10503 | S: Maintained |
10504 | F: drivers/net/wireless/realtek/rtl8xxxu/ | |
10505 | ||
9eb8ef74 | 10506 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 10507 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 10508 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 10509 | S: Maintained |
8a61f013 | 10510 | F: drivers/video/fbdev/savage/ |
9eb8ef74 | 10511 | |
1da177e4 | 10512 | S390 |
8b58be88 JP |
10513 | M: Martin Schwidefsky <schwidefsky@de.ibm.com> |
10514 | M: Heiko Carstens <heiko.carstens@de.ibm.com> | |
d58140cc | 10515 | L: linux-s390@vger.kernel.org |
5238da45 | 10516 | W: http://www.ibm.com/developerworks/linux/linux390/ |
9f273c24 | 10517 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git |
5238da45 | 10518 | S: Supported |
679655da | 10519 | F: arch/s390/ |
a968cd3e | 10520 | F: drivers/s390/ |
3bfe6858 JN |
10521 | F: Documentation/s390/ |
10522 | F: Documentation/DocBook/s390* | |
5238da45 | 10523 | |
322986ca SO |
10524 | S390 COMMON I/O LAYER |
10525 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
10526 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
10527 | L: linux-s390@vger.kernel.org | |
10528 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10529 | S: Supported | |
10530 | F: drivers/s390/cio/ | |
10531 | ||
10532 | S390 DASD DRIVER | |
38b7f07a SH |
10533 | M: Stefan Haberland <sth@linux.vnet.ibm.com> |
10534 | M: Jan Hoeppner <hoeppner@linux.vnet.ibm.com> | |
322986ca SO |
10535 | L: linux-s390@vger.kernel.org |
10536 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10537 | S: Supported | |
10538 | F: drivers/s390/block/dasd* | |
10539 | F: block/partitions/ibm.c | |
10540 | ||
5238da45 | 10541 | S390 NETWORK DRIVERS |
f0c59aff | 10542 | M: Ursula Braun <ubraun@linux.vnet.ibm.com> |
d58140cc | 10543 | L: linux-s390@vger.kernel.org |
5238da45 HC |
10544 | W: http://www.ibm.com/developerworks/linux/linux390/ |
10545 | S: Supported | |
679655da | 10546 | F: drivers/s390/net/ |
5238da45 | 10547 | |
322986ca SO |
10548 | S390 PCI SUBSYSTEM |
10549 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
10550 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> | |
10551 | L: linux-s390@vger.kernel.org | |
10552 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10553 | S: Supported | |
10554 | F: arch/s390/pci/ | |
10555 | F: drivers/pci/hotplug/s390_pci_hpc.c | |
10556 | ||
feed9b62 | 10557 | S390 ZCRYPT DRIVER |
cb9c6385 | 10558 | M: Harald Freudenberger <freude@de.ibm.com> |
feed9b62 | 10559 | L: linux-s390@vger.kernel.org |
a968cd3e | 10560 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 10561 | S: Supported |
d5ca6918 | 10562 | F: drivers/s390/crypto/ |
feed9b62 | 10563 | |
5238da45 | 10564 | S390 ZFCP DRIVER |
d38e19d0 | 10565 | M: Steffen Maier <maier@linux.vnet.ibm.com> |
d58140cc | 10566 | L: linux-s390@vger.kernel.org |
5238da45 | 10567 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 10568 | S: Supported |
679655da | 10569 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 10570 | |
dd96df2c | 10571 | S390 IUCV NETWORK LAYER |
f0c59aff | 10572 | M: Ursula Braun <ubraun@linux.vnet.ibm.com> |
dd96df2c UB |
10573 | L: linux-s390@vger.kernel.org |
10574 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10575 | S: Supported | |
679655da JP |
10576 | F: drivers/s390/net/*iucv* |
10577 | F: include/net/iucv/ | |
10578 | F: net/iucv/ | |
dd96df2c | 10579 | |
8128f23c GS |
10580 | S390 IOMMU (PCI) |
10581 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> | |
10582 | L: linux-s390@vger.kernel.org | |
10583 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10584 | S: Supported | |
10585 | F: drivers/iommu/s390-iommu.c | |
10586 | ||
4dde7f75 | 10587 | S3C24XX SD/MMC Driver |
8b58be88 | 10588 | M: Ben Dooks <ben-linux@fluff.org> |
efc03ecb | 10589 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4dde7f75 | 10590 | S: Supported |
679655da | 10591 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 10592 | |
1f15a229 HV |
10593 | SAA6588 RDS RECEIVER DRIVER |
10594 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10595 | L: linux-media@vger.kernel.org | |
10596 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10597 | W: https://linuxtv.org |
1f15a229 HV |
10598 | S: Odd Fixes |
10599 | F: drivers/media/i2c/saa6588* | |
10600 | ||
98ed12e6 | 10601 | SAA7134 VIDEO4LINUX DRIVER |
5dc8a864 MCC |
10602 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
10603 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
98ed12e6 | 10604 | L: linux-media@vger.kernel.org |
a825eaec | 10605 | W: https://linuxtv.org |
98ed12e6 MCC |
10606 | T: git git://linuxtv.org/media_tree.git |
10607 | S: Odd fixes | |
618cd932 | 10608 | F: Documentation/media/v4l-drivers/saa7134* |
98ed12e6 MCC |
10609 | F: drivers/media/pci/saa7134/ |
10610 | ||
1da177e4 | 10611 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 10612 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 10613 | L: linux-media@vger.kernel.org |
275ffde4 | 10614 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 10615 | S: Maintained |
90d72ac6 MCC |
10616 | F: drivers/media/common/saa7146/ |
10617 | F: drivers/media/pci/saa7146/ | |
10618 | F: include/media/saa7146* | |
1da177e4 | 10619 | |
92304a40 | 10620 | SAMSUNG LAPTOP DRIVER |
5909c654 | 10621 | M: Corentin Chary <corentin.chary@gmail.com> |
92304a40 CC |
10622 | L: platform-driver-x86@vger.kernel.org |
10623 | S: Maintained | |
10624 | F: drivers/platform/x86/samsung-laptop.c | |
10625 | ||
4a109cc0 | 10626 | SAMSUNG AUDIO (ASoC) DRIVERS |
326dce07 | 10627 | M: Krzysztof Kozlowski <krzk@kernel.org> |
250b6851 | 10628 | M: Sangbeom Kim <sbkim73@samsung.com> |
09a01028 | 10629 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
4a109cc0 MB |
10630 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
10631 | S: Supported | |
14430813 | 10632 | F: sound/soc/samsung/ |
4a109cc0 | 10633 | |
0d89a28b | 10634 | SAMSUNG FRAMEBUFFER DRIVER |
b7701755 | 10635 | M: Jingoo Han <jingoohan1@gmail.com> |
0d89a28b JH |
10636 | L: linux-fbdev@vger.kernel.org |
10637 | S: Maintained | |
8a61f013 | 10638 | F: drivers/video/fbdev/s3c-fb.c |
0d89a28b | 10639 | |
b40f0632 | 10640 | SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS |
f69d3a17 | 10641 | M: Sangbeom Kim <sbkim73@samsung.com> |
326dce07 KK |
10642 | M: Krzysztof Kozlowski <krzk@kernel.org> |
10643 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
f69d3a17 | 10644 | L: linux-kernel@vger.kernel.org |
b40f0632 | 10645 | L: linux-samsung-soc@vger.kernel.org |
f69d3a17 SK |
10646 | S: Supported |
10647 | F: drivers/mfd/sec*.c | |
10648 | F: drivers/regulator/s2m*.c | |
10649 | F: drivers/regulator/s5m*.c | |
b40f0632 KK |
10650 | F: drivers/clk/clk-s2mps11.c |
10651 | F: drivers/rtc/rtc-s5m.c | |
f69d3a17 | 10652 | F: include/linux/mfd/samsung/ |
a13c7c51 KK |
10653 | F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt |
10654 | F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt | |
27383ca9 | 10655 | F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt |
a13c7c51 | 10656 | F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt |
f69d3a17 | 10657 | |
038f5c4b SN |
10658 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
10659 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
10660 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> | |
10661 | L: linux-media@vger.kernel.org | |
10662 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
10663 | S: Supported | |
10664 | F: drivers/media/platform/exynos4-is/ | |
038f5c4b | 10665 | |
6fd86ab2 SN |
10666 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
10667 | M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com> | |
10668 | L: linux-media@vger.kernel.org | |
10669 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
10670 | S: Maintained | |
10671 | F: drivers/media/platform/s3c-camif/ | |
d647f0b7 | 10672 | F: include/media/drv-intf/s3c_camif.h |
6fd86ab2 | 10673 | |
b84ef24e AH |
10674 | SAMSUNG S5C73M3 CAMERA DRIVER |
10675 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
10676 | M: Andrzej Hajda <a.hajda@samsung.com> | |
10677 | L: linux-media@vger.kernel.org | |
10678 | S: Supported | |
10679 | F: drivers/media/i2c/s5c73m3/* | |
10680 | ||
7d459937 AH |
10681 | SAMSUNG S5K5BAF CAMERA DRIVER |
10682 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
10683 | M: Andrzej Hajda <a.hajda@samsung.com> | |
10684 | L: linux-media@vger.kernel.org | |
10685 | S: Supported | |
10686 | F: drivers/media/i2c/s5k5baf.c | |
10687 | ||
c04c674f RB |
10688 | SAMSUNG S3FWRN5 NFC DRIVER |
10689 | M: Robert Baldyga <r.baldyga@samsung.com> | |
079c2652 | 10690 | M: Krzysztof Opasiak <k.opasiak@samsung.com> |
c04c674f RB |
10691 | L: linux-nfc@lists.01.org (moderated for non-subscribers) |
10692 | S: Supported | |
10693 | F: drivers/nfc/s3fwrn5 | |
10694 | ||
310e39c9 | 10695 | SAMSUNG SOC CLOCK DRIVERS |
fea685e9 TF |
10696 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
10697 | M: Tomasz Figa <tomasz.figa@gmail.com> | |
490583f0 | 10698 | M: Chanwoo Choi <cw00.choi@samsung.com> |
310e39c9 TF |
10699 | S: Supported |
10700 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
10701 | F: drivers/clk/samsung/ | |
490583f0 CC |
10702 | F: include/dt-bindings/clock/exynos*.h |
10703 | F: Documentation/devicetree/bindings/clock/exynos*.txt | |
310e39c9 | 10704 | |
2e365a70 AS |
10705 | SAMSUNG SPI DRIVERS |
10706 | M: Kukjin Kim <kgene@kernel.org> | |
10707 | M: Krzysztof Kozlowski <krzk@kernel.org> | |
10708 | M: Andi Shyti <andi.shyti@samsung.com> | |
10709 | L: linux-spi@vger.kernel.org | |
10710 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
10711 | S: Maintained | |
10712 | F: Documentation/devicetree/bindings/spi/spi-samsung.txt | |
10713 | F: drivers/spi/spi-s3c* | |
10714 | F: include/linux/platform_data/spi-s3c64xx.h | |
10715 | ||
66890ed6 BA |
10716 | SAMSUNG SXGBE DRIVERS |
10717 | M: Byungho An <bh74.an@samsung.com> | |
10718 | M: Girish K S <ks.giri@samsung.com> | |
66890ed6 BA |
10719 | M: Vipul Pandya <vipul.pandya@samsung.com> |
10720 | S: Supported | |
10721 | L: netdev@vger.kernel.org | |
10722 | F: drivers/net/ethernet/samsung/sxgbe/ | |
10723 | ||
93c537af | 10724 | SAMSUNG THERMAL DRIVER |
0faf7dd5 | 10725 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
93c537af LM |
10726 | L: linux-pm@vger.kernel.org |
10727 | L: linux-samsung-soc@vger.kernel.org | |
10728 | S: Supported | |
9f273c24 | 10729 | T: git https://github.com/lmajewski/linux-samsung-thermal.git |
93c537af LM |
10730 | F: drivers/thermal/samsung/ |
10731 | ||
e296cd32 | 10732 | SAMSUNG USB2 PHY DRIVER |
774e0362 KD |
10733 | M: Kamil Debski <kamil@wypas.org> |
10734 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> | |
e296cd32 KD |
10735 | L: linux-kernel@vger.kernel.org |
10736 | S: Supported | |
10737 | F: Documentation/devicetree/bindings/phy/samsung-phy.txt | |
10738 | F: Documentation/phy/samsung-usb2.txt | |
10739 | F: drivers/phy/phy-exynos4210-usb2.c | |
10740 | F: drivers/phy/phy-exynos4x12-usb2.c | |
10741 | F: drivers/phy/phy-exynos5250-usb2.c | |
10742 | F: drivers/phy/phy-s5pv210-usb2.c | |
10743 | F: drivers/phy/phy-samsung-usb2.c | |
10744 | F: drivers/phy/phy-samsung-usb2.h | |
10745 | ||
ca749e2a | 10746 | SERIAL DRIVERS |
5e30bbb7 | 10747 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
ca749e2a | 10748 | L: linux-serial@vger.kernel.org |
5e30bbb7 | 10749 | S: Maintained |
30743257 | 10750 | F: Documentation/devicetree/bindings/serial/ |
14430813 | 10751 | F: drivers/tty/serial/ |
ca749e2a | 10752 | |
49fc9361 BG |
10753 | STI CEC DRIVER |
10754 | M: Benjamin Gaignard <benjamin.gaignard@linaro.org> | |
10755 | L: kernel@stlinux.com | |
10756 | S: Maintained | |
10757 | F: drivers/staging/media/st-cec/ | |
10758 | F: Documentation/devicetree/bindings/media/stih-cec.txt | |
10759 | ||
aecb7b64 | 10760 | SYNOPSYS DESIGNWARE DMAC DRIVER |
da89947b | 10761 | M: Viresh Kumar <vireshk@kernel.org> |
337ae47c | 10762 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
aecb7b64 | 10763 | S: Maintained |
1fb200d6 | 10764 | F: include/linux/dma/dw.h |
3d598f47 | 10765 | F: include/linux/platform_data/dma-dw.h |
61a76496 | 10766 | F: drivers/dma/dw/ |
aecb7b64 | 10767 | |
058999cc LP |
10768 | SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver |
10769 | M: Lars Persson <lars.persson@axis.com> | |
10770 | L: netdev@vger.kernel.org | |
10771 | S: Supported | |
10772 | F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt | |
10773 | F: drivers/net/ethernet/synopsys/dwc_eth_qos.c | |
10774 | ||
fc531d98 | 10775 | SYNOPSYS DESIGNWARE I2C DRIVER |
fc531d98 | 10776 | M: Jarkko Nikula <jarkko.nikula@linux.intel.com> |
d0781b98 AS |
10777 | R: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
10778 | R: Mika Westerberg <mika.westerberg@linux.intel.com> | |
fc531d98 WS |
10779 | L: linux-i2c@vger.kernel.org |
10780 | S: Maintained | |
10781 | F: drivers/i2c/busses/i2c-designware-* | |
10782 | F: include/linux/platform_data/i2c-designware.h | |
10783 | ||
f9e37137 | 10784 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
f9e37137 SJ |
10785 | M: Jaehoon Chung <jh80.chung@samsung.com> |
10786 | L: linux-mmc@vger.kernel.org | |
10787 | S: Maintained | |
10788 | F: include/linux/mmc/dw_mmc.h | |
10789 | F: drivers/mmc/host/dw_mmc* | |
10790 | ||
a961e698 AS |
10791 | SYSTEM TRACE MODULE CLASS |
10792 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> | |
10793 | S: Maintained | |
e787bc46 | 10794 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git |
a961e698 AS |
10795 | F: Documentation/trace/stm.txt |
10796 | F: drivers/hwtracing/stm/ | |
10797 | F: include/linux/stm.h | |
10798 | F: include/uapi/linux/stm.h | |
10799 | ||
1db121d6 AN |
10800 | THUNDERBOLT DRIVER |
10801 | M: Andreas Noever <andreas.noever@gmail.com> | |
10802 | S: Maintained | |
10803 | F: drivers/thunderbolt/ | |
10804 | ||
e35a49b1 SR |
10805 | TI BQ27XXX POWER SUPPLY DRIVER |
10806 | R: Andrew F. Davis <afd@ti.com> | |
10807 | F: include/linux/power/bq27xxx_battery.h | |
8c0984e5 SR |
10808 | F: drivers/power/supply/bq27xxx_battery.c |
10809 | F: drivers/power/supply/bq27xxx_battery_i2c.c | |
e35a49b1 | 10810 | |
34db37c6 | 10811 | TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER |
50363737 | 10812 | M: John Stultz <john.stultz@linaro.org> |
88606e80 | 10813 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 10814 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 10815 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
10816 | S: Supported |
10817 | F: include/linux/clocksource.h | |
10818 | F: include/linux/time.h | |
10819 | F: include/linux/timex.h | |
c117ab84 CEB |
10820 | F: include/uapi/linux/time.h |
10821 | F: include/uapi/linux/timex.h | |
88606e80 TG |
10822 | F: kernel/time/clocksource.c |
10823 | F: kernel/time/time*.c | |
34db37c6 | 10824 | F: kernel/time/alarmtimer.c |
88606e80 | 10825 | F: kernel/time/ntp.c |
7fe5f1c1 | 10826 | F: tools/testing/selftests/timers/ |
88606e80 | 10827 | |
1da177e4 | 10828 | SC1200 WDT DRIVER |
b300645a | 10829 | M: Zwane Mwaikambo <zwanem@gmail.com> |
1da177e4 | 10830 | S: Maintained |
679655da | 10831 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
10832 | |
10833 | SCHEDULER | |
dd9b238c | 10834 | M: Ingo Molnar <mingo@redhat.com> |
8b58be88 | 10835 | M: Peter Zijlstra <peterz@infradead.org> |
981c3a4f | 10836 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 10837 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 10838 | S: Maintained |
95c0d71d | 10839 | F: kernel/sched/ |
679655da | 10840 | F: include/linux/sched.h |
c117ab84 | 10841 | F: include/uapi/linux/sched.h |
c2eb505b | 10842 | F: include/linux/wait.h |
1da177e4 | 10843 | |
6bcf6737 | 10844 | SCORE ARCHITECTURE |
ed38665e | 10845 | M: Chen Liqin <liqin.linux@gmail.com> |
a2681a75 | 10846 | M: Lennox Wu <lennox.wu@gmail.com> |
ed38665e | 10847 | W: http://www.sunplus.com |
6bcf6737 | 10848 | S: Supported |
a2681a75 | 10849 | F: arch/score/ |
6bcf6737 | 10850 | |
f2ed287b LR |
10851 | SCR24X CHIP CARD INTERFACE DRIVER |
10852 | M: Lubomir Rintel <lkundrak@v3.sk> | |
10853 | S: Supported | |
10854 | F: drivers/char/pcmcia/scr24x_cs.c | |
10855 | ||
80f390ea SH |
10856 | SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers |
10857 | M: Sudeep Holla <sudeep.holla@arm.com> | |
10858 | L: linux-arm-kernel@lists.infradead.org | |
10859 | S: Maintained | |
10860 | F: Documentation/devicetree/bindings/arm/arm,scpi.txt | |
cd52c2a4 | 10861 | F: drivers/clk/clk-scpi.c |
8def3103 | 10862 | F: drivers/cpufreq/scpi-cpufreq.c |
8cb7cf56 SH |
10863 | F: drivers/firmware/arm_scpi.c |
10864 | F: include/linux/scpi_protocol.h | |
80f390ea | 10865 | |
1da177e4 | 10866 | SCSI CDROM DRIVER |
8b58be88 | 10867 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
10868 | L: linux-scsi@vger.kernel.org |
10869 | W: http://www.kernel.dk | |
10870 | S: Maintained | |
679655da | 10871 | F: drivers/scsi/sr* |
1da177e4 | 10872 | |
fb50a83d | 10873 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
3453bddb | 10874 | M: Bart Van Assche <bart.vanassche@sandisk.com> |
fb50a83d RD |
10875 | L: linux-rdma@vger.kernel.org |
10876 | S: Supported | |
10877 | W: http://www.openfabrics.org | |
10878 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
10879 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
10880 | F: drivers/infiniband/ulp/srp/ | |
10881 | F: include/scsi/srp.h | |
10882 | ||
1da177e4 | 10883 | SCSI SG DRIVER |
8b58be88 | 10884 | M: Doug Gilbert <dgilbert@interlog.com> |
1da177e4 | 10885 | L: linux-scsi@vger.kernel.org |
59ab3c93 | 10886 | W: http://sg.danny.cz/sg |
1da177e4 | 10887 | S: Maintained |
59ab3c93 | 10888 | F: Documentation/scsi/scsi-generic.txt |
679655da JP |
10889 | F: drivers/scsi/sg.c |
10890 | F: include/scsi/sg.h | |
1da177e4 LT |
10891 | |
10892 | SCSI SUBSYSTEM | |
7ee7895c | 10893 | M: "James E.J. Bottomley" <jejb@linux.vnet.ibm.com> |
0351b8f8 | 10894 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git |
f4ab421b MP |
10895 | M: "Martin K. Petersen" <martin.petersen@oracle.com> |
10896 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git | |
10897 | L: linux-scsi@vger.kernel.org | |
1da177e4 | 10898 | S: Maintained |
2c99a314 | 10899 | F: Documentation/devicetree/bindings/scsi/ |
679655da JP |
10900 | F: drivers/scsi/ |
10901 | F: include/scsi/ | |
1da177e4 LT |
10902 | |
10903 | SCSI TAPE DRIVER | |
8b58be88 | 10904 | M: Kai Mäkisara <Kai.Makisara@kolumbus.fi> |
1da177e4 LT |
10905 | L: linux-scsi@vger.kernel.org |
10906 | S: Maintained | |
679655da | 10907 | F: Documentation/scsi/st.txt |
f7269cfc JD |
10908 | F: drivers/scsi/st.* |
10909 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
10910 | |
10911 | SCTP PROTOCOL | |
8b6efb75 | 10912 | M: Vlad Yasevich <vyasevich@gmail.com> |
02c38d0a | 10913 | M: Neil Horman <nhorman@tuxdriver.com> |
1a418796 | 10914 | L: linux-sctp@vger.kernel.org |
5f85813c | 10915 | W: http://lksctp.sourceforge.net |
8b6efb75 | 10916 | S: Maintained |
679655da JP |
10917 | F: Documentation/networking/sctp.txt |
10918 | F: include/linux/sctp.h | |
4d58c025 | 10919 | F: include/uapi/linux/sctp.h |
679655da JP |
10920 | F: include/net/sctp/ |
10921 | F: net/sctp/ | |
1da177e4 LT |
10922 | |
10923 | SCx200 CPU SUPPORT | |
8b58be88 | 10924 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 10925 | S: Odd Fixes |
679655da | 10926 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 10927 | F: arch/x86/platform/scx200/ |
679655da JP |
10928 | F: drivers/watchdog/scx200_wdt.c |
10929 | F: drivers/i2c/busses/scx200* | |
10930 | F: drivers/mtd/maps/scx200_docflash.c | |
10931 | F: include/linux/scx200.h | |
1662d32c JC |
10932 | |
10933 | SCx200 GPIO DRIVER | |
8b58be88 | 10934 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 10935 | S: Maintained |
679655da JP |
10936 | F: drivers/char/scx200_gpio.c |
10937 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
10938 | |
10939 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 10940 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 10941 | S: Maintained |
679655da | 10942 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 10943 | |
6a36913a | 10944 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 10945 | M: Sascha Sommer <saschasommer@freenet.de> |
6a36913a SS |
10946 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
10947 | S: Maintained | |
679655da | 10948 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 10949 | |
e7839f25 | 10950 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
ddfe954d | 10951 | M: Adrian Hunter <adrian.hunter@intel.com> |
7a241d6e | 10952 | L: linux-mmc@vger.kernel.org |
ddfe954d UH |
10953 | T: git git://git.infradead.org/users/ahunter/linux-sdhci.git |
10954 | S: Maintained | |
10955 | F: drivers/mmc/host/sdhci* | |
10956 | F: include/linux/mmc/sdhci* | |
e2d1d6c0 | 10957 | |
c04f9d61 KC |
10958 | SECURE COMPUTING |
10959 | M: Kees Cook <keescook@chromium.org> | |
a0cfd75f KC |
10960 | R: Andy Lutomirski <luto@amacapital.net> |
10961 | R: Will Drewry <wad@chromium.org> | |
c04f9d61 KC |
10962 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp |
10963 | S: Supported | |
10964 | F: kernel/seccomp.c | |
10965 | F: include/uapi/linux/seccomp.h | |
10966 | F: include/linux/seccomp.h | |
c99ee51a | 10967 | F: tools/testing/selftests/seccomp/* |
c04f9d61 KC |
10968 | K: \bsecure_computing |
10969 | K: \bTIF_SECCOMP\b | |
10970 | ||
476bf3d6 AC |
10971 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER |
10972 | M: Al Cooper <alcooperx@gmail.com> | |
10973 | L: linux-mmc@vger.kernel.org | |
10974 | L: bcm-kernel-feedback-list@broadcom.com | |
10975 | S: Maintained | |
10976 | F: drivers/mmc/host/sdhci-brcmstb* | |
10977 | ||
0d1bb41a | 10978 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 10979 | M: Ben Dooks <ben-linux@fluff.org> |
dc524882 | 10980 | M: Jaehoon Chung <jh80.chung@samsung.com> |
7a241d6e | 10981 | L: linux-mmc@vger.kernel.org |
0d1bb41a | 10982 | S: Maintained |
dc524882 | 10983 | F: drivers/mmc/host/sdhci-s3c* |
0d1bb41a | 10984 | |
c63b3cba | 10985 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
da89947b | 10986 | M: Viresh Kumar <vireshk@kernel.org> |
c63b3cba VK |
10987 | L: linux-mmc@vger.kernel.org |
10988 | S: Maintained | |
10989 | F: drivers/mmc/host/sdhci-spear.c | |
10990 | ||
8711cca2 | 10991 | SECURITY SUBSYSTEM |
9b45c0d2 | 10992 | M: James Morris <james.l.morris@oracle.com> |
9c3646d1 | 10993 | M: "Serge E. Hallyn" <serge@hallyn.com> |
8711cca2 | 10994 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
89879a7e | 10995 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 10996 | W: http://kernsec.org/ |
8711cca2 | 10997 | S: Supported |
7d2c86b5 | 10998 | F: security/ |
8711cca2 | 10999 | |
1da177e4 | 11000 | SECURITY CONTACT |
8b58be88 | 11001 | M: Security Officers <security@kernel.org> |
1da177e4 LT |
11002 | S: Supported |
11003 | ||
11004 | SELINUX SECURITY MODULE | |
e0238b4c | 11005 | M: Paul Moore <paul@paul-moore.com> |
8b58be88 | 11006 | M: Stephen Smalley <sds@tycho.nsa.gov> |
8b58be88 | 11007 | M: Eric Paris <eparis@parisplace.org> |
e0238b4c | 11008 | L: selinux@tycho.nsa.gov (moderated for non-subscribers) |
f058925b | 11009 | W: http://selinuxproject.org |
5a5f2acf | 11010 | T: git git://git.infradead.org/users/pcmoore/selinux |
1da177e4 | 11011 | S: Supported |
679655da JP |
11012 | F: include/linux/selinux* |
11013 | F: security/selinux/ | |
6bde95ce | 11014 | F: scripts/selinux/ |
1da177e4 | 11015 | |
c1c124e9 JJ |
11016 | APPARMOR SECURITY MODULE |
11017 | M: John Johansen <john.johansen@canonical.com> | |
11018 | L: apparmor@lists.ubuntu.com (subscribers-only, general discussion) | |
11019 | W: apparmor.wiki.kernel.org | |
11020 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
11021 | S: Supported | |
11022 | F: security/apparmor/ | |
11023 | ||
9b091556 KC |
11024 | LOADPIN SECURITY MODULE |
11025 | M: Kees Cook <keescook@chromium.org> | |
11026 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin | |
11027 | S: Supported | |
11028 | F: security/loadpin/ | |
11029 | ||
730daa16 KC |
11030 | YAMA SECURITY MODULE |
11031 | M: Kees Cook <keescook@chromium.org> | |
11032 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip | |
11033 | S: Supported | |
11034 | F: security/yama/ | |
11035 | ||
cef2cf07 | 11036 | SENSABLE PHANTOM |
8b58be88 | 11037 | M: Jiri Slaby <jirislaby@gmail.com> |
cef2cf07 | 11038 | S: Maintained |
679655da | 11039 | F: drivers/misc/phantom.c |
c117ab84 | 11040 | F: include/uapi/linux/phantom.h |
cef2cf07 | 11041 | |
2a1e8447 JB |
11042 | Emulex 10Gbps iSCSI - OneConnect DRIVER |
11043 | M: Subbu Seetharaman <subbu.seetharaman@broadcom.com> | |
11044 | M: Ketan Mukadam <ketan.mukadam@broadcom.com> | |
11045 | M: Jitendra Bhivare <jitendra.bhivare@broadcom.com> | |
3387f656 | 11046 | L: linux-scsi@vger.kernel.org |
2a1e8447 | 11047 | W: http://www.broadcom.com |
3387f656 JP |
11048 | S: Supported |
11049 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 11050 | |
d2ee76fa | 11051 | Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net) |
aa7b4537 SP |
11052 | M: Sathya Perla <sathya.perla@broadcom.com> |
11053 | M: Ajit Khaparde <ajit.khaparde@broadcom.com> | |
aa7b4537 SP |
11054 | M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com> |
11055 | M: Somnath Kotur <somnath.kotur@broadcom.com> | |
7d2c86b5 | 11056 | L: netdev@vger.kernel.org |
fea3af67 | 11057 | W: http://www.emulex.com |
7d2c86b5 | 11058 | S: Supported |
9aebddd1 | 11059 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 11060 | |
d2928a8c | 11061 | EMULEX ONECONNECT ROCE DRIVER |
2b8e7333 LN |
11062 | M: Selvin Xavier <selvin.xavier@avagotech.com> |
11063 | M: Devesh Sharma <devesh.sharma@avagotech.com> | |
11064 | M: Mitesh Ahuja <mitesh.ahuja@avagotech.com> | |
d2928a8c SX |
11065 | L: linux-rdma@vger.kernel.org |
11066 | W: http://www.emulex.com | |
11067 | S: Supported | |
11068 | F: drivers/infiniband/hw/ocrdma/ | |
a7fe7380 | 11069 | F: include/uapi/rdma/ocrdma-abi.h |
d2928a8c | 11070 | |
8ceee660 | 11071 | SFC NETWORK DRIVER |
c06f51ea | 11072 | M: Solarflare linux maintainers <linux-net-drivers@solarflare.com> |
e00f8017 BK |
11073 | M: Edward Cree <ecree@solarflare.com> |
11074 | M: Bert Kenward <bkenward@solarflare.com> | |
c06f51ea | 11075 | L: netdev@vger.kernel.org |
8ceee660 | 11076 | S: Supported |
874aeea5 | 11077 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 11078 | |
e2d1d6c0 | 11079 | SGI GRU DRIVER |
cc883afc | 11080 | M: Dimitri Sivanich <sivanich@sgi.com> |
e2d1d6c0 | 11081 | S: Maintained |
679655da | 11082 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
11083 | |
11084 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 11085 | M: Pat Gefre <pfg@sgi.com> |
e2d1d6c0 RD |
11086 | L: linux-ia64@vger.kernel.org |
11087 | S: Supported | |
679655da | 11088 | F: Documentation/ia64/serial.txt |
df621252 | 11089 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 11090 | F: include/linux/ioc?.h |
e2d1d6c0 | 11091 | |
75312619 | 11092 | SGI XP/XPC/XPNET DRIVER |
e180383f RH |
11093 | M: Cliff Whickman <cpw@sgi.com> |
11094 | M: Robin Holt <robinmholt@gmail.com> | |
75312619 | 11095 | S: Maintained |
679655da | 11096 | F: drivers/misc/sgi-xp/ |
75312619 | 11097 | |
46eacf3b AP |
11098 | SI2157 MEDIA DRIVER |
11099 | M: Antti Palosaari <crope@iki.fi> | |
11100 | L: linux-media@vger.kernel.org | |
a825eaec | 11101 | W: https://linuxtv.org |
46eacf3b AP |
11102 | W: http://palosaari.fi/linux/ |
11103 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11104 | T: git git://linuxtv.org/anttip/media_tree.git | |
11105 | S: Maintained | |
11106 | F: drivers/media/tuners/si2157* | |
11107 | ||
75e2d5ba AP |
11108 | SI2168 MEDIA DRIVER |
11109 | M: Antti Palosaari <crope@iki.fi> | |
11110 | L: linux-media@vger.kernel.org | |
a825eaec | 11111 | W: https://linuxtv.org |
75e2d5ba AP |
11112 | W: http://palosaari.fi/linux/ |
11113 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11114 | T: git git://linuxtv.org/anttip/media_tree.git | |
11115 | S: Maintained | |
11116 | F: drivers/media/dvb-frontends/si2168* | |
11117 | ||
49cc629d HV |
11118 | SI470X FM RADIO RECEIVER I2C DRIVER |
11119 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11120 | L: linux-media@vger.kernel.org | |
11121 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11122 | W: https://linuxtv.org |
49cc629d HV |
11123 | S: Odd Fixes |
11124 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
11125 | ||
11126 | SI470X FM RADIO RECEIVER USB DRIVER | |
11127 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11128 | L: linux-media@vger.kernel.org | |
11129 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11130 | W: https://linuxtv.org |
49cc629d HV |
11131 | S: Maintained |
11132 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
11133 | F: drivers/media/radio/si470x/radio-si470x.h | |
11134 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
11135 | ||
c937ca03 EV |
11136 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
11137 | M: Eduardo Valentin <edubezval@gmail.com> | |
11138 | L: linux-media@vger.kernel.org | |
11139 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11140 | W: https://linuxtv.org |
c937ca03 | 11141 | S: Odd Fixes |
99995ded | 11142 | F: drivers/media/radio/si4713/si4713.? |
c937ca03 EV |
11143 | |
11144 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
11145 | M: Eduardo Valentin <edubezval@gmail.com> | |
11146 | L: linux-media@vger.kernel.org | |
11147 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11148 | W: https://linuxtv.org |
c937ca03 | 11149 | S: Odd Fixes |
99995ded DR |
11150 | F: drivers/media/radio/si4713/radio-platform-si4713.c |
11151 | ||
11152 | SI4713 FM RADIO TRANSMITTER USB DRIVER | |
11153 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11154 | L: linux-media@vger.kernel.org | |
11155 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11156 | W: https://linuxtv.org |
99995ded DR |
11157 | S: Maintained |
11158 | F: drivers/media/radio/si4713/radio-usb-si4713.c | |
c937ca03 | 11159 | |
beb91d46 | 11160 | SIANO DVB DRIVER |
5dc8a864 MCC |
11161 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
11162 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
beb91d46 | 11163 | L: linux-media@vger.kernel.org |
a825eaec | 11164 | W: https://linuxtv.org |
beb91d46 MCC |
11165 | T: git git://linuxtv.org/media_tree.git |
11166 | S: Odd fixes | |
11167 | F: drivers/media/common/siano/ | |
beb91d46 | 11168 | F: drivers/media/usb/siano/ |
beb91d46 | 11169 | F: drivers/media/usb/siano/ |
14430813 | 11170 | F: drivers/media/mmc/siano/ |
beb91d46 | 11171 | |
6f15b602 HG |
11172 | SIMPLEFB FB DRIVER |
11173 | M: Hans de Goede <hdegoede@redhat.com> | |
11174 | L: linux-fbdev@vger.kernel.org | |
11175 | S: Maintained | |
2d799dde | 11176 | F: Documentation/devicetree/bindings/display/simple-framebuffer.txt |
6f15b602 HG |
11177 | F: drivers/video/fbdev/simplefb.c |
11178 | F: include/linux/platform_data/simplefb.h | |
11179 | ||
b618b69c | 11180 | SH_VEU V4L2 MEM2MEM DRIVER |
b618b69c | 11181 | L: linux-media@vger.kernel.org |
bb60fcb2 | 11182 | S: Orphan |
b618b69c | 11183 | F: drivers/media/platform/sh_veu.c |
b618b69c GL |
11184 | |
11185 | SH_VOU V4L2 OUTPUT DRIVER | |
b618b69c | 11186 | L: linux-media@vger.kernel.org |
bb60fcb2 | 11187 | S: Orphan |
b618b69c | 11188 | F: drivers/media/platform/sh_vou.c |
d647f0b7 | 11189 | F: include/media/drv-intf/sh_vou.h |
b618b69c | 11190 | |
6349d997 | 11191 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 11192 | M: Len Brown <lenb@kernel.org> |
6349d997 LB |
11193 | L: sfi-devel@simplefirmware.org |
11194 | W: http://simplefirmware.org/ | |
11195 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 11196 | S: Supported |
943fc810 | 11197 | F: arch/x86/platform/sfi/ |
6349d997 LB |
11198 | F: drivers/sfi/ |
11199 | F: include/linux/sfi*.h | |
e2d1d6c0 | 11200 | |
1da177e4 LT |
11201 | SIMTEC EB110ATX (Chalice CATS) |
11202 | P: Ben Dooks | |
b16957c6 BD |
11203 | P: Vincent Sanders <vince@simtec.co.uk> |
11204 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
11205 | W: http://www.simtec.co.uk/products/EB110ATX/ |
11206 | S: Supported | |
11207 | ||
11208 | SIMTEC EB2410ITX (BAST) | |
11209 | P: Ben Dooks | |
b16957c6 BD |
11210 | P: Vincent Sanders <vince@simtec.co.uk> |
11211 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
11212 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
11213 | S: Supported | |
15dba387 JP |
11214 | F: arch/arm/mach-s3c24xx/mach-bast.c |
11215 | F: arch/arm/mach-s3c24xx/bast-ide.c | |
11216 | F: arch/arm/mach-s3c24xx/bast-irq.c | |
1da177e4 | 11217 | |
4c5adde7 | 11218 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 | 11219 | M: Sekhar Nori <nsekhar@ti.com> |
3cf2efd5 | 11220 | M: Kevin Hilman <khilman@kernel.org> |
42c031df SN |
11221 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
11222 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git | |
4c5adde7 | 11223 | S: Supported |
14430813 | 11224 | F: arch/arm/mach-davinci/ |
046d0a37 | 11225 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 11226 | |
8d4b3f08 | 11227 | TI DAVINCI SERIES MEDIA DRIVER |
e43cdb56 | 11228 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
8d4b3f08 | 11229 | L: linux-media@vger.kernel.org |
a825eaec | 11230 | W: https://linuxtv.org |
8d4b3f08 LP |
11231 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
11232 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9ce5eca7 | 11233 | S: Maintained |
8d4b3f08 LP |
11234 | F: drivers/media/platform/davinci/ |
11235 | F: include/media/davinci/ | |
11236 | ||
417d2e50 | 11237 | TI AM437X VPFE DRIVER |
e43cdb56 | 11238 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
417d2e50 | 11239 | L: linux-media@vger.kernel.org |
a825eaec | 11240 | W: https://linuxtv.org |
417d2e50 BP |
11241 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
11242 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
11243 | S: Maintained | |
11244 | F: drivers/media/platform/am437x/ | |
11245 | ||
c4c0283a | 11246 | OV2659 OMNIVISION SENSOR DRIVER |
e43cdb56 | 11247 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
c4c0283a | 11248 | L: linux-media@vger.kernel.org |
a825eaec | 11249 | W: https://linuxtv.org |
c4c0283a BP |
11250 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
11251 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
11252 | S: Maintained | |
11253 | F: drivers/media/i2c/ov2659.c | |
b5dcee22 | 11254 | F: include/media/i2c/ov2659.h |
c4c0283a | 11255 | |
3a6779f5 SM |
11256 | SILICON MOTION SM712 FRAME BUFFER DRIVER |
11257 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
11258 | M: Teddy Wang <teddy.wang@siliconmotion.com> | |
80567564 | 11259 | M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk> |
3a6779f5 SM |
11260 | L: linux-fbdev@vger.kernel.org |
11261 | S: Maintained | |
11262 | F: drivers/video/fbdev/sm712* | |
11263 | F: Documentation/fb/sm712fb.txt | |
11264 | ||
92aab3c0 | 11265 | SIS 190 ETHERNET DRIVER |
8b58be88 | 11266 | M: Francois Romieu <romieu@fr.zoreil.com> |
92aab3c0 FR |
11267 | L: netdev@vger.kernel.org |
11268 | S: Maintained | |
8c7de408 | 11269 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 11270 | |
1da177e4 | 11271 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 11272 | M: Daniele Venzano <venza@brownhat.org> |
1da177e4 | 11273 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 11274 | L: netdev@vger.kernel.org |
1da177e4 | 11275 | S: Maintained |
8c7de408 | 11276 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
11277 | |
11278 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 11279 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 | 11280 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 11281 | S: Maintained |
679655da | 11282 | F: Documentation/fb/sisfb.txt |
8a61f013 | 11283 | F: drivers/video/fbdev/sis/ |
679655da | 11284 | F: include/video/sisfb.h |
1da177e4 LT |
11285 | |
11286 | SIS USB2VGA DRIVER | |
8b58be88 | 11287 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 LT |
11288 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
11289 | S: Maintained | |
679655da | 11290 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 11291 | |
415ad26d | 11292 | SLAB ALLOCATOR |
16e943bf | 11293 | M: Christoph Lameter <cl@linux.com> |
2ed1c525 | 11294 | M: Pekka Enberg <penberg@kernel.org> |
16e943bf CL |
11295 | M: David Rientjes <rientjes@google.com> |
11296 | M: Joonsoo Kim <iamjoonsoo.kim@lge.com> | |
11297 | M: Andrew Morton <akpm@linux-foundation.org> | |
415ad26d CL |
11298 | L: linux-mm@kvack.org |
11299 | S: Maintained | |
679655da | 11300 | F: include/linux/sl?b*.h |
16e943bf | 11301 | F: mm/sl?b* |
415ad26d | 11302 | |
9fab9787 | 11303 | SLEEPABLE READ-COPY UPDATE (SRCU) |
96a39bc4 | 11304 | M: Lai Jiangshan <jiangshanlai@gmail.com> |
9fab9787 | 11305 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
ab0afd6c | 11306 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
11307 | R: Steven Rostedt <rostedt@goodmis.org> |
11308 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
981c3a4f | 11309 | L: linux-kernel@vger.kernel.org |
9fab9787 PM |
11310 | W: http://www.rdrop.com/users/paulmck/RCU/ |
11311 | S: Supported | |
11312 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
4102adab PM |
11313 | F: include/linux/srcu.h |
11314 | F: kernel/rcu/srcu.c | |
9fab9787 | 11315 | |
66372841 CS |
11316 | SMACK SECURITY MODULE |
11317 | M: Casey Schaufler <casey@schaufler-ca.com> | |
11318 | L: linux-security-module@vger.kernel.org | |
11319 | W: http://schaufler-ca.com | |
ece38248 | 11320 | T: git git://github.com/cschaufler/smack-next |
66372841 CS |
11321 | S: Maintained |
11322 | F: Documentation/security/Smack.txt | |
11323 | F: security/smack/ | |
11324 | ||
20651e0b | 11325 | DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
68ace3e1 KH |
11326 | M: Kevin Hilman <khilman@kernel.org> |
11327 | M: Nishanth Menon <nm@ti.com> | |
11328 | S: Maintained | |
20651e0b | 11329 | F: drivers/power/avs/ |
68ace3e1 KH |
11330 | F: include/linux/power/smartreflex.h |
11331 | L: linux-pm@vger.kernel.org | |
11332 | ||
1da177e4 | 11333 | SMC91x ETHERNET DRIVER |
2f82af08 | 11334 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 11335 | S: Odd Fixes |
ae150435 | 11336 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 11337 | |
e8e31622 SA |
11338 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
11339 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
11340 | L: linux-media@vger.kernel.org | |
11341 | S: Maintained | |
14430813 | 11342 | F: drivers/media/i2c/smiapp/ |
b5dcee22 | 11343 | F: include/media/i2c/smiapp.h |
e8e31622 SA |
11344 | F: drivers/media/i2c/smiapp-pll.c |
11345 | F: drivers/media/i2c/smiapp-pll.h | |
fd2bfdc8 | 11346 | F: include/uapi/linux/smiapp.h |
a2cec3c0 | 11347 | F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt |
e8e31622 | 11348 | |
920fa1ff GR |
11349 | SMM665 HARDWARE MONITOR DRIVER |
11350 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 11351 | L: linux-hwmon@vger.kernel.org |
920fa1ff GR |
11352 | S: Maintained |
11353 | F: Documentation/hwmon/smm665 | |
11354 | F: drivers/hwmon/smm665.c | |
11355 | ||
9df7305b | 11356 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 11357 | M: Steve Glendinning <steve.glendinning@shawell.net> |
968ce1b1 | 11358 | L: linux-hwmon@vger.kernel.org |
90b24cfb | 11359 | S: Maintained |
9df7305b SG |
11360 | F: Documentation/hwmon/emc2103 |
11361 | F: drivers/hwmon/emc2103.c | |
11362 | ||
a98d506c HG |
11363 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
11364 | M: Hans de Goede <hdegoede@redhat.com> | |
968ce1b1 | 11365 | L: linux-hwmon@vger.kernel.org |
a98d506c HG |
11366 | S: Supported |
11367 | F: Documentation/hwmon/sch5627 | |
11368 | F: drivers/hwmon/sch5627.c | |
11369 | ||
6ea884db | 11370 | SMSC47B397 HARDWARE MONITOR DRIVER |
d8130624 | 11371 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 11372 | L: linux-hwmon@vger.kernel.org |
6ea884db | 11373 | S: Maintained |
679655da JP |
11374 | F: Documentation/hwmon/smsc47b397 |
11375 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 11376 | |
fd9abb3d | 11377 | SMSC911x ETHERNET DRIVER |
90b24cfb | 11378 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2cb37728 | 11379 | L: netdev@vger.kernel.org |
90b24cfb | 11380 | S: Maintained |
679655da | 11381 | F: include/linux/smsc911x.h |
ae150435 | 11382 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
11383 | |
11384 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 11385 | M: Steve Glendinning <steve.glendinning@shawell.net> |
fd9abb3d | 11386 | L: netdev@vger.kernel.org |
90b24cfb | 11387 | S: Maintained |
ae150435 | 11388 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 11389 | |
3c8a63e2 | 11390 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 11391 | M: Steve Glendinning <steve.glendinning@shawell.net> |
3c8a63e2 | 11392 | L: linux-fbdev@vger.kernel.org |
90b24cfb | 11393 | S: Maintained |
8a61f013 | 11394 | F: drivers/video/fbdev/smscufx.c |
3c8a63e2 | 11395 | |
668acf32 | 11396 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 11397 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
661263b5 | 11398 | L: linux-media@vger.kernel.org |
275ffde4 | 11399 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 11400 | S: Maintained |
90d72ac6 MCC |
11401 | F: include/media/soc* |
11402 | F: drivers/media/i2c/soc_camera/ | |
11403 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 11404 | |
e2d1d6c0 | 11405 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 11406 | M: Chris Boot <bootc@bootc.net> |
e2d1d6c0 | 11407 | S: Maintained |
679655da | 11408 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 11409 | |
e3994db1 | 11410 | SOFTLOGIC 6x10 MPEG CODEC |
9661975d AU |
11411 | M: Bluecherry Maintainers <maintainers@bluecherrydvr.com> |
11412 | M: Andrey Utkin <andrey.utkin@corp.bluecherry.net> | |
11413 | M: Andrey Utkin <andrey.krieger.utkin@gmail.com> | |
1f141f6b | 11414 | M: Ismael Luceno <ismael@iodev.co.uk> |
e3994db1 JP |
11415 | L: linux-media@vger.kernel.org |
11416 | S: Supported | |
11417 | F: drivers/media/pci/solo6x10/ | |
11418 | ||
1da177e4 | 11419 | SOFTWARE RAID (Multiple Disks) SUPPORT |
c2f662eb | 11420 | M: Shaohua Li <shli@kernel.org> |
1da177e4 | 11421 | L: linux-raid@vger.kernel.org |
0f9ce866 | 11422 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git |
524418bb | 11423 | S: Supported |
679655da JP |
11424 | F: drivers/md/ |
11425 | F: include/linux/raid/ | |
c117ab84 | 11426 | F: include/uapi/linux/raid/ |
1da177e4 | 11427 | |
1da177e4 | 11428 | SONIC NETWORK DRIVER |
8b58be88 | 11429 | M: Thomas Bogendoerfer <tsbogend@alpha.franken.de> |
979b6c13 | 11430 | L: netdev@vger.kernel.org |
1da177e4 | 11431 | S: Maintained |
d9fb9f38 | 11432 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 11433 | |
61e115a5 | 11434 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 11435 | M: Michael Buesch <m@bues.ch> |
e7828b28 | 11436 | L: linux-wireless@vger.kernel.org |
61e115a5 | 11437 | S: Maintained |
679655da JP |
11438 | F: drivers/ssb/ |
11439 | F: include/linux/ssb/ | |
61e115a5 | 11440 | |
1da177e4 | 11441 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 11442 | M: Mattia Dongili <malattia@linux.it> |
d0944853 | 11443 | L: platform-driver-x86@vger.kernel.org |
5b18167d | 11444 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 11445 | S: Maintained |
679655da JP |
11446 | F: Documentation/laptops/sony-laptop.txt |
11447 | F: drivers/char/sonypi.c | |
11448 | F: drivers/platform/x86/sony-laptop.c | |
11449 | F: include/linux/sony-laptop.h | |
1da177e4 | 11450 | |
baf8532a | 11451 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 11452 | M: Alex Dubov <oakad@yahoo.com> |
baf8532a AD |
11453 | W: http://tifmxx.berlios.de/ |
11454 | S: Maintained | |
679655da | 11455 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 11456 | |
0ab30494 ML |
11457 | SONY MEMORYSTICK STANDARD SUPPORT |
11458 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
11459 | S: Maintained | |
11460 | F: drivers/memstick/core/ms_block.* | |
11461 | ||
1da177e4 | 11462 | SOUND |
8b58be88 | 11463 | M: Jaroslav Kysela <perex@perex.cz> |
d8130624 | 11464 | M: Takashi Iwai <tiwai@suse.com> |
93711660 | 11465 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
3126a179 | 11466 | W: http://www.alsa-project.org/ |
dde7ad8d | 11467 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 11468 | T: git git://git.alsa-project.org/alsa-kernel.git |
ff4a8f32 | 11469 | Q: http://patchwork.kernel.org/project/alsa-devel/list/ |
1da177e4 | 11470 | S: Maintained |
3126a179 JP |
11471 | F: Documentation/sound/ |
11472 | F: include/sound/ | |
c117ab84 | 11473 | F: include/uapi/sound/ |
679655da | 11474 | F: sound/ |
1da177e4 | 11475 | |
33bbe149 MB |
11476 | SOUND - COMPRESSED AUDIO |
11477 | M: Vinod Koul <vinod.koul@intel.com> | |
11478 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
11479 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git | |
11480 | S: Supported | |
f672f31a | 11481 | F: Documentation/sound/alsa/compress_offload.txt |
33bbe149 | 11482 | F: include/sound/compress_driver.h |
f672f31a | 11483 | F: include/uapi/sound/compress_* |
33bbe149 MB |
11484 | F: sound/core/compress_offload.c |
11485 | F: sound/soc/soc-compress.c | |
11486 | ||
bd903bde | 11487 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 11488 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 11489 | M: Mark Brown <broonie@kernel.org> |
86f14df8 | 11490 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 11491 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
b0b8daf7 | 11492 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 11493 | S: Supported |
181ad2a5 | 11494 | F: Documentation/devicetree/bindings/sound/ |
2820f615 | 11495 | F: Documentation/sound/alsa/soc/ |
679655da | 11496 | F: sound/soc/ |
e6e55122 | 11497 | F: include/sound/soc* |
eb1a6af3 | 11498 | |
d7f8761b MB |
11499 | SOUND - DMAENGINE HELPERS |
11500 | M: Lars-Peter Clausen <lars@metafoo.de> | |
11501 | S: Supported | |
11502 | F: include/sound/dmaengine_pcm.h | |
11503 | F: sound/core/pcm_dmaengine.c | |
11504 | F: sound/soc/soc-generic-dmaengine-pcm.c | |
11505 | ||
990a6a99 OS |
11506 | SP2 MEDIA DRIVER |
11507 | M: Olli Salonen <olli.salonen@iki.fi> | |
11508 | L: linux-media@vger.kernel.org | |
a825eaec | 11509 | W: https://linuxtv.org |
990a6a99 OS |
11510 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
11511 | S: Maintained | |
11512 | F: drivers/media/dvb-frontends/sp2* | |
11513 | ||
473321fc | 11514 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 11515 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 11516 | L: sparclinux@vger.kernel.org |
8a6e2535 | 11517 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
11518 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
11519 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 11520 | S: Maintained |
679655da | 11521 | F: arch/sparc/ |
7765b8bb | 11522 | F: drivers/sbus/ |
1da177e4 | 11523 | |
6404fcca DM |
11524 | SPARC SERIAL DRIVERS |
11525 | M: "David S. Miller" <davem@davemloft.net> | |
11526 | L: sparclinux@vger.kernel.org | |
08deed1e JP |
11527 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
11528 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 11529 | S: Maintained |
6816383a | 11530 | F: include/linux/sunserialcore.h |
df621252 | 11531 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
11532 | F: drivers/tty/serial/sunhv.c |
11533 | F: drivers/tty/serial/sunsab.c | |
11534 | F: drivers/tty/serial/sunsab.h | |
11535 | F: drivers/tty/serial/sunsu.c | |
11536 | F: drivers/tty/serial/sunzilog.c | |
11537 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 11538 | |
389325b4 CL |
11539 | SPARSE CHECKER |
11540 | M: "Christopher Li" <sparse@chrisli.org> | |
11541 | L: linux-sparse@vger.kernel.org | |
11542 | W: https://sparse.wiki.kernel.org/ | |
11543 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
11544 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
11545 | S: Maintained | |
11546 | F: include/linux/compiler.h | |
11547 | ||
fc0c195a | 11548 | SPEAR PLATFORM SUPPORT |
da89947b | 11549 | M: Viresh Kumar <vireshk@kernel.org> |
9cc23682 | 11550 | M: Shiraz Hashim <shiraz.linux.kernel@gmail.com> |
fbfa0748 | 11551 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
fc0c195a VK |
11552 | W: http://www.st.com/spear |
11553 | S: Maintained | |
e68d7c14 | 11554 | F: arch/arm/boot/dts/spear* |
281e192f | 11555 | F: arch/arm/mach-spear/ |
fc0c195a VK |
11556 | |
11557 | SPEAR CLOCK FRAMEWORK SUPPORT | |
da89947b | 11558 | M: Viresh Kumar <vireshk@kernel.org> |
fbfa0748 | 11559 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
fc0c195a VK |
11560 | W: http://www.st.com/spear |
11561 | S: Maintained | |
5df33a62 | 11562 | F: drivers/clk/spear/ |
fc0c195a | 11563 | |
e2796541 CP |
11564 | SPI NOR SUBSYSTEM |
11565 | M: Cyrille Pitchen <cyrille.pitchen@atmel.com> | |
11566 | M: Marek Vasut <marek.vasut@gmail.com> | |
11567 | L: linux-mtd@lists.infradead.org | |
11568 | W: http://www.linux-mtd.infradead.org/ | |
11569 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
11570 | T: git git://github.com/spi-nor/linux.git | |
11571 | S: Maintained | |
11572 | F: drivers/mtd/spi-nor/ | |
11573 | F: include/linux/mtd/spi-nor.h | |
11574 | ||
e2d1d6c0 | 11575 | SPI SUBSYSTEM |
b02e48f2 | 11576 | M: Mark Brown <broonie@kernel.org> |
dfbe403c | 11577 | L: linux-spi@vger.kernel.org |
e7e4e13c | 11578 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 11579 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 11580 | S: Maintained |
87306eb7 | 11581 | F: Documentation/devicetree/bindings/spi/ |
679655da JP |
11582 | F: Documentation/spi/ |
11583 | F: drivers/spi/ | |
11584 | F: include/linux/spi/ | |
c117ab84 | 11585 | F: include/uapi/linux/spi/ |
a43cd4bb | 11586 | F: tools/spi/ |
e2d1d6c0 | 11587 | |
2752e401 | 11588 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 | 11589 | M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp> |
2752e401 JL |
11590 | L: netdev@vger.kernel.org |
11591 | S: Supported | |
679655da | 11592 | F: Documentation/networking/spider_net.txt |
8df158ac | 11593 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 11594 | |
e2d1d6c0 | 11595 | SPU FILE SYSTEM |
8b58be88 | 11596 | M: Jeremy Kerr <jk@ozlabs.org> |
a4724ed6 | 11597 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 RD |
11598 | W: http://www.ibm.com/developerworks/power/cell/ |
11599 | S: Supported | |
679655da JP |
11600 | F: Documentation/filesystems/spufs.txt |
11601 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 11602 | |
fc555841 | 11603 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 11604 | M: Phillip Lougher <phillip@squashfs.org.uk> |
fc555841 PL |
11605 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
11606 | W: http://squashfs.org.uk | |
9f273c24 | 11607 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git |
fc555841 | 11608 | S: Maintained |
679655da JP |
11609 | F: Documentation/filesystems/squashfs.txt |
11610 | F: fs/squashfs/ | |
fc555841 | 11611 | |
1da177e4 | 11612 | SRM (Alpha) environment access |
8b58be88 | 11613 | M: Jan-Benedict Glaw <jbglaw@lug-owl.de> |
1da177e4 | 11614 | S: Maintained |
679655da | 11615 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 11616 | |
26e9a397 | 11617 | STABLE BRANCH |
879a5a00 | 11618 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
bc7a2f3a | 11619 | L: stable@vger.kernel.org |
879a5a00 | 11620 | S: Supported |
8c27ceff | 11621 | F: Documentation/process/stable-kernel-rules.rst |
e2d1d6c0 | 11622 | |
26e9a397 | 11623 | STAGING SUBSYSTEM |
879a5a00 | 11624 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
630081fd | 11625 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 11626 | L: devel@driverdev.osuosl.org |
879a5a00 | 11627 | S: Supported |
679655da | 11628 | F: drivers/staging/ |
dbc6c2cc | 11629 | |
ebd3d010 JP |
11630 | STAGING - COMEDI |
11631 | M: Ian Abbott <abbotti@mev.co.uk> | |
81b884c9 | 11632 | M: H Hartley Sweeten <hsweeten@visionengravers.com> |
ebd3d010 JP |
11633 | S: Odd Fixes |
11634 | F: drivers/staging/comedi/ | |
11635 | ||
a0138163 JP |
11636 | STAGING - FLARION FT1000 DRIVERS |
11637 | M: Marek Belisko <marek.belisko@gmail.com> | |
11638 | S: Odd Fixes | |
11639 | F: drivers/staging/ft1000/ | |
11640 | ||
6c1bb424 | 11641 | STAGING - INDUSTRIAL IO |
030a13d7 | 11642 | M: Jonathan Cameron <jic23@kernel.org> |
a0138163 | 11643 | L: linux-iio@vger.kernel.org |
6c1bb424 | 11644 | S: Odd Fixes |
5291582d | 11645 | F: Documentation/devicetree/bindings/staging/iio/ |
6c1bb424 JP |
11646 | F: drivers/staging/iio/ |
11647 | ||
a0138163 JP |
11648 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
11649 | M: Jarod Wilson <jarod@wilsonet.com> | |
11650 | W: http://www.lirc.org/ | |
11651 | S: Odd Fixes | |
b2b0186d | 11652 | F: drivers/staging/media/lirc/ |
a0138163 | 11653 | |
f5e5de1e OD |
11654 | STAGING - LUSTRE PARALLEL FILESYSTEM |
11655 | M: Oleg Drokin <oleg.drokin@intel.com> | |
11656 | M: Andreas Dilger <andreas.dilger@intel.com> | |
8701dbf9 | 11657 | M: James Simmons <jsimmons@infradead.org> |
d98229f0 AD |
11658 | L: lustre-devel@lists.lustre.org (moderated for non-subscribers) |
11659 | W: http://wiki.lustre.org/ | |
f5e5de1e OD |
11660 | S: Maintained |
11661 | F: drivers/staging/lustre | |
11662 | ||
7c6b6c71 MD |
11663 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
11664 | M: Marc Dietrich <marvin24@gmx.de> | |
11665 | L: ac100@lists.launchpad.net (moderated for non-subscribers) | |
5d96bf4d | 11666 | L: linux-tegra@vger.kernel.org |
7c6b6c71 MD |
11667 | S: Maintained |
11668 | F: drivers/staging/nvec/ | |
11669 | ||
53c43c5c GKH |
11670 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
11671 | M: Jens Frederich <jfrederich@gmail.com> | |
11672 | M: Daniel Drake <dsd@laptop.org> | |
11673 | M: Jon Nettleton <jon.nettleton@gmail.com> | |
11674 | W: http://wiki.laptop.org/go/DCON | |
11675 | S: Maintained | |
11676 | F: drivers/staging/olpc_dcon/ | |
11677 | ||
a0138163 JP |
11678 | STAGING - REALTEK RTL8712U DRIVERS |
11679 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
11680 | M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>. | |
11681 | S: Odd Fixes | |
11682 | F: drivers/staging/rtl8712/ | |
11683 | ||
980ac4d7 SM |
11684 | STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER |
11685 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
11686 | M: Teddy Wang <teddy.wang@siliconmotion.com> | |
80567564 | 11687 | M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk> |
980ac4d7 SM |
11688 | L: linux-fbdev@vger.kernel.org |
11689 | S: Maintained | |
11690 | F: drivers/staging/sm750fb/ | |
11691 | ||
a0138163 JP |
11692 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER |
11693 | M: William Hubbs <w.d.hubbs@gmail.com> | |
11694 | M: Chris Brannon <chris@the-brannons.com> | |
d33bce31 | 11695 | M: Kirk Reiser <kirk@reisers.ca> |
a0138163 | 11696 | M: Samuel Thibault <samuel.thibault@ens-lyon.org> |
e6a152ef | 11697 | L: speakup@linux-speakup.org |
a0138163 JP |
11698 | W: http://www.linux-speakup.org/ |
11699 | S: Odd Fixes | |
11700 | F: drivers/staging/speakup/ | |
11701 | ||
b3e871ce JP |
11702 | STAGING - VIA VT665X DRIVERS |
11703 | M: Forest Bond <forest@alittletooquiet.net> | |
11704 | S: Odd Fixes | |
11705 | F: drivers/staging/vt665?/ | |
11706 | ||
a30baec1 | 11707 | STAGING - WILC1000 WIFI DRIVER |
d9a85940 AS |
11708 | M: Aditya Shankar <aditya.shankar@microchip.com> |
11709 | M: Ganesh Krishna <ganesh.krishna@microchip.com> | |
a30baec1 JK |
11710 | L: linux-wireless@vger.kernel.org |
11711 | S: Supported | |
11712 | F: drivers/staging/wilc1000/ | |
11713 | ||
709bcb07 | 11714 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 11715 | M: Arnaud Patard <arnaud.patard@rtp-net.org> |
709bcb07 JP |
11716 | S: Odd Fixes |
11717 | F: drivers/staging/xgifb/ | |
11718 | ||
1da177e4 | 11719 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 11720 | M: Ion Badulescu <ionut@badula.org> |
b4f90189 | 11721 | S: Odd Fixes |
9bba23b0 | 11722 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 11723 | |
e2d1d6c0 | 11724 | SUN3/3X |
8b58be88 | 11725 | M: Sam Creasey <sammy@sammy.net> |
e2d1d6c0 RD |
11726 | W: http://sammy.net/sun3/ |
11727 | S: Maintained | |
679655da JP |
11728 | F: arch/m68k/kernel/*sun3* |
11729 | F: arch/m68k/sun3*/ | |
11730 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 11731 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 11732 | |
af6a5af8 HG |
11733 | SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER |
11734 | M: Hans de Goede <hdegoede@redhat.com> | |
11735 | L: linux-input@vger.kernel.org | |
11736 | S: Maintained | |
11737 | F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt | |
11738 | F: drivers/input/keyboard/sun4i-lradc-keys.c | |
11739 | ||
2bc9ff01 DK |
11740 | SUNDANCE NETWORK DRIVER |
11741 | M: Denis Kirjanov <kda@linux-powerpc.org> | |
11742 | L: netdev@vger.kernel.org | |
11743 | S: Maintained | |
11744 | F: drivers/net/ethernet/dlink/sundance.c | |
11745 | ||
2cbb12a4 | 11746 | SUPERH |
114bf37e RF |
11747 | M: Yoshinori Sato <ysato@users.sourceforge.jp> |
11748 | M: Rich Felker <dalias@libc.org> | |
2cbb12a4 | 11749 | L: linux-sh@vger.kernel.org |
8a6e2535 | 11750 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
114bf37e | 11751 | S: Maintained |
066069e1 | 11752 | F: Documentation/sh/ |
679655da | 11753 | F: arch/sh/ |
066069e1 | 11754 | F: drivers/sh/ |
1da177e4 | 11755 | |
4480f15b | 11756 | SUSPEND TO RAM |
7fb06082 | 11757 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
8b58be88 JP |
11758 | M: Len Brown <len.brown@intel.com> |
11759 | M: Pavel Machek <pavel@ucw.cz> | |
bf1c138e | 11760 | L: linux-pm@vger.kernel.org |
68656443 | 11761 | B: https://bugzilla.kernel.org |
e2d1d6c0 | 11762 | S: Supported |
679655da JP |
11763 | F: Documentation/power/ |
11764 | F: arch/x86/kernel/acpi/ | |
11765 | F: drivers/base/power/ | |
11766 | F: kernel/power/ | |
11767 | F: include/linux/suspend.h | |
11768 | F: include/linux/freezer.h | |
11769 | F: include/linux/pm.h | |
1da177e4 LT |
11770 | |
11771 | SVGA HANDLING | |
8b58be88 | 11772 | M: Martin Mares <mj@ucw.cz> |
1da177e4 LT |
11773 | L: linux-video@atrey.karlin.mff.cuni.cz |
11774 | S: Maintained | |
679655da JP |
11775 | F: Documentation/svga.txt |
11776 | F: arch/x86/boot/video* | |
1da177e4 | 11777 | |
6e28b761 KRW |
11778 | SWIOTLB SUBSYSTEM |
11779 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11780 | L: linux-kernel@vger.kernel.org | |
9f273c24 | 11781 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git |
6e28b761 KRW |
11782 | S: Supported |
11783 | F: lib/swiotlb.c | |
11784 | F: arch/*/kernel/pci-swiotlb.c | |
11785 | F: include/linux/swiotlb.h | |
11786 | ||
007f790c JP |
11787 | SWITCHDEV |
11788 | M: Jiri Pirko <jiri@resnulli.us> | |
11789 | L: netdev@vger.kernel.org | |
11790 | S: Supported | |
11791 | F: net/switchdev/ | |
11792 | F: include/net/switchdev.h | |
11793 | ||
db8e35d5 VG |
11794 | SYNOPSYS ARC ARCHITECTURE |
11795 | M: Vineet Gupta <vgupta@synopsys.com> | |
30b9dbee | 11796 | L: linux-snps-arc@lists.infradead.org |
db8e35d5 VG |
11797 | S: Supported |
11798 | F: arch/arc/ | |
9b28829d | 11799 | F: Documentation/devicetree/bindings/arc/* |
2d799dde | 11800 | F: Documentation/devicetree/bindings/interrupt-controller/snps,arc* |
c6a0fe4a | 11801 | F: drivers/tty/serial/arc_uart.c |
b7182d1a | 11802 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git |
db8e35d5 | 11803 | |
556cc1c5 AB |
11804 | SYNOPSYS ARC SDP platform support |
11805 | M: Alexey Brodkin <abrodkin@synopsys.com> | |
11806 | S: Supported | |
11807 | F: arch/arc/plat-axs10x | |
11808 | F: arch/arc/boot/dts/ax* | |
11809 | F: Documentation/devicetree/bindings/arc/axs10* | |
11810 | ||
6c284c9a LJ |
11811 | SYSTEM CONFIGURATION (SYSCON) |
11812 | M: Lee Jones <lee.jones@linaro.org> | |
11813 | M: Arnd Bergmann <arnd@arndb.de> | |
11814 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git | |
11815 | S: Supported | |
11816 | F: drivers/mfd/syscon.c | |
11817 | ||
8c0984e5 SR |
11818 | SYSTEM RESET/SHUTDOWN DRIVERS |
11819 | M: Sebastian Reichel <sre@kernel.org> | |
8c0984e5 | 11820 | L: linux-pm@vger.kernel.org |
58db9505 | 11821 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git |
8c0984e5 SR |
11822 | S: Maintained |
11823 | F: Documentation/devicetree/bindings/power/reset/ | |
11824 | F: drivers/power/reset/ | |
11825 | ||
1da177e4 | 11826 | SYSV FILESYSTEM |
8b58be88 | 11827 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 | 11828 | S: Maintained |
679655da JP |
11829 | F: Documentation/filesystems/sysv-fs.txt |
11830 | F: fs/sysv/ | |
11831 | F: include/linux/sysv_fs.h | |
1da177e4 | 11832 | |
86cfa7fc | 11833 | TARGET SUBSYSTEM |
9c3646d1 | 11834 | M: "Nicholas A. Bellinger" <nab@linux-iscsi.org> |
86cfa7fc | 11835 | L: linux-scsi@vger.kernel.org |
b9f5edc2 | 11836 | L: target-devel@vger.kernel.org |
86cfa7fc | 11837 | W: http://www.linux-iscsi.org |
cf015e9f | 11838 | W: http://groups.google.com/group/linux-iscsi-target-dev |
452cf324 | 11839 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
11840 | S: Supported |
11841 | F: drivers/target/ | |
11842 | F: include/target/ | |
11843 | F: Documentation/target/ | |
11844 | ||
4e68852d | 11845 | TASKSTATS STATISTICS INTERFACE |
185e595f | 11846 | M: Balbir Singh <bsingharora@gmail.com> |
4e68852d | 11847 | S: Maintained |
679655da JP |
11848 | F: Documentation/accounting/taskstats* |
11849 | F: include/linux/taskstats* | |
11850 | F: kernel/taskstats.c | |
4e68852d | 11851 | |
781b456a | 11852 | TC CLASSIFIER |
f935f3f8 | 11853 | M: Jamal Hadi Salim <jhs@mojatatu.com> |
781b456a SH |
11854 | L: netdev@vger.kernel.org |
11855 | S: Maintained | |
679655da | 11856 | F: include/net/pkt_cls.h |
c117ab84 | 11857 | F: include/uapi/linux/pkt_cls.h |
679655da | 11858 | F: net/sched/ |
781b456a | 11859 | |
5067f08a | 11860 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
11861 | M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com> |
11862 | M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com> | |
5067f08a WHSE |
11863 | W: http://tcp-lp-mod.sourceforge.net/ |
11864 | S: Maintained | |
679655da | 11865 | F: net/ipv4/tcp_lp.c |
5067f08a | 11866 | |
91952bc0 AP |
11867 | TDA10071 MEDIA DRIVER |
11868 | M: Antti Palosaari <crope@iki.fi> | |
11869 | L: linux-media@vger.kernel.org | |
a825eaec | 11870 | W: https://linuxtv.org |
91952bc0 AP |
11871 | W: http://palosaari.fi/linux/ |
11872 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11873 | T: git git://linuxtv.org/anttip/media_tree.git | |
11874 | S: Maintained | |
11875 | F: drivers/media/dvb-frontends/tda10071* | |
11876 | ||
11877 | TDA18212 MEDIA DRIVER | |
11878 | M: Antti Palosaari <crope@iki.fi> | |
11879 | L: linux-media@vger.kernel.org | |
a825eaec | 11880 | W: https://linuxtv.org |
91952bc0 AP |
11881 | W: http://palosaari.fi/linux/ |
11882 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11883 | T: git git://linuxtv.org/anttip/media_tree.git | |
11884 | S: Maintained | |
11885 | F: drivers/media/tuners/tda18212* | |
11886 | ||
11887 | TDA18218 MEDIA DRIVER | |
11888 | M: Antti Palosaari <crope@iki.fi> | |
11889 | L: linux-media@vger.kernel.org | |
a825eaec | 11890 | W: https://linuxtv.org |
91952bc0 AP |
11891 | W: http://palosaari.fi/linux/ |
11892 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11893 | T: git git://linuxtv.org/anttip/media_tree.git | |
11894 | S: Maintained | |
11895 | F: drivers/media/tuners/tda18218* | |
11896 | ||
3b2f6aba MK |
11897 | TDA18271 MEDIA DRIVER |
11898 | M: Michael Krufky <mkrufky@linuxtv.org> | |
11899 | L: linux-media@vger.kernel.org | |
a825eaec | 11900 | W: https://linuxtv.org |
3b2f6aba MK |
11901 | W: http://github.com/mkrufky |
11902 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11903 | T: git git://linuxtv.org/mkrufky/tuners.git | |
11904 | S: Maintained | |
11905 | F: drivers/media/tuners/tda18271* | |
11906 | ||
e48307a9 MK |
11907 | TDA827x MEDIA DRIVER |
11908 | M: Michael Krufky <mkrufky@linuxtv.org> | |
11909 | L: linux-media@vger.kernel.org | |
a825eaec | 11910 | W: https://linuxtv.org |
e48307a9 MK |
11911 | W: http://github.com/mkrufky |
11912 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11913 | T: git git://linuxtv.org/mkrufky/tuners.git | |
11914 | S: Maintained | |
11915 | F: drivers/media/tuners/tda8290.* | |
11916 | ||
66cf9212 MK |
11917 | TDA8290 MEDIA DRIVER |
11918 | M: Michael Krufky <mkrufky@linuxtv.org> | |
11919 | L: linux-media@vger.kernel.org | |
a825eaec | 11920 | W: https://linuxtv.org |
66cf9212 MK |
11921 | W: http://github.com/mkrufky |
11922 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11923 | T: git git://linuxtv.org/mkrufky/tuners.git | |
11924 | S: Maintained | |
11925 | F: drivers/media/tuners/tda8290.* | |
11926 | ||
4b9fba30 HV |
11927 | TDA9840 MEDIA DRIVER |
11928 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11929 | L: linux-media@vger.kernel.org | |
11930 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11931 | W: https://linuxtv.org |
4b9fba30 HV |
11932 | S: Maintained |
11933 | F: drivers/media/i2c/tda9840* | |
11934 | ||
2cb654fd | 11935 | TEA5761 TUNER DRIVER |
5dc8a864 MCC |
11936 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
11937 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
2cb654fd | 11938 | L: linux-media@vger.kernel.org |
a825eaec | 11939 | W: https://linuxtv.org |
2cb654fd MCC |
11940 | T: git git://linuxtv.org/media_tree.git |
11941 | S: Odd fixes | |
11942 | F: drivers/media/tuners/tea5761.* | |
11943 | ||
11944 | TEA5767 TUNER DRIVER | |
5dc8a864 MCC |
11945 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
11946 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
2cb654fd | 11947 | L: linux-media@vger.kernel.org |
a825eaec | 11948 | W: https://linuxtv.org |
2cb654fd MCC |
11949 | T: git git://linuxtv.org/media_tree.git |
11950 | S: Maintained | |
11951 | F: drivers/media/tuners/tea5767.* | |
11952 | ||
4b9fba30 HV |
11953 | TEA6415C MEDIA DRIVER |
11954 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11955 | L: linux-media@vger.kernel.org | |
11956 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11957 | W: https://linuxtv.org |
4b9fba30 HV |
11958 | S: Maintained |
11959 | F: drivers/media/i2c/tea6415c* | |
11960 | ||
11961 | TEA6420 MEDIA DRIVER | |
11962 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11963 | L: linux-media@vger.kernel.org | |
11964 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11965 | W: https://linuxtv.org |
4b9fba30 HV |
11966 | S: Maintained |
11967 | F: drivers/media/i2c/tea6420* | |
11968 | ||
3d249d4c | 11969 | TEAM DRIVER |
dca9ab92 | 11970 | M: Jiri Pirko <jiri@resnulli.us> |
3d249d4c JP |
11971 | L: netdev@vger.kernel.org |
11972 | S: Supported | |
11973 | F: drivers/net/team/ | |
11974 | F: include/linux/if_team.h | |
c117ab84 | 11975 | F: include/uapi/linux/if_team.h |
3d249d4c | 11976 | |
7d029125 | 11977 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
9c3646d1 | 11978 | M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com> |
7d029125 VD |
11979 | S: Maintained |
11980 | F: arch/x86/platform/ts5500/ | |
11981 | ||
40ad4a30 SY |
11982 | TECHNOTREND USB IR RECEIVER |
11983 | M: Sean Young <sean@mess.org> | |
11984 | L: linux-media@vger.kernel.org | |
11985 | S: Maintained | |
11986 | F: drivers/media/rc/ttusbir.c | |
11987 | ||
adabdb0c | 11988 | TEGRA ARCHITECTURE SUPPORT |
243d58ec | 11989 | M: Stephen Warren <swarren@wwwdotorg.org> |
adabdb0c | 11990 | M: Thierry Reding <thierry.reding@gmail.com> |
554077c5 | 11991 | M: Alexandre Courbot <gnurou@gmail.com> |
84b9414b | 11992 | L: linux-tegra@vger.kernel.org |
fd117cd1 | 11993 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
b779b88d | 11994 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git |
84b9414b | 11995 | S: Supported |
bbbe96ed | 11996 | N: [^a-z]tegra |
84b9414b | 11997 | |
adabdb0c SW |
11998 | TEGRA CLOCK DRIVER |
11999 | M: Peter De Schrijver <pdeschrijver@nvidia.com> | |
12000 | M: Prashant Gaikwad <pgaikwad@nvidia.com> | |
12001 | S: Supported | |
12002 | F: drivers/clk/tegra/ | |
12003 | ||
86e486a0 | 12004 | TEGRA DMA DRIVERS |
adabdb0c | 12005 | M: Laxman Dewangan <ldewangan@nvidia.com> |
86e486a0 | 12006 | M: Jon Hunter <jonathanh@nvidia.com> |
adabdb0c | 12007 | S: Supported |
86e486a0 | 12008 | F: drivers/dma/tegra* |
adabdb0c | 12009 | |
adabdb0c SW |
12010 | TEGRA I2C DRIVER |
12011 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
12012 | S: Supported | |
12013 | F: drivers/i2c/busses/i2c-tegra.c | |
12014 | ||
12015 | TEGRA IOMMU DRIVERS | |
12016 | M: Hiroshi Doyu <hdoyu@nvidia.com> | |
12017 | S: Supported | |
12018 | F: drivers/iommu/tegra* | |
12019 | ||
12020 | TEGRA KBC DRIVER | |
12021 | M: Rakesh Iyer <riyer@nvidia.com> | |
12022 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
12023 | S: Supported | |
12024 | F: drivers/input/keyboard/tegra-kbc.c | |
12025 | ||
adabdb0c SW |
12026 | TEGRA PWM DRIVER |
12027 | M: Thierry Reding <thierry.reding@gmail.com> | |
12028 | S: Supported | |
12029 | F: drivers/pwm/pwm-tegra.c | |
12030 | ||
12031 | TEGRA SERIAL DRIVER | |
12032 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
12033 | S: Supported | |
12034 | F: drivers/tty/serial/serial-tegra.c | |
12035 | ||
12036 | TEGRA SPI DRIVER | |
12037 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
12038 | S: Supported | |
12039 | F: drivers/spi/spi-tegra* | |
12040 | ||
1a348ccc | 12041 | TEHUTI ETHERNET DRIVER |
8b58be88 | 12042 | M: Andy Gospodarek <andy@greyhouse.net> |
1a348ccc AG |
12043 | L: netdev@vger.kernel.org |
12044 | S: Supported | |
ef7f5429 | 12045 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 12046 | |
4e68852d | 12047 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 12048 | M: Mark Gross <mark.gross@intel.com> |
4e68852d | 12049 | S: Supported |
679655da | 12050 | F: drivers/char/tlclk.c |
4e68852d | 12051 | |
4480f15b | 12052 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 12053 | M: Chris Zankel <chris@zankel.net> |
f959ed2f CZ |
12054 | M: Max Filippov <jcmvbkbc@gmail.com> |
12055 | L: linux-xtensa@linux-xtensa.org | |
9f273c24 | 12056 | T: git git://github.com/czankel/xtensa-linux.git |
4e68852d | 12057 | S: Maintained |
679655da | 12058 | F: arch/xtensa/ |
3dc99857 | 12059 | F: drivers/irqchip/irq-xtensa-* |
4e68852d | 12060 | |
5313ba66 HV |
12061 | THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER |
12062 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
12063 | L: linux-media@vger.kernel.org | |
12064 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 12065 | W: https://linuxtv.org |
5313ba66 HV |
12066 | S: Maintained |
12067 | F: drivers/media/radio/radio-raremono.c | |
12068 | ||
d3fb6955 | 12069 | THERMAL |
b75f0050 | 12070 | M: Zhang Rui <rui.zhang@intel.com> |
f14d1c24 | 12071 | M: Eduardo Valentin <edubezval@gmail.com> |
b75f0050 JP |
12072 | L: linux-pm@vger.kernel.org |
12073 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
12074 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git | |
12075 | Q: https://patchwork.kernel.org/project/linux-pm/list/ | |
12076 | S: Supported | |
12077 | F: drivers/thermal/ | |
12078 | F: include/linux/thermal.h | |
af6c9f16 | 12079 | F: include/uapi/linux/thermal.h |
b75f0050 JP |
12080 | F: include/linux/cpu_cooling.h |
12081 | F: Documentation/devicetree/bindings/thermal/ | |
d3fb6955 | 12082 | |
64e05d8b VK |
12083 | THERMAL/CPU_COOLING |
12084 | M: Amit Daniel Kachhap <amit.kachhap@gmail.com> | |
12085 | M: Viresh Kumar <viresh.kumar@linaro.org> | |
9a2172a8 | 12086 | M: Javi Merino <javi.merino@kernel.org> |
64e05d8b VK |
12087 | L: linux-pm@vger.kernel.org |
12088 | S: Supported | |
12089 | F: Documentation/thermal/cpu-cooling-api.txt | |
12090 | F: drivers/thermal/cpu_cooling.c | |
12091 | F: include/linux/cpu_cooling.h | |
12092 | ||
4e68852d | 12093 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 12094 | M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br> |
4e68852d | 12095 | L: ibm-acpi-devel@lists.sourceforge.net |
d0944853 | 12096 | L: platform-driver-x86@vger.kernel.org |
4e68852d AC |
12097 | W: http://ibm-acpi.sourceforge.net |
12098 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 12099 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 12100 | S: Maintained |
679655da | 12101 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 12102 | |
1b46f2a2 | 12103 | TI BANDGAP AND THERMAL DRIVER |
f14d1c24 | 12104 | M: Eduardo Valentin <edubezval@gmail.com> |
ef41be81 | 12105 | M: Keerthy <j-keerthy@ti.com> |
1b46f2a2 | 12106 | L: linux-pm@vger.kernel.org |
531ff13e | 12107 | L: linux-omap@vger.kernel.org |
5a723e81 | 12108 | S: Maintained |
794b2e25 | 12109 | F: drivers/thermal/ti-soc-thermal/ |
1b46f2a2 | 12110 | |
ccf963d3 BP |
12111 | TI VPE/CAL DRIVERS |
12112 | M: Benoit Parrot <bparrot@ti.com> | |
12113 | L: linux-media@vger.kernel.org | |
12114 | W: http://linuxtv.org/ | |
12115 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
12116 | S: Maintained | |
12117 | F: drivers/media/platform/ti-vpe/ | |
12118 | ||
0c7665c3 MF |
12119 | TI CDCE706 CLOCK DRIVER |
12120 | M: Max Filippov <jcmvbkbc@gmail.com> | |
12121 | S: Maintained | |
12122 | F: drivers/clk/clk-cdce706.c | |
12123 | ||
49b6a5e3 TK |
12124 | TI CLOCK DRIVER |
12125 | M: Tero Kristo <t-kristo@ti.com> | |
12126 | L: linux-omap@vger.kernel.org | |
12127 | S: Maintained | |
12128 | F: drivers/clk/ti/ | |
12129 | F: include/linux/clk/ti.h | |
12130 | ||
f75cfbad GS |
12131 | TI ETHERNET SWITCH DRIVER (CPSW) |
12132 | M: Mugunthan V N <mugunthanvnm@ti.com> | |
12133 | R: Grygorii Strashko <grygorii.strashko@ti.com> | |
12134 | L: linux-omap@vger.kernel.org | |
12135 | L: netdev@vger.kernel.org | |
12136 | S: Maintained | |
12137 | F: drivers/net/ethernet/ti/cpsw* | |
12138 | F: drivers/net/ethernet/ti/davinci* | |
12139 | ||
4020f2d7 | 12140 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 12141 | M: Alex Dubov <oakad@yahoo.com> |
795fb7e7 | 12142 | S: Maintained |
679655da JP |
12143 | F: drivers/misc/tifm* |
12144 | F: drivers/mmc/host/tifm_sd.c | |
12145 | F: include/linux/tifm.h | |
4020f2d7 | 12146 | |
e0c52404 | 12147 | TI KEYSTONE MULTICORE NAVIGATOR DRIVERS |
97215800 | 12148 | M: Santosh Shilimkar <ssantosh@kernel.org> |
e0c52404 SS |
12149 | L: linux-kernel@vger.kernel.org |
12150 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
12151 | S: Maintained | |
12152 | F: drivers/soc/ti/* | |
12153 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git | |
12154 | ||
12155 | ||
152ad442 SR |
12156 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
12157 | M: M R Swami Reddy <mr.swami.reddy@ti.com> | |
d392dead | 12158 | M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com> |
152ad442 SR |
12159 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
12160 | S: Maintained | |
12161 | F: sound/soc/codecs/lm49453* | |
d392dead | 12162 | F: sound/soc/codecs/isabelle* |
152ad442 | 12163 | |
0edd807d KM |
12164 | TI LP855x BACKLIGHT DRIVER |
12165 | M: Milo Kim <milo.kim@ti.com> | |
12166 | S: Maintained | |
12167 | F: Documentation/backlight/lp855x-driver.txt | |
12168 | F: drivers/video/backlight/lp855x_bl.c | |
12169 | F: include/linux/platform_data/lp855x.h | |
12170 | ||
faf13f6d KM |
12171 | TI LP8727 CHARGER DRIVER |
12172 | M: Milo Kim <milo.kim@ti.com> | |
12173 | S: Maintained | |
8c0984e5 | 12174 | F: drivers/power/supply/lp8727_charger.c |
faf13f6d KM |
12175 | F: include/linux/platform_data/lp8727.h |
12176 | ||
22f1229f KM |
12177 | TI LP8788 MFD DRIVER |
12178 | M: Milo Kim <milo.kim@ti.com> | |
12179 | S: Maintained | |
12180 | F: drivers/iio/adc/lp8788_adc.c | |
12181 | F: drivers/leds/leds-lp8788.c | |
12182 | F: drivers/mfd/lp8788*.c | |
8c0984e5 | 12183 | F: drivers/power/supply/lp8788-charger.c |
22f1229f KM |
12184 | F: drivers/regulator/lp8788-*.c |
12185 | F: include/linux/mfd/lp8788*.h | |
12186 | ||
84640e27 KM |
12187 | TI NETCP ETHERNET DRIVER |
12188 | M: Wingman Kwok <w-kwok2@ti.com> | |
12189 | M: Murali Karicheri <m-karicheri2@ti.com> | |
12190 | L: netdev@vger.kernel.org | |
12191 | S: Maintained | |
12192 | F: drivers/net/ethernet/ti/netcp* | |
12193 | ||
217e0ca9 KC |
12194 | TI TAS571X FAMILY ASoC CODEC DRIVER |
12195 | M: Kevin Cernekee <cernekee@chromium.org> | |
12196 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
12197 | S: Odd Fixes | |
12198 | F: sound/soc/codecs/tas571x* | |
12199 | ||
dd5e8e6b | 12200 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 12201 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
dd5e8e6b PU |
12202 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
12203 | S: Maintained | |
12204 | F: sound/soc/codecs/twl4030* | |
12205 | ||
90921014 | 12206 | TI WILINK WIRELESS DRIVERS |
90921014 LC |
12207 | L: linux-wireless@vger.kernel.org |
12208 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
12209 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
12210 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
22d072f6 | 12211 | S: Orphan |
90921014 LC |
12212 | F: drivers/net/wireless/ti/ |
12213 | F: include/linux/wl12xx.h | |
12214 | ||
e86eaa3a | 12215 | TIPC NETWORK LAYER |
8b58be88 | 12216 | M: Jon Maloy <jon.maloy@ericsson.com> |
115403df | 12217 | M: Ying Xue <ying.xue@windriver.com> |
633d2bde AS |
12218 | L: netdev@vger.kernel.org (core kernel code) |
12219 | L: tipc-discussion@lists.sourceforge.net (user apps, general discussion) | |
e86eaa3a | 12220 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 12221 | S: Maintained |
c117ab84 | 12222 | F: include/uapi/linux/tipc*.h |
679655da | 12223 | F: net/tipc/ |
e86eaa3a | 12224 | |
867e359b | 12225 | TILE ARCHITECTURE |
b9a279f6 | 12226 | M: Chris Metcalf <cmetcalf@mellanox.com> |
8c34d8d9 | 12227 | W: http://www.mellanox.com/repository/solutions/tile-scm/ |
7fa129cc | 12228 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git |
867e359b CM |
12229 | S: Supported |
12230 | F: arch/tile/ | |
6b940606 | 12231 | F: drivers/char/tile-srom.c |
5c770755 | 12232 | F: drivers/edac/tile_edac.c |
6b940606 CM |
12233 | F: drivers/net/ethernet/tile/ |
12234 | F: drivers/rtc/rtc-tile.c | |
12235 | F: drivers/tty/hvc/hvc_tile.c | |
b5c6c1a7 | 12236 | F: drivers/tty/serial/tilegx.c |
6b940606 CM |
12237 | F: drivers/usb/host/*-tilegx.c |
12238 | F: include/linux/usb/tilegx.h | |
867e359b | 12239 | |
1da177e4 | 12240 | TLAN NETWORK DRIVER |
8b58be88 | 12241 | M: Samuel Chessman <chessman@tux.org> |
88c07dde | 12242 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
1da177e4 LT |
12243 | W: http://sourceforge.net/projects/tlan/ |
12244 | S: Maintained | |
679655da | 12245 | F: Documentation/networking/tlan.txt |
b544dbac | 12246 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 12247 | |
d74db3b2 | 12248 | TOMOYO SECURITY MODULE |
8b58be88 JP |
12249 | M: Kentaro Takeda <takedakn@nttdata.co.jp> |
12250 | M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> | |
d03a5d88 TH |
12251 | L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English) |
12252 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English) | |
d74db3b2 KT |
12253 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
12254 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) | |
12255 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 12256 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 12257 | S: Maintained |
679655da | 12258 | F: security/tomoyo/ |
d74db3b2 | 12259 | |
9caeb532 | 12260 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 12261 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
d0944853 | 12262 | L: platform-driver-x86@vger.kernel.org |
9caeb532 HRK |
12263 | S: Maintained |
12264 | F: drivers/platform/x86/topstar-laptop.c | |
12265 | ||
1da177e4 | 12266 | TOSHIBA ACPI EXTRAS DRIVER |
0a63ca11 | 12267 | M: Azael Avalos <coproscefalo@gmail.com> |
d0944853 | 12268 | L: platform-driver-x86@vger.kernel.org |
0a63ca11 | 12269 | S: Maintained |
679655da | 12270 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 | 12271 | |
0a63ca11 AA |
12272 | TOSHIBA BLUETOOTH DRIVER |
12273 | M: Azael Avalos <coproscefalo@gmail.com> | |
12274 | L: platform-driver-x86@vger.kernel.org | |
12275 | S: Maintained | |
12276 | F: drivers/platform/x86/toshiba_bluetooth.c | |
12277 | ||
12278 | TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER | |
12279 | M: Azael Avalos <coproscefalo@gmail.com> | |
12280 | L: platform-driver-x86@vger.kernel.org | |
12281 | S: Maintained | |
12282 | F: drivers/platform/x86/toshiba_haps.c | |
12283 | ||
14991fc7 AA |
12284 | TOSHIBA WMI HOTKEYS DRIVER |
12285 | M: Azael Avalos <coproscefalo@gmail.com> | |
12286 | L: platform-driver-x86@vger.kernel.org | |
12287 | S: Maintained | |
12288 | F: drivers/platform/x86/toshiba-wmi.c | |
12289 | ||
1da177e4 | 12290 | TOSHIBA SMM DRIVER |
8b58be88 | 12291 | M: Jonathan Buzzard <jonathan@buzzard.org.uk> |
1da177e4 LT |
12292 | W: http://www.buzzard.org.uk/toshiba/ |
12293 | S: Maintained | |
679655da JP |
12294 | F: drivers/char/toshiba.c |
12295 | F: include/linux/toshiba.h | |
c117ab84 | 12296 | F: include/uapi/linux/toshiba.h |
1da177e4 | 12297 | |
d32d9864 MR |
12298 | TOSHIBA TC358743 DRIVER |
12299 | M: Mats Randgaard <matrandg@cisco.com> | |
12300 | L: linux-media@vger.kernel.org | |
12301 | S: Maintained | |
12302 | F: drivers/media/i2c/tc358743* | |
b5dcee22 | 12303 | F: include/media/i2c/tc358743.h |
d32d9864 | 12304 | |
560e6475 WS |
12305 | TMIO/SDHI MMC DRIVER |
12306 | M: Wolfram Sang <wsa+renesas@sang-engineering.com> | |
d1057c40 | 12307 | L: linux-mmc@vger.kernel.org |
560e6475 | 12308 | S: Supported |
d1057c40 GL |
12309 | F: drivers/mmc/host/tmio_mmc* |
12310 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
560e6475 | 12311 | F: include/linux/mfd/tmio.h |
d719f900 | 12312 | |
917cc4e6 GR |
12313 | TMP401 HARDWARE MONITOR DRIVER |
12314 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 12315 | L: linux-hwmon@vger.kernel.org |
917cc4e6 GR |
12316 | S: Maintained |
12317 | F: Documentation/hwmon/tmp401 | |
12318 | F: drivers/hwmon/tmp401.c | |
12319 | ||
98f32602 | 12320 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 12321 | M: Hugh Dickins <hughd@google.com> |
98f32602 HD |
12322 | L: linux-mm@kvack.org |
12323 | S: Maintained | |
12324 | F: include/linux/shmem_fs.h | |
12325 | F: mm/shmem.c | |
12326 | ||
45f95b53 | 12327 | TM6000 VIDEO4LINUX DRIVER |
5dc8a864 MCC |
12328 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
12329 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
45f95b53 | 12330 | L: linux-media@vger.kernel.org |
a825eaec | 12331 | W: https://linuxtv.org |
45f95b53 MCC |
12332 | T: git git://linuxtv.org/media_tree.git |
12333 | S: Odd fixes | |
12334 | F: drivers/media/usb/tm6000/ | |
618cd932 | 12335 | F: Documentation/media/v4l-drivers/tm6000* |
45f95b53 | 12336 | |
34d1324e AU |
12337 | TW5864 VIDEO4LINUX DRIVER |
12338 | M: Bluecherry Maintainers <maintainers@bluecherrydvr.com> | |
12339 | M: Andrey Utkin <andrey.utkin@corp.bluecherry.net> | |
12340 | M: Andrey Utkin <andrey_utkin@fastmail.com> | |
12341 | L: linux-media@vger.kernel.org | |
12342 | S: Supported | |
12343 | F: drivers/media/pci/tw5864/ | |
45f95b53 | 12344 | |
c65fde19 HV |
12345 | TW68 VIDEO4LINUX DRIVER |
12346 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
12347 | L: linux-media@vger.kernel.org | |
12348 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 12349 | W: https://linuxtv.org |
c65fde19 HV |
12350 | S: Odd Fixes |
12351 | F: drivers/media/pci/tw68/ | |
12352 | ||
704a84cc EG |
12353 | TW686X VIDEO4LINUX DRIVER |
12354 | M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> | |
12355 | L: linux-media@vger.kernel.org | |
12356 | T: git git://linuxtv.org/media_tree.git | |
12357 | W: http://linuxtv.org | |
12358 | S: Maintained | |
12359 | F: drivers/media/pci/tw686x/ | |
12360 | ||
4e68852d | 12361 | TPM DEVICE DRIVER |
901486b8 | 12362 | M: Peter Huewe <peterhuewe@gmx.de> |
cbb2d5e4 | 12363 | M: Marcel Selhorst <tpmdd@selhorst.net> |
89adb83c | 12364 | M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> |
ce93b4b0 | 12365 | R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> |
383dec1f | 12366 | W: http://tpmdd.sourceforge.net |
63a10dfd | 12367 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
d9912846 JS |
12368 | Q: https://patchwork.kernel.org/project/tpmdd-devel/list/ |
12369 | T: git git://git.infradead.org/users/jjs/linux-tpmdd.git | |
4e68852d | 12370 | S: Maintained |
679655da | 12371 | F: drivers/char/tpm/ |
4e68852d | 12372 | |
1a0f1b27 AL |
12373 | TPM IBM_VTPM DEVICE DRIVER |
12374 | M: Ashley Lai <ashleydlai@gmail.com> | |
12375 | W: http://tpmdd.sourceforge.net | |
12376 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) | |
12377 | S: Maintained | |
12378 | F: drivers/char/tpm/tpm_ibmvtpm* | |
12379 | ||
d6f005a1 JP |
12380 | TRACING |
12381 | M: Steven Rostedt <rostedt@goodmis.org> | |
d6f005a1 | 12382 | M: Ingo Molnar <mingo@redhat.com> |
75fc2d37 | 12383 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
12384 | S: Maintained |
12385 | F: Documentation/trace/ftrace.txt | |
12386 | F: arch/*/*/*/ftrace.h | |
12387 | F: arch/*/kernel/ftrace.c | |
12388 | F: include/*/ftrace.h | |
12389 | F: include/linux/trace*.h | |
12390 | F: include/trace/ | |
12391 | F: kernel/trace/ | |
6e68e6c5 | 12392 | F: tools/testing/selftests/ftrace/ |
d6f005a1 | 12393 | |
4abac0d0 IM |
12394 | TRACING MMIO ACCESSES (MMIOTRACE) |
12395 | M: Steven Rostedt <rostedt@goodmis.org> | |
12396 | M: Ingo Molnar <mingo@kernel.org> | |
12397 | R: Karol Herbst <karolherbst@gmail.com> | |
12398 | R: Pekka Paalanen <ppaalanen@gmail.com> | |
12399 | S: Maintained | |
12400 | L: linux-kernel@vger.kernel.org | |
12401 | L: nouveau@lists.freedesktop.org | |
12402 | F: kernel/trace/trace_mmiotrace.c | |
12403 | F: include/linux/mmiotrace.h | |
12404 | F: arch/x86/mm/kmmio.c | |
12405 | F: arch/x86/mm/mmio-mod.c | |
12406 | F: arch/x86/mm/testmmiotrace.c | |
12407 | ||
1da177e4 | 12408 | TRIVIAL PATCHES |
8b58be88 | 12409 | M: Jiri Kosina <trivial@kernel.org> |
54e5881d | 12410 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 12411 | S: Maintained |
86ef925f | 12412 | K: ^Subject:.*(?i)trivial |
1da177e4 | 12413 | |
4e68852d | 12414 | TTY LAYER |
879a5a00 | 12415 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
d8130624 | 12416 | M: Jiri Slaby <jslaby@suse.com> |
879a5a00 | 12417 | S: Supported |
08deed1e | 12418 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
84e1eb83 | 12419 | F: Documentation/serial/ |
8dd5d2f1 | 12420 | F: drivers/tty/ |
df621252 | 12421 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
12422 | F: include/linux/serial_core.h |
12423 | F: include/linux/serial.h | |
12424 | F: include/linux/tty.h | |
c117ab84 CEB |
12425 | F: include/uapi/linux/serial_core.h |
12426 | F: include/uapi/linux/serial.h | |
12427 | F: include/uapi/linux/tty.h | |
4e68852d | 12428 | |
91952bc0 AP |
12429 | TUA9001 MEDIA DRIVER |
12430 | M: Antti Palosaari <crope@iki.fi> | |
12431 | L: linux-media@vger.kernel.org | |
a825eaec | 12432 | W: https://linuxtv.org |
91952bc0 AP |
12433 | W: http://palosaari.fi/linux/ |
12434 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
12435 | T: git git://linuxtv.org/anttip/media_tree.git | |
12436 | S: Maintained | |
12437 | F: drivers/media/tuners/tua9001* | |
12438 | ||
740db6d7 | 12439 | TULIP NETWORK DRIVERS |
740db6d7 | 12440 | L: netdev@vger.kernel.org |
cf869eb1 GG |
12441 | L: linux-parisc@vger.kernel.org |
12442 | S: Orphan | |
0f04e2aa | 12443 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
12444 | |
12445 | TUN/TAP driver | |
ba57b6f2 | 12446 | M: Maxim Krasnyansky <maxk@qti.qualcomm.com> |
1da177e4 LT |
12447 | W: http://vtun.sourceforge.net/tun |
12448 | S: Maintained | |
679655da JP |
12449 | F: Documentation/networking/tuntap.txt |
12450 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 12451 | |
b454cc66 | 12452 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 12453 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
c406339c RB |
12454 | M: Ralf Baechle <ralf@linux-mips.org> |
12455 | L: linux-mips@linux-mips.org | |
12456 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ | |
b454cc66 | 12457 | S: Maintained |
679655da JP |
12458 | F: drivers/tc/ |
12459 | F: include/linux/tc.h | |
b454cc66 | 12460 | |
e2d1d6c0 | 12461 | UBI FILE SYSTEM (UBIFS) |
a7859936 | 12462 | M: Richard Weinberger <richard@nod.at> |
949cb623 | 12463 | M: Artem Bityutskiy <dedekind1@gmail.com> |
cc8f9b99 | 12464 | M: Adrian Hunter <adrian.hunter@intel.com> |
e2d1d6c0 | 12465 | L: linux-mtd@lists.infradead.org |
e2966cbe | 12466 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 | 12467 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
a7859936 | 12468 | S: Supported |
679655da JP |
12469 | F: Documentation/filesystems/ubifs.txt |
12470 | F: fs/ubifs/ | |
e2d1d6c0 | 12471 | |
e1632fa2 | 12472 | UCLINUX (M68KNOMMU AND COLDFIRE) |
44156aff GU |
12473 | M: Greg Ungerer <gerg@linux-m68k.org> |
12474 | W: http://www.linux-m68k.org/ | |
cc2020e6 | 12475 | W: http://www.uclinux.org/ |
e1632fa2 | 12476 | L: linux-m68k@lists.linux-m68k.org |
cc2020e6 | 12477 | L: uclinux-dev@uclinux.org (subscribers-only) |
e1632fa2 | 12478 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git |
cc2020e6 | 12479 | S: Maintained |
e1632fa2 GU |
12480 | F: arch/m68k/coldfire/ |
12481 | F: arch/m68k/68*/ | |
61bc02bb JP |
12482 | F: arch/m68k/*/*_no.* |
12483 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 12484 | |
1da177e4 | 12485 | UDF FILESYSTEM |
d8130624 | 12486 | M: Jan Kara <jack@suse.com> |
1da177e4 | 12487 | S: Maintained |
679655da JP |
12488 | F: Documentation/filesystems/udf.txt |
12489 | F: fs/udf/ | |
1da177e4 | 12490 | |
cc2020e6 | 12491 | UFS FILESYSTEM |
8b58be88 | 12492 | M: Evgeniy Dushistov <dushistov@mail.ru> |
cc2020e6 | 12493 | S: Maintained |
679655da JP |
12494 | F: Documentation/filesystems/ufs.txt |
12495 | F: fs/ufs/ | |
cc2020e6 | 12496 | |
0a09d3ab DH |
12497 | UHID USERSPACE HID IO DRIVER: |
12498 | M: David Herrmann <dh.herrmann@googlemail.com> | |
12499 | L: linux-input@vger.kernel.org | |
12500 | S: Maintained | |
12501 | F: drivers/hid/uhid.c | |
c117ab84 | 12502 | F: include/uapi/linux/uhid.h |
0a09d3ab | 12503 | |
18332a80 | 12504 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 12505 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 12506 | S: Orphan |
355ffe69 | 12507 | F: drivers/uwb/ |
679655da JP |
12508 | F: include/linux/uwb.h |
12509 | F: include/linux/uwb/ | |
18332a80 | 12510 | |
b31d8273 G |
12511 | UNICORE32 ARCHITECTURE: |
12512 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
12513 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
12514 | S: Maintained | |
ceebf4d5 | 12515 | T: git git://github.com/gxt/linux.git |
b31d8273 G |
12516 | F: arch/unicore32/ |
12517 | ||
d8379ab1 TF |
12518 | UNIFDEF |
12519 | M: Tony Finch <dot@dotat.at> | |
12520 | W: http://dotat.at/prog/unifdef | |
12521 | S: Maintained | |
12522 | F: scripts/unifdef.c | |
12523 | ||
1da177e4 | 12524 | UNIFORM CDROM DRIVER |
8b58be88 | 12525 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
12526 | W: http://www.kernel.dk |
12527 | S: Maintained | |
679655da JP |
12528 | F: Documentation/cdrom/ |
12529 | F: drivers/cdrom/cdrom.c | |
12530 | F: include/linux/cdrom.h | |
c117ab84 | 12531 | F: include/uapi/linux/cdrom.h |
1da177e4 | 12532 | |
56df0122 | 12533 | UNISYS S-PAR DRIVERS |
49e7d9df JP |
12534 | M: David Kershner <david.kershner@unisys.com> |
12535 | L: sparmaintainer@unisys.com (Unisys internal) | |
12536 | S: Supported | |
12537 | F: drivers/staging/unisys/ | |
56df0122 | 12538 | |
9941fa6e VH |
12539 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
12540 | M: Vinayak Holikatti <vinholikatti@gmail.com> | |
9941fa6e VH |
12541 | L: linux-scsi@vger.kernel.org |
12542 | S: Supported | |
12543 | F: Documentation/scsi/ufs.txt | |
12544 | F: drivers/scsi/ufs/ | |
12545 | ||
4b9ffb5a | 12546 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS |
bdee9860 JP |
12547 | M: Manjunath M Bettegowda <manjumb@synopsys.com> |
12548 | M: Prabu Thangamuthu <prabut@synopsys.com> | |
4b9ffb5a JP |
12549 | L: linux-scsi@vger.kernel.org |
12550 | S: Supported | |
12551 | F: drivers/scsi/ufs/*dwc* | |
12552 | ||
e2d1d6c0 | 12553 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 12554 | M: Artem Bityutskiy <dedekind1@gmail.com> |
346be9bc | 12555 | M: Richard Weinberger <richard@nod.at> |
e2d1d6c0 RD |
12556 | W: http://www.linux-mtd.infradead.org/ |
12557 | L: linux-mtd@lists.infradead.org | |
b6b44e0a | 12558 | T: git git://git.infradead.org/ubifs-2.6.git |
346be9bc | 12559 | S: Supported |
80811493 | 12560 | F: drivers/mtd/ubi/ |
679655da | 12561 | F: include/linux/mtd/ubi.h |
c117ab84 | 12562 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 12563 | |
1da177e4 | 12564 | USB ACM DRIVER |
ca1c3e6f | 12565 | M: Oliver Neukum <oneukum@suse.com> |
6372594a | 12566 | L: linux-usb@vger.kernel.org |
1da177e4 | 12567 | S: Maintained |
679655da JP |
12568 | F: Documentation/usb/acm.txt |
12569 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 12570 | |
b7d572e1 PF |
12571 | USB AR5523 WIRELESS DRIVER |
12572 | M: Pontus Fuchs <pontus.fuchs@gmail.com> | |
12573 | L: linux-wireless@vger.kernel.org | |
12574 | S: Maintained | |
12575 | F: drivers/net/wireless/ath/ar5523/ | |
12576 | ||
115bb1ff | 12577 | USB ATTACHED SCSI |
866d372e | 12578 | M: Oliver Neukum <oneukum@suse.com> |
115bb1ff MW |
12579 | L: linux-usb@vger.kernel.org |
12580 | L: linux-scsi@vger.kernel.org | |
8eae0fb7 | 12581 | S: Maintained |
115bb1ff MW |
12582 | F: drivers/usb/storage/uas.c |
12583 | ||
1da177e4 | 12584 | USB CDC ETHERNET DRIVER |
61eee9a7 | 12585 | M: Oliver Neukum <oliver@neukum.org> |
795fb7e7 | 12586 | L: linux-usb@vger.kernel.org |
1da177e4 | 12587 | S: Maintained |
679655da | 12588 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 12589 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 12590 | |
66e3e591 KP |
12591 | USB CHAOSKEY DRIVER |
12592 | M: Keith Packard <keithp@keithp.com> | |
12593 | L: linux-usb@vger.kernel.org | |
12594 | S: Maintained | |
12595 | F: drivers/usb/misc/chaoskey.c | |
12596 | ||
b02b371e | 12597 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 12598 | M: Peter Korsgaard <jacmet@sunsite.dk> |
b02b371e PK |
12599 | L: linux-usb@vger.kernel.org |
12600 | S: Maintained | |
679655da | 12601 | F: drivers/usb/c67x00/ |
b02b371e | 12602 | |
d0374f4f | 12603 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 12604 | M: Peter Korsgaard <jacmet@sunsite.dk> |
043600a6 | 12605 | L: netdev@vger.kernel.org |
d0374f4f PK |
12606 | W: http://www.linux-usb.org/usbnet |
12607 | S: Maintained | |
679655da | 12608 | F: drivers/net/usb/dm9601.c |
d0374f4f | 12609 | |
cc2020e6 | 12610 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 12611 | M: Cesar Miquel <miquel@df.uba.ar> |
cc2020e6 AC |
12612 | L: rio500-users@lists.sourceforge.net |
12613 | W: http://rio500.sourceforge.net | |
12614 | S: Maintained | |
679655da | 12615 | F: drivers/usb/misc/rio500* |
cc2020e6 | 12616 | |
1da177e4 | 12617 | USB EHCI DRIVER |
578333ab | 12618 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 12619 | L: linux-usb@vger.kernel.org |
578333ab | 12620 | S: Maintained |
679655da JP |
12621 | F: Documentation/usb/ehci.txt |
12622 | F: drivers/usb/host/ehci* | |
1da177e4 | 12623 | |
69ae9e3e | 12624 | USB GADGET/PERIPHERAL SUBSYSTEM |
a55f6286 | 12625 | M: Felipe Balbi <balbi@kernel.org> |
795fb7e7 | 12626 | L: linux-usb@vger.kernel.org |
69ae9e3e | 12627 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
12628 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
12629 | S: Maintained | |
679655da JP |
12630 | F: drivers/usb/gadget/ |
12631 | F: include/linux/usb/gadget* | |
69ae9e3e | 12632 | |
2dea64b4 | 12633 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
e5f6450c | 12634 | M: Jiri Kosina <jikos@kernel.org> |
406df153 | 12635 | R: Benjamin Tissoires <benjamin.tissoires@redhat.com> |
795fb7e7 | 12636 | L: linux-usb@vger.kernel.org |
54e5881d | 12637 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 12638 | S: Maintained |
c2f01971 | 12639 | F: Documentation/hid/hiddev.txt |
679655da | 12640 | F: drivers/hid/usbhid/ |
1da177e4 | 12641 | |
959eea21 | 12642 | USB ISP116X DRIVER |
8b58be88 | 12643 | M: Olav Kongas <ok@artecdesign.ee> |
795fb7e7 | 12644 | L: linux-usb@vger.kernel.org |
959eea21 | 12645 | S: Maintained |
679655da JP |
12646 | F: drivers/usb/host/isp116x* |
12647 | F: include/linux/usb/isp116x.h | |
959eea21 | 12648 | |
146498ea WH |
12649 | USB LAN78XX ETHERNET DRIVER |
12650 | M: Woojung Huh <woojung.huh@microchip.com> | |
12651 | M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com> | |
12652 | L: netdev@vger.kernel.org | |
12653 | S: Maintained | |
12654 | F: drivers/net/usb/lan78xx.* | |
12655 | ||
1da177e4 | 12656 | USB MASS STORAGE DRIVER |
fc8b690d | 12657 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 12658 | L: linux-usb@vger.kernel.org |
8836aeb8 | 12659 | L: usb-storage@lists.one-eyed-alien.net |
1da177e4 LT |
12660 | S: Maintained |
12661 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 12662 | F: drivers/usb/storage/ |
1da177e4 | 12663 | |
af39917d CL |
12664 | USB MIDI DRIVER |
12665 | M: Clemens Ladisch <clemens@ladisch.de> | |
12666 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
12667 | T: git git://git.alsa-project.org/alsa-kernel.git | |
12668 | S: Maintained | |
12669 | F: sound/usb/midi.* | |
12670 | ||
444ce9d4 JP |
12671 | USB NETWORKING DRIVERS |
12672 | L: linux-usb@vger.kernel.org | |
12673 | S: Odd Fixes | |
12674 | F: drivers/net/usb/ | |
12675 | ||
1da177e4 | 12676 | USB OHCI DRIVER |
578333ab | 12677 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 12678 | L: linux-usb@vger.kernel.org |
578333ab | 12679 | S: Maintained |
679655da JP |
12680 | F: Documentation/usb/ohci.txt |
12681 | F: drivers/usb/host/ohci* | |
1da177e4 | 12682 | |
963ffa3e | 12683 | USB OTG FSM (Finite State Machine) |
60d77b3d | 12684 | M: Peter Chen <Peter.Chen@nxp.com> |
8373856d | 12685 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
963ffa3e PC |
12686 | L: linux-usb@vger.kernel.org |
12687 | S: Maintained | |
12688 | F: drivers/usb/common/usb-otg-fsm.c | |
12689 | ||
563da3a9 VM |
12690 | USB OVER IP DRIVER |
12691 | M: Valentina Manea <valentina.manea.m@gmail.com> | |
90effdcd SK |
12692 | M: Shuah Khan <shuahkh@osg.samsung.com> |
12693 | M: Shuah Khan <shuah@kernel.org> | |
563da3a9 VM |
12694 | L: linux-usb@vger.kernel.org |
12695 | S: Maintained | |
a6d6fc2b | 12696 | F: Documentation/usb/usbip_protocol.txt |
563da3a9 VM |
12697 | F: drivers/usb/usbip/ |
12698 | F: tools/usb/usbip/ | |
12699 | ||
1da177e4 | 12700 | USB PEGASUS DRIVER |
a16b945c | 12701 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 12702 | L: linux-usb@vger.kernel.org |
043600a6 | 12703 | L: netdev@vger.kernel.org |
052e3128 PM |
12704 | T: git git://github.com/petkan/pegasus.git |
12705 | W: https://github.com/petkan/pegasus | |
1da177e4 | 12706 | S: Maintained |
679655da | 12707 | F: drivers/net/usb/pegasus.* |
1da177e4 | 12708 | |
d3ad558f | 12709 | USB PHY LAYER |
a55f6286 | 12710 | M: Felipe Balbi <balbi@kernel.org> |
d3ad558f FB |
12711 | L: linux-usb@vger.kernel.org |
12712 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
12713 | S: Maintained | |
12714 | F: drivers/usb/phy/ | |
d3ad558f | 12715 | |
73e4fb3f | 12716 | USB PRINTER DRIVER (usblp) |
8b58be88 | 12717 | M: Pete Zaitcev <zaitcev@redhat.com> |
795fb7e7 | 12718 | L: linux-usb@vger.kernel.org |
73e4fb3f | 12719 | S: Supported |
679655da | 12720 | F: drivers/usb/class/usblp.c |
1da177e4 | 12721 | |
4521b477 BM |
12722 | USB QMI WWAN NETWORK DRIVER |
12723 | M: Bjørn Mork <bjorn@mork.no> | |
12724 | L: netdev@vger.kernel.org | |
12725 | S: Maintained | |
12726 | F: Documentation/ABI/testing/sysfs-class-net-qmi | |
12727 | F: drivers/net/usb/qmi_wwan.c | |
12728 | ||
1da177e4 | 12729 | USB RTL8150 DRIVER |
a16b945c | 12730 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 12731 | L: linux-usb@vger.kernel.org |
043600a6 | 12732 | L: netdev@vger.kernel.org |
052e3128 PM |
12733 | T: git git://github.com/petkan/rtl8150.git |
12734 | W: https://github.com/petkan/rtl8150 | |
1da177e4 | 12735 | S: Maintained |
679655da | 12736 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 12737 | |
f896b796 | 12738 | USB SERIAL SUBSYSTEM |
66085694 | 12739 | M: Johan Hovold <johan@kernel.org> |
795fb7e7 | 12740 | L: linux-usb@vger.kernel.org |
5ee05309 | 12741 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git |
4e68852d | 12742 | S: Maintained |
679655da | 12743 | F: Documentation/usb/usb-serial.txt |
f896b796 | 12744 | F: drivers/usb/serial/ |
679655da | 12745 | F: include/linux/usb/serial.h |
1da177e4 | 12746 | |
b3f0db1c SG |
12747 | USB SMSC75XX ETHERNET DRIVER |
12748 | M: Steve Glendinning <steve.glendinning@shawell.net> | |
12749 | L: netdev@vger.kernel.org | |
12750 | S: Maintained | |
12751 | F: drivers/net/usb/smsc75xx.* | |
12752 | ||
2f7ca802 | 12753 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 12754 | M: Steve Glendinning <steve.glendinning@shawell.net> |
983ccd74 | 12755 | M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com> |
2f7ca802 | 12756 | L: netdev@vger.kernel.org |
90b24cfb | 12757 | S: Maintained |
679655da | 12758 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 12759 | |
1da177e4 | 12760 | USB SUBSYSTEM |
879a5a00 | 12761 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
795fb7e7 | 12762 | L: linux-usb@vger.kernel.org |
1da177e4 | 12763 | W: http://www.linux-usb.org |
08deed1e | 12764 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 12765 | S: Supported |
1700bd98 | 12766 | F: Documentation/devicetree/bindings/usb/ |
679655da | 12767 | F: Documentation/usb/ |
679655da JP |
12768 | F: drivers/usb/ |
12769 | F: include/linux/usb.h | |
12770 | F: include/linux/usb/ | |
1da177e4 LT |
12771 | |
12772 | USB UHCI DRIVER | |
8b58be88 | 12773 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 12774 | L: linux-usb@vger.kernel.org |
1da177e4 | 12775 | S: Maintained |
679655da | 12776 | F: drivers/usb/host/uhci* |
1da177e4 | 12777 | |
69ae9e3e | 12778 | USB "USBNET" DRIVER FRAMEWORK |
d8130624 | 12779 | M: Oliver Neukum <oneukum@suse.com> |
043600a6 | 12780 | L: netdev@vger.kernel.org |
69ae9e3e | 12781 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 12782 | S: Maintained |
679655da JP |
12783 | F: drivers/net/usb/usbnet.c |
12784 | F: include/linux/usb/usbnet.h | |
1da177e4 | 12785 | |
c0efd232 | 12786 | USB VIDEO CLASS |
c53ac071 | 12787 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
616bd4e2 | 12788 | L: linux-uvc-devel@lists.sourceforge.net (subscribers-only) |
661263b5 | 12789 | L: linux-media@vger.kernel.org |
275ffde4 | 12790 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 12791 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 12792 | S: Maintained |
0c0d06ca | 12793 | F: drivers/media/usb/uvc/ |
6c0f0359 | 12794 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 12795 | |
b60b9c45 HV |
12796 | USB VISION DRIVER |
12797 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
12798 | L: linux-media@vger.kernel.org | |
12799 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 12800 | W: https://linuxtv.org |
b60b9c45 HV |
12801 | S: Odd Fixes |
12802 | F: drivers/media/usb/usbvision/ | |
12803 | ||
8282da47 LP |
12804 | USB WEBCAM GADGET |
12805 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
12806 | L: linux-usb@vger.kernel.org | |
12807 | S: Maintained | |
3a83c16e | 12808 | F: drivers/usb/gadget/function/*uvc* |
faf2e1db | 12809 | F: drivers/usb/gadget/legacy/webcam.c |
8282da47 | 12810 | |
bf164cc0 | 12811 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 12812 | M: Jussi Kivilinna <jussi.kivilinna@iki.fi> |
bf164cc0 JK |
12813 | L: linux-wireless@vger.kernel.org |
12814 | S: Maintained | |
679655da | 12815 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 12816 | |
eb6bab13 | 12817 | USB XHCI DRIVER |
03d85053 | 12818 | M: Mathias Nyman <mathias.nyman@intel.com> |
eb6bab13 SS |
12819 | L: linux-usb@vger.kernel.org |
12820 | S: Supported | |
36d0344c SS |
12821 | F: drivers/usb/host/xhci* |
12822 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 12823 | |
1da177e4 | 12824 | USB ZD1201 DRIVER |
4086b9ca | 12825 | L: linux-wireless@vger.kernel.org |
1da177e4 | 12826 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 12827 | S: Orphan |
ed0ad06f | 12828 | F: drivers/net/wireless/zydas/zd1201.* |
1da177e4 | 12829 | |
b7eee616 | 12830 | USB ZR364XX DRIVER |
8b58be88 | 12831 | M: Antoine Jacquet <royale@zerezo.com> |
795fb7e7 | 12832 | L: linux-usb@vger.kernel.org |
661263b5 | 12833 | L: linux-media@vger.kernel.org |
275ffde4 | 12834 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
12835 | W: http://royale.zerezo.com/zr364xx/ |
12836 | S: Maintained | |
618cd932 | 12837 | F: Documentation/media/v4l-drivers/zr364xx* |
90d72ac6 | 12838 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 12839 | |
289fcff4 HK |
12840 | ULPI BUS |
12841 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> | |
12842 | L: linux-usb@vger.kernel.org | |
12843 | S: Maintained | |
12844 | F: drivers/usb/common/ulpi.c | |
12845 | F: include/linux/ulpi/ | |
12846 | ||
e7839f25 | 12847 | USER-MODE LINUX (UML) |
8b58be88 | 12848 | M: Jeff Dike <jdike@addtoit.com> |
b15194b7 | 12849 | M: Richard Weinberger <richard@nod.at> |
1da177e4 LT |
12850 | L: user-mode-linux-devel@lists.sourceforge.net |
12851 | L: user-mode-linux-user@lists.sourceforge.net | |
12852 | W: http://user-mode-linux.sourceforge.net | |
9f273c24 | 12853 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git |
1da177e4 | 12854 | S: Maintained |
61516587 | 12855 | F: Documentation/virtual/uml/ |
679655da | 12856 | F: arch/um/ |
b070989a | 12857 | F: arch/x86/um/ |
679655da JP |
12858 | F: fs/hostfs/ |
12859 | F: fs/hppfs/ | |
b7eee616 | 12860 | |
e5f114e9 | 12861 | USERSPACE I/O (UIO) |
879a5a00 | 12862 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
e5f114e9 | 12863 | S: Maintained |
3d3fecbd | 12864 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
679655da JP |
12865 | F: Documentation/DocBook/uio-howto.tmpl |
12866 | F: drivers/uio/ | |
12867 | F: include/linux/uio*.h | |
e5f114e9 | 12868 | |
256cccbe | 12869 | UTIL-LINUX PACKAGE |
8b58be88 | 12870 | M: Karel Zak <kzak@redhat.com> |
256cccbe KZ |
12871 | L: util-linux@vger.kernel.org |
12872 | W: http://en.wikipedia.org/wiki/Util-linux | |
12873 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
12874 | S: Maintained |
12875 | ||
c1fd1c07 | 12876 | UVESAFB DRIVER |
8b58be88 | 12877 | M: Michal Januszewski <spock@gentoo.org> |
c69f677c | 12878 | L: linux-fbdev@vger.kernel.org |
c1fd1c07 MJ |
12879 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
12880 | S: Maintained | |
679655da | 12881 | F: Documentation/fb/uvesafb.txt |
8a61f013 | 12882 | F: drivers/video/fbdev/uvesafb.* |
c1fd1c07 | 12883 | |
456930d8 SA |
12884 | VF610 NAND DRIVER |
12885 | M: Stefan Agner <stefan@agner.ch> | |
12886 | L: linux-mtd@lists.infradead.org | |
12887 | S: Supported | |
12888 | F: drivers/mtd/nand/vf610_nfc.c | |
12889 | ||
4480f15b | 12890 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 12891 | M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> |
1da177e4 | 12892 | S: Maintained |
679655da JP |
12893 | F: Documentation/filesystems/vfat.txt |
12894 | F: fs/fat/ | |
1da177e4 | 12895 | |
cba3345c AW |
12896 | VFIO DRIVER |
12897 | M: Alex Williamson <alex.williamson@redhat.com> | |
12898 | L: kvm@vger.kernel.org | |
9f273c24 | 12899 | T: git git://github.com/awilliam/linux-vfio.git |
cba3345c AW |
12900 | S: Maintained |
12901 | F: Documentation/vfio.txt | |
12902 | F: drivers/vfio/ | |
12903 | F: include/linux/vfio.h | |
c117ab84 | 12904 | F: include/uapi/linux/vfio.h |
cba3345c | 12905 | |
5188287a KW |
12906 | VFIO MEDIATED DEVICE DRIVERS |
12907 | M: Kirti Wankhede <kwankhede@nvidia.com> | |
12908 | L: kvm@vger.kernel.org | |
12909 | S: Maintained | |
12910 | F: Documentation/vfio-mediated-device.txt | |
12911 | F: drivers/vfio/mdev/ | |
12912 | F: include/linux/mdev.h | |
12913 | F: samples/vfio-mdev/ | |
12914 | ||
a714ea5f AW |
12915 | VFIO PLATFORM DRIVER |
12916 | M: Baptiste Reynal <b.reynal@virtualopensystems.com> | |
12917 | L: kvm@vger.kernel.org | |
12918 | S: Maintained | |
12919 | F: drivers/vfio/platform/ | |
12920 | ||
9e6f3438 PO |
12921 | VIDEOBUF2 FRAMEWORK |
12922 | M: Pawel Osciak <pawel@osciak.com> | |
12923 | M: Marek Szyprowski <m.szyprowski@samsung.com> | |
e76e4706 | 12924 | M: Kyungmin Park <kyungmin.park@samsung.com> |
9e6f3438 PO |
12925 | L: linux-media@vger.kernel.org |
12926 | S: Maintained | |
90d72ac6 | 12927 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
12928 | F: include/media/videobuf2-* |
12929 | ||
06a8fc78 AH |
12930 | VIRTIO AND VHOST VSOCK DRIVER |
12931 | M: Stefan Hajnoczi <stefanha@redhat.com> | |
12932 | L: kvm@vger.kernel.org | |
12933 | L: virtualization@lists.linux-foundation.org | |
12934 | L: netdev@vger.kernel.org | |
12935 | S: Maintained | |
12936 | F: include/linux/virtio_vsock.h | |
12937 | F: include/uapi/linux/virtio_vsock.h | |
12938 | F: net/vmw_vsock/virtio_transport_common.c | |
0ea9e1d3 | 12939 | F: net/vmw_vsock/virtio_transport.c |
433fc58e AH |
12940 | F: drivers/vhost/vsock.c |
12941 | F: drivers/vhost/vsock.h | |
06a8fc78 | 12942 | |
5523662e SCP |
12943 | VIRTUAL SERIO DEVICE DRIVER |
12944 | M: Stephen Chandler Paul <thatslyude@gmail.com> | |
12945 | S: Maintained | |
12946 | F: drivers/input/serio/userio.c | |
12947 | F: include/uapi/linux/userio.h | |
12948 | ||
9a82446b AS |
12949 | VIRTIO CONSOLE DRIVER |
12950 | M: Amit Shah <amit.shah@redhat.com> | |
12951 | L: virtualization@lists.linux-foundation.org | |
12952 | S: Maintained | |
12953 | F: drivers/char/virtio_console.c | |
12954 | F: include/linux/virtio_console.h | |
c117ab84 | 12955 | F: include/uapi/linux/virtio_console.h |
9a82446b | 12956 | |
2426ec8f | 12957 | VIRTIO CORE, NET AND BLOCK DRIVERS |
2426ec8f | 12958 | M: "Michael S. Tsirkin" <mst@redhat.com> |
678ff27d | 12959 | M: Jason Wang <jasowang@redhat.com> |
2426ec8f MT |
12960 | L: virtualization@lists.linux-foundation.org |
12961 | S: Maintained | |
0e4191fe | 12962 | F: Documentation/devicetree/bindings/virtio/ |
2426ec8f | 12963 | F: drivers/virtio/ |
c893c8d7 | 12964 | F: tools/virtio/ |
2426ec8f MT |
12965 | F: drivers/net/virtio_net.c |
12966 | F: drivers/block/virtio_blk.c | |
12967 | F: include/linux/virtio_*.h | |
916cdabc | 12968 | F: include/uapi/linux/virtio_*.h |
2426ec8f | 12969 | |
f2dbda3b CH |
12970 | VIRTIO DRIVERS FOR S390 |
12971 | M: Christian Borntraeger <borntraeger@de.ibm.com> | |
12972 | M: Cornelia Huck <cornelia.huck@de.ibm.com> | |
12973 | L: linux-s390@vger.kernel.org | |
12974 | L: virtualization@lists.linux-foundation.org | |
12975 | L: kvm@vger.kernel.org | |
12976 | S: Supported | |
1b568d93 | 12977 | F: drivers/s390/virtio/ |
f2dbda3b | 12978 | |
4ad6ee91 GH |
12979 | VIRTIO GPU DRIVER |
12980 | M: David Airlie <airlied@linux.ie> | |
12981 | M: Gerd Hoffmann <kraxel@redhat.com> | |
12982 | L: dri-devel@lists.freedesktop.org | |
12983 | L: virtualization@lists.linux-foundation.org | |
12984 | S: Maintained | |
12985 | F: drivers/gpu/drm/virtio/ | |
12986 | F: include/uapi/linux/virtio_gpu.h | |
12987 | ||
3a4d5c94 MT |
12988 | VIRTIO HOST (VHOST) |
12989 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
678ff27d | 12990 | M: Jason Wang <jasowang@redhat.com> |
3a4d5c94 | 12991 | L: kvm@vger.kernel.org |
c996d8b9 | 12992 | L: virtualization@lists.linux-foundation.org |
3a4d5c94 | 12993 | L: netdev@vger.kernel.org |
9f273c24 | 12994 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git |
3a4d5c94 MT |
12995 | S: Maintained |
12996 | F: drivers/vhost/ | |
c117ab84 | 12997 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 12998 | |
271c8651 GH |
12999 | VIRTIO INPUT DRIVER |
13000 | M: Gerd Hoffmann <kraxel@redhat.com> | |
13001 | S: Maintained | |
13002 | F: drivers/virtio/virtio_input.c | |
13003 | F: include/uapi/linux/virtio_input.h | |
13004 | ||
1da177e4 | 13005 | VIA RHINE NETWORK DRIVER |
210347e1 | 13006 | S: Orphan |
f2148a47 | 13007 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 13008 | |
f0bf7f61 | 13009 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 13010 | M: Bruce Chang <brucechang@via.com.tw> |
8b58be88 | 13011 | M: Harald Welte <HaraldWelte@viatech.com> |
f0bf7f61 HW |
13012 | S: Maintained |
13013 | F: drivers/mmc/host/via-sdmmc.c | |
13014 | ||
69e4a7c2 | 13015 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 13016 | M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> |
c69f677c | 13017 | L: linux-fbdev@vger.kernel.org |
69e4a7c2 | 13018 | S: Maintained |
c7babebd FTS |
13019 | F: include/linux/via-core.h |
13020 | F: include/linux/via-gpio.h | |
13021 | F: include/linux/via_i2c.h | |
8a61f013 | 13022 | F: drivers/video/fbdev/via/ |
69e4a7c2 | 13023 | |
01f20734 | 13024 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 13025 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 FR |
13026 | L: netdev@vger.kernel.org |
13027 | S: Maintained | |
f2148a47 | 13028 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 13029 | |
f73f8173 AW |
13030 | VIRT LIB |
13031 | M: Alex Williamson <alex.williamson@redhat.com> | |
13032 | M: Paolo Bonzini <pbonzini@redhat.com> | |
13033 | L: kvm@vger.kernel.org | |
13034 | S: Supported | |
13035 | F: virt/lib/ | |
13036 | ||
77911fd2 | 13037 | VIVID VIRTUAL VIDEO DRIVER |
0b7bc1fa HV |
13038 | M: Hans Verkuil <hverkuil@xs4all.nl> |
13039 | L: linux-media@vger.kernel.org | |
13040 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 13041 | W: https://linuxtv.org |
0b7bc1fa | 13042 | S: Maintained |
77911fd2 | 13043 | F: drivers/media/platform/vivid/* |
0b7bc1fa | 13044 | |
be7f8273 | 13045 | VLAN (802.1Q) |
8b58be88 | 13046 | M: Patrick McHardy <kaber@trash.net> |
be7f8273 PM |
13047 | L: netdev@vger.kernel.org |
13048 | S: Maintained | |
679655da JP |
13049 | F: drivers/net/macvlan.c |
13050 | F: include/linux/if_*vlan.h | |
13051 | F: net/8021q/ | |
be7f8273 | 13052 | |
55e331cf | 13053 | VLYNQ BUS |
08eeb306 | 13054 | M: Florian Fainelli <f.fainelli@gmail.com> |
8578d7af | 13055 | L: openwrt-devel@lists.openwrt.org (subscribers-only) |
55e331cf FF |
13056 | S: Maintained |
13057 | F: drivers/vlynq/vlynq.c | |
13058 | F: include/linux/vlynq.h | |
13059 | ||
390beae4 | 13060 | VME SUBSYSTEM |
74c600e3 | 13061 | M: Martyn Welch <martyn@welchs.me.uk> |
1bd289d1 | 13062 | M: Manohar Vanga <manohar.vanga@gmail.com> |
390beae4 MW |
13063 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
13064 | L: devel@driverdev.osuosl.org | |
13065 | S: Maintained | |
13066 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
75a163c4 | 13067 | F: Documentation/driver-api/vme.rst |
390beae4 MW |
13068 | F: drivers/staging/vme/ |
13069 | F: drivers/vme/ | |
13070 | F: include/linux/vme* | |
13071 | ||
4488e09b AK |
13072 | VMWARE HYPERVISOR INTERFACE |
13073 | M: Alok Kataria <akataria@vmware.com> | |
13074 | L: virtualization@lists.linux-foundation.org | |
13075 | S: Supported | |
13076 | F: arch/x86/kernel/cpu/vmware.c | |
13077 | ||
73b35d07 DT |
13078 | VMWARE BALLOON DRIVER |
13079 | M: Xavier Deguillard <xdeguillard@vmware.com> | |
13080 | M: Philip Moltmann <moltmann@vmware.com> | |
13081 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
13082 | L: linux-kernel@vger.kernel.org | |
13083 | S: Maintained | |
13084 | F: drivers/misc/vmw_balloon.c | |
13085 | ||
8b8be51b TH |
13086 | VMWARE VMMOUSE SUBDRIVER |
13087 | M: "VMware Graphics" <linux-graphics-maintainer@vmware.com> | |
13088 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
13089 | L: linux-input@vger.kernel.org | |
13090 | S: Maintained | |
13091 | F: drivers/input/mouse/vmmouse.c | |
13092 | F: drivers/input/mouse/vmmouse.h | |
13093 | ||
d1a890fa | 13094 | VMWARE VMXNET3 ETHERNET DRIVER |
04e1b734 | 13095 | M: Shrikrishna Khare <skhare@vmware.com> |
65c8bb5b JP |
13096 | M: "VMware, Inc." <pv-drivers@vmware.com> |
13097 | L: netdev@vger.kernel.org | |
13098 | S: Maintained | |
13099 | F: drivers/net/vmxnet3/ | |
d1a890fa | 13100 | |
851b1642 | 13101 | VMware PVSCSI driver |
29374ec6 | 13102 | M: Jim Gill <jgill@vmware.com> |
851b1642 AK |
13103 | M: VMware PV-Drivers <pv-drivers@vmware.com> |
13104 | L: linux-scsi@vger.kernel.org | |
13105 | S: Maintained | |
13106 | F: drivers/scsi/vmw_pvscsi.c | |
13107 | F: drivers/scsi/vmw_pvscsi.h | |
13108 | ||
e53e86c7 | 13109 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 13110 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 13111 | M: Mark Brown <broonie@kernel.org> |
5cdeb2c8 | 13112 | L: linux-kernel@vger.kernel.org |
1dd68f01 | 13113 | W: http://www.slimlogic.co.uk/?p=48 |
6febb5ab | 13114 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
e53e86c7 | 13115 | S: Supported |
9d2597e8 | 13116 | F: Documentation/devicetree/bindings/regulator/ |
679655da | 13117 | F: drivers/regulator/ |
9d2597e8 | 13118 | F: include/dt-bindings/regulator/ |
679655da | 13119 | F: include/linux/regulator/ |
e53e86c7 | 13120 | |
081958eb DA |
13121 | VRF |
13122 | M: David Ahern <dsa@cumulusnetworks.com> | |
13123 | M: Shrijeet Mukherjee <shm@cumulusnetworks.com> | |
13124 | L: netdev@vger.kernel.org | |
13125 | S: Maintained | |
13126 | F: drivers/net/vrf.c | |
562d897d | 13127 | F: Documentation/networking/vrf.txt |
081958eb | 13128 | |
ab41319e | 13129 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 13130 | M: Juerg Haefliger <juergh@gmail.com> |
968ce1b1 | 13131 | L: linux-hwmon@vger.kernel.org |
ab41319e | 13132 | S: Maintained |
679655da JP |
13133 | F: Documentation/hwmon/vt1211 |
13134 | F: drivers/hwmon/vt1211.c | |
ab41319e | 13135 | |
1de9e371 | 13136 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 13137 | M: Roger Lucas <vt8231@hiddenengine.co.uk> |
968ce1b1 | 13138 | L: linux-hwmon@vger.kernel.org |
1de9e371 | 13139 | S: Maintained |
679655da | 13140 | F: drivers/hwmon/vt8231.c |
1de9e371 | 13141 | |
88095e7b TO |
13142 | VUB300 USB to SDIO/SD/MMC bridge chip |
13143 | M: Tony Olech <tony.olech@elandigitalsystems.com> | |
13144 | L: linux-mmc@vger.kernel.org | |
13145 | L: linux-usb@vger.kernel.org | |
13146 | S: Supported | |
13147 | F: drivers/mmc/host/vub300.c | |
13148 | ||
1da177e4 | 13149 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 13150 | M: Evgeniy Polyakov <zbr@ioremap.net> |
1da177e4 | 13151 | S: Maintained |
679655da JP |
13152 | F: Documentation/w1/ |
13153 | F: drivers/w1/ | |
1da177e4 | 13154 | |
13927079 | 13155 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 13156 | M: Marc Hulsman <m.hulsman@tudelft.nl> |
968ce1b1 | 13157 | L: linux-hwmon@vger.kernel.org |
25845c22 | 13158 | S: Maintained |
679655da JP |
13159 | F: Documentation/hwmon/w83791d |
13160 | F: drivers/hwmon/w83791d.c | |
13927079 | 13161 | |
61db011d | 13162 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 13163 | M: Rudolf Marek <r.marek@assembler.cz> |
968ce1b1 | 13164 | L: linux-hwmon@vger.kernel.org |
61db011d | 13165 | S: Maintained |
679655da JP |
13166 | F: Documentation/hwmon/w83793 |
13167 | F: drivers/hwmon/w83793.c | |
61db011d | 13168 | |
e3760b43 | 13169 | W83795 HARDWARE MONITORING DRIVER |
d8130624 | 13170 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 13171 | L: linux-hwmon@vger.kernel.org |
e3760b43 JD |
13172 | S: Maintained |
13173 | F: drivers/hwmon/w83795.c | |
13174 | ||
1da177e4 | 13175 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 13176 | M: Pierre Ossman <pierre@ossman.eu> |
1da177e4 | 13177 | S: Maintained |
679655da | 13178 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 13179 | |
b4e05923 HG |
13180 | WACOM PROTOCOL 4 SERIAL TABLETS |
13181 | M: Julian Squires <julian@cipht.net> | |
13182 | M: Hans de Goede <hdegoede@redhat.com> | |
13183 | L: linux-input@vger.kernel.org | |
13184 | S: Maintained | |
13185 | F: drivers/input/tablet/wacom_serial4.c | |
13186 | ||
3527761c | 13187 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 13188 | M: Wim Van Sebroeck <wim@iguana.be> |
1f32f83e | 13189 | R: Guenter Roeck <linux@roeck-us.net> |
230a5cef WVS |
13190 | L: linux-watchdog@vger.kernel.org |
13191 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 13192 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 13193 | S: Maintained |
540be8b2 | 13194 | F: Documentation/devicetree/bindings/watchdog/ |
679655da JP |
13195 | F: Documentation/watchdog/ |
13196 | F: drivers/watchdog/ | |
13197 | F: include/linux/watchdog.h | |
c117ab84 | 13198 | F: include/uapi/linux/watchdog.h |
3527761c | 13199 | |
b22e00f3 DH |
13200 | WIIMOTE HID DRIVER |
13201 | M: David Herrmann <dh.herrmann@googlemail.com> | |
13202 | L: linux-input@vger.kernel.org | |
13203 | S: Maintained | |
13204 | F: drivers/hid/hid-wiimote* | |
13205 | ||
e258b80e | 13206 | WINBOND CIR DRIVER |
364e9e18 | 13207 | M: David Härdeman <david@hardeman.nu> |
e258b80e | 13208 | S: Maintained |
116ab806 | 13209 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 13210 | |
c36a483d WBG |
13211 | WINSYSTEMS EBC-C384 WATCHDOG DRIVER |
13212 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
13213 | L: linux-watchdog@vger.kernel.org | |
13214 | S: Maintained | |
13215 | F: drivers/watchdog/ebc-c384_wdt.c | |
13216 | ||
9c26df9b WBG |
13217 | WINSYSTEMS WS16C48 GPIO DRIVER |
13218 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
13219 | L: linux-gpio@vger.kernel.org | |
13220 | S: Maintained | |
13221 | F: drivers/gpio/gpio-ws16c48.c | |
e258b80e | 13222 | |
8a70da82 | 13223 | WIMAX STACK |
8b58be88 | 13224 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 13225 | M: linux-wimax@intel.com |
49e7d9df | 13226 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
13227 | S: Supported |
13228 | W: http://linuxwimax.org | |
315987dc | 13229 | F: Documentation/wimax/README.wimax |
315987dc JP |
13230 | F: include/linux/wimax/debug.h |
13231 | F: include/net/wimax.h | |
c117ab84 | 13232 | F: include/uapi/linux/wimax.h |
315987dc | 13233 | F: net/wimax/ |
8a70da82 | 13234 | |
5fc14680 | 13235 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 13236 | M: Miloslav Trmac <mitr@volny.cz> |
5fc14680 | 13237 | S: Maintained |
679655da | 13238 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 13239 | |
1da177e4 | 13240 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 13241 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
724c6b35 | 13242 | L: linux-wireless@vger.kernel.org |
926554c4 | 13243 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 13244 | S: Maintained |
679655da | 13245 | F: drivers/net/wireless/wl3501* |
1da177e4 | 13246 | |
055bcbcb | 13247 | WOLFSON MICROELECTRONICS DRIVERS |
fef95164 | 13248 | L: patches@opensource.wolfsonmicro.com |
f0e03dbd RF |
13249 | T: git https://github.com/CirrusLogic/linux-drivers.git |
13250 | W: https://github.com/CirrusLogic/linux-drivers/wiki | |
b75ea16a | 13251 | S: Supported |
3768f0b1 | 13252 | F: Documentation/hwmon/wm83?? |
f494993f CK |
13253 | F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt |
13254 | F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt | |
13255 | F: Documentation/devicetree/bindings/mfd/arizona.txt | |
af1c5386 | 13256 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 13257 | F: drivers/clk/clk-wm83*.c |
9c309598 | 13258 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 13259 | F: drivers/leds/leds-wm83*.c |
25b273ba | 13260 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 13261 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 13262 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
13263 | F: drivers/input/misc/wm831x-on.c |
13264 | F: drivers/input/touchscreen/wm831x-ts.c | |
13265 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
13266 | F: drivers/mfd/arizona* |
13267 | F: drivers/mfd/wm*.c | |
12ebc137 | 13268 | F: drivers/mfd/cs47l24* |
8c0984e5 | 13269 | F: drivers/power/supply/wm83*.c |
b75ea16a MB |
13270 | F: drivers/rtc/rtc-wm83*.c |
13271 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 13272 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 13273 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 13274 | F: include/linux/mfd/arizona/ |
3860e6c4 | 13275 | F: include/linux/mfd/wm831x/ |
b75ea16a | 13276 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 13277 | F: include/linux/mfd/wm8400* |
59ec6da2 | 13278 | F: include/linux/wm97xx.h |
055bcbcb | 13279 | F: include/sound/wm????.h |
9c309598 | 13280 | F: sound/soc/codecs/arizona.? |
055bcbcb | 13281 | F: sound/soc/codecs/wm* |
12ebc137 | 13282 | F: sound/soc/codecs/cs47l24* |
b75ea16a | 13283 | |
3e6cd7a4 TH |
13284 | WORKQUEUE |
13285 | M: Tejun Heo <tj@kernel.org> | |
badb7f5e | 13286 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
3e6cd7a4 TH |
13287 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
13288 | S: Maintained | |
13289 | F: include/linux/workqueue.h | |
13290 | F: kernel/workqueue.c | |
e7f08ffb | 13291 | F: Documentation/core-api/workqueue.rst |
3e6cd7a4 | 13292 | |
39ac9f48 CYT |
13293 | X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS |
13294 | M: Chen-Yu Tsai <wens@csie.org> | |
13295 | L: linux-kernel@vger.kernel.org | |
13296 | S: Maintained | |
13297 | N: axp[128] | |
13298 | ||
1da177e4 | 13299 | X.25 NETWORK LAYER |
8bf28059 | 13300 | M: Andrew Hendry <andrew.hendry@gmail.com> |
1da177e4 | 13301 | L: linux-x25@vger.kernel.org |
8bf28059 | 13302 | S: Odd Fixes |
679655da JP |
13303 | F: Documentation/networking/x25* |
13304 | F: include/net/x25* | |
13305 | F: net/x25/ | |
1da177e4 | 13306 | |
e2d1d6c0 | 13307 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
13308 | M: Thomas Gleixner <tglx@linutronix.de> |
13309 | M: Ingo Molnar <mingo@redhat.com> | |
13310 | M: "H. Peter Anvin" <hpa@zytor.com> | |
bcde563c | 13311 | M: x86@kernel.org |
981c3a4f | 13312 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 13313 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 13314 | S: Maintained |
679655da JP |
13315 | F: Documentation/x86/ |
13316 | F: arch/x86/ | |
e2d1d6c0 | 13317 | |
d0944853 | 13318 | X86 PLATFORM DRIVERS |
e181ba15 | 13319 | M: Darren Hart <dvhart@infradead.org> |
d0944853 | 13320 | L: platform-driver-x86@vger.kernel.org |
e181ba15 | 13321 | T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git |
d0944853 | 13322 | S: Maintained |
14430813 | 13323 | F: drivers/platform/x86/ |
3a4bceef | 13324 | F: drivers/platform/olpc/ |
d0944853 | 13325 | |
c1f5c54b IM |
13326 | X86 MCE INFRASTRUCTURE |
13327 | M: Tony Luck <tony.luck@intel.com> | |
487ba8e8 | 13328 | M: Borislav Petkov <bp@alien8.de> |
c1f5c54b IM |
13329 | L: linux-edac@vger.kernel.org |
13330 | S: Maintained | |
13331 | F: arch/x86/kernel/cpu/mcheck/* | |
13332 | ||
79ebdc95 BP |
13333 | X86 MICROCODE UPDATE SUPPORT |
13334 | M: Borislav Petkov <bp@alien8.de> | |
13335 | S: Maintained | |
13336 | F: arch/x86/kernel/cpu/microcode/* | |
13337 | ||
f0905c5a AL |
13338 | X86 VDSO |
13339 | M: Andy Lutomirski <luto@amacapital.net> | |
13340 | L: linux-kernel@vger.kernel.org | |
13341 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso | |
13342 | S: Maintained | |
d603c8e1 | 13343 | F: arch/x86/entry/vdso/ |
f0905c5a | 13344 | |
d6fad502 | 13345 | XC2028/3028 TUNER DRIVER |
5dc8a864 MCC |
13346 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
13347 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
d6fad502 | 13348 | L: linux-media@vger.kernel.org |
a825eaec | 13349 | W: https://linuxtv.org |
d6fad502 MCC |
13350 | T: git git://linuxtv.org/media_tree.git |
13351 | S: Maintained | |
13352 | F: drivers/media/tuners/tuner-xc2028.* | |
13353 | ||
c4468085 | 13354 | XEN HYPERVISOR INTERFACE |
3eeef8f7 | 13355 | M: Boris Ostrovsky <boris.ostrovsky@oracle.com> |
101ecde5 | 13356 | M: Juergen Gross <jgross@suse.com> |
11dbb52b | 13357 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
ea70ba3a | 13358 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git |
c4468085 IC |
13359 | S: Supported |
13360 | F: arch/x86/xen/ | |
13361 | F: drivers/*/xen-*front.c | |
13362 | F: drivers/xen/ | |
13363 | F: arch/x86/include/asm/xen/ | |
13364 | F: include/xen/ | |
c117ab84 | 13365 | F: include/uapi/xen/ |
c4468085 | 13366 | |
77bfb479 | 13367 | XEN HYPERVISOR ARM |
85d1a29d | 13368 | M: Stefano Stabellini <sstabellini@kernel.org> |
11dbb52b | 13369 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
85d1a29d | 13370 | S: Maintained |
77bfb479 SS |
13371 | F: arch/arm/xen/ |
13372 | F: arch/arm/include/asm/xen/ | |
13373 | ||
b475e83f | 13374 | XEN HYPERVISOR ARM64 |
85d1a29d | 13375 | M: Stefano Stabellini <sstabellini@kernel.org> |
11dbb52b | 13376 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
85d1a29d | 13377 | S: Maintained |
b475e83f SS |
13378 | F: arch/arm64/xen/ |
13379 | F: arch/arm64/include/asm/xen/ | |
13380 | ||
9b57e1a7 | 13381 | XEN NETWORK BACKEND DRIVER |
8386040b | 13382 | M: Wei Liu <wei.liu2@citrix.com> |
7d3cfc36 | 13383 | M: Paul Durrant <paul.durrant@citrix.com> |
11dbb52b | 13384 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
9b57e1a7 IC |
13385 | L: netdev@vger.kernel.org |
13386 | S: Supported | |
13387 | F: drivers/net/xen-netback/* | |
13388 | ||
c5f8e29d KRW |
13389 | XEN PCI SUBSYSTEM |
13390 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 13391 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
13392 | S: Supported |
13393 | F: arch/x86/pci/*xen* | |
13394 | F: drivers/pci/*xen* | |
13395 | ||
a2c5ae65 KRW |
13396 | XEN BLOCK SUBSYSTEM |
13397 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
bcadb699 | 13398 | M: Roger Pau Monné <roger.pau@citrix.com> |
a2c5ae65 KRW |
13399 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
13400 | S: Supported | |
13401 | F: drivers/block/xen-blkback/* | |
13402 | F: drivers/block/xen* | |
13403 | ||
15d03609 JG |
13404 | XEN PVSCSI DRIVERS |
13405 | M: Juergen Gross <jgross@suse.com> | |
13406 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) | |
13407 | L: linux-scsi@vger.kernel.org | |
13408 | S: Supported | |
13409 | F: drivers/scsi/xen-scsifront.c | |
13410 | F: drivers/xen/xen-scsiback.c | |
13411 | F: include/xen/interface/io/vscsiif.h | |
13412 | ||
c5f8e29d KRW |
13413 | XEN SWIOTLB SUBSYSTEM |
13414 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 13415 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
13416 | S: Supported |
13417 | F: arch/x86/xen/*swiotlb* | |
13418 | F: drivers/xen/*swiotlb* | |
13419 | ||
1da177e4 | 13420 | XFS FILESYSTEM |
809625ca | 13421 | M: Dave Chinner <david@fromorbit.com> |
541d48f0 DC |
13422 | M: linux-xfs@vger.kernel.org |
13423 | L: linux-xfs@vger.kernel.org | |
13424 | W: http://xfs.org/ | |
9f273c24 | 13425 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git |
1da177e4 | 13426 | S: Supported |
679655da JP |
13427 | F: Documentation/filesystems/xfs.txt |
13428 | F: fs/xfs/ | |
1da177e4 | 13429 | |
8a3b7a25 | 13430 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
13431 | M: Anirudha Sarangi <anirudh@xilinx.com> |
13432 | M: John Linn <John.Linn@xilinx.com> | |
8a3b7a25 | 13433 | S: Maintained |
13434 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
13435 | ||
238b8721 | 13436 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 13437 | M: Peter Korsgaard <jacmet@sunsite.dk> |
238b8721 PK |
13438 | L: linux-serial@vger.kernel.org |
13439 | S: Maintained | |
df621252 | 13440 | F: drivers/tty/serial/uartlite.c |
238b8721 | 13441 | |
df330515 LP |
13442 | XILINX VIDEO IP CORES |
13443 | M: Hyun Kwon <hyun.kwon@xilinx.com> | |
13444 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
13445 | L: linux-media@vger.kernel.org | |
13446 | T: git git://linuxtv.org/media_tree.git | |
13447 | S: Supported | |
13448 | F: Documentation/devicetree/bindings/media/xilinx/ | |
13449 | F: drivers/media/platform/xilinx/ | |
a5562f65 | 13450 | F: include/uapi/linux/xilinx-v4l2-controls.h |
df330515 | 13451 | |
74316949 EB |
13452 | XILLYBUS DRIVER |
13453 | M: Eli Billauer <eli.billauer@gmail.com> | |
13454 | L: linux-kernel@vger.kernel.org | |
13455 | S: Supported | |
13456 | F: drivers/char/xillybus/ | |
13457 | ||
f620e4b8 MF |
13458 | XTENSA XTFPGA PLATFORM SUPPORT |
13459 | M: Max Filippov <jcmvbkbc@gmail.com> | |
13460 | L: linux-xtensa@linux-xtensa.org | |
13461 | S: Maintained | |
13462 | F: drivers/spi/spi-xtensa-xtfpga.c | |
57b7068d | 13463 | F: sound/soc/xtensa/xtfpga-i2s.c |
f620e4b8 | 13464 | |
1da177e4 | 13465 | YAM DRIVER FOR AX.25 |
8b58be88 | 13466 | M: Jean-Paul Roubelat <jpr@f6fbb.org> |
1da177e4 LT |
13467 | L: linux-hams@vger.kernel.org |
13468 | S: Maintained | |
679655da JP |
13469 | F: drivers/net/hamradio/yam* |
13470 | F: include/linux/yam.h | |
1da177e4 | 13471 | |
af64a5eb | 13472 | YEALINK PHONE DRIVER |
8b58be88 | 13473 | M: Henk Vergonet <Henk.Vergonet@gmail.com> |
af64a5eb HV |
13474 | L: usbb2k-api-dev@nongnu.org |
13475 | S: Maintained | |
679655da JP |
13476 | F: Documentation/input/yealink.txt |
13477 | F: drivers/input/misc/yealink.* | |
af64a5eb | 13478 | |
1da177e4 | 13479 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 13480 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
13481 | W: http://yaina.de/jreuter/ |
13482 | W: http://www.qsl.net/dl1bke/ | |
13483 | L: linux-hams@vger.kernel.org | |
13484 | S: Maintained | |
679655da JP |
13485 | F: Documentation/networking/z8530drv.txt |
13486 | F: drivers/net/hamradio/*scc.c | |
13487 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 13488 | |
0cf31ec1 | 13489 | ZBUD COMPRESSED PAGE ALLOCATOR |
0bb181c7 | 13490 | M: Seth Jennings <sjenning@redhat.com> |
0cf31ec1 SJ |
13491 | L: linux-mm@kvack.org |
13492 | S: Maintained | |
13493 | F: mm/zbud.c | |
13494 | F: include/linux/zbud.h | |
13495 | ||
7c0c3afb | 13496 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
13497 | M: Daniel Drake <dsd@gentoo.org> |
13498 | M: Ulrich Kunitz <kune@deine-taler.de> | |
7c0c3afb | 13499 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 13500 | L: linux-wireless@vger.kernel.org |
7c0c3afb DD |
13501 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
13502 | S: Maintained | |
6948300c | 13503 | F: drivers/net/wireless/zydas/zd1211rw/ |
7c0c3afb | 13504 | |
20263029 DS |
13505 | ZPOOL COMPRESSED PAGE STORAGE API |
13506 | M: Dan Streetman <ddstreet@ieee.org> | |
13507 | L: linux-mm@kvack.org | |
13508 | S: Maintained | |
13509 | F: mm/zpool.c | |
13510 | F: include/linux/zpool.h | |
13511 | ||
1da177e4 | 13512 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 13513 | L: mjpeg-users@lists.sourceforge.net |
f63145e2 | 13514 | L: linux-media@vger.kernel.org |
1da177e4 | 13515 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
a825eaec | 13516 | T: hg https://linuxtv.org/hg/v4l-dvb |
f63145e2 | 13517 | S: Odd Fixes |
90d72ac6 | 13518 | F: drivers/media/pci/zoran/ |
1da177e4 | 13519 | |
6920f2cc MK |
13520 | ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER |
13521 | M: Minchan Kim <minchan@kernel.org> | |
13522 | M: Nitin Gupta <ngupta@vflare.org> | |
74f3037c | 13523 | R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
6920f2cc MK |
13524 | L: linux-kernel@vger.kernel.org |
13525 | S: Maintained | |
13526 | F: drivers/block/zram/ | |
13527 | F: Documentation/blockdev/zram.txt | |
13528 | ||
8b4a4080 | 13529 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 13530 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
8b4a4080 | 13531 | S: Maintained |
df621252 | 13532 | F: drivers/tty/serial/zs.* |
8b4a4080 | 13533 | |
eae70d06 MK |
13534 | ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR |
13535 | M: Minchan Kim <minchan@kernel.org> | |
13536 | M: Nitin Gupta <ngupta@vflare.org> | |
41192a2d | 13537 | R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
eae70d06 MK |
13538 | L: linux-mm@kvack.org |
13539 | S: Maintained | |
13540 | F: mm/zsmalloc.c | |
13541 | F: include/linux/zsmalloc.h | |
d02be50d | 13542 | F: Documentation/vm/zsmalloc.txt |
eae70d06 | 13543 | |
0cf31ec1 | 13544 | ZSWAP COMPRESSED SWAP CACHING |
0bb181c7 | 13545 | M: Seth Jennings <sjenning@redhat.com> |
0cf31ec1 SJ |
13546 | L: linux-mm@kvack.org |
13547 | S: Maintained | |
13548 | F: mm/zswap.c | |
13549 | ||
1da177e4 | 13550 | THE REST |
8b58be88 | 13551 | M: Linus Torvalds <torvalds@linux-foundation.org> |
34d03cc1 | 13552 | L: linux-kernel@vger.kernel.org |
8a6e2535 | 13553 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 13554 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 13555 | S: Buried alive in reporters |
34d03cc1 JP |
13556 | F: * |
13557 | F: */ |