]>
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. |
0a920b5b | 38 | See Documentation/CodingStyle 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. | |
44 | See Documentation/SubmittingPatches for details. | |
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 | |
4500371e | 57 | Documentation/SubmittingPatches. |
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 | |
8a6e2535 | 77 | Q: Patchwork web based patch tracking system site |
cea8321c JP |
78 | T: SCM tree type and location. |
79 | Type is one of: git, hg, quilt, stgit, topgit | |
c7c4fb18 JP |
80 | S: Status, one of the following: |
81 | Supported: Someone is actually paid to look after this. | |
82 | Maintained: Someone actually looks after it. | |
83 | Odd Fixes: It has a maintainer but they don't have time to do | |
84 | much other than throw the odd patch in. See below.. | |
85 | Orphan: No current maintainer [but maybe you could take the | |
86 | role as you write your new code]. | |
87 | Obsolete: Old code. Something tagged obsolete generally means | |
88 | it has been replaced by a better system and you | |
89 | should be using that. | |
90 | F: Files and directories with wildcard patterns. | |
91 | A trailing slash includes all files and subdirectory files. | |
92 | F: drivers/net/ all files in and below drivers/net | |
93 | F: drivers/net/* all files in drivers/net, but not below | |
94 | F: */net/* all files in "any top level directory"/net | |
95 | One pattern per line. Multiple F: lines acceptable. | |
bbbe96ed SW |
96 | N: Files and directories with regex patterns. |
97 | N: [^a-z]tegra all files whose path contains the word tegra | |
98 | One pattern per line. Multiple N: lines acceptable. | |
6ab88e00 JP |
99 | scripts/get_maintainer.pl has different behavior for files that |
100 | match F: pattern and matches of N: patterns. By default, | |
101 | get_maintainer will not look at git log history when an F: pattern | |
102 | match occurs. When an N: match occurs, git log history is used | |
103 | to also notify the people that have git commit signatures. | |
c7c4fb18 JP |
104 | X: Files and directories that are NOT maintained, same rules as F: |
105 | Files exclusions are tested before file matches. | |
106 | Can be useful for excluding a specific subdirectory, for instance: | |
107 | F: net/ | |
108 | X: net/ipv6/ | |
109 | matches all files in and below net excluding net/ipv6/ | |
110 | K: Keyword perl extended regex pattern to match content in a | |
bbbe96ed | 111 | patch or file. For instance: |
c7c4fb18 | 112 | K: of_get_profile |
bbbe96ed | 113 | matches patches or files that contain "of_get_profile" |
c7c4fb18 | 114 | K: \b(printk|pr_(info|err))\b |
bbbe96ed SW |
115 | matches patches or files that contain one or more of the words |
116 | printk, pr_info or pr_err | |
c7c4fb18 | 117 | One regex pattern per line. Multiple K: lines acceptable. |
1da177e4 LT |
118 | |
119 | Note: For the hard of thinking, this list is meant to remain in alphabetical | |
120 | order. If you could add yourselves to it in alphabetical order that would be | |
121 | so much easier [Ed] | |
122 | ||
c7c4fb18 | 123 | Maintainers List (try to look for most precise areas first) |
1da177e4 | 124 | |
c7c4fb18 | 125 | ----------------------------------- |
679655da | 126 | |
a6d89915 | 127 | 3C59X NETWORK DRIVER |
8b58be88 | 128 | M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de> |
a6d89915 SK |
129 | L: netdev@vger.kernel.org |
130 | S: Maintained | |
679655da | 131 | F: Documentation/networking/vortex.txt |
ca7a8e85 | 132 | F: drivers/net/ethernet/3com/3c59x.c |
a6d89915 | 133 | |
1da177e4 | 134 | 3CR990 NETWORK DRIVER |
8b58be88 | 135 | M: David Dillow <dave@thedillows.org> |
979b6c13 | 136 | L: netdev@vger.kernel.org |
1da177e4 | 137 | S: Maintained |
ca7a8e85 | 138 | F: drivers/net/ethernet/3com/typhoon* |
1da177e4 | 139 | |
c4de0ceb AR |
140 | 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) |
141 | M: Adam Radford <linuxraid@lsi.com> | |
1da177e4 | 142 | L: linux-scsi@vger.kernel.org |
c4de0ceb | 143 | W: http://www.lsi.com |
1da177e4 | 144 | S: Supported |
c4de0ceb | 145 | F: drivers/scsi/3w-* |
1da177e4 LT |
146 | |
147 | 53C700 AND 53C700-66 SCSI DRIVER | |
8b58be88 | 148 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
149 | L: linux-scsi@vger.kernel.org |
150 | S: Maintained | |
679655da | 151 | F: drivers/scsi/53c700* |
1da177e4 | 152 | |
68d96dcf | 153 | 6LOWPAN GENERIC (BTLE/IEEE 802.15.4) |
aff3eaa0 | 154 | M: Alexander Aring <aar@pengutronix.de> |
6970c34c | 155 | M: Jukka Rissanen <jukka.rissanen@linux.intel.com> |
68d96dcf | 156 | L: linux-bluetooth@vger.kernel.org |
ebef9c12 | 157 | L: linux-wpan@vger.kernel.org |
68d96dcf AA |
158 | S: Maintained |
159 | F: net/6lowpan/ | |
6304f8fc | 160 | F: include/net/6lowpan.h |
ea9eb698 | 161 | F: Documentation/networking/6lowpan.txt |
68d96dcf | 162 | |
1da177e4 | 163 | 6PACK NETWORK DRIVER FOR AX.25 |
8b58be88 | 164 | M: Andreas Koensgen <ajk@comnets.uni-bremen.de> |
1da177e4 LT |
165 | L: linux-hams@vger.kernel.org |
166 | S: Maintained | |
679655da | 167 | F: drivers/net/hamradio/6pack.c |
1da177e4 | 168 | |
1da177e4 | 169 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
c8a75b34 | 170 | M: Realtek linux nic maintainers <nic_swsd@realtek.com> |
979b6c13 | 171 | L: netdev@vger.kernel.org |
1da177e4 | 172 | S: Maintained |
a8fe65b8 | 173 | F: drivers/net/ethernet/realtek/r8169.c |
1da177e4 LT |
174 | |
175 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER | |
879a5a00 | 176 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
1da177e4 | 177 | L: linux-serial@vger.kernel.org |
8ee16a1b | 178 | S: Maintained |
08deed1e | 179 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
df621252 | 180 | F: drivers/tty/serial/8250* |
679655da | 181 | F: include/linux/serial_8250.h |
1da177e4 LT |
182 | |
183 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] | |
979b6c13 | 184 | L: netdev@vger.kernel.org |
0cf445ce | 185 | S: Orphan / Obsolete |
644570b8 | 186 | F: drivers/net/ethernet/8390/ |
1da177e4 | 187 | |
67543e50 | 188 | 9P FILE SYSTEM |
8b58be88 JP |
189 | M: Eric Van Hensbergen <ericvh@gmail.com> |
190 | M: Ron Minnich <rminnich@sandia.gov> | |
191 | M: Latchesar Ionkov <lucho@ionkov.net> | |
ce00f85c | 192 | L: v9fs-developer@lists.sourceforge.net |
27a2a5ff | 193 | W: http://swik.net/v9fs |
8a6e2535 | 194 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
eeba444a | 195 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
ce00f85c | 196 | S: Maintained |
679655da JP |
197 | F: Documentation/filesystems/9p.txt |
198 | F: fs/9p/ | |
2315cb14 RL |
199 | F: net/9p/ |
200 | F: include/net/9p/ | |
201 | F: include/uapi/linux/virtio_9p.h | |
202 | F: include/trace/events/9p.h | |
203 | ||
67543e50 | 204 | |
91952bc0 AP |
205 | A8293 MEDIA DRIVER |
206 | M: Antti Palosaari <crope@iki.fi> | |
207 | L: linux-media@vger.kernel.org | |
a825eaec | 208 | W: https://linuxtv.org |
91952bc0 AP |
209 | W: http://palosaari.fi/linux/ |
210 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
211 | T: git git://linuxtv.org/anttip/media_tree.git | |
212 | S: Maintained | |
213 | F: drivers/media/dvb-frontends/a8293* | |
214 | ||
e2d1d6c0 | 215 | AACRAID SCSI RAID DRIVER |
2a81ffdd | 216 | M: Adaptec OEM Raid Solutions <aacraid@microsemi.com> |
e2d1d6c0 RD |
217 | L: linux-scsi@vger.kernel.org |
218 | W: http://www.adaptec.com/ | |
1da177e4 | 219 | S: Supported |
679655da JP |
220 | F: Documentation/scsi/aacraid.txt |
221 | F: drivers/scsi/aacraid/ | |
1da177e4 | 222 | |
ea8f8fc8 JT |
223 | ABI/API |
224 | L: linux-api@vger.kernel.org | |
ea8f8fc8 | 225 | F: include/linux/syscalls.h |
ea8f8fc8 JT |
226 | F: kernel/sys_ni.c |
227 | ||
249e3c85 | 228 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
93d0cc58 | 229 | M: Hans de Goede <hdegoede@redhat.com> |
968ce1b1 | 230 | L: linux-hwmon@vger.kernel.org |
f2b84bbc | 231 | S: Maintained |
679655da | 232 | F: drivers/hwmon/abituguru.c |
f2b84bbc | 233 | |
249e3c85 | 234 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
8b58be88 | 235 | M: Alistair John Strachan <alistair@devzero.co.uk> |
968ce1b1 | 236 | L: linux-hwmon@vger.kernel.org |
249e3c85 | 237 | S: Maintained |
679655da | 238 | F: drivers/hwmon/abituguru3.c |
249e3c85 | 239 | |
1b06d64f WBG |
240 | ACCES 104-DIO-48E GPIO DRIVER |
241 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
242 | L: linux-gpio@vger.kernel.org | |
243 | S: Maintained | |
244 | F: drivers/gpio/gpio-104-dio-48e.c | |
245 | ||
6ddcf9b4 WBG |
246 | ACCES 104-IDI-48 GPIO DRIVER |
247 | M: "William Breathitt Gray" <vilhelm.gray@gmail.com> | |
248 | L: linux-gpio@vger.kernel.org | |
249 | S: Maintained | |
250 | F: drivers/gpio/gpio-104-idi-48.c | |
251 | ||
e2558989 WBG |
252 | ACCES 104-IDIO-16 GPIO DRIVER |
253 | M: "William Breathitt Gray" <vilhelm.gray@gmail.com> | |
254 | L: linux-gpio@vger.kernel.org | |
255 | S: Maintained | |
256 | F: drivers/gpio/gpio-104-idio-16.c | |
257 | ||
1da177e4 | 258 | ACENIC DRIVER |
8b58be88 | 259 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
260 | L: linux-acenic@sunsite.dk |
261 | S: Maintained | |
531c4f89 | 262 | F: drivers/net/ethernet/alteon/acenic* |
1da177e4 | 263 | |
e86435eb | 264 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 265 | M: Peter Feuerer <peter@piie.net> |
d0944853 | 266 | L: platform-driver-x86@vger.kernel.org |
4fc26e36 JP |
267 | W: http://piie.net/?section=acerhdf |
268 | S: Maintained | |
269 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 270 | |
745a5d21 | 271 | ACER WMI LAPTOP EXTRAS |
182ae55c | 272 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 273 | L: platform-driver-x86@vger.kernel.org |
745a5d21 | 274 | S: Maintained |
679655da | 275 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 276 | |
1da177e4 | 277 | ACPI |
9c3646d1 | 278 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 279 | M: Len Brown <lenb@kernel.org> |
6968e50c | 280 | L: linux-acpi@vger.kernel.org |
360818b8 RW |
281 | W: https://01.org/linux-acpi |
282 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
283 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
8b59a454 | 284 | S: Supported |
679655da JP |
285 | F: drivers/acpi/ |
286 | F: drivers/pnp/pnpacpi/ | |
287 | F: include/linux/acpi.h | |
43368e74 | 288 | F: include/acpi/ |
3a75ef0c | 289 | F: Documentation/acpi/ |
89ca78a0 | 290 | F: Documentation/ABI/testing/sysfs-bus-acpi |
0bf54fcd | 291 | F: Documentation/ABI/testing/configfs-acpi |
15fd830d BH |
292 | F: drivers/pci/*acpi* |
293 | F: drivers/pci/*/*acpi* | |
294 | F: drivers/pci/*/*/*acpi* | |
3a75ef0c | 295 | F: tools/power/acpi/ |
8b59a454 | 296 | |
3774929d RW |
297 | ACPI COMPONENT ARCHITECTURE (ACPICA) |
298 | M: Robert Moore <robert.moore@intel.com> | |
299 | M: Lv Zheng <lv.zheng@intel.com> | |
9c3646d1 | 300 | M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> |
3774929d RW |
301 | L: linux-acpi@vger.kernel.org |
302 | L: devel@acpica.org | |
303 | W: https://acpica.org/ | |
304 | W: https://github.com/acpica/acpica/ | |
305 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
306 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
307 | S: Supported | |
308 | F: drivers/acpi/acpica/ | |
309 | F: include/acpi/ | |
2754c447 | 310 | F: tools/power/acpi/ |
3774929d | 311 | |
8b59a454 | 312 | ACPI FAN DRIVER |
8b58be88 | 313 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 314 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 315 | W: https://01.org/linux-acpi |
8b59a454 | 316 | S: Supported |
679655da | 317 | F: drivers/acpi/fan.c |
1da177e4 | 318 | |
8b59a454 | 319 | ACPI THERMAL DRIVER |
8b58be88 | 320 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 321 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 322 | W: https://01.org/linux-acpi |
8b59a454 | 323 | S: Supported |
679655da | 324 | F: drivers/acpi/*thermal* |
998be20f | 325 | |
359acec8 | 326 | ACPI VIDEO 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 |
8b59a454 | 330 | S: Supported |
86f98a3a | 331 | F: drivers/acpi/acpi_video.c |
998be20f | 332 | |
bff431e4 | 333 | ACPI WMI DRIVER |
d0944853 | 334 | L: platform-driver-x86@vger.kernel.org |
5b927259 | 335 | S: Orphan |
679655da | 336 | F: drivers/platform/x86/wmi.c |
bff431e4 | 337 | |
2f39d519 | 338 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 339 | M: Thibaut Varene <T-Bone@parisc-linux.org> |
795fb7e7 JD |
340 | W: http://wiki.parisc-linux.org/AD1889 |
341 | L: linux-parisc@vger.kernel.org | |
342 | S: Maintained | |
679655da | 343 | F: sound/pci/ad1889.* |
2f39d519 | 344 | |
527a1a83 MH |
345 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
346 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 347 | W: http://wiki.analog.com/AD5254 |
a4edbc10 | 348 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
349 | S: Supported |
350 | F: drivers/misc/ad525x_dpot.c | |
351 | ||
352 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
353 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 354 | W: http://wiki.analog.com/AD5398 |
a4edbc10 | 355 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
356 | S: Supported |
357 | F: drivers/regulator/ad5398.c | |
358 | ||
359 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
360 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 361 | W: http://wiki.analog.com/AD7142 |
a4edbc10 | 362 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
363 | S: Supported |
364 | F: drivers/input/misc/ad714x.c | |
365 | ||
366 | AD7877 TOUCHSCREEN DRIVER | |
367 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 368 | W: http://wiki.analog.com/AD7877 |
a4edbc10 | 369 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
370 | S: Supported |
371 | F: drivers/input/touchscreen/ad7877.c | |
372 | ||
373 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
374 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 375 | W: http://wiki.analog.com/AD7879 |
a4edbc10 | 376 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
377 | S: Supported |
378 | F: drivers/input/touchscreen/ad7879.c | |
379 | ||
1330b0dc | 380 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
e5f6450c | 381 | M: Jiri Kosina <jikos@kernel.org> |
1330b0dc JK |
382 | S: Maintained |
383 | ||
7302b9d9 MH |
384 | ADF7242 IEEE 802.15.4 RADIO DRIVER |
385 | M: Michael Hennerich <michael.hennerich@analog.com> | |
386 | W: https://wiki.analog.com/ADF7242 | |
387 | W: http://ez.analog.com/community/linux-device-drivers | |
388 | L: linux-wpan@vger.kernel.org | |
389 | S: Supported | |
390 | F: drivers/net/ieee802154/adf7242.c | |
391 | F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt | |
392 | ||
1da177e4 | 393 | ADM1025 HARDWARE MONITOR DRIVER |
d8130624 | 394 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 395 | L: linux-hwmon@vger.kernel.org |
1da177e4 | 396 | S: Maintained |
679655da JP |
397 | F: Documentation/hwmon/adm1025 |
398 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 399 | |
cae2caae | 400 | ADM1029 HARDWARE MONITOR DRIVER |
fce8ffa3 | 401 | M: Corentin Labbe <clabbe.montjoie@gmail.com> |
968ce1b1 | 402 | L: linux-hwmon@vger.kernel.org |
cae2caae | 403 | S: Maintained |
679655da | 404 | F: drivers/hwmon/adm1029.c |
cae2caae | 405 | |
cc0b88cf | 406 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 407 | L: linux-wireless@vger.kernel.org |
491b26b4 | 408 | W: http://wireless.kernel.org/ |
e71bcbd0 | 409 | S: Orphan |
d4a17304 | 410 | F: drivers/net/wireless/admtek/adm8211.* |
cc0b88cf | 411 | |
e8e31622 SA |
412 | ADP1653 FLASH CONTROLLER DRIVER |
413 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
414 | L: linux-media@vger.kernel.org | |
415 | S: Maintained | |
416 | F: drivers/media/i2c/adp1653.c | |
b5dcee22 | 417 | F: include/media/i2c/adp1653.h |
e8e31622 | 418 | |
527a1a83 MH |
419 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
420 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 421 | W: http://wiki.analog.com/ADP5520 |
a4edbc10 | 422 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
423 | S: Supported |
424 | F: drivers/mfd/adp5520.c | |
425 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 426 | F: drivers/leds/leds-adp5520.c |
77278d50 | 427 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
428 | F: drivers/input/keyboard/adp5520-keys.c |
429 | ||
430 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
431 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 432 | W: http://wiki.analog.com/ADP5588 |
a4edbc10 | 433 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
434 | S: Supported |
435 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 436 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
437 | |
438 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
439 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 440 | W: http://wiki.analog.com/ADP8860 |
a4edbc10 | 441 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
442 | S: Supported |
443 | F: drivers/video/backlight/adp8860_bl.c | |
444 | ||
8c22a8f5 DE |
445 | ADS1015 HARDWARE MONITOR DRIVER |
446 | M: Dirk Eibach <eibach@gdsys.de> | |
968ce1b1 | 447 | L: linux-hwmon@vger.kernel.org |
8c22a8f5 DE |
448 | S: Maintained |
449 | F: Documentation/hwmon/ads1015 | |
450 | F: drivers/hwmon/ads1015.c | |
451 | F: include/linux/i2c/ads1015.h | |
452 | ||
1da177e4 | 453 | ADT746X FAN DRIVER |
8b58be88 | 454 | M: Colin Leroy <colin@colino.net> |
1da177e4 | 455 | S: Maintained |
679655da | 456 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 457 | |
b058b859 | 458 | ADT7475 HARDWARE MONITOR DRIVER |
d8130624 | 459 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 460 | L: linux-hwmon@vger.kernel.org |
b058b859 JD |
461 | S: Maintained |
462 | F: Documentation/hwmon/adt7475 | |
463 | F: drivers/hwmon/adt7475.c | |
464 | ||
527a1a83 MH |
465 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
466 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 467 | W: http://wiki.analog.com/ADXL345 |
a4edbc10 | 468 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
469 | S: Supported |
470 | F: drivers/input/misc/adxl34x.c | |
471 | ||
8c6af9e1 | 472 | ADVANSYS SCSI DRIVER |
8b58be88 | 473 | M: Matthew Wilcox <matthew@wil.cx> |
d8130624 | 474 | M: Hannes Reinecke <hare@suse.com> |
8c6af9e1 MW |
475 | L: linux-scsi@vger.kernel.org |
476 | S: Maintained | |
679655da JP |
477 | F: Documentation/scsi/advansys.txt |
478 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 479 | |
1da177e4 | 480 | AEDSP16 DRIVER |
8b58be88 | 481 | M: Riccardo Facchetti <fizban@tin.it> |
1da177e4 | 482 | S: Maintained |
679655da | 483 | F: sound/oss/aedsp16.c |
1da177e4 | 484 | |
91952bc0 AP |
485 | AF9013 MEDIA DRIVER |
486 | M: Antti Palosaari <crope@iki.fi> | |
487 | L: linux-media@vger.kernel.org | |
a825eaec | 488 | W: https://linuxtv.org |
91952bc0 AP |
489 | W: http://palosaari.fi/linux/ |
490 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
491 | T: git git://linuxtv.org/anttip/media_tree.git | |
492 | S: Maintained | |
493 | F: drivers/media/dvb-frontends/af9013* | |
494 | ||
495 | AF9033 MEDIA DRIVER | |
496 | M: Antti Palosaari <crope@iki.fi> | |
497 | L: linux-media@vger.kernel.org | |
a825eaec | 498 | W: https://linuxtv.org |
91952bc0 AP |
499 | W: http://palosaari.fi/linux/ |
500 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
501 | T: git git://linuxtv.org/anttip/media_tree.git | |
502 | S: Maintained | |
503 | F: drivers/media/dvb-frontends/af9033* | |
504 | ||
1da177e4 | 505 | AFFS FILE SYSTEM |
6cf515e1 GU |
506 | L: linux-fsdevel@vger.kernel.org |
507 | S: Orphan | |
679655da JP |
508 | F: Documentation/filesystems/affs.txt |
509 | F: fs/affs/ | |
1da177e4 | 510 | |
e2d1d6c0 | 511 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 512 | M: David Howells <dhowells@redhat.com> |
e2d1d6c0 RD |
513 | L: linux-afs@lists.infradead.org |
514 | S: Supported | |
679655da JP |
515 | F: fs/afs/ |
516 | F: include/net/af_rxrpc.h | |
517 | F: net/rxrpc/af_rxrpc.c | |
e2d1d6c0 | 518 | |
1da177e4 | 519 | AGPGART DRIVER |
8b58be88 | 520 | M: David Airlie <airlied@linux.ie> |
878eaf61 | 521 | T: git git://people.freedesktop.org/~airlied/linux (part of drm maint) |
1da177e4 | 522 | S: Maintained |
679655da JP |
523 | F: drivers/char/agp/ |
524 | F: include/linux/agp* | |
c117ab84 | 525 | F: include/uapi/linux/agp* |
1da177e4 LT |
526 | |
527 | AHA152X SCSI DRIVER | |
8b58be88 | 528 | M: "Juergen E. Fischer" <fischer@norbit.de> |
1da177e4 LT |
529 | L: linux-scsi@vger.kernel.org |
530 | S: Maintained | |
679655da JP |
531 | F: drivers/scsi/aha152x* |
532 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 533 | |
64624d4f | 534 | AIC7XXX / AIC79XX SCSI DRIVER |
d8130624 | 535 | M: Hannes Reinecke <hare@suse.com> |
64624d4f | 536 | L: linux-scsi@vger.kernel.org |
1da177e4 | 537 | S: Maintained |
679655da | 538 | F: drivers/scsi/aic7xxx/ |
1da177e4 | 539 | |
450500ad HV |
540 | AIMSLAB FM RADIO RECEIVER DRIVER |
541 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
542 | L: linux-media@vger.kernel.org | |
543 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 544 | W: https://linuxtv.org |
450500ad HV |
545 | S: Maintained |
546 | F: drivers/media/radio/radio-aimslab* | |
547 | ||
e2d1d6c0 | 548 | AIO |
8b58be88 | 549 | M: Benjamin LaHaise <bcrl@kvack.org> |
e2d1d6c0 RD |
550 | L: linux-aio@kvack.org |
551 | S: Supported | |
679655da JP |
552 | F: fs/aio.c |
553 | F: include/linux/*aio*.h | |
e2d1d6c0 | 554 | |
469d4ec8 AP |
555 | AIRSPY MEDIA DRIVER |
556 | M: Antti Palosaari <crope@iki.fi> | |
557 | L: linux-media@vger.kernel.org | |
a825eaec | 558 | W: https://linuxtv.org |
469d4ec8 AP |
559 | W: http://palosaari.fi/linux/ |
560 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
561 | T: git git://linuxtv.org/anttip/media_tree.git | |
562 | S: Maintained | |
563 | F: drivers/media/usb/airspy/ | |
564 | ||
1da177e4 | 565 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 566 | M: Duncan Sands <duncan.sands@free.fr> |
6372594a | 567 | L: linux-usb@vger.kernel.org |
1da177e4 LT |
568 | W: http://www.linux-usb.org/SpeedTouch/ |
569 | S: Maintained | |
679655da JP |
570 | F: drivers/usb/atm/speedtch.c |
571 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 572 | |
272f133a | 573 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 574 | M: Manuel Lauss <manuel.lauss@gmail.com> |
08fcb720 | 575 | S: Maintained |
679655da | 576 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 577 | |
4a4e5787 | 578 | ALI1563 I2C DRIVER |
8b58be88 | 579 | M: Rudolf Marek <r.marek@assembler.cz> |
846557d3 | 580 | L: linux-i2c@vger.kernel.org |
4a4e5787 | 581 | S: Maintained |
679655da JP |
582 | F: Documentation/i2c/busses/i2c-ali1563 |
583 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 584 | |
bc368798 LC |
585 | ALLWINNER SECURITY SYSTEM |
586 | M: Corentin Labbe <clabbe.montjoie@gmail.com> | |
587 | L: linux-crypto@vger.kernel.org | |
588 | S: Maintained | |
589 | F: drivers/crypto/sunxi-ss/ | |
590 | ||
1da177e4 | 591 | ALPHA PORT |
8b58be88 | 592 | M: Richard Henderson <rth@twiddle.net> |
8b58be88 | 593 | M: Ivan Kokshaysky <ink@jurassic.park.msu.ru> |
abd4d609 | 594 | M: Matt Turner <mattst88@gmail.com> |
c89f4f9a | 595 | S: Odd Fixes |
a9406699 | 596 | L: linux-alpha@vger.kernel.org |
679655da | 597 | F: arch/alpha/ |
1da177e4 | 598 | |
30172936 PR |
599 | ALPS PS/2 TOUCHPAD DRIVER |
600 | R: Pali Rohár <pali.rohar@gmail.com> | |
601 | F: drivers/input/mouse/alps.* | |
602 | ||
f62092f6 LFT |
603 | ALTERA MAILBOX DRIVER |
604 | M: Ley Foon Tan <lftan@altera.com> | |
605 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
606 | S: Maintained | |
607 | F: drivers/mailbox/mailbox-altera.c | |
608 | ||
c5abbba9 THL |
609 | ALTERA PIO DRIVER |
610 | M: Tien Hock Loh <thloh@altera.com> | |
611 | L: linux-gpio@vger.kernel.org | |
612 | S: Maintained | |
613 | F: drivers/gpio/gpio-altera.c | |
614 | ||
8ce064bf TT |
615 | ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT |
616 | M: Thor Thayer <tthayer@opensource.altera.com> | |
617 | S: Maintained | |
618 | F: drivers/gpio/gpio-altera-a10sr.c | |
619 | F: drivers/mfd/altera-a10sr.c | |
620 | F: include/linux/mfd/altera-a10sr.h | |
621 | ||
16b8b922 | 622 | ALTERA TRIPLE SPEED ETHERNET DRIVER |
c53fed07 | 623 | M: Vince Bridgers <vbridger@opensource.altera.com> |
16b8b922 VB |
624 | L: netdev@vger.kernel.org |
625 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
626 | S: Maintained | |
627 | F: drivers/net/ethernet/altera/ | |
628 | ||
adf9251f TK |
629 | ALTERA UART/JTAG UART SERIAL DRIVERS |
630 | M: Tobias Klauser <tklauser@distanz.ch> | |
631 | L: linux-serial@vger.kernel.org | |
61bd0943 | 632 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
adf9251f TK |
633 | S: Maintained |
634 | F: drivers/tty/serial/altera_uart.c | |
635 | F: drivers/tty/serial/altera_jtaguart.c | |
636 | F: include/linux/altera_uart.h | |
637 | F: include/linux/altera_jtaguart.h | |
638 | ||
f4875e12 TL |
639 | AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER |
640 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
29e9330f | 641 | M: Gary Hook <gary.hook@amd.com> |
f4875e12 TL |
642 | L: linux-crypto@vger.kernel.org |
643 | S: Supported | |
644 | F: drivers/crypto/ccp/ | |
645 | F: include/linux/ccp.h | |
646 | ||
512d1027 | 647 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
96818b58 | 648 | M: Huang Rui <ray.huang@amd.com> |
968ce1b1 | 649 | L: linux-hwmon@vger.kernel.org |
96818b58 | 650 | S: Supported |
512d1027 AH |
651 | F: Documentation/hwmon/fam15h_power |
652 | F: drivers/hwmon/fam15h_power.c | |
653 | ||
167a675a | 654 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
67d76710 | 655 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
b4731977 | 656 | S: Orphan |
faf2e1db | 657 | F: drivers/usb/gadget/udc/amd5536udc.* |
167a675a | 658 | |
f90b8116 | 659 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 660 | P: Andres Salomon <dilinger@queued.net> |
67d76710 | 661 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
f90b8116 JC |
662 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
663 | S: Supported | |
679655da JP |
664 | F: drivers/char/hw_random/geode-rng.c |
665 | F: drivers/crypto/geode* | |
8a61f013 | 666 | F: drivers/video/fbdev/geode/ |
679655da | 667 | F: arch/x86/include/asm/geode.h |
f90b8116 | 668 | |
919ee7dd | 669 | AMD IOMMU (AMD-VI) |
e4110568 | 670 | M: Joerg Roedel <joro@8bytes.org> |
919ee7dd | 671 | L: iommu@lists.linux-foundation.org |
525b233c | 672 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 673 | S: Maintained |
b2c16391 JP |
674 | F: drivers/iommu/amd_iommu*.[ch] |
675 | F: include/linux/amd-iommu.h | |
919ee7dd | 676 | |
16423d67 | 677 | AMD KFD |
1241e0b4 | 678 | M: Oded Gabbay <oded.gabbay@gmail.com> |
49e7d9df JP |
679 | L: dri-devel@lists.freedesktop.org |
680 | T: git git://people.freedesktop.org/~gabbayo/linux.git | |
681 | S: Supported | |
130e0371 OG |
682 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c |
683 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h | |
32c22e99 | 684 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c |
ff758a12 | 685 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c |
49e7d9df | 686 | F: drivers/gpu/drm/amd/amdkfd/ |
04df25d1 OG |
687 | F: drivers/gpu/drm/amd/include/cik_structs.h |
688 | F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h | |
ff758a12 | 689 | F: drivers/gpu/drm/amd/include/vi_structs.h |
49e7d9df JP |
690 | F: drivers/gpu/drm/radeon/radeon_kfd.c |
691 | F: drivers/gpu/drm/radeon/radeon_kfd.h | |
692 | F: include/uapi/linux/kfd_ioctl.h | |
16423d67 | 693 | |
2510eb74 SS |
694 | AMD SEATTLE DEVICE TREE SUPPORT |
695 | M: Brijesh Singh <brijeshkumar.singh@amd.com> | |
696 | M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com> | |
697 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
698 | S: Supported | |
699 | F: arch/arm64/boot/dts/amd/ | |
700 | ||
45198c7b LT |
701 | AMD XGBE DRIVER |
702 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
703 | L: netdev@vger.kernel.org | |
704 | S: Supported | |
705 | F: drivers/net/ethernet/amd/xgbe/ | |
08b8940e | 706 | F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi |
45198c7b | 707 | |
284f42b6 | 708 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 | 709 | M: Michael Hanselmann <linux-kernel@hansmi.ch> |
284f42b6 | 710 | S: Supported |
bd5f47ec | 711 | F: drivers/macintosh/ams/ |
284f42b6 | 712 | |
531fca16 HV |
713 | ANALOG DEVICES INC AD9389B DRIVER |
714 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
715 | L: linux-media@vger.kernel.org | |
716 | S: Maintained | |
717 | F: drivers/media/i2c/ad9389b* | |
718 | ||
614b4384 LPC |
719 | ANALOG DEVICES INC ADV7180 DRIVER |
720 | M: Lars-Peter Clausen <lars@metafoo.de> | |
721 | L: linux-media@vger.kernel.org | |
722 | W: http://ez.analog.com/community/linux-device-drivers | |
723 | S: Supported | |
724 | F: drivers/media/i2c/adv7180.c | |
725 | ||
c40ddfa3 HV |
726 | ANALOG DEVICES INC ADV7511 DRIVER |
727 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
728 | L: linux-media@vger.kernel.org | |
729 | S: Maintained | |
730 | F: drivers/media/i2c/adv7511* | |
731 | ||
531fca16 HV |
732 | ANALOG DEVICES INC ADV7604 DRIVER |
733 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
734 | L: linux-media@vger.kernel.org | |
735 | S: Maintained | |
736 | F: drivers/media/i2c/adv7604* | |
737 | ||
c40ddfa3 HV |
738 | ANALOG DEVICES INC ADV7842 DRIVER |
739 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
740 | L: linux-media@vger.kernel.org | |
741 | S: Maintained | |
742 | F: drivers/media/i2c/adv7842* | |
743 | ||
527a1a83 | 744 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 745 | M: Lars-Peter Clausen <lars@metafoo.de> |
4bdef3bd | 746 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a3f531ac | 747 | W: http://wiki.analog.com/ |
a4edbc10 | 748 | W: http://ez.analog.com/community/linux-device-drivers |
4bdef3bd | 749 | S: Supported |
39c9d199 | 750 | F: sound/soc/codecs/adau* |
cc52688a | 751 | F: sound/soc/codecs/adav* |
4bdef3bd | 752 | F: sound/soc/codecs/ad1* |
ae48f5ef | 753 | F: sound/soc/codecs/ad7* |
4bdef3bd | 754 | F: sound/soc/codecs/ssm* |
40216ce7 | 755 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 756 | |
527a1a83 | 757 | ANALOG DEVICES INC ASOC DRIVERS |
b3fe92b0 | 758 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
527a1a83 MH |
759 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
760 | W: http://blackfin.uclinux.org/ | |
761 | S: Supported | |
762 | F: sound/soc/blackfin/* | |
7d1f9018 | 763 | |
4ce72abc LPC |
764 | ANALOG DEVICES INC IIO DRIVERS |
765 | M: Lars-Peter Clausen <lars@metafoo.de> | |
766 | M: Michael Hennerich <Michael.Hennerich@analog.com> | |
767 | W: http://wiki.analog.com/ | |
768 | W: http://ez.analog.com/community/linux-device-drivers | |
769 | S: Supported | |
770 | F: drivers/iio/*/ad* | |
771 | X: drivers/iio/*/adjd* | |
772 | F: drivers/staging/iio/*/ad* | |
773 | F: staging/iio/trigger/iio-trig-bfin-timer.c | |
527a1a83 | 774 | |
0e3b67b3 LPC |
775 | ANALOG DEVICES INC DMA DRIVERS |
776 | M: Lars-Peter Clausen <lars@metafoo.de> | |
777 | W: http://ez.analog.com/community/linux-device-drivers | |
778 | S: Supported | |
779 | F: drivers/dma/dma-axi-dmac.c | |
780 | ||
27eb6622 RH |
781 | ANDROID CONFIG FRAGMENTS |
782 | M: Rob Herring <robh@kernel.org> | |
783 | S: Supported | |
784 | F: kernel/configs/android* | |
785 | ||
41c9e95d GK |
786 | ANDROID DRIVERS |
787 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
27682407 | 788 | M: Arve Hjønnevåg <arve@android.com> |
41c9e95d | 789 | M: Riley Andrews <riandrews@android.com> |
0e4a566b | 790 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
41c9e95d GK |
791 | L: devel@driverdev.osuosl.org |
792 | S: Supported | |
793 | F: drivers/android/ | |
794 | F: drivers/staging/android/ | |
795 | ||
d03c023e LA |
796 | ANDROID ION DRIVER |
797 | M: Laura Abbott <labbott@redhat.com> | |
798 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
799 | L: devel@driverdev.osuosl.org | |
800 | S: Supported | |
801 | F: drivers/staging/android/ion | |
802 | F: drivers/staging/android/uapi/ion.h | |
803 | F: drivers/staging/android/uapi/ion_test.h | |
804 | ||
42269063 | 805 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 806 | M: Johannes Berg <johannes@sipsolutions.net> |
a4724ed6 | 807 | L: linuxppc-dev@lists.ozlabs.org |
93711660 | 808 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
42269063 | 809 | S: Maintained |
679655da | 810 | F: sound/aoa/ |
42269063 | 811 | |
97a445da WBG |
812 | APEX EMBEDDED SYSTEMS STX104 DAC DRIVER |
813 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
814 | L: linux-iio@vger.kernel.org | |
815 | S: Maintained | |
816 | F: drivers/iio/dac/stx104.c | |
817 | ||
1da177e4 | 818 | APM DRIVER |
e5f6450c | 819 | M: Jiri Kosina <jikos@kernel.org> |
81024fc4 | 820 | S: Odd fixes |
9f273c24 | 821 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git |
679655da JP |
822 | F: arch/x86/kernel/apm_32.c |
823 | F: include/linux/apm_bios.h | |
c117ab84 | 824 | F: include/uapi/linux/apm_bios.h |
81024fc4 | 825 | F: drivers/char/apm-emulation.c |
1da177e4 | 826 | |
bd7aa4b2 | 827 | APPLE BCM5974 MULTITOUCH DRIVER |
75dd112a | 828 | M: Henrik Rydberg <rydberg@bitmath.org> |
bd7aa4b2 | 829 | L: linux-input@vger.kernel.org |
75dd112a | 830 | S: Odd fixes |
679655da | 831 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 832 | |
6f2fad74 | 833 | APPLE SMC DRIVER |
75dd112a | 834 | M: Henrik Rydberg <rydberg@bitmath.org> |
968ce1b1 | 835 | L: linux-hwmon@vger.kernel.org |
75dd112a | 836 | S: Odd fixes |
679655da | 837 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 838 | |
1da177e4 | 839 | APPLETALK NETWORK LAYER |
8b58be88 | 840 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
1da177e4 | 841 | S: Maintained |
679655da JP |
842 | F: drivers/net/appletalk/ |
843 | F: net/appletalk/ | |
1da177e4 | 844 | |
21c75328 DD |
845 | APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT |
846 | M: Duc Dang <dhdang@apm.com> | |
847 | S: Supported | |
848 | F: arch/arm64/boot/dts/apm/ | |
849 | ||
24299502 IS |
850 | APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER |
851 | M: Iyappan Subramanian <isubramanian@apm.com> | |
852 | M: Keyur Chudgar <kchudgar@apm.com> | |
24299502 IS |
853 | S: Supported |
854 | F: drivers/net/ethernet/apm/xgene/ | |
2efccc60 | 855 | F: drivers/net/phy/mdio-xgene.c |
24299502 | 856 | F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt |
2efccc60 | 857 | F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt |
24299502 | 858 | |
62a37dc7 LP |
859 | APTINA CAMERA SENSOR PLL |
860 | M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com> | |
861 | L: linux-media@vger.kernel.org | |
862 | S: Maintained | |
863 | F: drivers/media/i2c/aptina-pll.* | |
864 | ||
1154ea7d | 865 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 866 | M: Jaya Kumar <jayalk@intworks.biz> |
1154ea7d | 867 | S: Maintained |
8a61f013 JH |
868 | F: drivers/video/fbdev/arcfb.c |
869 | F: drivers/video/fbdev/core/fb_defio.c | |
1154ea7d | 870 | |
c38f6ac7 MG |
871 | ARCNET NETWORK LAYER |
872 | M: Michael Grzeschik <m.grzeschik@pengutronix.de> | |
873 | L: netdev@vger.kernel.org | |
874 | S: Maintained | |
875 | F: drivers/net/arcnet/ | |
876 | F: include/uapi/linux/if_arcnet.h | |
877 | ||
71d298ce AB |
878 | ARC PGU DRM DRIVER |
879 | M: Alexey Brodkin <abrodkin@synopsys.com> | |
880 | S: Supported | |
881 | F: drivers/gpu/drm/arc/ | |
882 | F: Documentation/devicetree/bindings/display/snps,arcpgu.txt | |
883 | ||
c5a906a5 LD |
884 | ARM HDLCD DRM DRIVER |
885 | M: Liviu Dudau <liviu.dudau@arm.com> | |
886 | S: Supported | |
59ba2422 | 887 | F: drivers/gpu/drm/arm/hdlcd_* |
c5a906a5 LD |
888 | F: Documentation/devicetree/bindings/display/arm,hdlcd.txt |
889 | ||
59ba2422 LD |
890 | ARM MALI-DP DRM DRIVER |
891 | M: Liviu Dudau <liviu.dudau@arm.com> | |
892 | M: Brian Starkey <brian.starkey@arm.com> | |
893 | M: Mali DP Maintainers <malidp@foss.arm.com> | |
894 | S: Supported | |
895 | F: drivers/gpu/drm/arm/ | |
896 | F: Documentation/devicetree/bindings/display/arm,malidp.txt | |
897 | ||
1da177e4 | 898 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 899 | M: Ian Molton <spyro@f2s.com> |
1da177e4 | 900 | S: Maintained |
679655da JP |
901 | F: arch/arm/lib/floppydma.S |
902 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 903 | |
6f96521f WD |
904 | ARM PMU PROFILING AND DEBUGGING |
905 | M: Will Deacon <will.deacon@arm.com> | |
70e238df | 906 | R: Mark Rutland <mark.rutland@arm.com> |
6f96521f | 907 | S: Maintained |
dd06a84b | 908 | F: arch/arm*/kernel/perf_* |
6f96521f | 909 | F: arch/arm/oprofile/common.c |
dd06a84b MR |
910 | F: arch/arm*/kernel/hw_breakpoint.c |
911 | F: arch/arm*/include/asm/hw_breakpoint.h | |
912 | F: arch/arm*/include/asm/perf_event.h | |
fa8ad788 MR |
913 | F: drivers/perf/arm_pmu.c |
914 | F: include/linux/perf/arm_pmu.h | |
6f96521f | 915 | |
d4275354 | 916 | ARM PORT |
54176cc6 | 917 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 918 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 919 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
920 | S: Maintained |
921 | F: arch/arm/ | |
922 | ||
d323c243 SB |
923 | ARM SUB-ARCHITECTURES |
924 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
56ca9d98 | 925 | S: Maintained |
d323c243 SB |
926 | F: arch/arm/mach-*/ |
927 | F: arch/arm/plat-*/ | |
928 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
929 | ||
cefbf4ea | 930 | ARM PRIMECELL AACI PL041 DRIVER |
54176cc6 | 931 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea RK |
932 | S: Maintained |
933 | F: sound/arm/aaci.* | |
934 | ||
935 | ARM PRIMECELL CLCD PL110 DRIVER | |
54176cc6 | 936 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea | 937 | S: Maintained |
8a61f013 | 938 | F: drivers/video/fbdev/amba-clcd.* |
cefbf4ea RK |
939 | |
940 | ARM PRIMECELL KMI PL050 DRIVER | |
54176cc6 | 941 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea RK |
942 | S: Maintained |
943 | F: drivers/input/serio/ambakmi.* | |
944 | F: include/linux/amba/kmi.h | |
945 | ||
2761f5c2 | 946 | ARM PRIMECELL MMCI PL180/1 DRIVER |
54176cc6 | 947 | M: Russell King <linux@armlinux.org.uk> |
08a5c9a2 | 948 | S: Maintained |
679655da | 949 | F: drivers/mmc/host/mmci.* |
2f748aaa | 950 | F: include/linux/amba/mmci.h |
2761f5c2 | 951 | |
1b4304e5 | 952 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
54176cc6 | 953 | M: Russell King <linux@armlinux.org.uk> |
1b4304e5 RK |
954 | S: Maintained |
955 | F: drivers/tty/serial/amba-pl01*.c | |
956 | F: include/linux/amba/serial.h | |
2761f5c2 | 957 | |
cefbf4ea | 958 | ARM PRIMECELL BUS SUPPORT |
54176cc6 | 959 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea RK |
960 | S: Maintained |
961 | F: drivers/amba/ | |
962 | F: include/linux/amba/bus.h | |
963 | ||
2b7a52a4 | 964 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 965 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 966 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
967 | S: Maintained |
968 | ||
9c784f95 | 969 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 970 | M: Sergey Lapin <slapin@ossfans.org> |
efc03ecb | 971 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9c784f95 SL |
972 | S: Maintained |
973 | ||
2b7a52a4 | 974 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 975 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 976 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
977 | S: Maintained |
978 | ||
5c6dcd7f | 979 | ARM/Allwinner sunXi SoC support |
1b106699 | 980 | M: Maxime Ripard <maxime.ripard@free-electrons.com> |
5c6dcd7f | 981 | M: Chen-Yu Tsai <wens@csie.org> |
1b106699 MR |
982 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
983 | S: Maintained | |
5c6dcd7f | 984 | N: sun[x456789]i |
60b0f380 MR |
985 | |
986 | ARM/Allwinner SoC Clock Support | |
987 | M: Emilio López <emilio@elopez.com.ar> | |
988 | S: Maintained | |
989 | F: drivers/clk/sunxi/ | |
1b106699 | 990 | |
79318452 | 991 | ARM/Amlogic Meson SoC support |
7c1e3876 | 992 | M: Carlo Caione <carlo@caione.org> |
6683d91c | 993 | M: Kevin Hilman <khilman@baylibre.com> |
7c1e3876 | 994 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
6683d91c | 995 | L: linux-amlogic@lists.infradead.org |
79318452 | 996 | W: http://linux-meson.com/ |
7c1e3876 | 997 | S: Maintained |
79318452 CC |
998 | F: arch/arm/mach-meson/ |
999 | F: arch/arm/boot/dts/meson* | |
6683d91c KH |
1000 | F: arch/arm64/boot/dts/amlogic/ |
1001 | F: drivers/pinctrl/meson/ | |
79318452 | 1002 | N: meson |
7c1e3876 | 1003 | |
eff506fa TZ |
1004 | ARM/Annapurna Labs ALPINE ARCHITECTURE |
1005 | M: Tsahee Zidenberg <tsahee@annapurnalabs.com> | |
a9e5547b | 1006 | M: Antoine Tenart <antoine.tenart@free-electrons.com> |
eff506fa TZ |
1007 | S: Maintained |
1008 | F: arch/arm/mach-alpine/ | |
a9e5547b AT |
1009 | F: arch/arm/boot/dts/alpine* |
1010 | F: arch/arm64/boot/dts/al/ | |
1011 | F: drivers/*/*alpine* | |
eff506fa | 1012 | |
5255034d LP |
1013 | ARM/ARTPEC MACHINE SUPPORT |
1014 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
1015 | M: Lars Persson <lars.persson@axis.com> | |
1016 | M: Niklas Cassel <niklas.cassel@axis.com> | |
1017 | S: Maintained | |
1018 | L: linux-arm-kernel@axis.com | |
1019 | F: arch/arm/mach-artpec | |
1020 | F: arch/arm/boot/dts/artpec6* | |
33b8ac91 | 1021 | F: drivers/clk/axis |
5255034d | 1022 | |
8c2ed9bc JS |
1023 | ARM/ASPEED MACHINE SUPPORT |
1024 | M: Joel Stanley <joel@jms.id.au> | |
1025 | S: Maintained | |
1026 | F: arch/arm/mach-aspeed/ | |
1027 | F: arch/arm/boot/dts/aspeed-* | |
1028 | F: drivers/*/*aspeed* | |
1029 | ||
8dca5ce8 | 1030 | ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT |
c1fc8675 | 1031 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
d68b35f8 | 1032 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
c1fc8675 | 1033 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
efc03ecb | 1034 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
c1fc8675 | 1035 | W: http://www.linux4sam.org |
9f273c24 | 1036 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git |
c1fc8675 NF |
1037 | S: Supported |
1038 | F: arch/arm/mach-at91/ | |
f0a0a58e | 1039 | F: include/soc/at91/ |
70e389cc MB |
1040 | F: arch/arm/boot/dts/at91*.dts |
1041 | F: arch/arm/boot/dts/at91*.dtsi | |
1042 | F: arch/arm/boot/dts/sama*.dts | |
1043 | F: arch/arm/boot/dts/sama*.dtsi | |
5f58c970 | 1044 | F: arch/arm/include/debug/at91.S |
d4a89c7d | 1045 | |
6e05dd4e BB |
1046 | ARM/ATMEL AT91 Clock Support |
1047 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
1048 | S: Maintained | |
1049 | F: drivers/clk/at91 | |
1050 | ||
986cf2e9 | 1051 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
5d3ad8a6 | 1052 | M: Rob Herring <robh@kernel.org> |
986cf2e9 RH |
1053 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1054 | S: Maintained | |
1055 | F: arch/arm/mach-highbank/ | |
e68d7c14 RH |
1056 | F: arch/arm/boot/dts/highbank.dts |
1057 | F: arch/arm/boot/dts/ecx-*.dts* | |
986cf2e9 | 1058 | |
d94f944e | 1059 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
5529c2cd | 1060 | M: Krzysztof Halasa <khalasa@piap.pl> |
d94f944e AV |
1061 | S: Maintained |
1062 | F: arch/arm/mach-cns3xxx/ | |
d94f944e | 1063 | |
4863dea3 SG |
1064 | ARM/CAVIUM THUNDER NETWORK DRIVER |
1065 | M: Sunil Goutham <sgoutham@cavium.com> | |
1066 | M: Robert Richter <rric@kernel.org> | |
1067 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1068 | S: Supported | |
322e5cc5 | 1069 | F: drivers/net/ethernet/cavium/thunder/ |
4863dea3 | 1070 | |
386ab516 AS |
1071 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
1072 | M: Alexander Shiyan <shc_work@mail.ru> | |
1073 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1074 | S: Odd Fixes | |
b8ba3874 | 1075 | N: clps711x |
386ab516 | 1076 | |
2b7a52a4 | 1077 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 1078 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
1c5454ee | 1079 | M: Ryan Mallon <rmallon@gmail.com> |
efc03ecb | 1080 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 | 1081 | S: Maintained |
d19d3667 HS |
1082 | F: arch/arm/mach-ep93xx/ |
1083 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
1084 | |
1085 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 1086 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1087 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1088 | S: Maintained |
1089 | ||
d4275354 | 1090 | ARM/CLKDEV SUPPORT |
54176cc6 | 1091 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1092 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
37417046 | 1093 | S: Maintained |
d4275354 | 1094 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 1095 | F: drivers/clk/clkdev.c |
d4275354 | 1096 | |
d48134e7 | 1097 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 1098 | M: Mike Rapoport <mike@compulab.co.il> |
efc03ecb | 1099 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
a9da4f7e RK |
1100 | S: Maintained |
1101 | ||
94150095 HF |
1102 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
1103 | M: Hubert Feurstein <hubert.feurstein@contec.at> | |
1104 | S: Maintained | |
1105 | F: arch/arm/mach-ep93xx/micro9.c | |
1106 | ||
a06ae860 PP |
1107 | ARM/CORESIGHT FRAMEWORK AND DRIVERS |
1108 | M: Mathieu Poirier <mathieu.poirier@linaro.org> | |
1109 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1110 | S: Maintained | |
01081f5a | 1111 | F: drivers/hwtracing/coresight/* |
a06ae860 PP |
1112 | F: Documentation/trace/coresight.txt |
1113 | F: Documentation/devicetree/bindings/arm/coresight.txt | |
7a25ec8e | 1114 | F: Documentation/ABI/testing/sysfs-bus-coresight-devices-* |
a06ae860 | 1115 | |
1da177e4 | 1116 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 1117 | M: Richard Purdie <rpurdie@rpsys.net> |
1da177e4 LT |
1118 | S: Maintained |
1119 | ||
881a95f9 | 1120 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 1121 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 1122 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
b60e23ba | 1123 | T: git git://github.com/ulli-kroll/linux.git |
162500b3 | 1124 | S: Maintained |
f49afbb5 | 1125 | F: arch/arm/mach-gemini/ |
98a9bb5b | 1126 | F: drivers/rtc/rtc-gemini.c |
881a95f9 | 1127 | |
a990cbd8 | 1128 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
5abf58bf | 1129 | M: Barry Song <baohua@kernel.org> |
a990cbd8 | 1130 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
85529d14 | 1131 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
a990cbd8 | 1132 | S: Maintained |
e68d7c14 | 1133 | F: arch/arm/boot/dts/prima2* |
a990cbd8 | 1134 | F: arch/arm/mach-prima2/ |
4a9c44f1 | 1135 | F: drivers/clk/sirf/ |
05f30e8d | 1136 | F: drivers/clocksource/timer-prima2.c |
5833ac98 | 1137 | F: drivers/clocksource/timer-atlas7.c |
f8505ef5 | 1138 | N: [^a-z]sirf |
a990cbd8 | 1139 | |
c9d862c4 BS |
1140 | ARM/CONEXANT DIGICOLOR MACHINE SUPPORT |
1141 | M: Baruch Siach <baruch@tkos.co.il> | |
1142 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1143 | S: Maintained | |
cde137aa | 1144 | F: arch/arm/boot/dts/cx92755* |
c9d862c4 BS |
1145 | N: digicolor |
1146 | ||
d4275354 | 1147 | ARM/EBSA110 MACHINE SUPPORT |
54176cc6 | 1148 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1149 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1150 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
1151 | S: Maintained |
1152 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 1153 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 1154 | |
4721f3ce UKK |
1155 | ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT |
1156 | M: Uwe Kleine-König <kernel@pengutronix.de> | |
1157 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1158 | S: Maintained | |
1159 | N: efm32 | |
1160 | ||
a9da4f7e | 1161 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
1162 | M: Daniel Ribeiro <drwyrm@gmail.com> |
1163 | M: Stefan Schmidt <stefan@openezx.org> | |
1164 | M: Harald Welte <laforge@openezx.org> | |
d66f1886 | 1165 | L: openezx-devel@lists.openezx.org (moderated for non-subscribers) |
a9da4f7e RK |
1166 | W: http://www.openezx.org/ |
1167 | S: Maintained | |
cafc2265 SS |
1168 | T: topgit git://git.openezx.org/openezx.git |
1169 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 1170 | |
6a915af9 | 1171 | ARM/FARADAY FA526 PORT |
162500b3 | 1172 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 1173 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
162500b3 | 1174 | S: Maintained |
1fa7e547 | 1175 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 1176 | F: arch/arm/mm/*-fa* |
6a915af9 | 1177 | |
d4275354 | 1178 | ARM/FOOTBRIDGE ARCHITECTURE |
54176cc6 | 1179 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1180 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1181 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
1182 | S: Maintained |
1183 | F: arch/arm/include/asm/hardware/dec21285.h | |
1184 | F: arch/arm/mach-footbridge/ | |
1185 | ||
86183a5f | 1186 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
7609ea2a | 1187 | M: Shawn Guo <shawnguo@kernel.org> |
8b58be88 | 1188 | M: Sascha Hauer <kernel@pengutronix.de> |
b046302a | 1189 | R: Fabio Estevam <fabio.estevam@nxp.com> |
efc03ecb | 1190 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
86183a5f | 1191 | S: Maintained |
f1c12837 | 1192 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
adf79292 | 1193 | F: arch/arm/mach-imx/ |
ce515a6b | 1194 | F: arch/arm/mach-mxs/ |
2a82f95c | 1195 | F: arch/arm/boot/dts/imx* |
e5dafa22 | 1196 | F: arch/arm/configs/imx*_defconfig |
cf20968a SG |
1197 | F: drivers/clk/imx/ |
1198 | F: include/soc/imx/ | |
86183a5f | 1199 | |
142109d2 | 1200 | ARM/FREESCALE VYBRID ARM ARCHITECTURE |
7609ea2a | 1201 | M: Shawn Guo <shawnguo@kernel.org> |
142109d2 SA |
1202 | M: Sascha Hauer <kernel@pengutronix.de> |
1203 | R: Stefan Agner <stefan@agner.ch> | |
1204 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1205 | S: Maintained | |
1206 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git | |
1207 | F: arch/arm/mach-imx/*vf610* | |
1208 | F: arch/arm/boot/dts/vf* | |
1209 | ||
2b7a52a4 | 1210 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 1211 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1212 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1213 | S: Maintained |
1214 | ||
90b8fc34 | 1215 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 1216 | M: Steve Sakoman <sakoman@gmail.com> |
efc03ecb | 1217 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
90b8fc34 JK |
1218 | S: Maintained |
1219 | ||
ef47d5f0 | 1220 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 1221 | M: Philipp Zabel <philipp.zabel@gmail.com> |
12a93f32 PZ |
1222 | M: Paul Parsons <lost.distance@yahoo.com> |
1223 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
ef47d5f0 PZ |
1224 | S: Maintained |
1225 | F: arch/arm/mach-pxa/hx4700.c | |
1226 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 1227 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 1228 | |
4dfad069 WX |
1229 | ARM/HISILICON SOC SUPPORT |
1230 | M: Wei Xu <xuwei5@hisilicon.com> | |
1231 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1232 | W: http://www.hisilicon.com | |
1233 | S: Supported | |
1234 | T: git git://github.com/hisilicon/linux-hisi.git | |
1235 | F: arch/arm/mach-hisi/ | |
e68d7c14 RH |
1236 | F: arch/arm/boot/dts/hi3* |
1237 | F: arch/arm/boot/dts/hip* | |
1238 | F: arch/arm/boot/dts/hisi* | |
1239 | F: arch/arm64/boot/dts/hisilicon/ | |
4dfad069 | 1240 | |
21f37bc3 | 1241 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 1242 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
795fb7e7 JD |
1243 | W: www.jlime.com |
1244 | S: Maintained | |
084bad91 KE |
1245 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
1246 | F: arch/arm/mach-sa1100/jornada720.c | |
1247 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 1248 | |
5e767ab9 JMC |
1249 | ARM/IGEP MACHINE SUPPORT |
1250 | M: Enric Balletbo i Serra <eballetbo@gmail.com> | |
1251 | M: Javier Martinez Canillas <javier@dowhile0.org> | |
1252 | L: linux-omap@vger.kernel.org | |
1253 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1254 | S: Maintained | |
06ff74fd | 1255 | F: arch/arm/boot/dts/omap3-igep* |
5e767ab9 | 1256 | |
403d2971 MV |
1257 | ARM/INCOME PXA270 SUPPORT |
1258 | M: Marek Vasut <marek.vasut@gmail.com> | |
1259 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1260 | S: Maintained | |
ec154082 | 1261 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 1262 | |
2b7a52a4 | 1263 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 1264 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1265 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1266 | S: Maintained |
e2bdb176 DW |
1267 | |
1268 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
efc03ecb | 1269 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
08223d80 | 1270 | S: Orphan |
2b7a52a4 LB |
1271 | |
1272 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 1273 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1274 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1275 | S: Maintained |
2b7a52a4 LB |
1276 | |
1277 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 1278 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1279 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1280 | S: Maintained |
2b7a52a4 | 1281 | |
2b7a52a4 | 1282 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 1283 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1284 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1285 | S: Maintained |
1286 | ||
dfdd8cc9 KH |
1287 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
1288 | M: Imre Kaloz <kaloz@openwrt.org> | |
5529c2cd | 1289 | M: Krzysztof Halasa <khalasa@piap.pl> |
baea7b94 | 1290 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
dfdd8cc9 KH |
1291 | S: Maintained |
1292 | F: arch/arm/mach-ixp4xx/ | |
1293 | ||
838553c5 | 1294 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
1295 | M: Jonathan Cameron <jic23@cam.ac.uk> |
1296 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1297 | S: Maintained | |
1298 | F: arch/arm/mach-pxa/stargate2.c | |
1299 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
1300 | ||
2b7a52a4 | 1301 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 1302 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1303 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1304 | S: Maintained |
2b7a52a4 LB |
1305 | |
1306 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 1307 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1308 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1309 | S: Maintained |
1310 | ||
1154f858 | 1311 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
97215800 | 1312 | M: Santosh Shilimkar <ssantosh@kernel.org> |
1154f858 SS |
1313 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1314 | S: Maintained | |
1315 | F: arch/arm/mach-keystone/ | |
5edafc29 | 1316 | F: arch/arm/boot/dts/keystone-* |
317929cd | 1317 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
1154f858 | 1318 | |
bc6aa566 | 1319 | ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK |
97215800 | 1320 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1321 | L: linux-kernel@vger.kernel.org |
1322 | S: Maintained | |
1323 | F: drivers/clk/keystone/ | |
1324 | ||
1325 | ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE | |
97215800 | 1326 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1327 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1328 | L: linux-kernel@vger.kernel.org | |
1329 | S: Maintained | |
1330 | F: drivers/clocksource/timer-keystone.c | |
1331 | ||
1332 | ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER | |
97215800 | 1333 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1334 | L: linux-kernel@vger.kernel.org |
1335 | S: Maintained | |
1336 | F: drivers/power/reset/keystone-reset.c | |
1337 | ||
1338 | ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS | |
97215800 | 1339 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1340 | L: linux-kernel@vger.kernel.org |
1341 | S: Maintained | |
1342 | F: drivers/memory/*emif* | |
1343 | ||
8cb555b6 CM |
1344 | ARM/LG1K ARCHITECTURE |
1345 | M: Chanho Min <chanho.min@lge.com> | |
1346 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1347 | S: Maintained | |
1348 | F: arch/arm64/boot/dts/lg/ | |
1349 | ||
2b7a52a4 | 1350 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
8b58be88 | 1351 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1352 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1353 | S: Maintained |
1354 | ||
3143875f JE |
1355 | ARM/LPC18XX ARCHITECTURE |
1356 | M: Joachim Eastwood <manabian@gmail.com> | |
1357 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1358 | S: Maintained | |
19c1c32c JE |
1359 | F: arch/arm/boot/dts/lpc43* |
1360 | F: drivers/clk/nxp/clk-lpc18xx* | |
1361 | F: drivers/clocksource/time-lpc32xx.c | |
1362 | F: drivers/i2c/busses/i2c-lpc2k.c | |
1363 | F: drivers/memory/pl172.c | |
1364 | F: drivers/mtd/spi-nor/nxp-spifi.c | |
1365 | F: drivers/rtc/rtc-lpc24xx.c | |
3143875f JE |
1366 | N: lpc18xx |
1367 | ||
15e4f7da | 1368 | ARM/LPC32XX SOC SUPPORT |
8d5a6b42 VZ |
1369 | M: Vladimir Zapolskiy <vz@mleia.com> |
1370 | M: Sylvain Lemieux <slemieux.tyco@gmail.com> | |
15e4f7da | 1371 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
8d5a6b42 | 1372 | T: git git://github.com/vzapolskiy/linux-lpc32xx.git |
15e4f7da | 1373 | S: Maintained |
2377f9fd | 1374 | F: arch/arm/boot/dts/lpc32* |
15e4f7da | 1375 | F: arch/arm/mach-lpc32xx/ |
2377f9fd VZ |
1376 | F: drivers/i2c/busses/i2c-pnx.c |
1377 | F: drivers/net/ethernet/nxp/lpc_eth.c | |
1378 | F: drivers/usb/host/ohci-nxp.c | |
1379 | F: drivers/watchdog/pnx4008_wdt.c | |
1380 | N: lpc32xx | |
15e4f7da | 1381 | |
3b886171 | 1382 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 1383 | M: Philipp Zabel <philipp.zabel@gmail.com> |
3b886171 PZ |
1384 | S: Maintained |
1385 | ||
1f664ab7 | 1386 | ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support |
75f41273 TP |
1387 | M: Jason Cooper <jason@lakedaemon.net> |
1388 | M: Andrew Lunn <andrew@lunn.ch> | |
1389 | M: Gregory Clement <gregory.clement@free-electrons.com> | |
dcb71503 | 1390 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
75f41273 TP |
1391 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1392 | S: Maintained | |
1393 | F: arch/arm/mach-mvebu/ | |
59ec9671 | 1394 | F: drivers/rtc/rtc-armada38x.c |
31c17ac9 GC |
1395 | F: arch/arm/boot/dts/armada* |
1396 | F: arch/arm/boot/dts/kirkwood* | |
dcc3068a | 1397 | F: arch/arm64/boot/dts/marvell/armada* |
9f123def | 1398 | F: drivers/cpufreq/mvebu-cpufreq.c |
e269777f | 1399 | F: arch/arm/configs/mvebu_*_defconfig |
75f41273 | 1400 | |
40f4978b SH |
1401 | ARM/Marvell Berlin SoC support |
1402 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> | |
1403 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1404 | S: Maintained | |
1405 | F: arch/arm/mach-berlin/ | |
31c17ac9 | 1406 | F: arch/arm/boot/dts/berlin* |
e68d7c14 | 1407 | F: arch/arm64/boot/dts/marvell/berlin* |
31c17ac9 | 1408 | |
40f4978b | 1409 | |
4cfab57e | 1410 | ARM/Marvell Dove/MV78xx0/Orion SOC support |
4f1312b0 NP |
1411 | M: Jason Cooper <jason@lakedaemon.net> |
1412 | M: Andrew Lunn <andrew@lunn.ch> | |
dcb71503 | 1413 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
bfda4031 | 1414 | M: Gregory Clement <gregory.clement@free-electrons.com> |
efc03ecb | 1415 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4f1312b0 NP |
1416 | S: Maintained |
1417 | F: arch/arm/mach-dove/ | |
54a246ff NP |
1418 | F: arch/arm/mach-mv78xx0/ |
1419 | F: arch/arm/mach-orion5x/ | |
1420 | F: arch/arm/plat-orion/ | |
31c17ac9 GC |
1421 | F: arch/arm/boot/dts/dove* |
1422 | F: arch/arm/boot/dts/orion5x* | |
1423 | ||
3b886171 | 1424 | |
d69ac131 AC |
1425 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
1426 | M: Alexander Clouter <alex@digriz.org.uk> | |
1427 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1428 | W: http://www.digriz.org.uk/ts78xx/kernel | |
1429 | S: Maintained | |
1430 | F: arch/arm/mach-orion5x/ts78xx-* | |
1431 | ||
e557959d NA |
1432 | ARM/OXNAS platform support |
1433 | M: Neil Armstrong <narmstrong@baylibre.com> | |
1434 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1435 | S: Maintained | |
1436 | F: arch/arm/mach-oxnas/ | |
1437 | F: arch/arm/boot/dts/oxnas* | |
1438 | F: arch/arm/boot/dts/wd-mbwe.dts | |
1439 | N: oxnas | |
1440 | ||
607b8fc9 EH |
1441 | ARM/Mediatek RTC DRIVER |
1442 | M: Eddie Huang <eddie.huang@mediatek.com> | |
1443 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1444 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) | |
1445 | S: Maintained | |
1446 | F: drivers/rtc/rtc-mt6397.c | |
1447 | ||
e54951c8 MB |
1448 | ARM/Mediatek SoC support |
1449 | M: Matthias Brugger <matthias.bgg@gmail.com> | |
1450 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
17b199d6 | 1451 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) |
e54951c8 MB |
1452 | S: Maintained |
1453 | F: arch/arm/boot/dts/mt6* | |
1454 | F: arch/arm/boot/dts/mt8* | |
1455 | F: arch/arm/mach-mediatek/ | |
1456 | N: mtk | |
1457 | K: mediatek | |
1458 | ||
0f8669e3 CY |
1459 | ARM/Mediatek USB3 PHY DRIVER |
1460 | M: Chunfeng Yun <chunfeng.yun@mediatek.com> | |
1461 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1462 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) | |
1463 | S: Maintained | |
1464 | F: drivers/phy/phy-mt65xx-usb3.c | |
1465 | ||
adcb079f AB |
1466 | ARM/MICREL KS8695 ARCHITECTURE |
1467 | M: Greg Ungerer <gerg@uclinux.org> | |
1468 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
14430813 | 1469 | F: arch/arm/mach-ks8695/ |
adcb079f AB |
1470 | S: Odd Fixes |
1471 | ||
d78ff0a5 | 1472 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1473 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 1474 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d78ff0a5 RJ |
1475 | F: arch/arm/mach-pxa/mioa701.c |
1476 | S: Maintained | |
1477 | ||
9624dfe6 | 1478 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1479 | M: Michael Petchkovsky <mkpetch@internode.on.net> |
9624dfe6 KE |
1480 | S: Maintained |
1481 | ||
e0ee9851 | 1482 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1483 | M: Alessandro Rubini <rubini@unipv.it> |
e4651a9f | 1484 | M: Linus Walleij <linus.walleij@linaro.org> |
28b8e8d4 JP |
1485 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1486 | S: Maintained | |
1487 | F: arch/arm/mach-nomadik/ | |
ecc265fe | 1488 | F: drivers/pinctrl/nomadik/ |
87572880 | 1489 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1490 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1491 | |
9d76295a | 1492 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1493 | M: Nelson Castillo <arhuaco@freaks-unidos.net> |
9d76295a AG |
1494 | L: openmoko-kernel@lists.openmoko.org (subscribers-only) |
1495 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1496 | S: Supported | |
1497 | ||
8459c159 | 1498 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1499 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
1500 | M: Dirk Opfer <dirk@opfer-online.de> | |
8459c159 DO |
1501 | S: Maintained |
1502 | ||
5d783a2d | 1503 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1504 | M: Marek Vasut <marek.vasut@gmail.com> |
75280787 | 1505 | L: linux-arm-kernel@lists.infradead.org |
b5e4ad57 MV |
1506 | W: http://hackndev.com |
1507 | S: Maintained | |
933d35f0 JP |
1508 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1509 | F: arch/arm/mach-pxa/palmtx.c | |
1510 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1511 | F: arch/arm/mach-pxa/palmt5.c | |
1512 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1513 | F: arch/arm/mach-pxa/palmld.c | |
1514 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1515 | F: arch/arm/mach-pxa/palmte2.c | |
1516 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1517 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1518 | |
b57fe924 | 1519 | ARM/PALM TREO SUPPORT |
d8130624 | 1520 | M: Tomas Cech <sleep_walker@suse.com> |
75280787 | 1521 | L: linux-arm-kernel@lists.infradead.org |
90af5811 TSC |
1522 | W: http://hackndev.com |
1523 | S: Maintained | |
b57fe924 JP |
1524 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1525 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1526 | |
c49e1e63 | 1527 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1528 | M: Sergey Lapin <slapin@ossfans.org> |
75280787 | 1529 | L: linux-arm-kernel@lists.infradead.org |
7d2c86b5 JP |
1530 | W: http://hackndev.com |
1531 | S: Maintained | |
933d35f0 JP |
1532 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1533 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1534 | |
1da177e4 | 1535 | ARM/PLEB SUPPORT |
8b58be88 | 1536 | M: Peter Chubb <pleb@gelato.unsw.edu.au> |
1da177e4 LT |
1537 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1538 | S: Maintained | |
1539 | ||
1540 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1541 | M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> |
efc03ecb | 1542 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1543 | W: http://www.armlinux.org.uk/ |
1da177e4 LT |
1544 | S: Maintained |
1545 | ||
8fc1b0f8 | 1546 | ARM/QUALCOMM SUPPORT |
bbeaa595 AG |
1547 | M: Andy Gross <andy.gross@linaro.org> |
1548 | M: David Brown <david.brown@linaro.org> | |
8fc1b0f8 | 1549 | L: linux-arm-msm@vger.kernel.org |
f5d3af9d | 1550 | L: linux-soc@vger.kernel.org |
8fc1b0f8 | 1551 | S: Maintained |
0ff50d60 | 1552 | F: Documentation/devicetree/bindings/soc/qcom/ |
0c4cbf9e BA |
1553 | F: arch/arm/boot/dts/qcom-*.dts |
1554 | F: arch/arm/boot/dts/qcom-*.dtsi | |
8fc1b0f8 | 1555 | F: arch/arm/mach-qcom/ |
e68d7c14 | 1556 | F: arch/arm64/boot/dts/qcom/* |
5482cefa | 1557 | F: drivers/i2c/busses/i2c-qup.c |
39a3366a | 1558 | F: drivers/clk/qcom/ |
f5d3af9d | 1559 | F: drivers/soc/qcom/ |
5482cefa | 1560 | F: drivers/spi/spi-qup.c |
c0c89faf SB |
1561 | F: drivers/tty/serial/msm_serial.h |
1562 | F: drivers/tty/serial/msm_serial.c | |
1563 | F: drivers/*/pm8???-* | |
1564 | F: drivers/mfd/ssbi.c | |
916f743d | 1565 | F: drivers/firmware/qcom_scm.c |
bbeaa595 | 1566 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git |
8fc1b0f8 | 1567 | |
2b7a52a4 | 1568 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1569 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1570 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1571 | S: Maintained |
1572 | ||
b138e119 SH |
1573 | ARM/RENESAS ARM64 ARCHITECTURE |
1574 | M: Simon Horman <horms@verge.net.au> | |
1575 | M: Magnus Damm <magnus.damm@gmail.com> | |
1926e54f SH |
1576 | L: linux-renesas-soc@vger.kernel.org |
1577 | Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/ | |
b138e119 SH |
1578 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
1579 | S: Supported | |
1580 | F: arch/arm64/boot/dts/renesas/ | |
be32bcbb GU |
1581 | F: drivers/soc/renesas/ |
1582 | F: include/linux/soc/renesas/ | |
b138e119 | 1583 | |
d4275354 | 1584 | ARM/RISCPC ARCHITECTURE |
54176cc6 | 1585 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1586 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1587 | W: http://www.armlinux.org.uk/ |
d4275354 | 1588 | S: Maintained |
d4275354 RK |
1589 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1590 | F: arch/arm/include/asm/hardware/ioc.h | |
1591 | F: arch/arm/include/asm/hardware/iomd.h | |
1592 | F: arch/arm/include/asm/hardware/memc.h | |
1593 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1594 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1595 | F: drivers/net/ethernet/i825xx/ether1* |
1596 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1597 | F: drivers/scsi/arm/ |
1598 | ||
08ddbb0a HS |
1599 | ARM/Rockchip SoC support |
1600 | M: Heiko Stuebner <heiko@sntech.de> | |
1601 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
00250b52 | 1602 | L: linux-rockchip@lists.infradead.org |
9f273c24 | 1603 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git |
08ddbb0a | 1604 | S: Maintained |
541555e9 | 1605 | F: arch/arm/boot/dts/rk3* |
08ddbb0a | 1606 | F: arch/arm/mach-rockchip/ |
541555e9 HS |
1607 | F: drivers/clk/rockchip/ |
1608 | F: drivers/i2c/busses/i2c-rk3x.c | |
08ddbb0a | 1609 | F: drivers/*/*rockchip* |
541555e9 HS |
1610 | F: drivers/*/*/*rockchip* |
1611 | F: sound/soc/rockchip/ | |
b4331b43 | 1612 | N: rockchip |
08ddbb0a | 1613 | |
5bfb937c KK |
1614 | ARM/SAMSUNG EXYNOS ARM ARCHITECTURES |
1615 | M: Kukjin Kim <kgene@kernel.org> | |
e8f98457 | 1616 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> |
efc03ecb | 1617 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7a549d78 | 1618 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
b21477f9 | 1619 | S: Maintained |
6f0589c8 | 1620 | F: arch/arm/boot/dts/s3c* |
e68d7c14 RH |
1621 | F: arch/arm/boot/dts/s5p* |
1622 | F: arch/arm/boot/dts/samsung* | |
6f0589c8 | 1623 | F: arch/arm/boot/dts/exynos* |
d97236e6 | 1624 | F: arch/arm64/boot/dts/exynos/ |
482ce512 | 1625 | F: arch/arm/plat-samsung/ |
769bbb63 HS |
1626 | F: arch/arm/mach-s3c24*/ |
1627 | F: arch/arm/mach-s3c64xx/ | |
5bfb937c KK |
1628 | F: arch/arm/mach-s5p*/ |
1629 | F: arch/arm/mach-exynos*/ | |
1c03274d KK |
1630 | F: drivers/*/*s3c24* |
1631 | F: drivers/*/*/*s3c24* | |
1632 | F: drivers/*/*s3c64xx* | |
1633 | F: drivers/*/*s5pv210* | |
ffd51977 | 1634 | F: drivers/memory/samsung/* |
bf50ddcd | 1635 | F: drivers/soc/samsung/* |
40c76662 | 1636 | F: drivers/spi/spi-s3c* |
d6b9aea6 KK |
1637 | F: Documentation/arm/Samsung/ |
1638 | F: Documentation/devicetree/bindings/arm/samsung/ | |
1639 | F: Documentation/devicetree/bindings/sram/samsung-sram.txt | |
1640 | F: Documentation/devicetree/bindings/power/pd-samsung.txt | |
33d43cdd | 1641 | N: exynos |
f556cb07 | 1642 | |
10ffa964 KP |
1643 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1644 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1645 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1646 | S: Maintained | |
004bbd3c | 1647 | F: arch/arm/mach-s5pv210/ |
10ffa964 | 1648 | |
3ce4ccb6 KD |
1649 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1650 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
774e0362 KD |
1651 | M: Kamil Debski <kamil@wypas.org> |
1652 | M: Andrzej Hajda <a.hajda@samsung.com> | |
3ce4ccb6 KD |
1653 | L: linux-arm-kernel@lists.infradead.org |
1654 | L: linux-media@vger.kernel.org | |
1655 | S: Maintained | |
1656 | F: drivers/media/platform/s5p-g2d/ | |
1657 | ||
e6a476fd MS |
1658 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1659 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
774e0362 | 1660 | M: Kamil Debski <kamil@wypas.org> |
6305902c | 1661 | M: Jeongtae Park <jtp.park@samsung.com> |
774e0362 | 1662 | M: Andrzej Hajda <a.hajda@samsung.com> |
e6a476fd MS |
1663 | L: linux-arm-kernel@lists.infradead.org |
1664 | L: linux-media@vger.kernel.org | |
1665 | S: Maintained | |
934455d7 | 1666 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1667 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd MS |
1668 | |
1669 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT | |
1670 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1671 | M: Tomasz Stanislawski <t.stanislaws@samsung.com> | |
1672 | L: linux-arm-kernel@lists.infradead.org | |
1673 | L: linux-media@vger.kernel.org | |
1674 | S: Maintained | |
90d72ac6 | 1675 | F: drivers/media/platform/s5p-tv/ |
e6a476fd | 1676 | |
1bcbf6f4 KD |
1677 | ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT |
1678 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1679 | L: linux-arm-kernel@lists.infradead.org | |
1680 | L: linux-media@vger.kernel.org | |
1681 | S: Maintained | |
78fc853b | 1682 | F: drivers/staging/media/platform/s5p-cec/ |
1bcbf6f4 | 1683 | |
7d9f9bf4 AP |
1684 | ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT |
1685 | M: Andrzej Pietrasiewicz <andrzej.p@samsung.com> | |
1686 | M: Jacek Anaszewski <j.anaszewski@samsung.com> | |
1687 | L: linux-arm-kernel@lists.infradead.org | |
1688 | L: linux-media@vger.kernel.org | |
1689 | S: Maintained | |
1690 | F: drivers/media/platform/s5p-jpeg/ | |
1691 | ||
d48d38e8 | 1692 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1693 | M: Simon Horman <horms@verge.net.au> |
d48d38e8 | 1694 | M: Magnus Damm <magnus.damm@gmail.com> |
4a121096 | 1695 | L: linux-renesas-soc@vger.kernel.org |
4a121096 | 1696 | Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/ |
5e212598 | 1697 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 | 1698 | S: Supported |
0b514fdb SH |
1699 | F: arch/arm/boot/dts/emev2* |
1700 | F: arch/arm/boot/dts/r7s* | |
1701 | F: arch/arm/boot/dts/r8a* | |
1702 | F: arch/arm/boot/dts/sh* | |
0b514fdb | 1703 | F: arch/arm/configs/shmobile_defconfig |
7a2071c5 | 1704 | F: arch/arm/include/debug/renesas-scif.S |
d48d38e8 | 1705 | F: arch/arm/mach-shmobile/ |
be32bcbb GU |
1706 | F: drivers/soc/renesas/ |
1707 | F: include/linux/soc/renesas/ | |
d48d38e8 | 1708 | |
66314223 | 1709 | ARM/SOCFPGA ARCHITECTURE |
ba2b7d0a | 1710 | M: Dinh Nguyen <dinguyen@opensource.altera.com> |
66314223 DN |
1711 | S: Maintained |
1712 | F: arch/arm/mach-socfpga/ | |
efadb751 DN |
1713 | F: arch/arm/boot/dts/socfpga* |
1714 | F: arch/arm/configs/socfpga_defconfig | |
e68d7c14 | 1715 | F: arch/arm64/boot/dts/altera/ |
ba2b7d0a | 1716 | W: http://www.rocketboards.org |
efadb751 | 1717 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git |
66314223 DN |
1718 | |
1719 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
ba2b7d0a | 1720 | M: Dinh Nguyen <dinguyen@opensource.altera.com> |
66314223 DN |
1721 | S: Maintained |
1722 | F: drivers/clk/socfpga/ | |
1723 | ||
71bcada8 TT |
1724 | ARM/SOCFPGA EDAC SUPPORT |
1725 | M: Thor Thayer <tthayer@opensource.altera.com> | |
1726 | S: Maintained | |
1727 | F: drivers/edac/altera_edac. | |
1728 | ||
65ebcc11 | 1729 | ARM/STI ARCHITECTURE |
a92177ea | 1730 | M: Patrice Chotard <patrice.chotard@st.com> |
65ebcc11 SK |
1731 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1732 | L: kernel@stlinux.com | |
1733 | W: http://www.stlinux.com | |
1734 | S: Maintained | |
1735 | F: arch/arm/mach-sti/ | |
a92177ea | 1736 | F: arch/arm/boot/dts/sti* |
b8e31bf3 | 1737 | F: drivers/char/hw_random/st-rng.c |
a92177ea | 1738 | F: drivers/clocksource/arm_global_timer.c |
82805d1b | 1739 | F: drivers/clocksource/clksrc_st_lpc.c |
1d4b42bc | 1740 | F: drivers/cpufreq/sti-cpufreq.c |
a92177ea | 1741 | F: drivers/i2c/busses/i2c-st.c |
346e2e4a | 1742 | F: drivers/media/rc/st_rc.c |
95d66b16 | 1743 | F: drivers/media/platform/sti/c8sectpfe/ |
f53b2bff | 1744 | F: drivers/mmc/host/sdhci-st.c |
e95cf393 PG |
1745 | F: drivers/phy/phy-miphy28lp.c |
1746 | F: drivers/phy/phy-miphy365x.c | |
6da969a5 | 1747 | F: drivers/phy/phy-stih407-usb.c |
26389c78 | 1748 | F: drivers/phy/phy-stih41x-usb.c |
346e2e4a | 1749 | F: drivers/pinctrl/pinctrl-st.c |
aac22524 | 1750 | F: drivers/remoteproc/st_remoteproc.c |
346e2e4a | 1751 | F: drivers/reset/sti/ |
db4112e6 | 1752 | F: drivers/rtc/rtc-st-lpc.c |
346e2e4a | 1753 | F: drivers/tty/serial/st-asc.c |
eb11adab | 1754 | F: drivers/usb/dwc3/dwc3-st.c |
62f6f086 PG |
1755 | F: drivers/usb/host/ehci-st.c |
1756 | F: drivers/usb/host/ohci-st.c | |
db4112e6 | 1757 | F: drivers/watchdog/st_lpc_wdt.c |
daac6f86 | 1758 | F: drivers/ata/ahci_st.c |
65ebcc11 | 1759 | |
ee6e7879 MC |
1760 | ARM/STM32 ARCHITECTURE |
1761 | M: Maxime Coquelin <mcoquelin.stm32@gmail.com> | |
8ca2cf2c | 1762 | M: Alexandre Torgue <alexandre.torgue@st.com> |
ee6e7879 MC |
1763 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1764 | S: Maintained | |
1765 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git | |
1766 | N: stm32 | |
1767 | F: drivers/clocksource/armv7m_systick.c | |
1768 | ||
d6de5b02 MG |
1769 | ARM/TANGO ARCHITECTURE |
1770 | M: Marc Gonzalez <marc_gonzalez@sigmadesigns.com> | |
1771 | L: linux-arm-kernel@lists.infradead.org | |
1772 | S: Maintained | |
e2bd0d37 | 1773 | N: tango |
d6de5b02 | 1774 | |
2b7a52a4 | 1775 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1776 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1777 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1778 | S: Maintained |
1779 | ||
1bbd7089 | 1780 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1781 | M: "Mark F. Brown" <mark.brown314@gmail.com> |
1bbd7089 MB |
1782 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1783 | S: Maintained | |
1784 | ||
2b7a52a4 | 1785 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1786 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1787 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1788 | S: Maintained |
1789 | ||
98ad6e3b | 1790 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1791 | M: Wan ZongShun <mcuos.com@gmail.com> |
efc03ecb | 1792 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7d2c86b5 JP |
1793 | W: http://www.mcuos.com |
1794 | S: Maintained | |
4e89e8f6 | 1795 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1796 | F: drivers/input/keyboard/w90p910_keypad.c |
1797 | F: drivers/input/touchscreen/w90p910_ts.c | |
1798 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1799 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1800 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1801 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1802 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 | 1803 | F: drivers/usb/host/ehci-w90x900.c |
8a61f013 | 1804 | F: drivers/video/fbdev/nuc900fb.c |
98ad6e3b | 1805 | |
54274d71 | 1806 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1807 | M: Linus Walleij <linus.walleij@linaro.org> |
54274d71 LW |
1808 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1809 | S: Supported | |
1810 | F: arch/arm/mach-u300/ | |
9affbd24 | 1811 | F: drivers/clocksource/timer-u300.c |
54274d71 LW |
1812 | F: drivers/i2c/busses/i2c-stu300.c |
1813 | F: drivers/rtc/rtc-coh901331.c | |
1814 | F: drivers/watchdog/coh901327_wdt.c | |
1815 | F: drivers/dma/coh901318* | |
87572880 LW |
1816 | F: drivers/mfd/ab3100* |
1817 | F: drivers/rtc/rtc-ab3100.c | |
1818 | F: drivers/rtc/rtc-coh901331.c | |
1819 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1820 | |
3d00d04f MY |
1821 | ARM/UNIPHIER ARCHITECTURE |
1822 | M: Masahiro Yamada <yamada.masahiro@socionext.com> | |
1823 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1824 | S: Maintained | |
a3ff83d2 | 1825 | F: arch/arm/boot/dts/uniphier* |
e7ecbc05 | 1826 | F: arch/arm/include/asm/hardware/cache-uniphier.h |
3d00d04f | 1827 | F: arch/arm/mach-uniphier/ |
e7ecbc05 | 1828 | F: arch/arm/mm/cache-uniphier.c |
e1a0ebc8 | 1829 | F: arch/arm64/boot/dts/socionext/ |
4b7f48d3 | 1830 | F: drivers/bus/uniphier-system-bus.c |
dd6fd4a3 | 1831 | F: drivers/i2c/busses/i2c-uniphier* |
a3ff83d2 MY |
1832 | F: drivers/pinctrl/uniphier/ |
1833 | F: drivers/tty/serial/8250/8250_uniphier.c | |
3d00d04f MY |
1834 | N: uniphier |
1835 | ||
87572880 | 1836 | ARM/Ux500 ARM ARCHITECTURE |
e4651a9f | 1837 | M: Linus Walleij <linus.walleij@linaro.org> |
870725d9 SK |
1838 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1839 | S: Maintained | |
1840 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1841 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1842 | F: drivers/dma/ste_dma40* |
e4651a9f | 1843 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1844 | F: drivers/mfd/abx500* |
1845 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1846 | F: drivers/mfd/dbx500* |
1847 | F: drivers/mfd/db8500* | |
ecc265fe JP |
1848 | F: drivers/pinctrl/nomadik/pinctrl-ab* |
1849 | F: drivers/pinctrl/nomadik/pinctrl-nomadik* | |
87572880 | 1850 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1851 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1852 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1853 | |
e93fde28 UH |
1854 | ARM/Ux500 CLOCK FRAMEWORK SUPPORT |
1855 | M: Ulf Hansson <ulf.hansson@linaro.org> | |
1856 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1857 | T: git git://git.linaro.org/people/ulfh/clk.git | |
1858 | S: Maintained | |
1859 | F: drivers/clk/ux500/ | |
e93fde28 | 1860 | |
740d93b1 PM |
1861 | ARM/VERSATILE EXPRESS PLATFORM |
1862 | M: Liviu Dudau <liviu.dudau@arm.com> | |
1863 | M: Sudeep Holla <sudeep.holla@arm.com> | |
1864 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
1865 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1866 | S: Maintained | |
1867 | F: arch/arm/boot/dts/vexpress* | |
e68d7c14 | 1868 | F: arch/arm64/boot/dts/arm/ |
740d93b1 PM |
1869 | F: arch/arm/mach-vexpress/ |
1870 | F: */*/vexpress* | |
7e8f403f | 1871 | F: */*/*/vexpress* |
740d93b1 PM |
1872 | F: drivers/clk/versatile/clk-vexpress-osc.c |
1873 | F: drivers/clocksource/versatile.c | |
46a600ea | 1874 | N: mps2 |
740d93b1 | 1875 | |
d4275354 | 1876 | ARM/VFP SUPPORT |
54176cc6 | 1877 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1878 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1879 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
1880 | S: Maintained |
1881 | F: arch/arm/vfp/ | |
1882 | ||
e66b6d8e MV |
1883 | ARM/VOIPAC PXA270 SUPPORT |
1884 | M: Marek Vasut <marek.vasut@gmail.com> | |
1885 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1886 | S: Maintained | |
1887 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1888 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1889 | |
04529fe2 TP |
1890 | ARM/VT8500 ARM ARCHITECTURE |
1891 | M: Tony Prisk <linux@prisktech.co.nz> | |
1892 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1893 | S: Maintained | |
1894 | F: arch/arm/mach-vt8500/ | |
41fd91b4 | 1895 | F: drivers/clocksource/vt8500_timer.c |
560746eb | 1896 | F: drivers/i2c/busses/i2c-wmt.c |
41fd91b4 TP |
1897 | F: drivers/mmc/host/wmt-sdmmc.c |
1898 | F: drivers/pwm/pwm-vt8500.c | |
1899 | F: drivers/rtc/rtc-vt8500.c | |
1900 | F: drivers/tty/serial/vt8500_serial.c | |
4f31102b | 1901 | F: drivers/usb/host/ehci-platform.c |
41fd91b4 | 1902 | F: drivers/usb/host/uhci-platform.c |
8a61f013 JH |
1903 | F: drivers/video/fbdev/vt8500lcdfb.* |
1904 | F: drivers/video/fbdev/wm8505fb* | |
1905 | F: drivers/video/fbdev/wmt_ge_rops.* | |
04529fe2 | 1906 | |
e66b6d8e MV |
1907 | ARM/ZIPIT Z2 SUPPORT |
1908 | M: Marek Vasut <marek.vasut@gmail.com> | |
1909 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1910 | S: Maintained | |
1911 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1912 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1913 | |
5ecc4b53 JN |
1914 | ARM/ZTE ARCHITECTURE |
1915 | M: Jun Nie <jun.nie@linaro.org> | |
1916 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1917 | S: Maintained | |
1918 | F: arch/arm/mach-zx/ | |
1919 | F: drivers/clk/zte/ | |
1920 | F: Documentation/devicetree/bindings/arm/zte.txt | |
1921 | F: Documentation/devicetree/bindings/clock/zx296702-clk.txt | |
1922 | ||
51f29d44 MS |
1923 | ARM/ZYNQ ARCHITECTURE |
1924 | M: Michal Simek <michal.simek@xilinx.com> | |
f0fd9ad8 | 1925 | R: Sören Brinkmann <soren.brinkmann@xilinx.com> |
51f29d44 MS |
1926 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1927 | W: http://wiki.xilinx.com | |
d6448b76 | 1928 | T: git https://github.com/Xilinx/linux-xlnx.git |
51f29d44 MS |
1929 | S: Supported |
1930 | F: arch/arm/mach-zynq/ | |
bd2a337a | 1931 | F: drivers/cpuidle/cpuidle-zynq.c |
fb9d4959 | 1932 | F: drivers/block/xsysace.c |
c2fd4e38 MS |
1933 | N: zynq |
1934 | N: xilinx | |
1935 | F: drivers/clocksource/cadence_ttc_timer.c | |
df8eb569 | 1936 | F: drivers/i2c/busses/i2c-cadence.c |
e3ec3a3d | 1937 | F: drivers/mmc/host/sdhci-of-arasan.c |
ae9b56e3 | 1938 | F: drivers/edac/synopsys_edac.c |
51f29d44 | 1939 | |
48ec83bc | 1940 | ARM SMMU DRIVERS |
b8f9879e | 1941 | M: Will Deacon <will.deacon@arm.com> |
c8bff3a6 | 1942 | R: Robin Murphy <robin.murphy@arm.com> |
b8f9879e WD |
1943 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1944 | S: Maintained | |
1945 | F: drivers/iommu/arm-smmu.c | |
48ec83bc | 1946 | F: drivers/iommu/arm-smmu-v3.c |
e1d3c0fd | 1947 | F: drivers/iommu/io-pgtable-arm.c |
c8bff3a6 | 1948 | F: drivers/iommu/io-pgtable-arm-v7s.c |
b8f9879e | 1949 | |
38074229 CM |
1950 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1951 | M: Catalin Marinas <catalin.marinas@arm.com> | |
d19766ec | 1952 | M: Will Deacon <will.deacon@arm.com> |
38074229 | 1953 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9f273c24 | 1954 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git |
38074229 CM |
1955 | S: Maintained |
1956 | F: arch/arm64/ | |
d19766ec | 1957 | F: Documentation/arm64/ |
38074229 | 1958 | |
9d7005f9 LP |
1959 | AS3645A LED FLASH CONTROLLER DRIVER |
1960 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
1961 | L: linux-media@vger.kernel.org | |
1962 | T: git git://linuxtv.org/media_tree.git | |
1963 | S: Maintained | |
1964 | F: drivers/media/i2c/as3645a.c | |
b5dcee22 | 1965 | F: include/media/i2c/as3645a.h |
9d7005f9 | 1966 | |
d58de038 GJ |
1967 | ASC7621 HARDWARE MONITOR DRIVER |
1968 | M: George Joseph <george.joseph@fairview5.com> | |
968ce1b1 | 1969 | L: linux-hwmon@vger.kernel.org |
d58de038 GJ |
1970 | S: Maintained |
1971 | F: Documentation/hwmon/asc7621 | |
1972 | F: drivers/hwmon/asc7621.c | |
1973 | ||
b229ece9 | 1974 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 1975 | M: Corentin Chary <corentin.chary@gmail.com> |
1da177e4 | 1976 | L: acpi4asus-user@lists.sourceforge.net |
d0944853 | 1977 | L: platform-driver-x86@vger.kernel.org |
76593d6f | 1978 | W: http://acpi4asus.sf.net |
85091b71 | 1979 | S: Maintained |
b229ece9 CC |
1980 | F: drivers/platform/x86/asus*.c |
1981 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 1982 | |
f6a6bbae JPRV |
1983 | ASUS WIRELESS RADIO CONTROL DRIVER |
1984 | M: João Paulo Rechi Vita <jprvita@gmail.com> | |
1985 | L: platform-driver-x86@vger.kernel.org | |
1986 | S: Maintained | |
1987 | F: drivers/platform/x86/asus-wireless.c | |
1988 | ||
75aeddd1 DH |
1989 | ASYMMETRIC KEYS |
1990 | M: David Howells <dhowells@redhat.com> | |
1991 | L: keyrings@vger.kernel.org | |
1992 | S: Maintained | |
1993 | F: Documentation/crypto/asymmetric-keys.txt | |
1994 | F: include/linux/verification.h | |
1995 | F: include/crypto/public_key.h | |
1996 | F: include/crypto/pkcs7.h | |
1997 | F: crypto/asymmetric_keys/ | |
1998 | ||
953a6479 | 1999 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
08223d80 | 2000 | R: Dan Williams <dan.j.williams@intel.com> |
b3e5f263 | 2001 | W: http://sourceforge.net/projects/xscaleiop |
08223d80 | 2002 | S: Odd fixes |
679655da JP |
2003 | F: Documentation/crypto/async-tx-api.txt |
2004 | F: crypto/async_tx/ | |
2005 | F: drivers/dma/ | |
2006 | F: include/linux/dmaengine.h | |
2007 | F: include/linux/async_tx.h | |
b3e5f263 | 2008 | |
a1867d36 | 2009 | AT24 EEPROM DRIVER |
14d77c4d | 2010 | M: Wolfram Sang <wsa@the-dreams.de> |
a1867d36 WS |
2011 | L: linux-i2c@vger.kernel.org |
2012 | S: Maintained | |
2013 | F: drivers/misc/eeprom/at24.c | |
25f73ed5 | 2014 | F: include/linux/platform_data/at24.h |
a1867d36 | 2015 | |
e7839f25 | 2016 | ATA OVER ETHERNET (AOE) DRIVER |
fb903811 EC |
2017 | M: "Ed L. Cashin" <ed.cashin@acm.org> |
2018 | W: http://www.openaoe.org/ | |
1da177e4 | 2019 | S: Supported |
679655da JP |
2020 | F: Documentation/aoe/ |
2021 | F: drivers/block/aoe/ | |
1da177e4 | 2022 | |
aad7a211 AB |
2023 | ATHEROS 71XX/9XXX GPIO DRIVER |
2024 | M: Alban Bedel <albeu@free.fr> | |
2025 | W: https://github.com/AlbanBedel/linux | |
2026 | T: git git://github.com/AlbanBedel/linux | |
2027 | S: Maintained | |
2028 | F: drivers/gpio/gpio-ath79.c | |
2029 | F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt | |
2030 | ||
9a10a870 | 2031 | ATHEROS ATH GENERIC UTILITIES |
f726ee65 | 2032 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
9a10a870 JP |
2033 | L: linux-wireless@vger.kernel.org |
2034 | S: Supported | |
2035 | F: drivers/net/wireless/ath/* | |
2036 | ||
fa1c114f | 2037 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
2038 | M: Jiri Slaby <jirislaby@gmail.com> |
2039 | M: Nick Kossifidis <mickflemm@gmail.com> | |
f726ee65 | 2040 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
fa1c114f | 2041 | L: linux-wireless@vger.kernel.org |
72c706b7 | 2042 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 2043 | S: Maintained |
fa451753 | 2044 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 2045 | |
12e62d6f KV |
2046 | ATHEROS ATH6KL WIRELESS DRIVER |
2047 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
2048 | L: linux-wireless@vger.kernel.org | |
2049 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
9f273c24 | 2050 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git |
12e62d6f KV |
2051 | S: Supported |
2052 | F: drivers/net/wireless/ath/ath6kl/ | |
2053 | ||
2be7d22f | 2054 | WILOCITY WIL6210 WIRELESS DRIVER |
23ba8a66 | 2055 | M: Maya Erez <qca_merez@qca.qualcomm.com> |
2be7d22f VK |
2056 | L: linux-wireless@vger.kernel.org |
2057 | L: wil6210@qca.qualcomm.com | |
2058 | S: Supported | |
2059 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
2060 | F: drivers/net/wireless/ath/wil6210/ | |
dba4b74d | 2061 | F: include/uapi/linux/wil6210_uapi.h |
2be7d22f | 2062 | |
1d7e1e6b CL |
2063 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
2064 | M: Christian Lamparter <chunkeey@googlemail.com> | |
2065 | L: linux-wireless@vger.kernel.org | |
2066 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
2067 | S: Maintained | |
2068 | F: drivers/net/wireless/ath/carl9170/ | |
2069 | ||
2c2a6172 LT |
2070 | ATK0110 HWMON DRIVER |
2071 | M: Luca Tettamanti <kronos.it@gmail.com> | |
968ce1b1 | 2072 | L: linux-hwmon@vger.kernel.org |
2c2a6172 LT |
2073 | S: Maintained |
2074 | F: drivers/hwmon/asus_atk0110.c | |
2075 | ||
6f69a6d7 | 2076 | ATI_REMOTE2 DRIVER |
8b58be88 | 2077 | M: Ville Syrjala <syrjala@sci.fi> |
6f69a6d7 | 2078 | S: Maintained |
679655da | 2079 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 2080 | |
7ae115b4 | 2081 | ATLX ETHERNET DRIVERS |
8b58be88 | 2082 | M: Jay Cliburn <jcliburn@gmail.com> |
cb2f33e9 | 2083 | M: Chris Snook <chris.snook@gmail.com> |
e443e383 | 2084 | L: netdev@vger.kernel.org |
8d5ca6ec JC |
2085 | W: http://sourceforge.net/projects/atl1 |
2086 | W: http://atl1.sourceforge.net | |
2087 | S: Maintained | |
2b133ad6 | 2088 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 2089 | |
1da177e4 | 2090 | ATM |
366c1bd1 | 2091 | M: Chas Williams <3chas3@gmail.com> |
476604de | 2092 | L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers) |
44ae98b5 | 2093 | L: netdev@vger.kernel.org |
1da177e4 LT |
2094 | W: http://linux-atm.sourceforge.net |
2095 | S: Maintained | |
679655da JP |
2096 | F: drivers/atm/ |
2097 | F: include/linux/atm* | |
c117ab84 | 2098 | F: include/uapi/linux/atm* |
1da177e4 | 2099 | |
04ac2f46 | 2100 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 2101 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
04ac2f46 NF |
2102 | S: Maintained |
2103 | F: drivers/mmc/host/atmel-mci.c | |
04ac2f46 | 2104 | |
a1cfac48 | 2105 | ATMEL AT91 / AT32 SERIAL DRIVER |
a02875a6 | 2106 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
a1cfac48 | 2107 | S: Supported |
df621252 | 2108 | F: drivers/tty/serial/atmel_serial.c |
a1cfac48 | 2109 | |
f80cb488 NF |
2110 | ATMEL AT91 SAMA5D2-Compatible Shutdown Controller |
2111 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
2112 | S: Supported | |
2113 | F: drivers/power/reset/at91-sama5d2_shdwc.c | |
2114 | ||
b9cd7a25 LD |
2115 | ATMEL SAMA5D2 ADC DRIVER |
2116 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
2117 | L: linux-iio@vger.kernel.org | |
2118 | S: Supported | |
2119 | F: drivers/iio/adc/at91-sama5d2_adc.c | |
2120 | ||
dfae90ed | 2121 | ATMEL Audio ALSA driver |
3a82002c | 2122 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
dfae90ed BS |
2123 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
2124 | S: Supported | |
2125 | F: sound/soc/atmel | |
2126 | ||
b414dc16 NF |
2127 | ATMEL DMA DRIVER |
2128 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
2129 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
2130 | S: Supported | |
2131 | F: drivers/dma/at_hdmac.c | |
2132 | F: drivers/dma/at_hdmac_regs.h | |
6f0d65af | 2133 | F: include/linux/platform_data/dma-atmel.h |
b414dc16 | 2134 | |
6bd0f436 LD |
2135 | ATMEL XDMA DRIVER |
2136 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
2137 | L: linux-arm-kernel@lists.infradead.org | |
2138 | L: dmaengine@vger.kernel.org | |
2139 | S: Supported | |
2140 | F: drivers/dma/at_xdmac.c | |
2141 | ||
888f2804 LD |
2142 | ATMEL I2C DRIVER |
2143 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
2144 | L: linux-i2c@vger.kernel.org | |
2145 | S: Supported | |
2146 | F: drivers/i2c/busses/i2c-at91.c | |
2147 | ||
15515545 | 2148 | ATMEL ISI DRIVER |
50cb2efa | 2149 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
15515545 JW |
2150 | L: linux-media@vger.kernel.org |
2151 | S: Supported | |
f2294c2d | 2152 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
2153 | F: include/media/atmel-isi.h |
2154 | ||
8f4c79ce | 2155 | ATMEL LCDFB DRIVER |
8b58be88 | 2156 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
c69f677c | 2157 | L: linux-fbdev@vger.kernel.org |
8f4c79ce | 2158 | S: Maintained |
8a61f013 | 2159 | F: drivers/video/fbdev/atmel_lcdfb.c |
679655da | 2160 | F: include/video/atmel_lcdc.h |
8f4c79ce | 2161 | |
89e5785f | 2162 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 2163 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
89e5785f | 2164 | S: Supported |
9f2f381f | 2165 | F: drivers/net/ethernet/cadence/ |
89e5785f | 2166 | |
5cbac98a | 2167 | ATMEL NAND DRIVER |
50cb2efa NF |
2168 | M: Wenyou Yang <wenyou.yang@atmel.com> |
2169 | M: Josh Wu <rainyfeeling@outlook.com> | |
5cbac98a JW |
2170 | L: linux-mtd@lists.infradead.org |
2171 | S: Supported | |
2172 | F: drivers/mtd/nand/atmel_nand* | |
2173 | ||
05c441ef | 2174 | ATMEL SDMMC DRIVER |
2175 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
2176 | L: linux-mmc@vger.kernel.org | |
2177 | S: Supported | |
2178 | F: drivers/mmc/host/sdhci-of-at91.c | |
2179 | ||
754ce4f2 | 2180 | ATMEL SPI DRIVER |
a02875a6 | 2181 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
754ce4f2 | 2182 | S: Supported |
9df92e6c | 2183 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 2184 | |
0ef09015 | 2185 | ATMEL SSC DRIVER |
03515f32 | 2186 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
0ef09015 BS |
2187 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2188 | S: Supported | |
2189 | F: drivers/misc/atmel-ssc.c | |
2190 | F: include/linux/atmel-ssc.h | |
2191 | ||
e9cb1c5a NF |
2192 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
2193 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
2194 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
2195 | S: Supported | |
2196 | F: drivers/misc/atmel_tclib.c | |
2197 | F: drivers/clocksource/tcb_clksrc.c | |
2198 | ||
914a3f3b | 2199 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
2200 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
2201 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
914a3f3b | 2202 | S: Supported |
faf2e1db | 2203 | F: drivers/usb/gadget/udc/atmel_usba_udc.* |
914a3f3b | 2204 | |
1da177e4 | 2205 | ATMEL WIRELESS DRIVER |
8b58be88 | 2206 | M: Simon Kelley <simon@thekelleys.org.uk> |
724c6b35 | 2207 | L: linux-wireless@vger.kernel.org |
1da177e4 LT |
2208 | W: http://www.thekelleys.org.uk/atmel |
2209 | W: http://atmelwlandriver.sourceforge.net/ | |
2210 | S: Maintained | |
30fe0f9b | 2211 | F: drivers/net/wireless/atmel/atmel* |
1da177e4 | 2212 | |
a14c0f8f ND |
2213 | ATMEL MAXTOUCH DRIVER |
2214 | M: Nick Dyer <nick.dyer@itdev.co.uk> | |
2215 | T: git git://github.com/atmel-maxtouch/linux.git | |
2216 | S: Supported | |
2217 | F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt | |
2218 | F: drivers/input/touchscreen/atmel_mxt_ts.c | |
2219 | F: include/linux/platform_data/atmel_mxt_ts.h | |
2220 | ||
26780d9e | 2221 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
b75f0050 JP |
2222 | M: Bradley Grove <linuxdrivers@attotech.com> |
2223 | L: linux-scsi@vger.kernel.org | |
2224 | W: http://www.attotech.com | |
2225 | S: Supported | |
2226 | F: drivers/scsi/esas2r | |
26780d9e | 2227 | |
bc6e17b8 SS |
2228 | ATUSB IEEE 802.15.4 RADIO DRIVER |
2229 | M: Stefan Schmidt <stefan@osg.samsung.com> | |
2230 | L: linux-wpan@vger.kernel.org | |
2231 | S: Maintained | |
2232 | F: drivers/net/ieee802154/atusb.c | |
2233 | F: drivers/net/ieee802154/atusb.h | |
2234 | F: drivers/net/ieee802154/at86rf230.h | |
2235 | ||
a92b7b80 | 2236 | AUDIT SUBSYSTEM |
915f389d | 2237 | M: Paul Moore <paul@paul-moore.com> |
8b58be88 | 2238 | M: Eric Paris <eparis@redhat.com> |
915f389d | 2239 | L: linux-audit@redhat.com (moderated for non-subscribers) |
ad3f9a22 | 2240 | W: http://people.redhat.com/sgrubb/audit/ |
915f389d | 2241 | T: git git://git.infradead.org/users/pcmoore/audit |
a92b7b80 | 2242 | S: Maintained |
679655da | 2243 | F: include/linux/audit.h |
c117ab84 | 2244 | F: include/uapi/linux/audit.h |
679655da | 2245 | F: kernel/audit* |
a92b7b80 | 2246 | |
70e84049 | 2247 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 2248 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2249 | W: http://miguelojeda.es/auxdisplay.htm |
2250 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2251 | S: Maintained |
679655da JP |
2252 | F: drivers/auxdisplay/ |
2253 | F: include/linux/cfag12864b.h | |
70e84049 | 2254 | |
5f97f7f9 | 2255 | AVR32 ARCHITECTURE |
e336f61f HCE |
2256 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
2257 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
5f97f7f9 | 2258 | W: http://www.atmel.com/products/AVR32/ |
249d9d9d | 2259 | W: http://mirror.egtvedt.no/avr32linux.org/ |
5f97f7f9 | 2260 | W: http://avrfreaks.net/ |
e336f61f | 2261 | S: Maintained |
679655da | 2262 | F: arch/avr32/ |
5f97f7f9 HS |
2263 | |
2264 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
2265 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
2266 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
2267 | S: Maintained | |
679655da | 2268 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 2269 | |
1da177e4 | 2270 | AX.25 NETWORK LAYER |
8b58be88 | 2271 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 2272 | L: linux-hams@vger.kernel.org |
d34cb28a | 2273 | W: http://www.linux-ax25.org/ |
1da177e4 | 2274 | S: Maintained |
c117ab84 | 2275 | F: include/uapi/linux/ax25.h |
679655da JP |
2276 | F: include/net/ax25.h |
2277 | F: net/ax25/ | |
1da177e4 | 2278 | |
d5269395 | 2279 | AZ6007 DVB DRIVER |
5dc8a864 MCC |
2280 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
2281 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
d5269395 | 2282 | L: linux-media@vger.kernel.org |
a825eaec | 2283 | W: https://linuxtv.org |
d5269395 MCC |
2284 | T: git git://linuxtv.org/media_tree.git |
2285 | S: Maintained | |
2286 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
2287 | ||
6777376e HV |
2288 | AZTECH FM RADIO RECEIVER DRIVER |
2289 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2290 | L: linux-media@vger.kernel.org | |
2291 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 2292 | W: https://linuxtv.org |
6777376e HV |
2293 | S: Maintained |
2294 | F: drivers/media/radio/radio-aztech* | |
2295 | ||
e2d1d6c0 | 2296 | B43 WIRELESS DRIVER |
e2d1d6c0 | 2297 | L: linux-wireless@vger.kernel.org |
ed072f9e | 2298 | L: b43-dev@lists.infradead.org |
491b26b4 | 2299 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
8a72ed6f | 2300 | S: Odd Fixes |
58619b14 | 2301 | F: drivers/net/wireless/broadcom/b43/ |
e2d1d6c0 RD |
2302 | |
2303 | B43LEGACY WIRELESS DRIVER | |
8b58be88 | 2304 | M: Larry Finger <Larry.Finger@lwfinger.net> |
e2d1d6c0 | 2305 | L: linux-wireless@vger.kernel.org |
ed072f9e | 2306 | L: b43-dev@lists.infradead.org |
491b26b4 | 2307 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 2308 | S: Maintained |
423e3ce3 | 2309 | F: drivers/net/wireless/broadcom/b43legacy/ |
e2d1d6c0 | 2310 | |
300abeb5 | 2311 | BACKLIGHT CLASS/SUBSYSTEM |
b7701755 | 2312 | M: Jingoo Han <jingoohan1@gmail.com> |
70d14fcf | 2313 | M: Lee Jones <lee.jones@linaro.org> |
9f273c24 | 2314 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git |
300abeb5 | 2315 | S: Maintained |
679655da JP |
2316 | F: drivers/video/backlight/ |
2317 | F: include/linux/backlight.h | |
300abeb5 | 2318 | |
c6c8fea2 | 2319 | BATMAN ADVANCED |
207df49e | 2320 | M: Marek Lindner <mareklindner@neomailbox.ch> |
c679ff8f | 2321 | M: Simon Wunderlich <sw@simonwunderlich.de> |
ca8e940c | 2322 | M: Antonio Quartulli <a@unstable.cc> |
1584f41f | 2323 | L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers) |
7b5e7396 | 2324 | W: https://www.open-mesh.org/ |
8b823170 | 2325 | Q: https://patchwork.open-mesh.org/project/batman/list/ |
c6c8fea2 | 2326 | S: Maintained |
286ddfb0 SE |
2327 | F: Documentation/ABI/testing/sysfs-class-net-batman-adv |
2328 | F: Documentation/ABI/testing/sysfs-class-net-mesh | |
2329 | F: Documentation/networking/batman-adv.txt | |
09748a22 | 2330 | F: include/uapi/linux/batman_adv.h |
c6c8fea2 SE |
2331 | F: net/batman-adv/ |
2332 | ||
e2d1d6c0 | 2333 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 2334 | M: Thomas Sailer <t.sailer@alumni.ethz.ch> |
e2d1d6c0 RD |
2335 | L: linux-hams@vger.kernel.org |
2336 | W: http://www.baycom.org/~tom/ham/ham.html | |
2337 | S: Maintained | |
679655da | 2338 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 2339 | |
cafe5635 | 2340 | BCACHE (BLOCK LAYER CACHE) |
d1aa1ab3 | 2341 | M: Kent Overstreet <kent.overstreet@gmail.com> |
cafe5635 KO |
2342 | L: linux-bcache@vger.kernel.org |
2343 | W: http://bcache.evilpiepirate.org | |
4d1034eb | 2344 | S: Orphan |
cafe5635 KO |
2345 | F: drivers/md/bcache/ |
2346 | ||
04bd844a HV |
2347 | BDISP ST MEDIA DRIVER |
2348 | M: Fabien Dessenne <fabien.dessenne@st.com> | |
2349 | L: linux-media@vger.kernel.org | |
2350 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 2351 | W: https://linuxtv.org |
04bd844a HV |
2352 | S: Supported |
2353 | F: drivers/media/platform/sti/bdisp | |
2354 | ||
e2d1d6c0 | 2355 | BEFS FILE SYSTEM |
db4ad036 LB |
2356 | M: Luis de Bethencourt <luisbg@osg.samsung.com> |
2357 | M: Salah Triki <salah.triki@gmail.com> | |
2358 | S: Maintained | |
2359 | T: git git://github.com/luisbg/linux-befs.git | |
679655da JP |
2360 | F: Documentation/filesystems/befs.txt |
2361 | F: fs/befs/ | |
e2d1d6c0 | 2362 | |
564ee360 | 2363 | BECKHOFF CX5020 ETHERCAT MASTER DRIVER |
49e7d9df JP |
2364 | M: Dariusz Marcinkiewicz <reksio@newterm.pl> |
2365 | L: netdev@vger.kernel.org | |
2366 | S: Maintained | |
2367 | F: drivers/net/ethernet/ec_bhf.c | |
564ee360 | 2368 | |
e2d1d6c0 | 2369 | BFS FILE SYSTEM |
8b58be88 | 2370 | M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk> |
e2d1d6c0 | 2371 | S: Maintained |
679655da JP |
2372 | F: Documentation/filesystems/bfs.txt |
2373 | F: fs/bfs/ | |
c117ab84 | 2374 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 2375 | |
1394f032 | 2376 | BLACKFIN ARCHITECTURE |
a4edbc10 | 2377 | M: Steven Miao <realmz6@gmail.com> |
b3fe92b0 | 2378 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1443176f | 2379 | T: git git://git.code.sf.net/p/adi-linux/code |
e3b2d3f3 BW |
2380 | W: http://blackfin.uclinux.org |
2381 | S: Supported | |
679655da | 2382 | F: arch/blackfin/ |
566da5b2 | 2383 | |
e190d6b1 | 2384 | BLACKFIN EMAC DRIVER |
b3fe92b0 | 2385 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e190d6b1 BW |
2386 | W: http://blackfin.uclinux.org |
2387 | S: Supported | |
7b35f033 | 2388 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 2389 | |
566da5b2 | 2390 | BLACKFIN RTC DRIVER |
b3fe92b0 | 2391 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
566da5b2 MF |
2392 | W: http://blackfin.uclinux.org |
2393 | S: Supported | |
679655da | 2394 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 2395 | |
936ed49a | 2396 | BLACKFIN SDH DRIVER |
109ec8c3 | 2397 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2398 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
936ed49a MF |
2399 | W: http://blackfin.uclinux.org |
2400 | S: Supported | |
2401 | F: drivers/mmc/host/bfin_sdh.c | |
2402 | ||
1394f032 | 2403 | BLACKFIN SERIAL DRIVER |
8b58be88 | 2404 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2405 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e3b2d3f3 BW |
2406 | W: http://blackfin.uclinux.org |
2407 | S: Supported | |
8460241e | 2408 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 2409 | |
1e6d320f | 2410 | BLACKFIN WATCHDOG DRIVER |
b3fe92b0 | 2411 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1e6d320f BW |
2412 | W: http://blackfin.uclinux.org |
2413 | S: Supported | |
679655da | 2414 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 2415 | |
d24ecfcc | 2416 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 2417 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2418 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
d24ecfcc BW |
2419 | W: http://blackfin.uclinux.org/ |
2420 | S: Supported | |
679655da | 2421 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 2422 | |
1e204377 SJ |
2423 | BLACKFIN MEDIA DRIVER |
2424 | M: Scott Jiang <scott.jiang.linux@gmail.com> | |
b3fe92b0 | 2425 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1e204377 SJ |
2426 | W: http://blackfin.uclinux.org/ |
2427 | S: Supported | |
2428 | F: drivers/media/platform/blackfin/ | |
2429 | F: drivers/media/i2c/adv7183* | |
2430 | F: drivers/media/i2c/vs6624* | |
2431 | ||
b54cf35a JSM |
2432 | BLINKM RGB LED DRIVER |
2433 | M: Jan-Simon Moeller <jansimon.moeller@gmx.de> | |
2434 | S: Maintained | |
2435 | F: drivers/leds/leds-blinkm.c | |
2436 | ||
1da177e4 | 2437 | BLOCK LAYER |
8b58be88 | 2438 | M: Jens Axboe <axboe@kernel.dk> |
82c426e0 | 2439 | L: linux-block@vger.kernel.org |
08deed1e | 2440 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 2441 | S: Maintained |
679655da | 2442 | F: block/ |
ae11f7ef | 2443 | F: kernel/trace/blktrace.c |
1da177e4 | 2444 | |
2b54aaef | 2445 | BLOCK2MTD DRIVER |
8b58be88 | 2446 | M: Joern Engel <joern@lazybastard.org> |
2b54aaef JE |
2447 | L: linux-mtd@lists.infradead.org |
2448 | S: Maintained | |
679655da | 2449 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 2450 | |
63fbd24e | 2451 | BLUETOOTH DRIVERS |
8b58be88 | 2452 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 2453 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 2454 | M: Johan Hedberg <johan.hedberg@gmail.com> |
781c2844 | 2455 | L: linux-bluetooth@vger.kernel.org |
63fbd24e | 2456 | W: http://www.bluez.org/ |
22e7a424 MH |
2457 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
2458 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 2459 | S: Maintained |
679655da | 2460 | F: drivers/bluetooth/ |
1da177e4 | 2461 | |
63fbd24e | 2462 | BLUETOOTH SUBSYSTEM |
8b58be88 | 2463 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 2464 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 2465 | M: Johan Hedberg <johan.hedberg@gmail.com> |
63fbd24e MH |
2466 | L: linux-bluetooth@vger.kernel.org |
2467 | W: http://www.bluez.org/ | |
22e7a424 MH |
2468 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
2469 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 2470 | S: Maintained |
679655da JP |
2471 | F: net/bluetooth/ |
2472 | F: include/net/bluetooth/ | |
1da177e4 LT |
2473 | |
2474 | BONDING DRIVER | |
79b30750 | 2475 | M: Jay Vosburgh <j.vosburgh@gmail.com> |
898602a0 | 2476 | M: Veaceslav Falico <vfalico@gmail.com> |
31639b94 | 2477 | M: Andy Gospodarek <gospo@cumulusnetworks.com> |
a6c36ee6 | 2478 | L: netdev@vger.kernel.org |
ce00f85c JC |
2479 | W: http://sourceforge.net/projects/bonding/ |
2480 | S: Supported | |
679655da | 2481 | F: drivers/net/bonding/ |
c117ab84 | 2482 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 2483 | |
b5f4df34 AS |
2484 | BPF (Safe dynamic programs and tools) |
2485 | M: Alexei Starovoitov <ast@kernel.org> | |
2486 | L: netdev@vger.kernel.org | |
2487 | L: linux-kernel@vger.kernel.org | |
2488 | S: Supported | |
2489 | F: kernel/bpf/ | |
2490 | ||
39105890 | 2491 | BROADCOM B44 10/100 ETHERNET DRIVER |
8b58be88 | 2492 | M: Gary Zambrano <zambrano@broadcom.com> |
39105890 GZ |
2493 | L: netdev@vger.kernel.org |
2494 | S: Supported | |
adfc5217 | 2495 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 2496 | |
967dd82f FF |
2497 | BROADCOM B53 ETHERNET SWITCH DRIVER |
2498 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2499 | L: netdev@vger.kernel.org | |
2500 | L: openwrt-devel@lists.openwrt.org (subscribers-only) | |
2501 | S: Supported | |
2502 | F: drivers/net/dsa/b53/* | |
2503 | F: include/linux/platform_data/b53.h | |
2504 | ||
32ec90d5 FF |
2505 | BROADCOM GENET ETHERNET DRIVER |
2506 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2507 | L: netdev@vger.kernel.org | |
2508 | S: Supported | |
2509 | F: drivers/net/ethernet/broadcom/genet/ | |
2510 | ||
948c51e6 | 2511 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
f1d1baeb JK |
2512 | M: Sony Chacko <sony.chacko@qlogic.com> |
2513 | M: Dept-HSGLinuxNICDev@qlogic.com | |
948c51e6 MC |
2514 | L: netdev@vger.kernel.org |
2515 | S: Supported | |
adfc5217 JK |
2516 | F: drivers/net/ethernet/broadcom/bnx2.* |
2517 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 2518 | |
4d9d2cb0 | 2519 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
08f6dd89 | 2520 | M: Ariel Elior <ariel.elior@qlogic.com> |
4d9d2cb0 ET |
2521 | L: netdev@vger.kernel.org |
2522 | S: Supported | |
adfc5217 | 2523 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 2524 | |
90f4c594 | 2525 | BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE |
f18cf050 | 2526 | M: Florian Fainelli <f.fainelli@gmail.com> |
d3cc2e86 FF |
2527 | M: Ray Jui <rjui@broadcom.com> |
2528 | M: Scott Branden <sbranden@broadcom.com> | |
086f4704 | 2529 | M: bcm-kernel-feedback-list@broadcom.com |
90f4c594 | 2530 | T: git git://github.com/broadcom/mach-bcm |
af4b8e37 | 2531 | S: Maintained |
ccf62f5a JM |
2532 | N: bcm281* |
2533 | N: bcm113* | |
2534 | N: bcm216* | |
2535 | N: kona | |
af4b8e37 | 2536 | F: arch/arm/mach-bcm/ |
af4b8e37 | 2537 | |
9209bec4 | 2538 | BROADCOM BCM2835 ARM ARCHITECTURE |
f680f25c | 2539 | M: Stephen Warren <swarren@wwwdotorg.org> |
8bcdd929 | 2540 | M: Lee Jones <lee@kernel.org> |
10b9e887 | 2541 | M: Eric Anholt <eric@anholt.net> |
f680f25c | 2542 | L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers) |
82481129 | 2543 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
8bcdd929 | 2544 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git |
f680f25c | 2545 | S: Maintained |
9209bec4 | 2546 | N: bcm2835 |
f680f25c | 2547 | |
5564f092 RM |
2548 | BROADCOM BCM47XX MIPS ARCHITECTURE |
2549 | M: Hauke Mehrtens <hauke@hauke-m.de> | |
2550 | M: Rafał Miłecki <zajec5@gmail.com> | |
2551 | L: linux-mips@linux-mips.org | |
2552 | S: Maintained | |
7ad2410c | 2553 | F: Documentation/devicetree/bindings/mips/brcm/ |
5564f092 RM |
2554 | F: arch/mips/bcm47xx/* |
2555 | F: arch/mips/include/asm/mach-bcm47xx/* | |
2556 | ||
9209bec4 | 2557 | BROADCOM BCM5301X ARM ARCHITECTURE |
5b293ebe | 2558 | M: Hauke Mehrtens <hauke@hauke-m.de> |
1a50cd8a RM |
2559 | M: Rafał Miłecki <zajec5@gmail.com> |
2560 | M: bcm-kernel-feedback-list@broadcom.com | |
5b293ebe HM |
2561 | L: linux-arm-kernel@lists.infradead.org |
2562 | S: Maintained | |
2563 | F: arch/arm/mach-bcm/bcm_5301x.c | |
1a50cd8a | 2564 | F: arch/arm/boot/dts/bcm5301x*.dtsi |
5b293ebe HM |
2565 | F: arch/arm/boot/dts/bcm470* |
2566 | ||
e076e962 FF |
2567 | BROADCOM BCM63XX ARM ARCHITECTURE |
2568 | M: Florian Fainelli <f.fainelli@gmail.com> | |
086f4704 | 2569 | M: bcm-kernel-feedback-list@broadcom.com |
20de823e | 2570 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
20de823e | 2571 | T: git git://github.com/broadcom/stblinux.git |
e076e962 | 2572 | S: Maintained |
d6f4e76e | 2573 | N: bcm63xx |
e076e962 | 2574 | |
7110e227 KC |
2575 | BROADCOM BCM63XX/BCM33XX UDC DRIVER |
2576 | M: Kevin Cernekee <cernekee@gmail.com> | |
2577 | L: linux-usb@vger.kernel.org | |
2578 | S: Maintained | |
2579 | F: drivers/usb/gadget/udc/bcm63xx_udc.* | |
2580 | ||
2df94fd6 | 2581 | BROADCOM BCM7XXX ARM ARCHITECTURE |
2df94fd6 | 2582 | M: Brian Norris <computersforpeace@gmail.com> |
3b4b6fe9 FF |
2583 | M: Gregory Fong <gregory.0xf0@gmail.com> |
2584 | M: Florian Fainelli <f.fainelli@gmail.com> | |
086f4704 | 2585 | M: bcm-kernel-feedback-list@broadcom.com |
2df94fd6 | 2586 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
eb6725d0 | 2587 | T: git git://github.com/broadcom/stblinux.git |
2df94fd6 BN |
2588 | S: Maintained |
2589 | F: arch/arm/mach-bcm/*brcmstb* | |
2590 | F: arch/arm/boot/dts/bcm7*.dts* | |
e36661e4 | 2591 | F: drivers/bus/brcmstb_gisb.c |
5009a289 | 2592 | N: brcmstb |
2df94fd6 | 2593 | |
70371cef KC |
2594 | BROADCOM BMIPS MIPS ARCHITECTURE |
2595 | M: Kevin Cernekee <cernekee@gmail.com> | |
2596 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2597 | L: linux-mips@linux-mips.org | |
eb6725d0 | 2598 | T: git git://github.com/broadcom/stblinux.git |
70371cef KC |
2599 | S: Maintained |
2600 | F: arch/mips/bmips/* | |
2601 | F: arch/mips/include/asm/mach-bmips/* | |
2602 | F: arch/mips/kernel/*bmips* | |
338808de | 2603 | F: arch/mips/boot/dts/brcm/bcm*.dts* |
c7c42ec2 | 2604 | F: drivers/irqchip/irq-bcm63* |
70371cef KC |
2605 | F: drivers/irqchip/irq-bcm7* |
2606 | F: drivers/irqchip/irq-brcmstb* | |
3271e610 | 2607 | F: include/linux/bcm963xx_nvram.h |
8fce60b8 | 2608 | F: include/linux/bcm963xx_tag.h |
70371cef | 2609 | |
948c51e6 | 2610 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
ccad0993 | 2611 | M: Siva Reddy Kallam <siva.kallam@broadcom.com> |
23629477 | 2612 | M: Prashant Sreedharan <prashant@broadcom.com> |
8b58be88 | 2613 | M: Michael Chan <mchan@broadcom.com> |
948c51e6 MC |
2614 | L: netdev@vger.kernel.org |
2615 | S: Supported | |
adfc5217 | 2616 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 2617 | |
a9533e7e | 2618 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
2a734451 AS |
2619 | M: Arend van Spriel <arend.vanspriel@broadcom.com> |
2620 | M: Franky Lin <franky.lin@broadcom.com> | |
2621 | M: Hante Meuleman <hante.meuleman@broadcom.com> | |
a9533e7e | 2622 | L: linux-wireless@vger.kernel.org |
2a734451 | 2623 | L: brcm80211-dev-list.pdl@broadcom.com |
a9533e7e | 2624 | S: Supported |
05491d2c | 2625 | F: drivers/net/wireless/broadcom/brcm80211/ |
a9533e7e | 2626 | |
9958d6f9 | 2627 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
3b7f040a | 2628 | M: QLogic-Storage-Upstream@qlogic.com |
9958d6f9 BPG |
2629 | L: linux-scsi@vger.kernel.org |
2630 | S: Supported | |
2631 | F: drivers/scsi/bnx2fc/ | |
2632 | ||
6a6b5ad0 | 2633 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
3b7f040a | 2634 | M: QLogic-Storage-Upstream@qlogic.com |
6a6b5ad0 EW |
2635 | L: linux-scsi@vger.kernel.org |
2636 | S: Supported | |
2637 | F: drivers/scsi/bnx2i/ | |
2638 | ||
63f37ddf | 2639 | BROADCOM IPROC ARM ARCHITECTURE |
36c0237f SB |
2640 | M: Ray Jui <rjui@broadcom.com> |
2641 | M: Scott Branden <sbranden@broadcom.com> | |
63f37ddf | 2642 | M: Jon Mason <jonmason@broadcom.com> |
086f4704 | 2643 | M: bcm-kernel-feedback-list@broadcom.com |
36c0237f | 2644 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
eb6725d0 | 2645 | T: git git://github.com/broadcom/cygnus-linux.git |
36c0237f SB |
2646 | S: Maintained |
2647 | N: iproc | |
2648 | N: cygnus | |
5c161242 | 2649 | N: bcm[-_]nsp |
36c0237f SB |
2650 | N: bcm9113* |
2651 | N: bcm9583* | |
63f37ddf JM |
2652 | N: bcm9585* |
2653 | N: bcm9586* | |
2654 | N: bcm988312 | |
36c0237f | 2655 | N: bcm113* |
63f37ddf JM |
2656 | N: bcm583* |
2657 | N: bcm585* | |
2658 | N: bcm586* | |
2659 | N: bcm88312 | |
d76e21b8 | 2660 | F: arch/arm64/boot/dts/broadcom/ns2* |
5c161242 JM |
2661 | F: drivers/clk/bcm/clk-ns* |
2662 | F: drivers/pinctrl/bcm/pinctrl-ns* | |
36c0237f | 2663 | |
3b0213d5 GF |
2664 | BROADCOM BRCMSTB GPIO DRIVER |
2665 | M: Gregory Fong <gregory.0xf0@gmail.com> | |
9c2abe2f | 2666 | L: bcm-kernel-feedback-list@broadcom.com |
3b0213d5 GF |
2667 | S: Supported |
2668 | F: drivers/gpio/gpio-brcmstb.c | |
2669 | F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt | |
2670 | ||
7b7f588b | 2671 | BROADCOM KONA GPIO DRIVER |
5e163903 | 2672 | M: Ray Jui <rjui@broadcom.com> |
7b7f588b MM |
2673 | L: bcm-kernel-feedback-list@broadcom.com |
2674 | S: Supported | |
2675 | F: drivers/gpio/gpio-bcm-kona.c | |
1db12cde | 2676 | F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt |
7b7f588b | 2677 | |
f6e734a8 RM |
2678 | BROADCOM NVRAM DRIVER |
2679 | M: Rafał Miłecki <zajec5@gmail.com> | |
2680 | L: linux-mips@linux-mips.org | |
2681 | S: Maintained | |
2682 | F: drivers/firmware/broadcom/* | |
2683 | ||
02787daa BN |
2684 | BROADCOM STB NAND FLASH DRIVER |
2685 | M: Brian Norris <computersforpeace@gmail.com> | |
1ddaa021 | 2686 | M: Kamal Dasu <kdasu.kdev@gmail.com> |
02787daa | 2687 | L: linux-mtd@lists.infradead.org |
1285734c | 2688 | L: bcm-kernel-feedback-list@broadcom.com |
02787daa BN |
2689 | S: Maintained |
2690 | F: drivers/mtd/nand/brcmnand/ | |
2691 | ||
c9678d86 RM |
2692 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
2693 | M: Rafał Miłecki <zajec5@gmail.com> | |
2694 | L: linux-wireless@vger.kernel.org | |
2695 | S: Maintained | |
2696 | F: drivers/bcma/ | |
2697 | F: include/linux/bcma/ | |
2698 | ||
b8302205 FF |
2699 | BROADCOM SYSTEMPORT ETHERNET DRIVER |
2700 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2701 | L: netdev@vger.kernel.org | |
2702 | S: Supported | |
2703 | F: drivers/net/ethernet/broadcom/bcmsysport.* | |
2704 | ||
42515e61 J |
2705 | BROADCOM VULCAN ARM64 SOC |
2706 | M: Jayachandran C. <jchandra@broadcom.com> | |
086f4704 | 2707 | M: bcm-kernel-feedback-list@broadcom.com |
42515e61 | 2708 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
42515e61 J |
2709 | S: Maintained |
2710 | F: arch/arm64/boot/dts/broadcom/vulcan* | |
2711 | ||
7725ccfd | 2712 | BROCADE BFA FC SCSI DRIVER |
aa803370 AG |
2713 | M: Anil Gurumurthy <anil.gurumurthy@qlogic.com> |
2714 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> | |
455518e7 JP |
2715 | L: linux-scsi@vger.kernel.org |
2716 | S: Supported | |
2717 | F: drivers/scsi/bfa/ | |
7725ccfd | 2718 | |
8b230ed8 | 2719 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
439e9575 | 2720 | M: Rasesh Mody <rasesh.mody@qlogic.com> |
8b230ed8 RM |
2721 | L: netdev@vger.kernel.org |
2722 | S: Supported | |
f844a0ea | 2723 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 2724 | |
5cdf7f76 | 2725 | BSG (block layer generic sg v4 driver) |
8b58be88 | 2726 | M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> |
5cdf7f76 JA |
2727 | L: linux-scsi@vger.kernel.org |
2728 | S: Supported | |
679655da JP |
2729 | F: block/bsg.c |
2730 | F: include/linux/bsg.h | |
c117ab84 | 2731 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 2732 | |
af39917d CL |
2733 | BT87X AUDIO DRIVER |
2734 | M: Clemens Ladisch <clemens@ladisch.de> | |
2735 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2736 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2737 | S: Maintained | |
2738 | F: Documentation/sound/alsa/Bt87x.txt | |
2739 | F: sound/pci/bt87x.c | |
2740 | ||
ff1d5c2f | 2741 | BT8XXGPIO DRIVER |
eb032b98 | 2742 | M: Michael Buesch <m@bues.ch> |
ff1d5c2f MB |
2743 | W: http://bu3sch.de/btgpio.php |
2744 | S: Maintained | |
72dbb705 | 2745 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 2746 | |
eb1eb04f | 2747 | BTRFS FILE SYSTEM |
c0778e25 CM |
2748 | M: Chris Mason <clm@fb.com> |
2749 | M: Josef Bacik <jbacik@fb.com> | |
d8130624 | 2750 | M: David Sterba <dsterba@suse.com> |
eb1eb04f JP |
2751 | L: linux-btrfs@vger.kernel.org |
2752 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 2753 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 2754 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 2755 | S: Maintained |
679655da JP |
2756 | F: Documentation/filesystems/btrfs.txt |
2757 | F: fs/btrfs/ | |
eb1eb04f | 2758 | |
1da177e4 | 2759 | BTTV VIDEO4LINUX DRIVER |
5dc8a864 MCC |
2760 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
2761 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
661263b5 | 2762 | L: linux-media@vger.kernel.org |
a825eaec | 2763 | W: https://linuxtv.org |
275ffde4 | 2764 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 2765 | S: Odd fixes |
679655da | 2766 | F: Documentation/video4linux/bttv/ |
90d72ac6 | 2767 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 2768 | |
1f34923c KA |
2769 | BUSLOGIC SCSI DRIVER |
2770 | M: Khalid Aziz <khalid@gonehiking.org> | |
2771 | L: linux-scsi@vger.kernel.org | |
2772 | S: Maintained | |
2773 | F: drivers/scsi/BusLogic.* | |
2774 | F: drivers/scsi/FlashPoint.* | |
2775 | ||
af39917d CL |
2776 | C-MEDIA CMI8788 DRIVER |
2777 | M: Clemens Ladisch <clemens@ladisch.de> | |
2778 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2779 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2780 | S: Maintained | |
2781 | F: sound/pci/oxygen/ | |
2782 | ||
2141355f MS |
2783 | C6X ARCHITECTURE |
2784 | M: Mark Salter <msalter@redhat.com> | |
2785 | M: Aurelien Jacquiot <a-jacquiot@ti.com> | |
2786 | L: linux-c6x-dev@linux-c6x.org | |
2787 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
2788 | S: Maintained | |
2789 | F: arch/c6x/ | |
2790 | ||
a5432f5a | 2791 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 2792 | M: David Howells <dhowells@redhat.com> |
e62d6e24 | 2793 | L: linux-cachefs@redhat.com (moderated for non-subscribers) |
a5432f5a DH |
2794 | S: Supported |
2795 | F: Documentation/filesystems/caching/cachefiles.txt | |
2796 | F: fs/cachefiles/ | |
2797 | ||
c815ca39 HV |
2798 | CADET FM/AM RADIO RECEIVER DRIVER |
2799 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2800 | L: linux-media@vger.kernel.org | |
2801 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 2802 | W: https://linuxtv.org |
c815ca39 HV |
2803 | S: Maintained |
2804 | F: drivers/media/radio/radio-cadet* | |
2805 | ||
77d5140f | 2806 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 2807 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 2808 | L: linux-media@vger.kernel.org |
275ffde4 | 2809 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 2810 | S: Maintained |
679655da | 2811 | F: Documentation/video4linux/cafe_ccic |
90d72ac6 | 2812 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 2813 | |
201b6bab | 2814 | CAIF NETWORK LAYER |
5c574f50 | 2815 | M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no> |
201b6bab JP |
2816 | L: netdev@vger.kernel.org |
2817 | S: Supported | |
2818 | F: Documentation/networking/caif/ | |
2819 | F: drivers/net/caif/ | |
c117ab84 | 2820 | F: include/uapi/linux/caif/ |
201b6bab JP |
2821 | F: include/net/caif/ |
2822 | F: net/caif/ | |
2823 | ||
77dac90f | 2824 | CALGARY x86-64 IOMMU |
a6921c29 JM |
2825 | M: Muli Ben-Yehuda <mulix@mulix.org> |
2826 | M: Jon Mason <jdmason@kudzu.us> | |
2827 | L: iommu@lists.linux-foundation.org | |
77dac90f | 2828 | S: Maintained |
679655da JP |
2829 | F: arch/x86/kernel/pci-calgary_64.c |
2830 | F: arch/x86/kernel/tce_64.c | |
2831 | F: arch/x86/include/asm/calgary.h | |
2832 | F: arch/x86/include/asm/tce.h | |
77dac90f | 2833 | |
e2d1d6c0 | 2834 | CAN NETWORK LAYER |
8d15d386 | 2835 | M: Oliver Hartkopp <socketcan@hartkopp.net> |
f7214cf2 | 2836 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 2837 | L: linux-can@vger.kernel.org |
84b0d715 | 2838 | W: https://github.com/linux-can |
870482a4 MKB |
2839 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
2840 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git | |
e2d1d6c0 | 2841 | S: Maintained |
f35f6c8f | 2842 | F: Documentation/networking/can.txt |
8d15d386 | 2843 | F: net/can/ |
8d15d386 | 2844 | F: include/linux/can/core.h |
c117ab84 CEB |
2845 | F: include/uapi/linux/can.h |
2846 | F: include/uapi/linux/can/bcm.h | |
2847 | F: include/uapi/linux/can/raw.h | |
2848 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 2849 | |
4261a204 | 2850 | CAN NETWORK DRIVERS |
8b58be88 | 2851 | M: Wolfgang Grandegger <wg@grandegger.com> |
ec78213a | 2852 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 2853 | L: linux-can@vger.kernel.org |
84b0d715 | 2854 | W: https://github.com/linux-can |
870482a4 MKB |
2855 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
2856 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git | |
4261a204 | 2857 | S: Maintained |
3636876a | 2858 | F: Documentation/devicetree/bindings/net/can/ |
8d15d386 OH |
2859 | F: drivers/net/can/ |
2860 | F: include/linux/can/dev.h | |
8d15d386 | 2861 | F: include/linux/can/platform/ |
c117ab84 CEB |
2862 | F: include/uapi/linux/can/error.h |
2863 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 2864 | |
95d16c72 | 2865 | CAPABILITIES |
39baa7e6 | 2866 | M: Serge Hallyn <serge@hallyn.com> |
95d16c72 | 2867 | L: linux-security-module@vger.kernel.org |
6305902c | 2868 | S: Supported |
95d16c72 | 2869 | F: include/linux/capability.h |
c117ab84 | 2870 | F: include/uapi/linux/capability.h |
6305902c | 2871 | F: security/commoncap.c |
38a94118 | 2872 | F: kernel/capability.c |
95d16c72 | 2873 | |
b84894c7 KT |
2874 | CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER |
2875 | M: Kevin Tsai <ktsai@capellamicro.com> | |
2876 | S: Maintained | |
2877 | F: drivers/iio/light/cm* | |
2878 | F: Documentation/devicetree/bindings/i2c/trivial-devices.txt | |
2879 | ||
f21fb3ed RV |
2880 | CAVIUM LIQUIDIO NETWORK DRIVER |
2881 | M: Derek Chickles <derek.chickles@caviumnetworks.com> | |
2882 | M: Satanand Burla <satananda.burla@caviumnetworks.com> | |
2883 | M: Felix Manlunas <felix.manlunas@caviumnetworks.com> | |
2884 | M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com> | |
2885 | L: netdev@vger.kernel.org | |
2886 | W: http://www.cavium.com | |
2887 | S: Supported | |
f21fb3ed RV |
2888 | F: drivers/net/ethernet/cavium/liquidio/ |
2889 | ||
ef0bbac3 VB |
2890 | CC2520 IEEE-802.15.4 RADIO DRIVER |
2891 | M: Varka Bhadram <varkabhadram@gmail.com> | |
2892 | L: linux-wpan@vger.kernel.org | |
2893 | S: Maintained | |
2894 | F: drivers/net/ieee802154/cc2520.c | |
2895 | F: include/linux/spi/cc2520.h | |
2896 | F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt | |
2897 | ||
ca684386 HV |
2898 | CEC DRIVER |
2899 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
2900 | L: linux-media@vger.kernel.org | |
2901 | T: git git://linuxtv.org/media_tree.git | |
2902 | W: http://linuxtv.org | |
2903 | S: Supported | |
2904 | F: Documentation/cec.txt | |
2905 | F: Documentation/DocBook/media/v4l/cec* | |
2906 | F: drivers/staging/media/cec/ | |
2907 | F: drivers/media/cec-edid.c | |
2908 | F: drivers/media/rc/keymaps/rc-cec.c | |
2909 | F: include/media/cec.h | |
2910 | F: include/media/cec-edid.h | |
2911 | F: include/linux/cec.h | |
2912 | F: include/linux/cec-funcs.h | |
2913 | ||
b8154542 | 2914 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 2915 | M: Arnd Bergmann <arnd@arndb.de> |
a4724ed6 | 2916 | L: linuxppc-dev@lists.ozlabs.org |
b8154542 AB |
2917 | W: http://www.ibm.com/developerworks/power/cell/ |
2918 | S: Supported | |
679655da | 2919 | F: arch/powerpc/include/asm/cell*.h |
679655da | 2920 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 2921 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
2922 | F: arch/powerpc/oprofile/*cell* |
2923 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 2924 | |
398ecff5 SW |
2925 | CEPH COMMON CODE (LIBCEPH) |
2926 | M: Ilya Dryomov <idryomov@gmail.com> | |
e43cdb56 | 2927 | M: "Yan, Zheng" <zyan@redhat.com> |
0f5417ce | 2928 | M: Sage Weil <sage@redhat.com> |
82593f87 | 2929 | L: ceph-devel@vger.kernel.org |
09d90327 | 2930 | W: http://ceph.com/ |
fb99f881 | 2931 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
6e67b7ae | 2932 | T: git git://github.com/ceph/ceph-client.git |
9030aaf9 | 2933 | S: Supported |
14430813 JP |
2934 | F: net/ceph/ |
2935 | F: include/linux/ceph/ | |
2936 | F: include/linux/crush/ | |
9030aaf9 | 2937 | |
398ecff5 SW |
2938 | CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH) |
2939 | M: "Yan, Zheng" <zyan@redhat.com> | |
2940 | M: Sage Weil <sage@redhat.com> | |
2941 | M: Ilya Dryomov <idryomov@gmail.com> | |
2942 | L: ceph-devel@vger.kernel.org | |
2943 | W: http://ceph.com/ | |
2944 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
6e67b7ae | 2945 | T: git git://github.com/ceph/ceph-client.git |
398ecff5 SW |
2946 | S: Supported |
2947 | F: Documentation/filesystems/ceph.txt | |
2948 | F: fs/ceph/ | |
2949 | ||
cfc411e7 DH |
2950 | CERTIFICATE HANDLING: |
2951 | M: David Howells <dhowells@redhat.com> | |
2952 | M: David Woodhouse <dwmw2@infradead.org> | |
d8d80386 | 2953 | L: keyrings@vger.kernel.org |
cfc411e7 DH |
2954 | S: Maintained |
2955 | F: Documentation/module-signing.txt | |
2956 | F: certs/ | |
d8d80386 | 2957 | F: scripts/sign-file.c |
cfc411e7 DH |
2958 | F: scripts/extract-cert.c |
2959 | ||
18332a80 | 2960 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 2961 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 2962 | S: Orphan |
679655da JP |
2963 | F: Documentation/usb/WUSB-Design-overview.txt |
2964 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
2965 | F: drivers/usb/host/hwa-hc.c |
2966 | F: drivers/usb/host/whci/ | |
679655da JP |
2967 | F: drivers/usb/wusbcore/ |
2968 | F: include/linux/usb/wusb* | |
18332a80 | 2969 | |
70e84049 | 2970 | CFAG12864B LCD DRIVER |
8b58be88 | 2971 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2972 | W: http://miguelojeda.es/auxdisplay.htm |
2973 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2974 | S: Maintained |
679655da JP |
2975 | F: drivers/auxdisplay/cfag12864b.c |
2976 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
2977 | |
2978 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 2979 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2980 | W: http://miguelojeda.es/auxdisplay.htm |
2981 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2982 | S: Maintained |
679655da JP |
2983 | F: drivers/auxdisplay/cfag12864bfb.c |
2984 | F: include/linux/cfag12864b.h | |
70e84049 | 2985 | |
704232c2 | 2986 | CFG80211 and NL80211 |
8b58be88 | 2987 | M: Johannes Berg <johannes@sipsolutions.net> |
704232c2 | 2988 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
2989 | W: http://wireless.kernel.org/ |
2990 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
2991 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 2992 | S: Maintained |
c117ab84 | 2993 | F: include/uapi/linux/nl80211.h |
679655da JP |
2994 | F: include/net/cfg80211.h |
2995 | F: net/wireless/* | |
2996 | X: net/wireless/wext* | |
704232c2 | 2997 | |
46e64261 GKH |
2998 | CHAR and MISC DRIVERS |
2999 | M: Arnd Bergmann <arnd@arndb.de> | |
879a5a00 | 3000 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
46e64261 | 3001 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 3002 | S: Supported |
46e64261 GKH |
3003 | F: drivers/char/* |
3004 | F: drivers/misc/* | |
471322a8 | 3005 | F: include/linux/miscdevice.h |
46e64261 | 3006 | |
0a920b5b | 3007 | CHECKPATCH |
8b58be88 | 3008 | M: Andy Whitcroft <apw@canonical.com> |
10d83f07 JP |
3009 | M: Joe Perches <joe@perches.com> |
3010 | S: Maintained | |
679655da | 3011 | F: scripts/checkpatch.pl |
0a920b5b | 3012 | |
f8407f26 HW |
3013 | CHINESE DOCUMENTATION |
3014 | M: Harry Wei <harryxiyou@gmail.com> | |
9740153c | 3015 | L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only) |
f8407f26 HW |
3016 | L: linux-kernel@zh-kernel.org (moderated for non-subscribers) |
3017 | S: Maintained | |
3018 | F: Documentation/zh_CN/ | |
3019 | ||
2721ea2c | 3020 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
60d77b3d | 3021 | M: Peter Chen <Peter.Chen@nxp.com> |
8373856d | 3022 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
2721ea2c AS |
3023 | L: linux-usb@vger.kernel.org |
3024 | S: Maintained | |
3025 | F: drivers/usb/chipidea/ | |
3026 | ||
a93ad65d HG |
3027 | CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER |
3028 | M: Hans de Goede <hdegoede@redhat.com> | |
3029 | L: linux-input@vger.kernel.org | |
3030 | S: Maintained | |
3031 | F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt | |
3032 | F: drivers/input/touchscreen/chipone_icn8318.c | |
3033 | ||
ab043105 OJ |
3034 | CHROME HARDWARE PLATFORM SUPPORT |
3035 | M: Olof Johansson <olof@lixom.net> | |
3036 | S: Maintained | |
9f273c24 | 3037 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git |
ab043105 OJ |
3038 | F: drivers/platform/chrome/ |
3039 | ||
641cb85e | 3040 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 3041 | M: Christian Benvenuti <benve@cisco.com> |
001e1c1d | 3042 | M: Sujith Sankar <ssujith@cisco.com> |
c327e8f4 | 3043 | M: Govindarajulu Varadarajan <_govind@gmx.com> |
5c6652f5 | 3044 | M: Neel Patel <neepatel@cisco.com> |
7063fbf2 | 3045 | S: Supported |
a6a5580c | 3046 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 3047 | |
e3cf00d0 | 3048 | CISCO VIC LOW LATENCY NIC DRIVER |
35ef4a9e DG |
3049 | M: Christian Benvenuti <benve@cisco.com> |
3050 | M: Dave Goodell <dgoodell@cisco.com> | |
b75f0050 | 3051 | S: Supported |
35ef4a9e | 3052 | F: drivers/infiniband/hw/usnic/ |
e3cf00d0 | 3053 | |
2b7a52a4 | 3054 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 3055 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
2b7a52a4 LB |
3056 | L: netdev@vger.kernel.org |
3057 | S: Maintained | |
57d0b7a0 | 3058 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 3059 | |
3d4cfdc9 MB |
3060 | CIRRUS LOGIC AUDIO CODEC DRIVERS |
3061 | M: Brian Austin <brian.austin@cirrus.com> | |
3062 | M: Paul Handrigan <Paul.Handrigan@cirrus.com> | |
3063 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
3064 | S: Maintained | |
3065 | F: sound/soc/codecs/cs* | |
3066 | ||
94574d9a KRW |
3067 | CLEANCACHE API |
3068 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
3069 | L: linux-kernel@vger.kernel.org | |
3070 | S: Maintained | |
3071 | F: mm/cleancache.c | |
3072 | F: include/linux/cleancache.h | |
3073 | ||
d4275354 | 3074 | CLK API |
54176cc6 | 3075 | M: Russell King <linux@armlinux.org.uk> |
aa571b14 | 3076 | L: linux-clk@vger.kernel.org |
37417046 | 3077 | S: Maintained |
d4275354 RK |
3078 | F: include/linux/clk.h |
3079 | ||
9222d247 JS |
3080 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
3081 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3082 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 3083 | L: linux-kernel@vger.kernel.org |
9222d247 JS |
3084 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
3085 | S: Supported | |
3086 | F: drivers/clocksource | |
3087 | ||
5df6d737 | 3088 | CISCO FCOE HBA DRIVER |
8fc89a79 HP |
3089 | M: Hiral Patel <hiralpat@cisco.com> |
3090 | M: Suma Ramars <sramars@cisco.com> | |
d7e01dc6 | 3091 | M: Brian Uchino <buchino@cisco.com> |
5df6d737 AJ |
3092 | L: linux-scsi@vger.kernel.org |
3093 | S: Supported | |
2a99921a | 3094 | F: drivers/scsi/fnic/ |
5df6d737 | 3095 | |
c8806b6c NM |
3096 | CISCO SCSI HBA DRIVER |
3097 | M: Narsimhulu Musini <nmusini@cisco.com> | |
3098 | M: Sesidhar Baddela <sebaddel@cisco.com> | |
3099 | L: linux-scsi@vger.kernel.org | |
3100 | S: Supported | |
3101 | F: drivers/scsi/snic/ | |
3102 | ||
529aa8cb TLSC |
3103 | CMPC ACPI DRIVER |
3104 | M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> | |
3105 | M: Daniel Oliveira Nascimento <don@syst.com.br> | |
d0944853 | 3106 | L: platform-driver-x86@vger.kernel.org |
529aa8cb TLSC |
3107 | S: Supported |
3108 | F: drivers/platform/x86/classmate-laptop.c | |
3109 | ||
85756a06 HV |
3110 | COBALT MEDIA DRIVER |
3111 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
3112 | L: linux-media@vger.kernel.org | |
3113 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 3114 | W: https://linuxtv.org |
85756a06 HV |
3115 | S: Supported |
3116 | F: drivers/media/pci/cobalt/ | |
3117 | ||
74425eee | 3118 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 3119 | M: Julia Lawall <Julia.Lawall@lip6.fr> |
74425eee | 3120 | M: Gilles Muller <Gilles.Muller@lip6.fr> |
26de9c26 | 3121 | M: Nicolas Palix <nicolas.palix@imag.fr> |
d8130624 | 3122 | M: Michal Marek <mmarek@suse.com> |
26de9c26 | 3123 | L: cocci@systeme.lip6.fr (moderated for non-subscribers) |
c00b5110 | 3124 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
74425eee NP |
3125 | W: http://coccinelle.lip6.fr/ |
3126 | S: Supported | |
4b92b2aa | 3127 | F: Documentation/coccinelle.txt |
74425eee NP |
3128 | F: scripts/coccinelle/ |
3129 | F: scripts/coccicheck | |
3130 | ||
1da177e4 | 3131 | CODA FILE SYSTEM |
8b58be88 | 3132 | M: Jan Harkes <jaharkes@cs.cmu.edu> |
1da177e4 LT |
3133 | M: coda@cs.cmu.edu |
3134 | L: codalist@coda.cs.cmu.edu | |
3135 | W: http://www.coda.cs.cmu.edu/ | |
3136 | S: Maintained | |
679655da JP |
3137 | F: Documentation/filesystems/coda.txt |
3138 | F: fs/coda/ | |
3139 | F: include/linux/coda*.h | |
c117ab84 | 3140 | F: include/uapi/linux/coda*.h |
1da177e4 | 3141 | |
0b14261e PZ |
3142 | CODA V4L2 MEM2MEM DRIVER |
3143 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
3144 | L: linux-media@vger.kernel.org | |
3145 | S: Maintained | |
3146 | F: Documentation/devicetree/bindings/media/coda.txt | |
3147 | F: drivers/media/platform/coda/ | |
3148 | ||
7704addb | 3149 | COMMON CLK FRAMEWORK |
a85fa007 | 3150 | M: Michael Turquette <mturquette@baylibre.com> |
f956165f | 3151 | M: Stephen Boyd <sboyd@codeaurora.org> |
aa571b14 | 3152 | L: linux-clk@vger.kernel.org |
baeb0d9b | 3153 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git |
7704addb | 3154 | S: Maintained |
ae4185cd | 3155 | F: Documentation/devicetree/bindings/clock/ |
60bea3b5 SW |
3156 | F: drivers/clk/ |
3157 | X: drivers/clk/clkdev.c | |
7704addb | 3158 | F: include/linux/clk-pr* |
60bea3b5 | 3159 | F: include/linux/clk/ |
7704addb | 3160 | |
e2d1d6c0 | 3161 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 3162 | M: Steve French <sfrench@samba.org> |
51223df6 | 3163 | L: linux-cifs@vger.kernel.org |
d1f28953 | 3164 | L: samba-technical@lists.samba.org (moderated for non-subscribers) |
e2d1d6c0 | 3165 | W: http://linux-cifs.samba.org/ |
bb1d5dda | 3166 | T: git git://git.samba.org/sfrench/cifs-2.6.git |
e2d1d6c0 | 3167 | S: Supported |
ec421a71 | 3168 | F: Documentation/filesystems/cifs/ |
679655da | 3169 | F: fs/cifs/ |
e2d1d6c0 | 3170 | |
1da177e4 | 3171 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 3172 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 3173 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 3174 | S: Maintained |
679655da | 3175 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
3176 | |
3177 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 3178 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 3179 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 3180 | S: Maintained |
679655da | 3181 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
3182 | |
3183 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 3184 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 3185 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 3186 | S: Maintained |
679655da | 3187 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 3188 | |
5411552c | 3189 | COMPAL LAPTOP SUPPORT |
8b58be88 | 3190 | M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> |
d0944853 | 3191 | L: platform-driver-x86@vger.kernel.org |
5411552c | 3192 | S: Maintained |
679655da | 3193 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 3194 | |
949be0f7 | 3195 | CONEXANT ACCESSRUNNER USB DRIVER |
9ae5e3bc SA |
3196 | L: accessrunner-general@lists.sourceforge.net |
3197 | W: http://accessrunner.sourceforge.net/ | |
44243ef4 | 3198 | S: Orphan |
679655da | 3199 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 3200 | |
e2d1d6c0 | 3201 | CONFIGFS |
d6351db2 | 3202 | M: Joel Becker <jlbec@evilplan.org> |
1609bac8 CH |
3203 | M: Christoph Hellwig <hch@lst.de> |
3204 | T: git git://git.infradead.org/users/hch/configfs.git | |
e2d1d6c0 | 3205 | S: Supported |
679655da JP |
3206 | F: fs/configfs/ |
3207 | F: include/linux/configfs.h | |
e2d1d6c0 | 3208 | |
acb9c1b2 | 3209 | CONNECTOR |
8b58be88 | 3210 | M: Evgeniy Polyakov <zbr@ioremap.net> |
acb9c1b2 EP |
3211 | L: netdev@vger.kernel.org |
3212 | S: Maintained | |
3213 | F: drivers/connector/ | |
3214 | ||
a3e3354d | 3215 | CONTROL GROUP (CGROUP) |
860ca0e6 | 3216 | M: Tejun Heo <tj@kernel.org> |
ad50c159 | 3217 | M: Li Zefan <lizefan@huawei.com> |
4d205676 | 3218 | M: Johannes Weiner <hannes@cmpxchg.org> |
12340313 | 3219 | L: cgroups@vger.kernel.org |
860ca0e6 | 3220 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 3221 | S: Maintained |
4b16b0c0 | 3222 | F: Documentation/cgroup* |
679655da JP |
3223 | F: include/linux/cgroup* |
3224 | F: kernel/cgroup* | |
a3e3354d TH |
3225 | |
3226 | CONTROL GROUP - CPUSET | |
3227 | M: Li Zefan <lizefan@huawei.com> | |
3228 | L: cgroups@vger.kernel.org | |
3229 | W: http://www.bullopensource.org/cpuset/ | |
3230 | W: http://oss.sgi.com/projects/cpusets/ | |
3231 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git | |
3232 | S: Maintained | |
4b16b0c0 | 3233 | F: Documentation/cgroup-v1/cpusets.txt |
a3e3354d TH |
3234 | F: include/linux/cpuset.h |
3235 | F: kernel/cpuset.c | |
3236 | ||
3237 | CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG) | |
3238 | M: Johannes Weiner <hannes@cmpxchg.org> | |
fbd7dc74 | 3239 | M: Michal Hocko <mhocko@kernel.org> |
ed0f1e21 | 3240 | M: Vladimir Davydov <vdavydov@virtuozzo.com> |
a3e3354d TH |
3241 | L: cgroups@vger.kernel.org |
3242 | L: linux-mm@kvack.org | |
3243 | S: Maintained | |
3244 | F: mm/memcontrol.c | |
5d1ea48b | 3245 | F: mm/swap_cgroup.c |
fb3a0fb6 | 3246 | |
bebe4678 | 3247 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 3248 | M: Fenghua Yu <fenghua.yu@intel.com> |
968ce1b1 | 3249 | L: linux-hwmon@vger.kernel.org |
bebe4678 | 3250 | S: Maintained |
679655da JP |
3251 | F: Documentation/hwmon/coretemp |
3252 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 3253 | |
1da177e4 | 3254 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 3255 | M: Jan "Yenya" Kasprzak <kas@fi.muni.cz> |
1da177e4 LT |
3256 | W: http://www.fi.muni.cz/~kas/cosa/ |
3257 | S: Maintained | |
679655da | 3258 | F: drivers/net/wan/cosa* |
1da177e4 | 3259 | |
4371ee35 | 3260 | CPMAC ETHERNET DRIVER |
8b58be88 | 3261 | M: Florian Fainelli <florian@openwrt.org> |
4371ee35 FF |
3262 | L: netdev@vger.kernel.org |
3263 | S: Maintained | |
b544dbac | 3264 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 3265 | |
1da177e4 | 3266 | CPU FREQUENCY DRIVERS |
9c3646d1 | 3267 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
45c009a9 | 3268 | M: Viresh Kumar <viresh.kumar@linaro.org> |
a6c072c7 | 3269 | L: linux-pm@vger.kernel.org |
1da177e4 | 3270 | S: Maintained |
27209d91 VK |
3271 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
3272 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) | |
679655da JP |
3273 | F: drivers/cpufreq/ |
3274 | F: include/linux/cpufreq.h | |
1da177e4 | 3275 | |
8a67f0ef VK |
3276 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
3277 | M: Viresh Kumar <viresh.kumar@linaro.org> | |
171d0ba8 | 3278 | M: Sudeep Holla <sudeep.holla@arm.com> |
8a67f0ef VK |
3279 | L: linux-pm@vger.kernel.org |
3280 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
3281 | S: Maintained | |
3282 | F: drivers/cpufreq/arm_big_little.h | |
3283 | F: drivers/cpufreq/arm_big_little.c | |
3284 | F: drivers/cpufreq/arm_big_little_dt.c | |
3285 | ||
14d2c34c | 3286 | CPUIDLE DRIVER - ARM BIG LITTLE |
b75f0050 JP |
3287 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
3288 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3289 | L: linux-pm@vger.kernel.org | |
3290 | L: linux-arm-kernel@lists.infradead.org | |
cea8321c | 3291 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
b75f0050 JP |
3292 | S: Maintained |
3293 | F: drivers/cpuidle/cpuidle-big_little.c | |
14d2c34c | 3294 | |
0c570c18 BZ |
3295 | CPUIDLE DRIVER - ARM EXYNOS |
3296 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
3297 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3298 | M: Kukjin Kim <kgene@kernel.org> | |
3299 | L: linux-pm@vger.kernel.org | |
3300 | L: linux-samsung-soc@vger.kernel.org | |
3301 | S: Supported | |
3302 | F: drivers/cpuidle/cpuidle-exynos.c | |
3303 | F: arch/arm/mach-exynos/pm.c | |
3304 | ||
a8e39c35 | 3305 | CPUIDLE DRIVERS |
9c3646d1 | 3306 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
a8e39c35 DL |
3307 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
3308 | L: linux-pm@vger.kernel.org | |
3309 | S: Maintained | |
cea8321c | 3310 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
a8e39c35 DL |
3311 | F: drivers/cpuidle/* |
3312 | F: include/linux/cpuidle.h | |
3313 | ||
1da177e4 | 3314 | CPUID/MSR DRIVER |
8b58be88 | 3315 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 3316 | S: Maintained |
679655da JP |
3317 | F: arch/x86/kernel/cpuid.c |
3318 | F: arch/x86/kernel/msr.c | |
1da177e4 | 3319 | |
7fe2f639 | 3320 | CPU POWER MONITORING SUBSYSTEM |
d8130624 | 3321 | M: Thomas Renninger <trenn@suse.com> |
103f1790 | 3322 | L: linux-pm@vger.kernel.org |
7fe2f639 | 3323 | S: Maintained |
14430813 | 3324 | F: tools/power/cpupower/ |
7fe2f639 | 3325 | |
1da177e4 | 3326 | CRAMFS FILESYSTEM |
ce00f85c | 3327 | W: http://sourceforge.net/projects/cramfs/ |
54886a71 | 3328 | S: Orphan / Obsolete |
679655da JP |
3329 | F: Documentation/filesystems/cramfs.txt |
3330 | F: fs/cramfs/ | |
1da177e4 LT |
3331 | |
3332 | CRIS PORT | |
8b58be88 JP |
3333 | M: Mikael Starvik <starvik@axis.com> |
3334 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
9937ac0c | 3335 | L: linux-cris-kernel@axis.com |
1da177e4 | 3336 | W: http://developer.axis.com |
9f273c24 | 3337 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git |
1da177e4 | 3338 | S: Maintained |
679655da | 3339 | F: arch/cris/ |
df621252 | 3340 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
3341 | |
3342 | CRYPTO API | |
8b58be88 JP |
3343 | M: Herbert Xu <herbert@gondor.apana.org.au> |
3344 | M: "David S. Miller" <davem@davemloft.net> | |
1da177e4 | 3345 | L: linux-crypto@vger.kernel.org |
9f273c24 | 3346 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git |
54e5881d | 3347 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 3348 | S: Maintained |
679655da | 3349 | F: Documentation/crypto/ |
fe1c445b | 3350 | F: Documentation/devicetree/bindings/crypto/ |
2ca87a17 | 3351 | F: Documentation/DocBook/crypto-API.tmpl |
679655da JP |
3352 | F: arch/*/crypto/ |
3353 | F: crypto/ | |
3354 | F: drivers/crypto/ | |
3355 | F: include/crypto/ | |
1da177e4 | 3356 | |
5b07bd57 | 3357 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 3358 | M: Neil Horman <nhorman@tuxdriver.com> |
5b07bd57 NH |
3359 | L: linux-crypto@vger.kernel.org |
3360 | S: Maintained | |
51a2228a JP |
3361 | F: crypto/ansi_cprng.c |
3362 | F: crypto/rng.c | |
5b07bd57 | 3363 | |
fc279cc2 HV |
3364 | CS3308 MEDIA DRIVER |
3365 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3366 | L: linux-media@vger.kernel.org | |
3367 | T: git git://linuxtv.org/media_tree.git | |
3368 | W: http://linuxtv.org | |
3369 | S: Odd Fixes | |
3370 | F: drivers/media/i2c/cs3308.c | |
3371 | F: drivers/media/i2c/cs3308.h | |
3372 | ||
9b4ffa48 | 3373 | CS5535 Audio ALSA driver |
8b58be88 | 3374 | M: Jaya Kumar <jayakumar.alsa@gmail.com> |
9b4ffa48 | 3375 | S: Maintained |
679655da | 3376 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 3377 | |
a910e4a9 | 3378 | CW1200 WLAN driver |
b75f0050 JP |
3379 | M: Solomon Peachy <pizza@shaftnet.org> |
3380 | S: Maintained | |
560424e9 | 3381 | F: drivers/net/wireless/st/cw1200/ |
a910e4a9 | 3382 | |
6d8425b1 | 3383 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 3384 | M: Andy Walls <awalls@md.metrocast.net> |
7b212edf | 3385 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
661263b5 | 3386 | L: linux-media@vger.kernel.org |
275ffde4 | 3387 | T: git git://linuxtv.org/media_tree.git |
a825eaec | 3388 | W: https://linuxtv.org |
30e10993 | 3389 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 3390 | S: Maintained |
679655da | 3391 | F: Documentation/video4linux/cx18.txt |
90d72ac6 | 3392 | F: drivers/media/pci/cx18/ |
6c0f0359 | 3393 | F: include/uapi/linux/ivtv* |
6d8425b1 | 3394 | |
3f101d91 HV |
3395 | CX2341X MPEG ENCODER HELPER MODULE |
3396 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3397 | L: linux-media@vger.kernel.org | |
3398 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 3399 | W: https://linuxtv.org |
3f101d91 | 3400 | S: Maintained |
c368360b | 3401 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
3402 | F: include/media/cx2341x* |
3403 | ||
b8fe6e2c PB |
3404 | CX24120 MEDIA DRIVER |
3405 | M: Jemma Denson <jdenson@gmail.com> | |
3406 | M: Patrick Boettcher <patrick.boettcher@posteo.de> | |
3407 | L: linux-media@vger.kernel.org | |
a825eaec | 3408 | W: https://linuxtv.org |
b8fe6e2c PB |
3409 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3410 | S: Maintained | |
3411 | F: drivers/media/dvb-frontends/cx24120* | |
3412 | ||
20357578 | 3413 | CX88 VIDEO4LINUX DRIVER |
5dc8a864 MCC |
3414 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
3415 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
20357578 | 3416 | L: linux-media@vger.kernel.org |
a825eaec | 3417 | W: https://linuxtv.org |
20357578 MCC |
3418 | T: git git://linuxtv.org/media_tree.git |
3419 | S: Odd fixes | |
3420 | F: Documentation/video4linux/cx88/ | |
3421 | F: drivers/media/pci/cx88/ | |
6d8425b1 | 3422 | |
91952bc0 AP |
3423 | CXD2820R MEDIA DRIVER |
3424 | M: Antti Palosaari <crope@iki.fi> | |
3425 | L: linux-media@vger.kernel.org | |
a825eaec | 3426 | W: https://linuxtv.org |
91952bc0 AP |
3427 | W: http://palosaari.fi/linux/ |
3428 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3429 | T: git git://linuxtv.org/anttip/media_tree.git | |
3430 | S: Maintained | |
3431 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 3432 | |
e5ec3789 | 3433 | CXGB3 ETHERNET DRIVER (CXGB3) |
cdc99239 | 3434 | M: Santosh Raspatur <santosh@chelsio.com> |
e5ec3789 SW |
3435 | L: netdev@vger.kernel.org |
3436 | W: http://www.chelsio.com | |
3437 | S: Supported | |
f7917c00 | 3438 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 | 3439 | |
d8ae3c33 | 3440 | CXGB3 ISCSI DRIVER (CXGB3I) |
49e7d9df JP |
3441 | M: Karen Xie <kxie@chelsio.com> |
3442 | L: linux-scsi@vger.kernel.org | |
3443 | W: http://www.chelsio.com | |
3444 | S: Supported | |
3445 | F: drivers/scsi/cxgbi/cxgb3i | |
d8ae3c33 | 3446 | |
e5ec3789 | 3447 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) |
8b58be88 | 3448 | M: Steve Wise <swise@chelsio.com> |
e6cc0fd1 | 3449 | L: linux-rdma@vger.kernel.org |
e5ec3789 SW |
3450 | W: http://www.openfabrics.org |
3451 | S: Supported | |
679655da | 3452 | F: drivers/infiniband/hw/cxgb3/ |
e5ec3789 | 3453 | |
be4c9bad | 3454 | CXGB4 ETHERNET DRIVER (CXGB4) |
56f16c74 | 3455 | M: Hariprasad S <hariprasad@chelsio.com> |
be4c9bad RD |
3456 | L: netdev@vger.kernel.org |
3457 | W: http://www.chelsio.com | |
3458 | S: Supported | |
f7917c00 | 3459 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad | 3460 | |
d8ae3c33 | 3461 | CXGB4 ISCSI DRIVER (CXGB4I) |
49e7d9df JP |
3462 | M: Karen Xie <kxie@chelsio.com> |
3463 | L: linux-scsi@vger.kernel.org | |
3464 | W: http://www.chelsio.com | |
3465 | S: Supported | |
3466 | F: drivers/scsi/cxgbi/cxgb4i | |
d8ae3c33 | 3467 | |
be4c9bad RD |
3468 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) |
3469 | M: Steve Wise <swise@chelsio.com> | |
3470 | L: linux-rdma@vger.kernel.org | |
3471 | W: http://www.openfabrics.org | |
3472 | S: Supported | |
3473 | F: drivers/infiniband/hw/cxgb4/ | |
3474 | ||
5c20a5c7 CL |
3475 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
3476 | M: Casey Leedom <leedom@chelsio.com> | |
3477 | L: netdev@vger.kernel.org | |
3478 | W: http://www.chelsio.com | |
3479 | S: Supported | |
f7917c00 | 3480 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 3481 | |
a9282d01 IM |
3482 | CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER |
3483 | M: Ian Munsie <imunsie@au1.ibm.com> | |
3484 | M: Michael Neuling <mikey@neuling.org> | |
3485 | L: linuxppc-dev@lists.ozlabs.org | |
3486 | S: Supported | |
3487 | F: drivers/misc/cxl/ | |
ec249dd8 | 3488 | F: include/misc/cxl* |
a9282d01 IM |
3489 | F: include/uapi/misc/cxl.h |
3490 | F: Documentation/powerpc/cxl.txt | |
3491 | F: Documentation/powerpc/cxl.txt | |
3492 | F: Documentation/ABI/testing/sysfs-class-cxl | |
3493 | ||
11f43ae7 MO |
3494 | CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER |
3495 | M: Manoj N. Kumar <manoj@linux.vnet.ibm.com> | |
3496 | M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com> | |
b2c0627c | 3497 | M: Uma Krishnan <ukrishn@linux.vnet.ibm.com> |
11f43ae7 MO |
3498 | L: linux-scsi@vger.kernel.org |
3499 | S: Supported | |
3500 | F: drivers/scsi/cxlflash/ | |
3501 | F: include/uapi/scsi/cxlflash_ioctls.h | |
3502 | F: Documentation/powerpc/cxlflash.txt | |
3503 | ||
b52b97a3 GC |
3504 | STMMAC ETHERNET DRIVER |
3505 | M: Giuseppe Cavallaro <peppe.cavallaro@st.com> | |
91979b9d | 3506 | M: Alexandre Torgue <alexandre.torgue@st.com> |
b52b97a3 GC |
3507 | L: netdev@vger.kernel.org |
3508 | W: http://www.stlinux.com | |
3509 | S: Supported | |
7ac6653a | 3510 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 3511 | |
1da177e4 | 3512 | CYBERPRO FB DRIVER |
54176cc6 | 3513 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 3514 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 3515 | W: http://www.armlinux.org.uk/ |
1da177e4 | 3516 | S: Maintained |
8a61f013 | 3517 | F: drivers/video/fbdev/cyber2000fb.* |
9fa68eae | 3518 | |
1da177e4 | 3519 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 3520 | W: http://www.cyclades.com/ |
d459883e | 3521 | S: Orphan |
c897401b | 3522 | F: drivers/tty/cyclades.c |
679655da | 3523 | F: include/linux/cyclades.h |
c117ab84 | 3524 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
3525 | |
3526 | CYCLADES PC300 DRIVER | |
1da177e4 | 3527 | W: http://www.cyclades.com/ |
d459883e | 3528 | S: Orphan |
679655da | 3529 | F: drivers/net/wan/pc300* |
1da177e4 | 3530 | |
402f6ae4 AP |
3531 | CYPRESS_FIRMWARE MEDIA DRIVER |
3532 | M: Antti Palosaari <crope@iki.fi> | |
3533 | L: linux-media@vger.kernel.org | |
a825eaec | 3534 | W: https://linuxtv.org |
402f6ae4 AP |
3535 | W: http://palosaari.fi/linux/ |
3536 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3537 | T: git git://linuxtv.org/anttip/media_tree.git | |
3538 | S: Maintained | |
3539 | F: drivers/media/common/cypress_firmware* | |
3540 | ||
e3ae3525 | 3541 | CYTTSP TOUCHSCREEN DRIVER |
be9a6f40 | 3542 | M: Ferruh Yigit <fery@cypress.com> |
6305902c | 3543 | L: linux-input@vger.kernel.org |
be9a6f40 | 3544 | S: Supported |
6305902c JP |
3545 | F: drivers/input/touchscreen/cyttsp* |
3546 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 3547 | |
aaaf5fbf JK |
3548 | DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK |
3549 | M: Joshua Kinard <kumba@gentoo.org> | |
3550 | S: Maintained | |
3551 | F: drivers/rtc/rtc-ds1685.c | |
3552 | F: include/linux/rtc/ds1685.h | |
3553 | ||
1da177e4 | 3554 | DAMA SLAVE for AX.25 |
8b58be88 | 3555 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
3556 | W: http://yaina.de/jreuter/ |
3557 | W: http://www.qsl.net/dl1bke/ | |
3558 | L: linux-hams@vger.kernel.org | |
3559 | S: Maintained | |
679655da JP |
3560 | F: net/ax25/af_ax25.c |
3561 | F: net/ax25/ax25_dev.c | |
3562 | F: net/ax25/ax25_ds_* | |
3563 | F: net/ax25/ax25_in.c | |
3564 | F: net/ax25/ax25_out.c | |
3565 | F: net/ax25/ax25_timer.c | |
3566 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 3567 | |
e2d1d6c0 | 3568 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 3569 | L: netdev@vger.kernel.org |
5ff77428 | 3570 | S: Orphan |
679655da | 3571 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 3572 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
3573 | |
3574 | DC390/AM53C974 SCSI driver | |
d8130624 | 3575 | M: Hannes Reinecke <hare@suse.com> |
71bd849d | 3576 | L: linux-scsi@vger.kernel.org |
e2d1d6c0 | 3577 | S: Maintained |
71bd849d | 3578 | F: drivers/scsi/am53c974.c |
e2d1d6c0 | 3579 | |
1da177e4 | 3580 | DC395x SCSI driver |
61eee9a7 | 3581 | M: Oliver Neukum <oliver@neukum.org> |
8b58be88 JP |
3582 | M: Ali Akcaagac <aliakc@web.de> |
3583 | M: Jamie Lenehan <lenehan@twibble.org> | |
f5df5881 | 3584 | L: dc395x@twibble.org |
cf015e9f JP |
3585 | W: http://twibble.org/dist/dc395x/ |
3586 | W: http://lists.twibble.org/mailman/listinfo/dc395x/ | |
1da177e4 | 3587 | S: Maintained |
679655da JP |
3588 | F: Documentation/scsi/dc395x.txt |
3589 | F: drivers/scsi/dc395x.* | |
1da177e4 | 3590 | |
eb8edb08 | 3591 | DCCP PROTOCOL |
a89d030e | 3592 | M: Gerrit Renker <gerrit@erg.abdn.ac.uk> |
eb8edb08 | 3593 | L: dccp@vger.kernel.org |
c996d8b9 | 3594 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 3595 | S: Maintained |
679655da | 3596 | F: include/linux/dccp.h |
c117ab84 | 3597 | F: include/uapi/linux/dccp.h |
679655da JP |
3598 | F: include/linux/tfrc.h |
3599 | F: net/dccp/ | |
eb8edb08 | 3600 | |
1da177e4 | 3601 | DECnet NETWORK LAYER |
1da177e4 LT |
3602 | W: http://linux-decnet.sourceforge.net |
3603 | L: linux-decnet-user@lists.sourceforge.net | |
f546444d | 3604 | S: Orphan |
679655da JP |
3605 | F: Documentation/networking/decnet.txt |
3606 | F: net/decnet/ | |
1da177e4 | 3607 | |
ebff05b9 MR |
3608 | DECSTATION PLATFORM SUPPORT |
3609 | M: "Maciej W. Rozycki" <macro@linux-mips.org> | |
3610 | L: linux-mips@linux-mips.org | |
3611 | W: http://www.linux-mips.org/wiki/DECstation | |
3612 | S: Maintained | |
3613 | F: arch/mips/dec/ | |
3614 | F: arch/mips/include/asm/dec/ | |
3615 | F: arch/mips/include/asm/mach-dec/ | |
3616 | ||
1da177e4 | 3617 | DEFXX FDDI NETWORK DRIVER |
8b58be88 | 3618 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
1da177e4 | 3619 | S: Maintained |
33f810b2 | 3620 | F: drivers/net/fddi/defxx.* |
1da177e4 | 3621 | |
ad8f07cc | 3622 | DELL LAPTOP DRIVER |
8b58be88 | 3623 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
cdbff611 | 3624 | M: Pali Rohár <pali.rohar@gmail.com> |
d0944853 | 3625 | L: platform-driver-x86@vger.kernel.org |
ad8f07cc | 3626 | S: Maintained |
679655da | 3627 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 3628 | |
817a5cdb PR |
3629 | DELL LAPTOP RBTN DRIVER |
3630 | M: Pali Rohár <pali.rohar@gmail.com> | |
3631 | S: Maintained | |
3632 | F: drivers/platform/x86/dell-rbtn.* | |
3633 | ||
cdbff611 PR |
3634 | DELL LAPTOP FREEFALL DRIVER |
3635 | M: Pali Rohár <pali.rohar@gmail.com> | |
3636 | S: Maintained | |
3637 | F: drivers/platform/x86/dell-smo8800.c | |
3638 | ||
1da177e4 | 3639 | DELL LAPTOP SMM DRIVER |
a5afba16 | 3640 | M: Pali Rohár <pali.rohar@gmail.com> |
ef3522f7 | 3641 | S: Maintained |
a5afba16 | 3642 | F: drivers/hwmon/dell-smm-hwmon.c |
c117ab84 | 3643 | F: include/uapi/linux/i8k.h |
1da177e4 | 3644 | |
90563ec4 | 3645 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 3646 | M: Doug Warzecha <Douglas_Warzecha@dell.com> |
90563ec4 | 3647 | S: Maintained |
679655da JP |
3648 | F: Documentation/dcdbas.txt |
3649 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 3650 | |
0b3f6109 | 3651 | DELL WMI EXTRAS DRIVER |
8b58be88 | 3652 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
cdbff611 | 3653 | M: Pali Rohár <pali.rohar@gmail.com> |
0b3f6109 | 3654 | S: Maintained |
36b3a96f | 3655 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 3656 | |
5efc75e3 | 3657 | DESIGNWARE USB2 DRD IP DRIVER |
16272ae7 | 3658 | M: John Youn <johnyoun@synopsys.com> |
5efc75e3 | 3659 | L: linux-usb@vger.kernel.org |
18f340f9 | 3660 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
5efc75e3 | 3661 | S: Maintained |
197ba5f4 | 3662 | F: drivers/usb/dwc2/ |
5efc75e3 | 3663 | |
94ab23dd | 3664 | DESIGNWARE USB3 DRD IP DRIVER |
a55f6286 | 3665 | M: Felipe Balbi <balbi@kernel.org> |
94ab23dd | 3666 | L: linux-usb@vger.kernel.org |
94ab23dd FB |
3667 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
3668 | S: Maintained | |
3669 | F: drivers/usb/dwc3/ | |
3670 | ||
833c9545 JB |
3671 | DEVICE COREDUMP (DEV_COREDUMP) |
3672 | M: Johannes Berg <johannes@sipsolutions.net> | |
3673 | L: linux-kernel@vger.kernel.org | |
3674 | S: Maintained | |
3675 | F: drivers/base/devcoredump.c | |
3676 | F: include/linux/devcoredump.h | |
3677 | ||
89d07767 KP |
3678 | DEVICE FREQUENCY (DEVFREQ) |
3679 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
3680 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
88476d34 | 3681 | L: linux-pm@vger.kernel.org |
6a3cd722 | 3682 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git |
89d07767 KP |
3683 | S: Maintained |
3684 | F: drivers/devfreq/ | |
6a3cd722 CC |
3685 | F: include/linux/devfreq.h |
3686 | F: Documentation/devicetree/bindings/devfreq/ | |
89d07767 | 3687 | |
7dbded06 CC |
3688 | DEVICE FREQUENCY EVENT (DEVFREQ-EVENT) |
3689 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
3690 | L: linux-pm@vger.kernel.org | |
3691 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git | |
3692 | S: Supported | |
3693 | F: drivers/devfreq/event/ | |
3694 | F: drivers/devfreq/devfreq-event.c | |
3695 | F: include/linux/devfreq-event.h | |
3696 | F: Documentation/devicetree/bindings/devfreq/event/ | |
89d07767 | 3697 | |
490b864b CC |
3698 | BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS |
3699 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
3700 | L: linux-pm@vger.kernel.org | |
3701 | L: linux-samsung-soc@vger.kernel.org | |
3702 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git | |
3703 | S: Maintained | |
3704 | F: drivers/devfreq/exynos-bus.c | |
3705 | F: Documentation/devicetree/bindings/devfreq/exynos-bus.txt | |
3706 | ||
1da177e4 | 3707 | DEVICE NUMBER REGISTRY |
8b58be88 | 3708 | M: Torben Mathiasen <device@lanana.org> |
1da177e4 | 3709 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
3710 | S: Maintained |
3711 | ||
e2d1d6c0 | 3712 | DEVICE-MAPPER (LVM) |
854ecaad | 3713 | M: Alasdair Kergon <agk@redhat.com> |
8504eed3 | 3714 | M: Mike Snitzer <snitzer@redhat.com> |
854ecaad | 3715 | M: dm-devel@redhat.com |
e2d1d6c0 RD |
3716 | L: dm-devel@redhat.com |
3717 | W: http://sources.redhat.com/dm | |
8a6e2535 | 3718 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
41d35d25 | 3719 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git |
854ecaad | 3720 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 3721 | S: Maintained |
679655da JP |
3722 | F: Documentation/device-mapper/ |
3723 | F: drivers/md/dm* | |
854ecaad | 3724 | F: drivers/md/persistent-data/ |
679655da JP |
3725 | F: include/linux/device-mapper.h |
3726 | F: include/linux/dm-*.h | |
8504eed3 | 3727 | F: include/uapi/linux/dm-*.h |
e2d1d6c0 | 3728 | |
bfcd3a46 JP |
3729 | DEVLINK |
3730 | M: Jiri Pirko <jiri@mellanox.com> | |
3731 | L: netdev@vger.kernel.org | |
3732 | S: Supported | |
3733 | F: net/core/devlink.c | |
3734 | F: include/net/devlink.h | |
3735 | F: include/uapi/linux/devlink.h | |
3736 | ||
c0d995aa OST |
3737 | DIALOG SEMICONDUCTOR DRIVERS |
3738 | M: Support Opensource <support.opensource@diasemi.com> | |
3739 | W: http://www.dialog-semiconductor.com/products | |
3740 | S: Supported | |
3741 | F: Documentation/hwmon/da90?? | |
047cfd01 | 3742 | F: Documentation/devicetree/bindings/mfd/da90*.txt |
4eeb08b4 | 3743 | F: Documentation/devicetree/bindings/regulator/da92*.txt |
7c933772 | 3744 | F: Documentation/devicetree/bindings/sound/da[79]*.txt |
c0d995aa OST |
3745 | F: drivers/gpio/gpio-da90??.c |
3746 | F: drivers/hwmon/da90??-hwmon.c | |
7be72c2c | 3747 | F: drivers/iio/adc/da91??-*.c |
c0d995aa OST |
3748 | F: drivers/input/misc/da90??_onkey.c |
3749 | F: drivers/input/touchscreen/da9052_tsi.c | |
3750 | F: drivers/leds/leds-da90??.c | |
3751 | F: drivers/mfd/da903x.c | |
3752 | F: drivers/mfd/da90??-*.c | |
7be72c2c | 3753 | F: drivers/mfd/da91??-*.c |
c0d995aa | 3754 | F: drivers/power/da9052-battery.c |
7be72c2c | 3755 | F: drivers/power/da91??-*.c |
c0d995aa OST |
3756 | F: drivers/regulator/da903x.c |
3757 | F: drivers/regulator/da9???-regulator.[ch] | |
3758 | F: drivers/rtc/rtc-da90??.c | |
3759 | F: drivers/video/backlight/da90??_bl.c | |
3760 | F: drivers/watchdog/da90??_wdt.c | |
3761 | F: include/linux/mfd/da903x.h | |
3762 | F: include/linux/mfd/da9052/ | |
3763 | F: include/linux/mfd/da9055/ | |
047cfd01 | 3764 | F: include/linux/mfd/da9062/ |
c0d995aa | 3765 | F: include/linux/mfd/da9063/ |
7be72c2c | 3766 | F: include/linux/mfd/da9150/ |
4eeb08b4 | 3767 | F: include/linux/regulator/da9211.h |
c0d995aa OST |
3768 | F: include/sound/da[79]*.h |
3769 | F: sound/soc/codecs/da[79]*.[ch] | |
3770 | ||
599aa697 LL |
3771 | DIGI NEO AND CLASSIC PCI PRODUCTS |
3772 | M: Lidza Louina <lidza.louina@gmail.com> | |
542f3d5a | 3773 | M: Mark Hounschell <markh@compro.net> |
599aa697 LL |
3774 | L: driverdev-devel@linuxdriverproject.org |
3775 | S: Maintained | |
3776 | F: drivers/staging/dgnc/ | |
3777 | ||
335d7c58 | 3778 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 3779 | M: Guenter Roeck <linux@roeck-us.net> |
335d7c58 GR |
3780 | L: linux-i2c@vger.kernel.org |
3781 | S: Maintained | |
3782 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
3783 | ||
d475c634 MW |
3784 | DIRECT ACCESS (DAX) |
3785 | M: Matthew Wilcox <willy@linux.intel.com> | |
3786 | L: linux-fsdevel@vger.kernel.org | |
3787 | S: Supported | |
3788 | F: fs/dax.c | |
3789 | ||
e7839f25 | 3790 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 3791 | M: Eric Paris <eparis@parisplace.org> |
3c5119c0 | 3792 | S: Maintained |
679655da JP |
3793 | F: Documentation/filesystems/dnotify.txt |
3794 | F: fs/notify/dnotify/ | |
3795 | F: include/linux/dnotify.h | |
1da177e4 LT |
3796 | |
3797 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 3798 | M: Andries Brouwer <aeb@cwi.nl> |
1da177e4 LT |
3799 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
3800 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
3801 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
3802 | S: Maintained | |
3803 | ||
4480f15b | 3804 | DISKQUOTA |
d8130624 | 3805 | M: Jan Kara <jack@suse.com> |
1da177e4 | 3806 | S: Maintained |
679655da JP |
3807 | F: Documentation/filesystems/quota.txt |
3808 | F: fs/quota/ | |
3809 | F: include/linux/quota*.h | |
c117ab84 | 3810 | F: include/uapi/linux/quota*.h |
1da177e4 | 3811 | |
702686ad BT |
3812 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
3813 | M: Bernie Thompson <bernie@plugable.com> | |
3814 | L: linux-fbdev@vger.kernel.org | |
3815 | S: Maintained | |
3816 | W: http://plugable.com/category/projects/udlfb/ | |
8a61f013 | 3817 | F: drivers/video/fbdev/udlfb.c |
702686ad BT |
3818 | F: include/video/udlfb.h |
3819 | F: Documentation/fb/udlfb.txt | |
3820 | ||
e7839f25 | 3821 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
3822 | M: Christine Caulfield <ccaulfie@redhat.com> |
3823 | M: David Teigland <teigland@redhat.com> | |
a4644184 | 3824 | L: cluster-devel@redhat.com |
5be7b50f | 3825 | W: http://sources.redhat.com/cluster/ |
9f273c24 | 3826 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git |
5be7b50f | 3827 | S: Supported |
679655da | 3828 | F: fs/dlm/ |
5be7b50f | 3829 | |
53b6b3e0 SS |
3830 | DMA BUFFER SHARING FRAMEWORK |
3831 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
3832 | S: Maintained | |
3833 | L: linux-media@vger.kernel.org | |
3834 | L: dri-devel@lists.freedesktop.org | |
8ada6d2d | 3835 | L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers) |
35fac7e3 | 3836 | F: drivers/dma-buf/ |
e46d12c6 JP |
3837 | F: include/linux/dma-buf* |
3838 | F: include/linux/reservation.h | |
3839 | F: include/linux/*fence.h | |
53b6b3e0 SS |
3840 | F: Documentation/dma-buf-sharing.txt |
3841 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
3842 | ||
c483e065 GP |
3843 | SYNC FILE FRAMEWORK |
3844 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
3845 | R: Gustavo Padovan <gustavo@padovan.org> | |
3846 | S: Maintained | |
3847 | L: linux-media@vger.kernel.org | |
3848 | L: dri-devel@lists.freedesktop.org | |
3849 | F: drivers/dma-buf/sync_file.c | |
3850 | F: include/linux/sync_file.h | |
3851 | F: Documentation/sync_file.txt | |
3852 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
3853 | ||
b3e5f263 | 3854 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 3855 | M: Vinod Koul <vinod.koul@intel.com> |
17b59560 VK |
3856 | L: dmaengine@vger.kernel.org |
3857 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
08223d80 | 3858 | S: Maintained |
679655da | 3859 | F: drivers/dma/ |
0ce3c066 | 3860 | F: include/linux/dmaengine.h |
c56d329e | 3861 | F: Documentation/devicetree/bindings/dma/ |
979a281e VK |
3862 | F: Documentation/dmaengine/ |
3863 | T: git git://git.infradead.org/users/vkoul/slave-dma.git | |
248a9dc3 | 3864 | |
b825037d | 3865 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 3866 | M: Juerg Haefliger <juergh@gmail.com> |
968ce1b1 | 3867 | L: linux-hwmon@vger.kernel.org |
b825037d | 3868 | S: Maintained |
679655da JP |
3869 | F: Documentation/hwmon/dme1737 |
3870 | F: drivers/hwmon/dme1737.c | |
b825037d | 3871 | |
1f31e1b1 | 3872 | DMI/SMBIOS SUPPORT |
d8130624 | 3873 | M: Jean Delvare <jdelvare@suse.com> |
1f31e1b1 | 3874 | S: Maintained |
d4aeef93 | 3875 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/ |
d7f96f97 | 3876 | F: Documentation/ABI/testing/sysfs-firmware-dmi-tables |
1f31e1b1 JD |
3877 | F: drivers/firmware/dmi-id.c |
3878 | F: drivers/firmware/dmi_scan.c | |
3879 | F: include/linux/dmi.h | |
3880 | ||
7d2c86b5 | 3881 | DOCUMENTATION |
ad3118b9 | 3882 | M: Jonathan Corbet <corbet@lwn.net> |
795fb7e7 JD |
3883 | L: linux-doc@vger.kernel.org |
3884 | S: Maintained | |
679655da | 3885 | F: Documentation/ |
42f41ecf JC |
3886 | F: scripts/docproc.c |
3887 | F: scripts/kernel-doc* | |
97be078b RD |
3888 | X: Documentation/ABI/ |
3889 | X: Documentation/devicetree/ | |
933a46b8 JC |
3890 | X: Documentation/acpi |
3891 | X: Documentation/power | |
3892 | X: Documentation/spi | |
6c121170 | 3893 | X: Documentation/DocBook/media |
c51edfb1 | 3894 | T: git git://git.lwn.net/linux.git docs-next |
abbaeff3 | 3895 | |
1da177e4 | 3896 | DOUBLETALK DRIVER |
8b58be88 | 3897 | M: "James R. Van Zandt" <jrv@vanzandt.mv.com> |
1da177e4 LT |
3898 | L: blinux-list@redhat.com |
3899 | S: Maintained | |
679655da JP |
3900 | F: drivers/char/dtlk.c |
3901 | F: include/linux/dtlk.h | |
1da177e4 | 3902 | |
e2d1d6c0 | 3903 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 3904 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
3905 | L: linux-scsi@vger.kernel.org |
3906 | W: http://www.adaptec.com/ | |
3907 | S: Maintained | |
679655da JP |
3908 | F: drivers/scsi/dpt* |
3909 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 3910 | |
b411b363 | 3911 | DRBD DRIVER |
bc2c049d RK |
3912 | M: Philipp Reisner <philipp.reisner@linbit.com> |
3913 | M: Lars Ellenberg <lars.ellenberg@linbit.com> | |
3914 | L: drbd-dev@lists.linbit.com | |
28b8e8d4 | 3915 | W: http://www.drbd.org |
bc2c049d RK |
3916 | T: git git://git.linbit.com/linux-drbd.git |
3917 | T: git git://git.linbit.com/drbd-8.4.git | |
28b8e8d4 JP |
3918 | S: Supported |
3919 | F: drivers/block/drbd/ | |
3920 | F: lib/lru_cache.c | |
3921 | F: Documentation/blockdev/drbd/ | |
b411b363 | 3922 | |
dc7dfcd8 | 3923 | DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS |
879a5a00 | 3924 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
08deed1e | 3925 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 3926 | S: Supported |
679655da | 3927 | F: Documentation/kobject.txt |
7cfc51b9 | 3928 | F: drivers/base/ |
87544653 | 3929 | F: fs/debugfs/ |
dc7dfcd8 WS |
3930 | F: fs/kernfs/ |
3931 | F: fs/sysfs/ | |
87544653 | 3932 | F: include/linux/debugfs.h |
dc7dfcd8 | 3933 | F: include/linux/kobj* |
679655da | 3934 | F: lib/kobj* |
1da177e4 LT |
3935 | |
3936 | DRM DRIVERS | |
8b58be88 | 3937 | M: David Airlie <airlied@linux.ie> |
4c6a3999 | 3938 | L: dri-devel@lists.freedesktop.org |
b0447888 | 3939 | T: git git://people.freedesktop.org/~airlied/linux |
1da177e4 | 3940 | S: Maintained |
679655da | 3941 | F: drivers/gpu/drm/ |
433e3b34 | 3942 | F: drivers/gpu/vga/ |
d28ab95b GU |
3943 | F: Documentation/devicetree/bindings/display/ |
3944 | F: Documentation/devicetree/bindings/gpu/ | |
3945 | F: Documentation/devicetree/bindings/video/ | |
621c5474 | 3946 | F: Documentation/gpu/ |
850e9411 | 3947 | F: include/drm/ |
c117ab84 | 3948 | F: include/uapi/drm/ |
1da177e4 | 3949 | |
c842b693 EV |
3950 | DRM DRIVER FOR AST SERVER GRAPHICS CHIPS |
3951 | M: Dave Airlie <airlied@redhat.com> | |
3952 | S: Odd Fixes | |
3953 | F: drivers/gpu/drm/ast/ | |
3954 | ||
3955 | DRM DRIVER FOR BOCHS VIRTUAL GPU | |
3956 | M: Gerd Hoffmann <kraxel@redhat.com> | |
3957 | S: Odd Fixes | |
3958 | F: drivers/gpu/drm/bochs/ | |
3959 | ||
3960 | DRM DRIVER FOR QEMU'S CIRRUS DEVICE | |
3961 | M: Dave Airlie <airlied@redhat.com> | |
3962 | S: Odd Fixes | |
3963 | F: drivers/gpu/drm/cirrus/ | |
3964 | ||
c26a4017 | 3965 | RADEON and AMDGPU DRM DRIVERS |
566f5939 AD |
3966 | M: Alex Deucher <alexander.deucher@amd.com> |
3967 | M: Christian König <christian.koenig@amd.com> | |
3968 | L: dri-devel@lists.freedesktop.org | |
3969 | T: git git://people.freedesktop.org/~agd5f/linux | |
3970 | S: Supported | |
3971 | F: drivers/gpu/drm/radeon/ | |
74c97375 | 3972 | F: include/uapi/drm/radeon_drm.h |
c26a4017 | 3973 | F: drivers/gpu/drm/amd/ |
74c97375 | 3974 | F: include/uapi/drm/amdgpu_drm.h |
566f5939 | 3975 | |
03e255b9 TR |
3976 | DRM PANEL DRIVERS |
3977 | M: Thierry Reding <thierry.reding@gmail.com> | |
3978 | L: dri-devel@lists.freedesktop.org | |
3979 | T: git git://anongit.freedesktop.org/tegra/linux.git | |
3980 | S: Maintained | |
3981 | F: drivers/gpu/drm/drm_panel.c | |
3982 | F: drivers/gpu/drm/panel/ | |
3983 | F: include/drm/drm_panel.h | |
2d799dde | 3984 | F: Documentation/devicetree/bindings/display/panel/ |
03e255b9 | 3985 | |
8daf7473 | 3986 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
cbce7107 | 3987 | M: Daniel Vetter <daniel.vetter@intel.com> |
47f95647 | 3988 | M: Jani Nikula <jani.nikula@linux.intel.com> |
362132d2 | 3989 | L: intel-gfx@lists.freedesktop.org |
8daf7473 | 3990 | L: dri-devel@lists.freedesktop.org |
7564fde3 | 3991 | W: https://01.org/linuxgraphics/ |
47f95647 | 3992 | Q: http://patchwork.freedesktop.org/project/intel-gfx/ |
89258a97 | 3993 | T: git git://anongit.freedesktop.org/drm-intel |
8daf7473 | 3994 | S: Supported |
14430813 | 3995 | F: drivers/gpu/drm/i915/ |
8daf7473 | 3996 | F: include/drm/i915* |
baceac3a | 3997 | F: include/uapi/drm/i915_drm.h |
621c5474 | 3998 | F: Documentation/gpu/i915.rst |
8daf7473 | 3999 | |
99763bb8 BB |
4000 | DRM DRIVERS FOR ATMEL HLCDC |
4001 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
4002 | L: dri-devel@lists.freedesktop.org | |
4003 | S: Supported | |
4004 | F: drivers/gpu/drm/atmel-hlcdc/ | |
4005 | F: Documentation/devicetree/bindings/drm/atmel/ | |
4006 | ||
bf1139df MR |
4007 | DRM DRIVERS FOR ALLWINNER A10 |
4008 | M: Maxime Ripard <maxime.ripard@free-electrons.com> | |
4009 | L: dri-devel@lists.freedesktop.org | |
4010 | S: Supported | |
4011 | F: drivers/gpu/drm/sun4i/ | |
4012 | F: Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt | |
4013 | ||
398a6d4a KP |
4014 | DRM DRIVERS FOR EXYNOS |
4015 | M: Inki Dae <inki.dae@samsung.com> | |
f1501303 ID |
4016 | M: Joonyoung Shim <jy0922.shim@samsung.com> |
4017 | M: Seung-Woo Kim <sw0312.kim@samsung.com> | |
4018 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
398a6d4a | 4019 | L: dri-devel@lists.freedesktop.org |
25a58030 | 4020 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a | 4021 | S: Supported |
14430813 | 4022 | F: drivers/gpu/drm/exynos/ |
8fb9b15b EV |
4023 | F: include/uapi/drm/exynos_drm.h |
4024 | F: Documentation/devicetree/bindings/display/exynos/ | |
398a6d4a | 4025 | |
b55a1b9c | 4026 | DRM DRIVERS FOR FREESCALE DCU |
bc66757a | 4027 | M: Stefan Agner <stefan@agner.ch> |
b55a1b9c JW |
4028 | M: Alison Wang <alison.wang@freescale.com> |
4029 | L: dri-devel@lists.freedesktop.org | |
4030 | S: Supported | |
4031 | F: drivers/gpu/drm/fsl-dcu/ | |
2d799dde | 4032 | F: Documentation/devicetree/bindings/display/fsl,dcu.txt |
fb127b79 | 4033 | F: Documentation/devicetree/bindings/display/fsl,tcon.txt |
2d799dde | 4034 | F: Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt |
b55a1b9c | 4035 | |
0a3d775f PZ |
4036 | DRM DRIVERS FOR FREESCALE IMX |
4037 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
4038 | L: dri-devel@lists.freedesktop.org | |
4039 | S: Maintained | |
4040 | F: drivers/gpu/drm/imx/ | |
ef739aa4 | 4041 | F: drivers/gpu/ipu-v3/ |
2d799dde | 4042 | F: Documentation/devicetree/bindings/display/imx/ |
0a3d775f | 4043 | |
ba2199a6 PJ |
4044 | DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets) |
4045 | M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com> | |
4046 | L: dri-devel@lists.freedesktop.org | |
4047 | T: git git://github.com/patjak/drm-gma500 | |
4048 | S: Maintained | |
5ff18e42 | 4049 | F: drivers/gpu/drm/gma500/ |
ba2199a6 | 4050 | |
c84ffde9 XL |
4051 | DRM DRIVERS FOR HISILICON |
4052 | M: Xinliang Liu <z.liuxinliang@hisilicon.com> | |
4053 | R: Xinwei Kong <kong.kongxinwei@hisilicon.com> | |
4054 | R: Chen Feng <puck.chen@hisilicon.com> | |
4055 | L: dri-devel@lists.freedesktop.org | |
4056 | T: git git://github.com/xin3liang/linux.git | |
4057 | S: Maintained | |
4058 | F: drivers/gpu/drm/hisilicon/ | |
4059 | F: Documentation/devicetree/bindings/display/hisilicon/ | |
4060 | ||
399516ab EV |
4061 | DRM DRIVER FOR INTEL I810 VIDEO CARDS |
4062 | S: Orphan / Obsolete | |
4063 | F: drivers/gpu/drm/i810/ | |
4064 | F: include/uapi/drm/i810_drm.h | |
4065 | ||
06346451 EV |
4066 | DRM DRIVER FOR MSM ADRENO GPU |
4067 | M: Rob Clark <robdclark@gmail.com> | |
4068 | L: linux-arm-msm@vger.kernel.org | |
4069 | L: dri-devel@lists.freedesktop.org | |
4070 | L: freedreno@lists.freedesktop.org | |
4071 | T: git git://people.freedesktop.org/~robclark/linux | |
4072 | S: Maintained | |
4073 | F: drivers/gpu/drm/msm/ | |
4074 | F: include/uapi/drm/msm_drm.h | |
4075 | F: Documentation/devicetree/bindings/display/msm/ | |
4076 | ||
fad89bb3 EV |
4077 | DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS |
4078 | M: Ben Skeggs <bskeggs@redhat.com> | |
4079 | L: dri-devel@lists.freedesktop.org | |
4080 | L: nouveau@lists.freedesktop.org | |
4081 | T: git git://github.com/skeggsb/linux | |
4082 | S: Supported | |
4083 | F: drivers/gpu/drm/nouveau/ | |
4084 | F: include/uapi/drm/nouveau_drm.h | |
ba2199a6 | 4085 | |
bd3b49f2 | 4086 | DRM DRIVERS FOR NVIDIA TEGRA |
a5ad7a63 | 4087 | M: Thierry Reding <thierry.reding@gmail.com> |
bd3b49f2 TR |
4088 | L: dri-devel@lists.freedesktop.org |
4089 | L: linux-tegra@vger.kernel.org | |
a5ad7a63 | 4090 | T: git git://anongit.freedesktop.org/tegra/linux.git |
adabdb0c | 4091 | S: Supported |
dee8268f | 4092 | F: drivers/gpu/drm/tegra/ |
a5ad7a63 | 4093 | F: drivers/gpu/host1x/ |
e1e90644 | 4094 | F: include/linux/host1x.h |
a5ad7a63 | 4095 | F: include/uapi/drm/tegra_drm.h |
2d799dde | 4096 | F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt |
bd3b49f2 | 4097 | |
399516ab EV |
4098 | DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS |
4099 | S: Orphan / Obsolete | |
4100 | F: drivers/gpu/drm/mga/ | |
4101 | F: include/uapi/drm/mga_drm.h | |
4102 | ||
c842b693 EV |
4103 | DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS |
4104 | M: Dave Airlie <airlied@redhat.com> | |
4105 | S: Odd Fixes | |
4106 | F: drivers/gpu/drm/mgag200/ | |
4107 | ||
399516ab EV |
4108 | DRM DRIVER FOR RAGE 128 VIDEO CARDS |
4109 | S: Orphan / Obsolete | |
4110 | F: drivers/gpu/drm/r128/ | |
4111 | F: include/uapi/drm/r128_drm.h | |
4112 | ||
a284e9d1 LP |
4113 | DRM DRIVERS FOR RENESAS |
4114 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
4115 | L: dri-devel@lists.freedesktop.org | |
4a121096 | 4116 | L: linux-renesas-soc@vger.kernel.org |
2392ccd4 | 4117 | T: git git://linuxtv.org/pinchartl/fbdev |
a284e9d1 LP |
4118 | S: Supported |
4119 | F: drivers/gpu/drm/rcar-du/ | |
4120 | F: drivers/gpu/drm/shmobile/ | |
a284e9d1 | 4121 | F: include/linux/platform_data/shmob_drm.h |
33be436d | 4122 | F: Documentation/devicetree/bindings/display/renesas,du.txt |
a284e9d1 | 4123 | |
c842b693 EV |
4124 | DRM DRIVER FOR QXL VIRTUAL GPU |
4125 | M: Dave Airlie <airlied@redhat.com> | |
4126 | S: Odd Fixes | |
4127 | F: drivers/gpu/drm/qxl/ | |
4128 | F: include/uapi/drm/qxl_drm.h | |
a284e9d1 | 4129 | |
625e0346 HS |
4130 | DRM DRIVERS FOR ROCKCHIP |
4131 | M: Mark Yao <mark.yao@rock-chips.com> | |
4132 | L: dri-devel@lists.freedesktop.org | |
4133 | S: Maintained | |
4134 | F: drivers/gpu/drm/rockchip/ | |
f253f7eb | 4135 | F: Documentation/devicetree/bindings/display/rockchip/ |
625e0346 | 4136 | |
399516ab EV |
4137 | DRM DRIVER FOR SAVAGE VIDEO CARDS |
4138 | S: Orphan / Obsolete | |
4139 | F: drivers/gpu/drm/savage/ | |
4140 | F: include/uapi/drm/savage_drm.h | |
4141 | ||
4142 | DRM DRIVER FOR SIS VIDEO CARDS | |
4143 | S: Orphan / Obsolete | |
4144 | F: drivers/gpu/drm/sis/ | |
4145 | F: include/uapi/drm/sis_drm.h | |
625e0346 | 4146 | |
7f11c476 BG |
4147 | DRM DRIVERS FOR STI |
4148 | M: Benjamin Gaignard <benjamin.gaignard@linaro.org> | |
4149 | M: Vincent Abriou <vincent.abriou@st.com> | |
4150 | L: dri-devel@lists.freedesktop.org | |
4151 | T: git http://git.linaro.org/people/benjamin.gaignard/kernel.git | |
4152 | S: Maintained | |
4153 | F: drivers/gpu/drm/sti | |
2d799dde | 4154 | F: Documentation/devicetree/bindings/display/st,stih4xx.txt |
7f11c476 | 4155 | |
399516ab EV |
4156 | DRM DRIVER FOR TDFX VIDEO CARDS |
4157 | S: Orphan / Obsolete | |
4158 | F: drivers/gpu/drm/tdfx/ | |
4159 | ||
c842b693 EV |
4160 | DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS |
4161 | M: Dave Airlie <airlied@redhat.com> | |
4162 | S: Odd Fixes | |
4163 | F: drivers/gpu/drm/udl/ | |
4164 | ||
8bb0bce9 LS |
4165 | DRM DRIVERS FOR VIVANTE GPU IP |
4166 | M: Lucas Stach <l.stach@pengutronix.de> | |
54176cc6 | 4167 | R: Russell King <linux+etnaviv@armlinux.org.uk> |
8bb0bce9 LS |
4168 | R: Christian Gmeiner <christian.gmeiner@gmail.com> |
4169 | L: dri-devel@lists.freedesktop.org | |
4170 | S: Maintained | |
8a9257a0 EV |
4171 | F: drivers/gpu/drm/etnaviv/ |
4172 | F: include/uapi/drm/etnaviv_drm.h | |
4173 | F: Documentation/devicetree/bindings/display/etnaviv/ | |
8bb0bce9 | 4174 | |
c4291702 EV |
4175 | DRM DRIVER FOR VMWARE VIRTUAL GPU |
4176 | M: "VMware Graphics" <linux-graphics-maintainer@vmware.com> | |
4177 | M: Sinclair Yeh <syeh@vmware.com> | |
4178 | M: Thomas Hellstrom <thellstrom@vmware.com> | |
4179 | L: dri-devel@lists.freedesktop.org | |
4180 | T: git git://people.freedesktop.org/~syeh/repos_linux | |
4181 | T: git git://people.freedesktop.org/~thomash/linux | |
4182 | S: Supported | |
4183 | F: drivers/gpu/drm/vmwgfx/ | |
4184 | F: include/uapi/drm/vmwgfx_drm.h | |
4185 | ||
8636d452 EA |
4186 | DRM DRIVERS FOR VC4 |
4187 | M: Eric Anholt <eric@anholt.net> | |
4188 | T: git git://github.com/anholt/linux | |
4189 | S: Supported | |
4190 | F: drivers/gpu/drm/vc4/ | |
4191 | F: include/uapi/drm/vc4_drm.h | |
4192 | F: Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt | |
8bb0bce9 | 4193 | |
5ef330a7 TV |
4194 | DRM DRIVERS FOR TI OMAP |
4195 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
4196 | L: dri-devel@lists.freedesktop.org | |
4197 | S: Maintained | |
4198 | F: drivers/gpu/drm/omapdrm/ | |
4199 | F: Documentation/devicetree/bindings/display/ti/ | |
4200 | ||
adb314ed TV |
4201 | DRM DRIVERS FOR TI LCDC |
4202 | M: Jyri Sarha <jsarha@ti.com> | |
4203 | R: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
4204 | L: dri-devel@lists.freedesktop.org | |
4205 | S: Maintained | |
4206 | F: drivers/gpu/drm/tilcdc/ | |
4207 | F: Documentation/devicetree/bindings/display/tilcdc/ | |
4208 | ||
598df1ac AK |
4209 | DSBR100 USB FM RADIO DRIVER |
4210 | M: Alexey Klimov <klimov.linux@gmail.com> | |
4211 | L: linux-media@vger.kernel.org | |
4212 | T: git git://linuxtv.org/media_tree.git | |
4213 | S: Maintained | |
4214 | F: drivers/media/radio/dsbr100.c | |
4215 | ||
1da177e4 | 4216 | DSCC4 DRIVER |
8b58be88 | 4217 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 | 4218 | L: netdev@vger.kernel.org |
1da177e4 | 4219 | S: Maintained |
679655da | 4220 | F: drivers/net/wan/dscc4.c |
1da177e4 | 4221 | |
cc11b140 HV |
4222 | DT3155 MEDIA DRIVER |
4223 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
4224 | L: linux-media@vger.kernel.org | |
4225 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 4226 | W: https://linuxtv.org |
cc11b140 HV |
4227 | S: Odd Fixes |
4228 | F: drivers/media/pci/dt3155/ | |
4229 | ||
91952bc0 AP |
4230 | DVB_USB_AF9015 MEDIA DRIVER |
4231 | M: Antti Palosaari <crope@iki.fi> | |
4232 | L: linux-media@vger.kernel.org | |
a825eaec | 4233 | W: https://linuxtv.org |
91952bc0 AP |
4234 | W: http://palosaari.fi/linux/ |
4235 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4236 | T: git git://linuxtv.org/anttip/media_tree.git | |
4237 | S: Maintained | |
4238 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
4239 | ||
4240 | DVB_USB_AF9035 MEDIA DRIVER | |
4241 | M: Antti Palosaari <crope@iki.fi> | |
4242 | L: linux-media@vger.kernel.org | |
a825eaec | 4243 | W: https://linuxtv.org |
91952bc0 AP |
4244 | W: http://palosaari.fi/linux/ |
4245 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4246 | T: git git://linuxtv.org/anttip/media_tree.git | |
4247 | S: Maintained | |
4248 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
4249 | ||
4250 | DVB_USB_ANYSEE MEDIA DRIVER | |
4251 | M: Antti Palosaari <crope@iki.fi> | |
4252 | L: linux-media@vger.kernel.org | |
a825eaec | 4253 | W: https://linuxtv.org |
91952bc0 AP |
4254 | W: http://palosaari.fi/linux/ |
4255 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4256 | T: git git://linuxtv.org/anttip/media_tree.git | |
4257 | S: Maintained | |
4258 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
4259 | ||
4260 | DVB_USB_AU6610 MEDIA DRIVER | |
4261 | M: Antti Palosaari <crope@iki.fi> | |
4262 | L: linux-media@vger.kernel.org | |
a825eaec | 4263 | W: https://linuxtv.org |
91952bc0 AP |
4264 | W: http://palosaari.fi/linux/ |
4265 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4266 | T: git git://linuxtv.org/anttip/media_tree.git | |
4267 | S: Maintained | |
4268 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
4269 | ||
4270 | DVB_USB_CE6230 MEDIA DRIVER | |
4271 | M: Antti Palosaari <crope@iki.fi> | |
4272 | L: linux-media@vger.kernel.org | |
a825eaec | 4273 | W: https://linuxtv.org |
91952bc0 AP |
4274 | W: http://palosaari.fi/linux/ |
4275 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4276 | T: git git://linuxtv.org/anttip/media_tree.git | |
4277 | S: Maintained | |
4278 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
4279 | ||
d099dea2 MK |
4280 | DVB_USB_CXUSB MEDIA DRIVER |
4281 | M: Michael Krufky <mkrufky@linuxtv.org> | |
4282 | L: linux-media@vger.kernel.org | |
a825eaec | 4283 | W: https://linuxtv.org |
d099dea2 MK |
4284 | W: http://github.com/mkrufky |
4285 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4286 | T: git git://linuxtv.org/media_tree.git | |
4287 | S: Maintained | |
9819da66 | 4288 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 4289 | |
91952bc0 | 4290 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
4291 | M: Antti Palosaari <crope@iki.fi> |
4292 | L: linux-media@vger.kernel.org | |
a825eaec | 4293 | W: https://linuxtv.org |
91952bc0 AP |
4294 | W: http://palosaari.fi/linux/ |
4295 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4296 | T: git git://linuxtv.org/anttip/media_tree.git | |
4297 | S: Maintained | |
91952bc0 | 4298 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 4299 | |
5560983b | 4300 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
4301 | M: Antti Palosaari <crope@iki.fi> |
4302 | L: linux-media@vger.kernel.org | |
a825eaec | 4303 | W: https://linuxtv.org |
91952bc0 AP |
4304 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
4305 | T: git git://linuxtv.org/anttip/media_tree.git | |
4306 | S: Maintained | |
5560983b | 4307 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 4308 | |
8856f5f2 MK |
4309 | DVB_USB_MXL111SF MEDIA DRIVER |
4310 | M: Michael Krufky <mkrufky@linuxtv.org> | |
4311 | L: linux-media@vger.kernel.org | |
a825eaec | 4312 | W: https://linuxtv.org |
8856f5f2 MK |
4313 | W: http://github.com/mkrufky |
4314 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4315 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
4316 | S: Maintained | |
4317 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
4318 | ||
91952bc0 AP |
4319 | DVB_USB_RTL28XXU MEDIA DRIVER |
4320 | M: Antti Palosaari <crope@iki.fi> | |
4321 | L: linux-media@vger.kernel.org | |
a825eaec | 4322 | W: https://linuxtv.org |
91952bc0 AP |
4323 | W: http://palosaari.fi/linux/ |
4324 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4325 | T: git git://linuxtv.org/anttip/media_tree.git | |
4326 | S: Maintained | |
4327 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
4328 | ||
4329 | DVB_USB_V2 MEDIA DRIVER | |
4330 | M: Antti Palosaari <crope@iki.fi> | |
4331 | L: linux-media@vger.kernel.org | |
a825eaec | 4332 | W: https://linuxtv.org |
91952bc0 AP |
4333 | W: http://palosaari.fi/linux/ |
4334 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4335 | T: git git://linuxtv.org/anttip/media_tree.git | |
4336 | S: Maintained | |
4337 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
4338 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
4339 | ||
ac0ac38f | 4340 | DYNAMIC DEBUG |
5c4a97d1 | 4341 | M: Jason Baron <jbaron@akamai.com> |
ac0ac38f JB |
4342 | S: Maintained |
4343 | F: lib/dynamic_debug.c | |
4344 | F: include/linux/dynamic_debug.h | |
4345 | ||
789c7048 | 4346 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 4347 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
789c7048 | 4348 | S: Maintained |
df621252 | 4349 | F: drivers/tty/serial/dz.* |
789c7048 | 4350 | |
f17effbe MF |
4351 | E3X0 POWER BUTTON DRIVER |
4352 | M: Moritz Fischer <moritz.fischer@ettus.com> | |
4353 | L: usrp-users@lists.ettus.com | |
4354 | W: http://www.ettus.com | |
4355 | S: Supported | |
4356 | F: drivers/input/misc/e3x0-button.c | |
4357 | F: Documentation/devicetree/bindings/input/e3x0-button.txt | |
4358 | ||
91952bc0 AP |
4359 | E4000 MEDIA DRIVER |
4360 | M: Antti Palosaari <crope@iki.fi> | |
4361 | L: linux-media@vger.kernel.org | |
a825eaec | 4362 | W: https://linuxtv.org |
91952bc0 AP |
4363 | W: http://palosaari.fi/linux/ |
4364 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4365 | T: git git://linuxtv.org/anttip/media_tree.git | |
4366 | S: Maintained | |
4367 | F: drivers/media/tuners/e4000* | |
4368 | ||
1da177e4 | 4369 | EATA ISA/EISA/PCI SCSI DRIVER |
8b58be88 | 4370 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
4371 | L: linux-scsi@vger.kernel.org |
4372 | S: Maintained | |
679655da | 4373 | F: drivers/scsi/eata.c |
1da177e4 | 4374 | |
91952bc0 AP |
4375 | EC100 MEDIA DRIVER |
4376 | M: Antti Palosaari <crope@iki.fi> | |
4377 | L: linux-media@vger.kernel.org | |
a825eaec | 4378 | W: https://linuxtv.org |
91952bc0 AP |
4379 | W: http://palosaari.fi/linux/ |
4380 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4381 | T: git git://linuxtv.org/anttip/media_tree.git | |
4382 | S: Maintained | |
4383 | F: drivers/media/dvb-frontends/ec100* | |
4384 | ||
237fead6 | 4385 | ECRYPT FILE SYSTEM |
0de9adf2 | 4386 | M: Tyler Hicks <tyhicks@canonical.com> |
a058bfbb | 4387 | L: ecryptfs@vger.kernel.org |
24a923e4 | 4388 | W: http://ecryptfs.org |
6dc7516e | 4389 | W: https://launchpad.net/ecryptfs |
9f273c24 | 4390 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git |
237fead6 | 4391 | S: Supported |
679655da JP |
4392 | F: Documentation/filesystems/ecryptfs.txt |
4393 | F: fs/ecryptfs/ | |
237fead6 | 4394 | |
da9bb1d2 | 4395 | EDAC-CORE |
8b58be88 | 4396 | M: Doug Thompson <dougthompson@xmission.com> |
aa15aa0e | 4397 | M: Borislav Petkov <bp@alien8.de> |
5dc8a864 MCC |
4398 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4399 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
91445c72 | 4400 | L: linux-edac@vger.kernel.org |
07cd6bf5 FW |
4401 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next |
4402 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next | |
8c2a6a40 | 4403 | S: Supported |
679655da | 4404 | F: Documentation/edac.txt |
91445c72 | 4405 | F: drivers/edac/ |
679655da | 4406 | F: include/linux/edac.h |
0e438e3f | 4407 | |
c476c23b | 4408 | EDAC-AMD64 |
8b58be88 | 4409 | M: Doug Thompson <dougthompson@xmission.com> |
487ba8e8 | 4410 | M: Borislav Petkov <bp@alien8.de> |
91445c72 | 4411 | L: linux-edac@vger.kernel.org |
487ba8e8 | 4412 | S: Maintained |
c476c23b BP |
4413 | F: drivers/edac/amd64_edac* |
4414 | ||
836dae5d RR |
4415 | EDAC-CALXEDA |
4416 | M: Doug Thompson <dougthompson@xmission.com> | |
4417 | M: Robert Richter <rric@kernel.org> | |
4418 | L: linux-edac@vger.kernel.org | |
836dae5d RR |
4419 | S: Maintained |
4420 | F: drivers/edac/highbank* | |
4421 | ||
f65aad41 RB |
4422 | EDAC-CAVIUM |
4423 | M: Ralf Baechle <ralf@linux-mips.org> | |
4424 | M: David Daney <david.daney@cavium.com> | |
4425 | L: linux-edac@vger.kernel.org | |
4426 | L: linux-mips@linux-mips.org | |
f65aad41 RB |
4427 | S: Supported |
4428 | F: drivers/edac/octeon_edac* | |
4429 | ||
0e438e3f | 4430 | EDAC-E752X |
8b58be88 JP |
4431 | M: Mark Gross <mark.gross@intel.com> |
4432 | M: Doug Thompson <dougthompson@xmission.com> | |
91445c72 | 4433 | L: linux-edac@vger.kernel.org |
0e438e3f | 4434 | S: Maintained |
679655da | 4435 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
4436 | |
4437 | EDAC-E7XXX | |
8b58be88 | 4438 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 4439 | L: linux-edac@vger.kernel.org |
0e438e3f | 4440 | S: Maintained |
679655da | 4441 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 4442 | |
77c5f5d2 | 4443 | EDAC-GHES |
5dc8a864 MCC |
4444 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4445 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
77c5f5d2 | 4446 | L: linux-edac@vger.kernel.org |
77c5f5d2 | 4447 | S: Maintained |
2caa67a6 | 4448 | F: drivers/edac/ghes_edac.c |
77c5f5d2 | 4449 | |
6bc78404 | 4450 | EDAC-I82443BXGX |
8b58be88 | 4451 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 4452 | L: linux-edac@vger.kernel.org |
6bc78404 | 4453 | S: Maintained |
679655da | 4454 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
4455 | |
4456 | EDAC-I3000 | |
8b58be88 | 4457 | M: Jason Uhlenkott <juhlenko@akamai.com> |
91445c72 | 4458 | L: linux-edac@vger.kernel.org |
6bc78404 | 4459 | S: Maintained |
679655da | 4460 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
4461 | |
4462 | EDAC-I5000 | |
8b58be88 | 4463 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 4464 | L: linux-edac@vger.kernel.org |
ba9a5918 | 4465 | S: Maintained |
679655da | 4466 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 4467 | |
44c12cb2 | 4468 | EDAC-I5400 |
5dc8a864 MCC |
4469 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4470 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
67c89316 | 4471 | L: linux-edac@vger.kernel.org |
44c12cb2 | 4472 | S: Maintained |
679655da | 4473 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 4474 | |
3c9c92b6 | 4475 | EDAC-I7300 |
5dc8a864 MCC |
4476 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4477 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
3c9c92b6 | 4478 | L: linux-edac@vger.kernel.org |
3c9c92b6 MCC |
4479 | S: Maintained |
4480 | F: drivers/edac/i7300_edac.c | |
4481 | ||
67c89316 | 4482 | EDAC-I7CORE |
5dc8a864 MCC |
4483 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4484 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
67c89316 | 4485 | L: linux-edac@vger.kernel.org |
67c89316 | 4486 | S: Maintained |
70aff0ce | 4487 | F: drivers/edac/i7core_edac.c |
67c89316 | 4488 | |
ba9a5918 | 4489 | EDAC-I82975X |
8b58be88 | 4490 | M: Ranganathan Desikan <ravi@jetztechnologies.com> |
25527885 | 4491 | M: "Arvind R." <arvino55@gmail.com> |
91445c72 | 4492 | L: linux-edac@vger.kernel.org |
ba9a5918 | 4493 | S: Maintained |
679655da | 4494 | F: drivers/edac/i82975x_edac.c |
ba9a5918 | 4495 | |
791b4706 JB |
4496 | EDAC-IE31200 |
4497 | M: Jason Baron <jbaron@akamai.com> | |
4498 | L: linux-edac@vger.kernel.org | |
791b4706 JB |
4499 | S: Maintained |
4500 | F: drivers/edac/ie31200_edac.c | |
4501 | ||
ccdfb979 | 4502 | EDAC-MPC85XX |
30c7469b | 4503 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
ccdfb979 | 4504 | L: linux-edac@vger.kernel.org |
ccdfb979 JT |
4505 | S: Maintained |
4506 | F: drivers/edac/mpc85xx_edac.[ch] | |
4507 | ||
ba9a5918 | 4508 | EDAC-PASEMI |
8b58be88 | 4509 | M: Egor Martovetsky <egor@pasemi.com> |
91445c72 | 4510 | L: linux-edac@vger.kernel.org |
6bc78404 | 4511 | S: Maintained |
679655da | 4512 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 4513 | |
0e438e3f | 4514 | EDAC-R82600 |
8b58be88 | 4515 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 4516 | L: linux-edac@vger.kernel.org |
0e438e3f | 4517 | S: Maintained |
679655da | 4518 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 4519 | |
4d096ca7 | 4520 | EDAC-SBRIDGE |
5dc8a864 MCC |
4521 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4522 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
4d096ca7 | 4523 | L: linux-edac@vger.kernel.org |
4d096ca7 MCC |
4524 | S: Maintained |
4525 | F: drivers/edac/sb_edac.c | |
4526 | ||
995e1de4 LH |
4527 | EDAC-XGENE |
4528 | APPLIED MICRO (APM) X-GENE SOC EDAC | |
4529 | M: Loc Ho <lho@apm.com> | |
4530 | S: Supported | |
4531 | F: drivers/edac/xgene_edac.c | |
4532 | F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt | |
4533 | ||
af39917d CL |
4534 | EDIROL UA-101/UA-1000 DRIVER |
4535 | M: Clemens Ladisch <clemens@ladisch.de> | |
4536 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
4537 | T: git git://git.alsa-project.org/alsa-kernel.git | |
4538 | S: Maintained | |
4539 | F: sound/usb/misc/ua101.c | |
4540 | ||
1f7df953 | 4541 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
825fcfce | 4542 | M: Matt Fleming <matt@codeblueprint.co.uk> |
1f7df953 | 4543 | L: linux-efi@vger.kernel.org |
78bef24e | 4544 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
1f7df953 | 4545 | S: Maintained |
fb2efb5c | 4546 | F: Documentation/efi-stub.txt |
1f7df953 MF |
4547 | F: arch/ia64/kernel/efi.c |
4548 | F: arch/x86/boot/compressed/eboot.[ch] | |
4549 | F: arch/x86/include/asm/efi.h | |
e8dfe6d8 MF |
4550 | F: arch/x86/platform/efi/ |
4551 | F: drivers/firmware/efi/ | |
1f7df953 MF |
4552 | F: include/linux/efi*.h |
4553 | ||
d68772b7 MF |
4554 | EFI VARIABLE FILESYSTEM |
4555 | M: Matthew Garrett <matthew.garrett@nebula.com> | |
4556 | M: Jeremy Kerr <jk@ozlabs.org> | |
825fcfce | 4557 | M: Matt Fleming <matt@codeblueprint.co.uk> |
d68772b7 MF |
4558 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
4559 | L: linux-efi@vger.kernel.org | |
4560 | S: Maintained | |
4561 | F: fs/efivarfs/ | |
4562 | ||
85a00d9b PJ |
4563 | EFIFB FRAMEBUFFER DRIVER |
4564 | L: linux-fbdev@vger.kernel.org | |
4565 | M: Peter Jones <pjones@redhat.com> | |
4566 | S: Maintained | |
8a61f013 | 4567 | F: drivers/video/fbdev/efifb.c |
85a00d9b | 4568 | |
0bee8d28 JT |
4569 | EFS FILESYSTEM |
4570 | W: http://aeschi.ch.eu.org/efs/ | |
4571 | S: Orphan | |
679655da | 4572 | F: fs/efs/ |
0bee8d28 | 4573 | |
aa8a9e25 | 4574 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
97b04197 | 4575 | M: Douglas Miller <dougmill@linux.vnet.ibm.com> |
aa8a9e25 BL |
4576 | L: netdev@vger.kernel.org |
4577 | S: Maintained | |
9aa32835 | 4578 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 4579 | |
f0319efe | 4580 | EM28XX VIDEO4LINUX DRIVER |
5dc8a864 MCC |
4581 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4582 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
f0319efe | 4583 | L: linux-media@vger.kernel.org |
a825eaec | 4584 | W: https://linuxtv.org |
f0319efe MCC |
4585 | T: git git://linuxtv.org/media_tree.git |
4586 | S: Maintained | |
4587 | F: drivers/media/usb/em28xx/ | |
4588 | ||
3e3a7d66 | 4589 | EMBEDDED LINUX |
8b58be88 JP |
4590 | M: Paul Gortmaker <paul.gortmaker@windriver.com> |
4591 | M: Matt Mackall <mpm@selenic.com> | |
4592 | M: David Woodhouse <dwmw2@infradead.org> | |
3e3a7d66 DW |
4593 | L: linux-embedded@vger.kernel.org |
4594 | S: Maintained | |
4595 | ||
32505876 JS |
4596 | EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER |
4597 | M: James Smart <james.smart@avagotech.com> | |
4598 | M: Dick Kennedy <dick.kennedy@avagotech.com> | |
ce00f85c | 4599 | L: linux-scsi@vger.kernel.org |
32505876 | 4600 | W: http://www.avagotech.com |
ce00f85c | 4601 | S: Supported |
679655da | 4602 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 4603 | |
5f5bac82 | 4604 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 4605 | M: Michał Mirosław <mirq-linux@rere.qmqm.pl> |
5f5bac82 MM |
4606 | S: Maintained |
4607 | F: drivers/misc/cb710/ | |
4608 | F: drivers/mmc/host/cb710-mmc.* | |
4609 | F: include/linux/cb710.h | |
4610 | ||
931e39a1 ML |
4611 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
4612 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
4613 | S: Maintained | |
2a837449 | 4614 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 4615 | |
d5ca9006 | 4616 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 4617 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
d5ca9006 | 4618 | S: Maintained |
084bad91 | 4619 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
8a61f013 | 4620 | F: drivers/video/fbdev/s1d13xxxfb.c |
679655da | 4621 | F: include/video/s1d13xxxfb.h |
d5ca9006 | 4622 | |
38df6492 ME |
4623 | ET131X NETWORK DRIVER |
4624 | M: Mark Einon <mark.einon@gmail.com> | |
4625 | S: Odd Fixes | |
4626 | F: drivers/net/ethernet/agere/ | |
4627 | ||
1da177e4 | 4628 | ETHERNET BRIDGE |
adbbf69d | 4629 | M: Stephen Hemminger <stephen@networkplumber.org> |
3430284f | 4630 | L: bridge@lists.linux-foundation.org (moderated for non-subscribers) |
4c325313 | 4631 | L: netdev@vger.kernel.org |
c996d8b9 | 4632 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 4633 | S: Maintained |
679655da JP |
4634 | F: include/linux/netfilter_bridge/ |
4635 | F: net/bridge/ | |
1da177e4 | 4636 | |
22f08ad9 FF |
4637 | ETHERNET PHY LIBRARY |
4638 | M: Florian Fainelli <f.fainelli@gmail.com> | |
4639 | L: netdev@vger.kernel.org | |
4640 | S: Maintained | |
4641 | F: include/linux/phy.h | |
4642 | F: include/linux/phy_fixed.h | |
4643 | F: drivers/net/phy/ | |
4644 | F: Documentation/networking/phy.txt | |
4645 | F: drivers/of/of_mdio.c | |
4646 | F: drivers/of/of_net.c | |
4647 | ||
1da177e4 | 4648 | EXT2 FILE SYSTEM |
d8130624 | 4649 | M: Jan Kara <jack@suse.com> |
72be2ccf | 4650 | L: linux-ext4@vger.kernel.org |
1da177e4 | 4651 | S: Maintained |
679655da JP |
4652 | F: Documentation/filesystems/ext2.txt |
4653 | F: fs/ext2/ | |
4654 | F: include/linux/ext2* | |
1da177e4 | 4655 | |
72be2ccf | 4656 | EXT4 FILE SYSTEM |
8b58be88 | 4657 | M: "Theodore Ts'o" <tytso@mit.edu> |
3c373a5f | 4658 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
72be2ccf | 4659 | L: linux-ext4@vger.kernel.org |
08a225f1 | 4660 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 4661 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
9f273c24 | 4662 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git |
1da177e4 | 4663 | S: Maintained |
679655da JP |
4664 | F: Documentation/filesystems/ext4.txt |
4665 | F: fs/ext4/ | |
1da177e4 | 4666 | |
c5532b09 | 4667 | Extended Verification Module (EVM) |
74dd744f MZ |
4668 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
4669 | L: linux-ima-devel@lists.sourceforge.net | |
4670 | L: linux-security-module@vger.kernel.org | |
c5532b09 MZ |
4671 | S: Supported |
4672 | F: security/integrity/evm/ | |
4673 | ||
df6b3cfe MH |
4674 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
4675 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
4676 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
4677 | L: linux-kernel@vger.kernel.org | |
81df63a9 | 4678 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git |
df6b3cfe MH |
4679 | S: Maintained |
4680 | F: drivers/extcon/ | |
cd2c3e7f CC |
4681 | F: include/linux/extcon/ |
4682 | F: include/linux/extcon.h | |
df6b3cfe | 4683 | F: Documentation/extcon/ |
cd2c3e7f | 4684 | F: Documentation/devicetree/bindings/extcon/ |
df6b3cfe | 4685 | |
e2a75c44 | 4686 | EXYNOS DP DRIVER |
b7701755 | 4687 | M: Jingoo Han <jingoohan1@gmail.com> |
e2a75c44 JH |
4688 | L: dri-devel@lists.freedesktop.org |
4689 | S: Maintained | |
4690 | F: drivers/gpu/drm/exynos/exynos_dp* | |
4691 | ||
9b93a409 MS |
4692 | EXYNOS SYSMMU (IOMMU) driver |
4693 | M: Marek Szyprowski <m.szyprowski@samsung.com> | |
4694 | L: iommu@lists.linux-foundation.org | |
4695 | S: Maintained | |
4696 | F: drivers/iommu/exynos-iommu.c | |
4697 | ||
33ad3912 DL |
4698 | EXYNOS MIPI DISPLAY DRIVERS |
4699 | M: Inki Dae <inki.dae@samsung.com> | |
4700 | M: Donghwa Lee <dh09.lee@samsung.com> | |
4701 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
4702 | L: linux-fbdev@vger.kernel.org | |
4703 | S: Maintained | |
8a61f013 | 4704 | F: drivers/video/fbdev/exynos/exynos_mipi* |
33ad3912 DL |
4705 | F: include/video/exynos_mipi* |
4706 | ||
4a66d3fe NC |
4707 | EZchip NPS platform support |
4708 | M: Noam Camus <noamc@ezchip.com> | |
4709 | S: Supported | |
4710 | F: arch/arc/plat-eznps | |
4711 | F: arch/arc/boot/dts/eznps.dts | |
4712 | ||
e53004e2 | 4713 | F71805F HARDWARE MONITORING DRIVER |
d8130624 | 4714 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 4715 | L: linux-hwmon@vger.kernel.org |
e53004e2 | 4716 | S: Maintained |
679655da JP |
4717 | F: Documentation/hwmon/f71805f |
4718 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 4719 | |
eea977ed MB |
4720 | FC0011 TUNER DRIVER |
4721 | M: Michael Buesch <m@bues.ch> | |
4722 | L: linux-media@vger.kernel.org | |
4723 | S: Maintained | |
ccae7af2 MCC |
4724 | F: drivers/media/tuners/fc0011.h |
4725 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 4726 | |
91952bc0 AP |
4727 | FC2580 MEDIA DRIVER |
4728 | M: Antti Palosaari <crope@iki.fi> | |
4729 | L: linux-media@vger.kernel.org | |
a825eaec | 4730 | W: https://linuxtv.org |
91952bc0 AP |
4731 | W: http://palosaari.fi/linux/ |
4732 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4733 | T: git git://linuxtv.org/anttip/media_tree.git | |
4734 | S: Maintained | |
4735 | F: drivers/media/tuners/fc2580* | |
eea977ed | 4736 | |
88b2dbdb EP |
4737 | FANOTIFY |
4738 | M: Eric Paris <eparis@redhat.com> | |
4739 | S: Maintained | |
4740 | F: fs/notify/fanotify/ | |
4741 | F: include/linux/fanotify.h | |
c117ab84 | 4742 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 4743 | |
1da177e4 | 4744 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 4745 | M: Kevin Curtis <kevin.curtis@farsite.co.uk> |
1da177e4 LT |
4746 | W: http://www.farsite.co.uk/ |
4747 | S: Supported | |
679655da | 4748 | F: drivers/net/wan/farsync.* |
1da177e4 | 4749 | |
c5408b88 | 4750 | FAULT INJECTION SUPPORT |
8b58be88 | 4751 | M: Akinobu Mita <akinobu.mita@gmail.com> |
c5408b88 | 4752 | S: Supported |
679655da JP |
4753 | F: Documentation/fault-injection/ |
4754 | F: lib/fault-inject.c | |
c5408b88 | 4755 | |
053e514f NT |
4756 | FBTFT Framebuffer drivers |
4757 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
4758 | M: Noralf Trønnes <noralf@tronnes.org> | |
4759 | S: Maintained | |
4760 | F: drivers/staging/fbtft/ | |
4761 | ||
cae727db | 4762 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
49a75815 | 4763 | M: Johannes Thumshirn <jth@kernel.org> |
f4aaea6d | 4764 | L: fcoe-devel@open-fcoe.org |
cae727db RL |
4765 | W: www.Open-FCoE.org |
4766 | S: Supported | |
4767 | F: drivers/scsi/libfc/ | |
4768 | F: drivers/scsi/fcoe/ | |
4769 | F: include/scsi/fc/ | |
4770 | F: include/scsi/libfc.h | |
4771 | F: include/scsi/libfcoe.h | |
c117ab84 | 4772 | F: include/uapi/scsi/fc/ |
cae727db | 4773 | |
e2d1d6c0 | 4774 | FILE LOCKING (flock() and fcntl()/lockf()) |
8c836fa8 | 4775 | M: Jeff Layton <jlayton@poochiereds.net> |
9c3646d1 | 4776 | M: "J. Bruce Fields" <bfields@fieldses.org> |
e2d1d6c0 | 4777 | L: linux-fsdevel@vger.kernel.org |
1da177e4 | 4778 | S: Maintained |
679655da JP |
4779 | F: include/linux/fcntl.h |
4780 | F: include/linux/fs.h | |
c117ab84 CEB |
4781 | F: include/uapi/linux/fcntl.h |
4782 | F: include/uapi/linux/fs.h | |
679655da JP |
4783 | F: fs/fcntl.c |
4784 | F: fs/locks.c | |
1da177e4 | 4785 | |
e2d1d6c0 | 4786 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 4787 | M: Alexander Viro <viro@zeniv.linux.org.uk> |
e2d1d6c0 | 4788 | L: linux-fsdevel@vger.kernel.org |
173acc7c | 4789 | S: Maintained |
679655da | 4790 | F: fs/* |
173acc7c | 4791 | |
b26e0ed4 | 4792 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 4793 | M: Riku Voipio <riku.voipio@iki.fi> |
968ce1b1 | 4794 | L: linux-hwmon@vger.kernel.org |
b26e0ed4 | 4795 | S: Maintained |
d5ca6918 JP |
4796 | F: drivers/hwmon/f75375s.c |
4797 | F: include/linux/f75375s.h | |
b26e0ed4 | 4798 | |
a331b0c3 CL |
4799 | FIREWIRE AUDIO DRIVERS |
4800 | M: Clemens Ladisch <clemens@ladisch.de> | |
4801 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
4802 | T: git git://git.alsa-project.org/alsa-kernel.git | |
4803 | S: Maintained | |
4804 | F: sound/firewire/ | |
4805 | ||
eb86ec51 SR |
4806 | FIREWIRE MEDIA DRIVERS (firedtv) |
4807 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> | |
4808 | L: linux-media@vger.kernel.org | |
4809 | L: linux1394-devel@lists.sourceforge.net | |
4810 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
4811 | S: Maintained | |
4812 | F: drivers/media/firewire/ | |
4813 | ||
a511ce33 CB |
4814 | FIREWIRE SBP-2 TARGET |
4815 | M: Chris Boot <bootc@bootc.net> | |
4816 | L: linux-scsi@vger.kernel.org | |
4817 | L: target-devel@vger.kernel.org | |
4818 | L: linux1394-devel@lists.sourceforge.net | |
4819 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
4820 | S: Maintained | |
4821 | F: drivers/target/sbp/ | |
4822 | ||
7d2c86b5 | 4823 | FIREWIRE SUBSYSTEM |
8b58be88 | 4824 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
e2d1d6c0 | 4825 | L: linux1394-devel@lists.sourceforge.net |
958a29cb | 4826 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 4827 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 4828 | S: Maintained |
679655da | 4829 | F: drivers/firewire/ |
8f06ce3b SR |
4830 | F: include/linux/firewire.h |
4831 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 4832 | F: tools/firewire/ |
e2d1d6c0 RD |
4833 | |
4834 | FIRMWARE LOADER (request_firmware) | |
39e68089 ML |
4835 | M: Ming Lei <ming.lei@canonical.com> |
4836 | L: linux-kernel@vger.kernel.org | |
4837 | S: Maintained | |
679655da JP |
4838 | F: Documentation/firmware_class/ |
4839 | F: drivers/base/firmware*.c | |
4840 | F: include/linux/firmware.h | |
e2d1d6c0 | 4841 | |
f730e3dc | 4842 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
9bb3c446 PK |
4843 | M: Joshua Morris <josh.h.morris@us.ibm.com> |
4844 | M: Philip Kelleher <pjk1939@linux.vnet.ibm.com> | |
4845 | S: Maintained | |
4846 | F: drivers/block/rsxx/ | |
4847 | ||
8206f664 | 4848 | FLOPPY DRIVER |
e5f6450c | 4849 | M: Jiri Kosina <jikos@kernel.org> |
8206f664 JK |
4850 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git |
4851 | S: Odd fixes | |
4852 | F: drivers/block/floppy.c | |
4853 | ||
9c9f32ed AR |
4854 | FMC SUBSYSTEM |
4855 | M: Alessandro Rubini <rubini@gnudd.com> | |
4856 | W: http://www.ohwr.org/projects/fmc-bus | |
4857 | S: Supported | |
4858 | F: drivers/fmc/ | |
4859 | F: include/linux/fmc*.h | |
4860 | F: include/linux/ipmi-fru.h | |
4861 | K: fmc_d.*register | |
4862 | ||
3c0ed7d5 AT |
4863 | FPGA MANAGER FRAMEWORK |
4864 | M: Alan Tull <atull@opensource.altera.com> | |
dd7d664a | 4865 | R: Moritz Fischer <moritz.fischer@ettus.com> |
3c0ed7d5 AT |
4866 | S: Maintained |
4867 | F: drivers/fpga/ | |
4868 | F: include/linux/fpga/fpga-mgr.h | |
4869 | W: http://www.rocketboards.org | |
4870 | ||
e2d1d6c0 | 4871 | FPU EMULATOR |
8b58be88 | 4872 | M: Bill Metzenthen <billm@melbpc.org.au> |
e769980f | 4873 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 4874 | S: Maintained |
679655da | 4875 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
4876 | |
4877 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 4878 | L: netdev@vger.kernel.org |
c173bfac | 4879 | S: Orphan |
679655da JP |
4880 | F: drivers/net/wan/dlci.c |
4881 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
4882 | |
4883 | FRAMEBUFFER LAYER | |
5489e948 JCPV |
4884 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
4885 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
c69f677c | 4886 | L: linux-fbdev@vger.kernel.org |
e2d1d6c0 | 4887 | W: http://linux-fbdev.sourceforge.net/ |
b22fe37b | 4888 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
5489e948 | 4889 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git |
56be1416 | 4890 | S: Maintained |
679655da | 4891 | F: Documentation/fb/ |
b22fe37b PM |
4892 | F: drivers/video/ |
4893 | F: include/video/ | |
679655da | 4894 | F: include/linux/fb.h |
c117ab84 CEB |
4895 | F: include/uapi/video/ |
4896 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 4897 | |
a57c188e | 4898 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 4899 | M: Timur Tabi <timur@tabi.org> |
a57c188e | 4900 | L: linux-fbdev@vger.kernel.org |
c4ef9bc4 | 4901 | S: Maintained |
8a61f013 | 4902 | F: drivers/video/fbdev/fsl-diu-fb.* |
a57c188e | 4903 | |
e2d1d6c0 | 4904 | FREESCALE DMA DRIVER |
8b58be88 JP |
4905 | M: Li Yang <leoli@freescale.com> |
4906 | M: Zhang Wei <zw@zh-kernel.org> | |
a4724ed6 | 4907 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 | 4908 | S: Maintained |
679655da | 4909 | F: drivers/dma/fsldma.* |
e2d1d6c0 | 4910 | |
44248aff HX |
4911 | FREESCALE GPMI NAND DRIVER |
4912 | M: Han Xu <han.xu@nxp.com> | |
4913 | L: linux-mtd@lists.infradead.org | |
4914 | S: Maintained | |
4915 | F: drivers/mtd/nand/gpmi-nand/* | |
4916 | ||
e2d1d6c0 | 4917 | FREESCALE I2C CPM DRIVER |
8b58be88 | 4918 | M: Jochen Friedrich <jochen@scram.de> |
a4724ed6 | 4919 | L: linuxppc-dev@lists.ozlabs.org |
846557d3 | 4920 | L: linux-i2c@vger.kernel.org |
0d2b405a | 4921 | S: Maintained |
679655da | 4922 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 4923 | |
60e8c5ab | 4924 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 4925 | M: Sascha Hauer <kernel@pengutronix.de> |
c69f677c | 4926 | L: linux-fbdev@vger.kernel.org |
efc03ecb | 4927 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
60e8c5ab | 4928 | S: Maintained |
bad985a1 | 4929 | F: include/linux/platform_data/video-imxfb.h |
8a61f013 | 4930 | F: drivers/video/fbdev/imxfb.c |
60e8c5ab | 4931 | |
4d8e2cef | 4932 | FREESCALE QUAD SPI DRIVER |
38714fbd | 4933 | M: Han Xu <han.xu@nxp.com> |
4d8e2cef HX |
4934 | L: linux-mtd@lists.infradead.org |
4935 | S: Maintained | |
4936 | F: drivers/mtd/spi-nor/fsl-quadspi.c | |
4937 | ||
4689a6b1 | 4938 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
4939 | M: Pantelis Antoniou <pantelis.antoniou@gmail.com> |
4940 | M: Vitaly Bordug <vbordug@ru.mvista.com> | |
a4724ed6 | 4941 | L: linuxppc-dev@lists.ozlabs.org |
4689a6b1 PA |
4942 | L: netdev@vger.kernel.org |
4943 | S: Maintained | |
ec21e2ec | 4944 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 4945 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 4946 | |
63a0a00b NA |
4947 | FREESCALE IMX / MXC FEC DRIVER |
4948 | M: Fugang Duan <fugang.duan@nxp.com> | |
4949 | L: netdev@vger.kernel.org | |
4950 | S: Maintained | |
4951 | F: drivers/net/ethernet/freescale/fec_main.c | |
4952 | F: drivers/net/ethernet/freescale/fec_ptp.c | |
4953 | F: drivers/net/ethernet/freescale/fec.h | |
4954 | F: Documentation/devicetree/bindings/net/fsl-fec.txt | |
4955 | ||
d9e9d82c | 4956 | FREESCALE QUICC ENGINE LIBRARY |
a4724ed6 | 4957 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 4958 | S: Orphan |
7aa1aa6e ZQ |
4959 | F: drivers/soc/fsl/qe/ |
4960 | F: include/soc/fsl/*qe*.h | |
4961 | F: include/soc/fsl/*ucc*.h | |
d9e9d82c | 4962 | |
b55ef929 | 4963 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 4964 | M: Li Yang <leoli@freescale.com> |
6372594a | 4965 | L: linux-usb@vger.kernel.org |
a4724ed6 | 4966 | L: linuxppc-dev@lists.ozlabs.org |
a7205b30 | 4967 | S: Maintained |
faf2e1db | 4968 | F: drivers/usb/gadget/udc/fsl* |
a7205b30 | 4969 | |
beaf53bf | 4970 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 4971 | M: Li Yang <leoli@freescale.com> |
beaf53bf | 4972 | L: netdev@vger.kernel.org |
a4724ed6 | 4973 | L: linuxppc-dev@lists.ozlabs.org |
beaf53bf | 4974 | S: Maintained |
ec21e2ec | 4975 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 4976 | |
abb1ed7b CM |
4977 | FREESCALE eTSEC ETHERNET DRIVER (GIANFAR) |
4978 | M: Claudiu Manoil <claudiu.manoil@freescale.com> | |
4979 | L: netdev@vger.kernel.org | |
4980 | S: Maintained | |
4981 | F: drivers/net/ethernet/freescale/gianfar* | |
4982 | X: drivers/net/ethernet/freescale/gianfar_ptp.c | |
4983 | F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt | |
4984 | ||
c19b6d24 ZQ |
4985 | FREESCALE QUICC ENGINE UCC HDLC DRIVER |
4986 | M: Zhao Qiang <qiang.zhao@nxp.com> | |
4987 | L: netdev@vger.kernel.org | |
4988 | L: linuxppc-dev@lists.ozlabs.org | |
4989 | S: Maintained | |
4990 | F: drivers/net/wan/fsl_ucc_hdlc* | |
4991 | ||
d9e9d82c | 4992 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 4993 | M: Timur Tabi <timur@tabi.org> |
a4724ed6 | 4994 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 4995 | S: Maintained |
df621252 | 4996 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
4997 | |
4998 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 4999 | M: Timur Tabi <timur@tabi.org> |
dc85950a | 5000 | M: Nicolin Chen <nicoleotsuka@gmail.com> |
b4b98297 | 5001 | M: Xiubo Li <Xiubo.Lee@gmail.com> |
aeea2fdd | 5002 | R: Fabio Estevam <fabio.estevam@nxp.com> |
93711660 | 5003 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a4724ed6 | 5004 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 5005 | S: Maintained |
69aefcea | 5006 | F: sound/soc/fsl/fsl* |
dc85950a | 5007 | F: sound/soc/fsl/imx* |
69aefcea | 5008 | F: sound/soc/fsl/mpc8610_hpcd.c |
d9e9d82c | 5009 | |
31c88965 | 5010 | FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER |
9c3646d1 | 5011 | M: "J. German Rivera" <German.Rivera@freescale.com> |
cb18d3a2 | 5012 | M: Stuart Yoder <stuart.yoder@nxp.com> |
31c88965 GR |
5013 | L: linux-kernel@vger.kernel.org |
5014 | S: Maintained | |
5015 | F: drivers/staging/fsl-mc/ | |
5016 | ||
1da177e4 | 5017 | FREEVXFS FILESYSTEM |
8b58be88 | 5018 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 LT |
5019 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
5020 | S: Maintained | |
679655da | 5021 | F: fs/freevxfs/ |
1da177e4 | 5022 | |
71038f52 | 5023 | FREEZER |
49db1903 | 5024 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 5025 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 5026 | L: linux-pm@vger.kernel.org |
71038f52 | 5027 | S: Supported |
679655da JP |
5028 | F: Documentation/power/freezing-of-tasks.txt |
5029 | F: include/linux/freezer.h | |
5030 | F: kernel/freezer.c | |
71038f52 | 5031 | |
839a1f79 KRW |
5032 | FRONTSWAP API |
5033 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
5034 | L: linux-kernel@vger.kernel.org | |
5035 | S: Maintained | |
5036 | F: mm/frontswap.c | |
5037 | F: include/linux/frontswap.h | |
5038 | ||
a5432f5a | 5039 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 5040 | M: David Howells <dhowells@redhat.com> |
e62d6e24 | 5041 | L: linux-cachefs@redhat.com (moderated for non-subscribers) |
a5432f5a DH |
5042 | S: Supported |
5043 | F: Documentation/filesystems/caching/ | |
5044 | F: fs/fscache/ | |
5045 | F: include/linux/fscache*.h | |
5046 | ||
598c7d7a TT |
5047 | FS-CRYPTO: FILE SYSTEM LEVEL ENCRYPTION SUPPORT |
5048 | M: Theodore Y. Ts'o <tytso@mit.edu> | |
5049 | M: Jaegeuk Kim <jaegeuk@kernel.org> | |
5050 | S: Supported | |
5051 | F: fs/crypto/ | |
5052 | F: include/linux/fscrypto.h | |
5053 | ||
f58ad8f5 | 5054 | F2FS FILE SYSTEM |
9b29d481 | 5055 | M: Jaegeuk Kim <jaegeuk@kernel.org> |
f6238a72 | 5056 | M: Changman Lee <cm224.lee@samsung.com> |
ae9b9a9d | 5057 | R: Chao Yu <yuchao0@huawei.com> |
f58ad8f5 JK |
5058 | L: linux-f2fs-devel@lists.sourceforge.net |
5059 | W: http://en.wikipedia.org/wiki/F2FS | |
5060 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git | |
5061 | S: Maintained | |
5062 | F: Documentation/filesystems/f2fs.txt | |
3bac380c | 5063 | F: Documentation/ABI/testing/sysfs-fs-f2fs |
f58ad8f5 JK |
5064 | F: fs/f2fs/ |
5065 | F: include/linux/f2fs_fs.h | |
62d43eeb | 5066 | F: include/trace/events/f2fs.h |
f58ad8f5 | 5067 | |
5ab7ffea | 5068 | FUJITSU FR-V (FRV) PORT |
0cf0305f | 5069 | S: Orphan |
679655da | 5070 | F: arch/frv/ |
1da177e4 | 5071 | |
20b93734 | 5072 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 5073 | M: Jonathan Woithe <jwoithe@just42.net> |
d0944853 | 5074 | L: platform-driver-x86@vger.kernel.org |
20b93734 | 5075 | S: Maintained |
679655da | 5076 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 5077 | |
4da621b6 HK |
5078 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
5079 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
5080 | M: Heungjun Kim <riverful.kim@samsung.com> | |
5081 | L: linux-media@vger.kernel.org | |
5082 | S: Maintained | |
90d72ac6 | 5083 | F: drivers/media/i2c/m5mols/ |
b5dcee22 | 5084 | F: include/media/i2c/m5mols.h |
4da621b6 | 5085 | |
2d24c490 RG |
5086 | FUJITSU TABLET EXTRAS |
5087 | M: Robert Gerlach <khnz@gmx.de> | |
5088 | L: platform-driver-x86@vger.kernel.org | |
5089 | S: Maintained | |
5090 | F: drivers/platform/x86/fujitsu-tablet.c | |
5091 | ||
04578f17 | 5092 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 5093 | M: Miklos Szeredi <miklos@szeredi.hu> |
4441f63a | 5094 | L: linux-fsdevel@vger.kernel.org |
04578f17 | 5095 | W: http://fuse.sourceforge.net/ |
0a30f612 | 5096 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git |
04578f17 | 5097 | S: Maintained |
679655da | 5098 | F: fs/fuse/ |
c117ab84 | 5099 | F: include/uapi/linux/fuse.h |
0a30f612 | 5100 | F: Documentation/filesystems/fuse.txt |
04578f17 | 5101 | |
1da177e4 | 5102 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 5103 | M: Rik Faith <faith@cs.unc.edu> |
1da177e4 | 5104 | L: linux-scsi@vger.kernel.org |
baaea1dc | 5105 | S: Odd Fixes (e.g., new signatures) |
679655da | 5106 | F: drivers/scsi/fdomain.* |
1da177e4 | 5107 | |
6b90bd4b ER |
5108 | GCC PLUGINS |
5109 | M: Kees Cook <keescook@chromium.org> | |
5110 | R: Emese Revfy <re.emese@gmail.com> | |
5111 | L: kernel-hardening@lists.openwall.com | |
5112 | S: Maintained | |
5113 | F: scripts/gcc-plugins/ | |
5114 | F: scripts/gcc-plugin.sh | |
5115 | F: Documentation/gcc-plugins.txt | |
5116 | ||
d8e2162c PO |
5117 | GCOV BASED KERNEL PROFILING |
5118 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
5119 | S: Maintained | |
5120 | F: kernel/gcov/ | |
5121 | F: Documentation/gcov.txt | |
5122 | ||
1da177e4 | 5123 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
8b58be88 | 5124 | M: Achim Leubner <achim_leubner@adaptec.com> |
1da177e4 LT |
5125 | L: linux-scsi@vger.kernel.org |
5126 | W: http://www.icp-vortex.com/ | |
5127 | S: Supported | |
679655da | 5128 | F: drivers/scsi/gdt* |
1da177e4 | 5129 | |
158daf16 JK |
5130 | GDB KERNEL DEBUGGING HELPER SCRIPTS |
5131 | M: Jan Kiszka <jan.kiszka@siemens.com> | |
e10af132 | 5132 | M: Kieran Bingham <kieran@bingham.xyz> |
158daf16 JK |
5133 | S: Supported |
5134 | F: scripts/gdb/ | |
5135 | ||
3169a1c7 HV |
5136 | GEMTEK FM RADIO RECEIVER DRIVER |
5137 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5138 | L: linux-media@vger.kernel.org | |
5139 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 5140 | W: https://linuxtv.org |
3169a1c7 HV |
5141 | S: Maintained |
5142 | F: drivers/media/radio/radio-gemtek* | |
5143 | ||
1c23af90 | 5144 | GENERIC GPIO I2C DRIVER |
880b0e26 | 5145 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1c23af90 | 5146 | S: Supported |
679655da JP |
5147 | F: drivers/i2c/busses/i2c-gpio.c |
5148 | F: include/linux/i2c-gpio.h | |
1c23af90 | 5149 | |
92ed1a76 PK |
5150 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
5151 | M: Peter Korsgaard <peter.korsgaard@barco.com> | |
5152 | L: linux-i2c@vger.kernel.org | |
5153 | S: Supported | |
e7065e20 JD |
5154 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
5155 | F: include/linux/i2c-mux-gpio.h | |
5156 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 5157 | |
9251ce95 | 5158 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 5159 | M: Krzysztof Halasa <khc@pm.waw.pl> |
1da177e4 LT |
5160 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
5161 | S: Maintained | |
679655da JP |
5162 | F: drivers/net/wan/c101.c |
5163 | F: drivers/net/wan/hd6457* | |
5164 | F: drivers/net/wan/hdlc* | |
5165 | F: drivers/net/wan/n2.c | |
5166 | F: drivers/net/wan/pc300too.c | |
5167 | F: drivers/net/wan/pci200syn.c | |
5168 | F: drivers/net/wan/wanxl* | |
1da177e4 | 5169 | |
1527aab6 | 5170 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 5171 | M: Arnd Bergmann <arnd@arndb.de> |
1527aab6 AB |
5172 | L: linux-arch@vger.kernel.org |
5173 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
5174 | S: Maintained | |
14430813 JP |
5175 | F: include/asm-generic/ |
5176 | F: include/uapi/asm-generic/ | |
1527aab6 | 5177 | |
ff764963 KVA |
5178 | GENERIC PHY FRAMEWORK |
5179 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
5180 | L: linux-kernel@vger.kernel.org | |
5181 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git | |
5182 | S: Supported | |
5183 | F: drivers/phy/ | |
5184 | F: include/linux/phy/ | |
5185 | ||
eea97aed KH |
5186 | GENERIC PM DOMAINS |
5187 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> | |
5188 | M: Kevin Hilman <khilman@kernel.org> | |
5189 | M: Ulf Hansson <ulf.hansson@linaro.org> | |
5190 | L: linux-pm@vger.kernel.org | |
5191 | S: Supported | |
5192 | F: drivers/base/power/domain*.c | |
5193 | F: include/linux/pm_domain.h | |
5194 | ||
ccb86a69 | 5195 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 5196 | M: "Michael S. Tsirkin" <mst@redhat.com> |
ccb86a69 | 5197 | L: kvm@vger.kernel.org |
ccb86a69 MT |
5198 | S: Supported |
5199 | F: drivers/uio/uio_pci_generic.c | |
5200 | ||
f8f1ec73 JP |
5201 | GET_MAINTAINER SCRIPT |
5202 | M: Joe Perches <joe@perches.com> | |
5203 | S: Maintained | |
5204 | F: scripts/get_maintainer.pl | |
5205 | ||
5be7b50f | 5206 | GFS2 FILE SYSTEM |
8b58be88 | 5207 | M: Steven Whitehouse <swhiteho@redhat.com> |
28666d6d | 5208 | M: Bob Peterson <rpeterso@redhat.com> |
a4644184 | 5209 | L: cluster-devel@redhat.com |
5be7b50f | 5210 | W: http://sources.redhat.com/cluster/ |
28666d6d | 5211 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git |
5be7b50f | 5212 | S: Supported |
679655da JP |
5213 | F: Documentation/filesystems/gfs2*.txt |
5214 | F: fs/gfs2/ | |
c117ab84 | 5215 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 5216 | |
0a34eb8f | 5217 | GIGASET ISDN DRIVERS |
6b096fde | 5218 | M: Paul Bolle <pebolle@tiscali.nl> |
0a34eb8f HL |
5219 | L: gigaset307x-common@lists.sourceforge.net |
5220 | W: http://gigaset307x.sourceforge.net/ | |
6b096fde | 5221 | S: Odd Fixes |
679655da JP |
5222 | F: Documentation/isdn/README.gigaset |
5223 | F: drivers/isdn/gigaset/ | |
c117ab84 | 5224 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 5225 | |
7eea35fe JP |
5226 | GO7007 MPEG CODEC |
5227 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
5228 | L: linux-media@vger.kernel.org | |
5229 | S: Maintained | |
5230 | F: drivers/media/usb/go7007/ | |
5231 | ||
ca96ea86 BN |
5232 | GOODIX TOUCHSCREEN |
5233 | M: Bastien Nocera <hadess@hadess.net> | |
5234 | L: linux-input@vger.kernel.org | |
5235 | S: Maintained | |
5236 | F: drivers/input/touchscreen/goodix.c | |
5237 | ||
a0dc00b4 | 5238 | GPIO SUBSYSTEM |
e4651a9f | 5239 | M: Linus Walleij <linus.walleij@linaro.org> |
f2fa75cd | 5240 | M: Alexandre Courbot <gnurou@gmail.com> |
d15b7179 | 5241 | L: linux-gpio@vger.kernel.org |
f2fa75cd LW |
5242 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git |
5243 | S: Maintained | |
cd97a449 | 5244 | F: Documentation/devicetree/bindings/gpio/ |
f2fa75cd | 5245 | F: Documentation/gpio/ |
40c159b7 | 5246 | F: Documentation/ABI/testing/gpio-cdev |
fe95046e | 5247 | F: Documentation/ABI/obsolete/sysfs-gpio |
a0dc00b4 | 5248 | F: drivers/gpio/ |
bdc6e95e AC |
5249 | F: include/linux/gpio/ |
5250 | F: include/linux/gpio.h | |
9b692346 | 5251 | F: include/asm-generic/gpio.h |
3c702e99 | 5252 | F: include/uapi/linux/gpio.h |
6d591c46 | 5253 | F: tools/gpio/ |
a0dc00b4 | 5254 | |
71a6d0af HW |
5255 | GRE DEMULTIPLEXER DRIVER |
5256 | M: Dmitry Kozlov <xeb@mail.ru> | |
5257 | L: netdev@vger.kernel.org | |
5258 | S: Maintained | |
11c26770 JP |
5259 | F: net/ipv4/gre_demux.c |
5260 | F: net/ipv4/gre_offload.c | |
71a6d0af HW |
5261 | F: include/net/gre.h |
5262 | ||
d4c41139 | 5263 | GRETH 10/100/1G Ethernet MAC device driver |
bbdd09eb | 5264 | M: Andreas Larsson <andreas@gaisler.com> |
d4c41139 KG |
5265 | L: netdev@vger.kernel.org |
5266 | S: Maintained | |
a31a96ad | 5267 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 5268 | |
e8deeae2 | 5269 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 5270 | M: Frank Zago <frank@zago.net> |
661263b5 | 5271 | L: linux-media@vger.kernel.org |
275ffde4 | 5272 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 5273 | S: Maintained |
0c0d06ca | 5274 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 5275 | |
4b3fa3c4 OL |
5276 | GSPCA GL860 SUBDRIVER |
5277 | M: Olivier Lorin <o.lorin@laposte.net> | |
5278 | L: linux-media@vger.kernel.org | |
275ffde4 | 5279 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 5280 | S: Maintained |
0c0d06ca | 5281 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 5282 | |
e8deeae2 | 5283 | GSPCA M5602 SUBDRIVER |
8b58be88 | 5284 | M: Erik Andren <erik.andren@gmail.com> |
661263b5 | 5285 | L: linux-media@vger.kernel.org |
275ffde4 | 5286 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 5287 | S: Maintained |
0c0d06ca | 5288 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
5289 | |
5290 | GSPCA PAC207 SONIXB SUBDRIVER | |
c0936df4 | 5291 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 5292 | L: linux-media@vger.kernel.org |
275ffde4 | 5293 | T: git git://linuxtv.org/media_tree.git |
c0936df4 | 5294 | S: Odd Fixes |
0c0d06ca | 5295 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 5296 | |
261982f1 | 5297 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 5298 | M: Brian Johnson <brijohn@gmail.com> |
261982f1 | 5299 | L: linux-media@vger.kernel.org |
275ffde4 | 5300 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 5301 | S: Maintained |
0c0d06ca | 5302 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 5303 | |
e8deeae2 | 5304 | GSPCA T613 SUBDRIVER |
8b58be88 | 5305 | M: Leandro Costantino <lcostantino@gmail.com> |
661263b5 | 5306 | L: linux-media@vger.kernel.org |
275ffde4 | 5307 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 5308 | S: Maintained |
0c0d06ca | 5309 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
5310 | |
5311 | GSPCA USB WEBCAM DRIVER | |
c0936df4 | 5312 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 5313 | L: linux-media@vger.kernel.org |
275ffde4 | 5314 | T: git git://linuxtv.org/media_tree.git |
c0936df4 | 5315 | S: Odd Fixes |
0c0d06ca | 5316 | F: drivers/media/usb/gspca/ |
e8deeae2 | 5317 | |
584ec979 | 5318 | GUID PARTITION TABLE (GPT) |
4f973c63 | 5319 | M: Davidlohr Bueso <dave@stgolabs.net> |
584ec979 DB |
5320 | L: linux-efi@vger.kernel.org |
5321 | S: Maintained | |
5322 | F: block/partitions/efi.* | |
5323 | ||
aa3c598b | 5324 | STK1160 USB VIDEO CAPTURE DRIVER |
3259aa57 | 5325 | M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> |
aa3c598b | 5326 | L: linux-media@vger.kernel.org |
275ffde4 | 5327 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
5328 | S: Maintained |
5329 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 5330 | |
4e456b86 YS |
5331 | H8/300 ARCHITECTURE |
5332 | M: Yoshinori Sato <ysato@users.sourceforge.jp> | |
b992c768 | 5333 | L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers) |
4e456b86 YS |
5334 | W: http://uclinux-h8.sourceforge.jp |
5335 | T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git | |
5336 | S: Maintained | |
5337 | F: arch/h8300/ | |
5338 | F: drivers/clocksource/h8300_*.c | |
5339 | F: drivers/clk/h8300/ | |
5340 | F: drivers/irqchip/irq-renesas-h8*.c | |
5341 | ||
71a6d0af HW |
5342 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
5343 | M: Frank Seidel <frank@f-seidel.de> | |
5344 | L: platform-driver-x86@vger.kernel.org | |
5345 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
5346 | S: Maintained | |
5347 | F: drivers/platform/x86/hdaps.c | |
5348 | ||
48fc9e26 HV |
5349 | HDPVR USB VIDEO ENCODER DRIVER |
5350 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5351 | L: linux-media@vger.kernel.org | |
5352 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 5353 | W: https://linuxtv.org |
48fc9e26 | 5354 | S: Odd Fixes |
14430813 | 5355 | F: drivers/media/usb/hdpvr/ |
48fc9e26 | 5356 | |
71a6d0af | 5357 | HWPOISON MEMORY FAILURE HANDLING |
f9625c48 | 5358 | M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> |
71a6d0af | 5359 | L: linux-mm@kvack.org |
71a6d0af HW |
5360 | S: Maintained |
5361 | F: mm/memory-failure.c | |
5362 | F: mm/hwpoison-inject.c | |
5363 | ||
5364 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
5365 | L: linuxppc-dev@lists.ozlabs.org | |
5366 | S: Odd Fixes | |
5367 | F: drivers/tty/hvc/ | |
5368 | ||
e5ab1477 AP |
5369 | HACKRF MEDIA DRIVER |
5370 | M: Antti Palosaari <crope@iki.fi> | |
5371 | L: linux-media@vger.kernel.org | |
a825eaec | 5372 | W: https://linuxtv.org |
e5ab1477 AP |
5373 | W: http://palosaari.fi/linux/ |
5374 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5375 | T: git git://linuxtv.org/anttip/media_tree.git | |
5376 | S: Maintained | |
5377 | F: drivers/media/usb/hackrf/ | |
5378 | ||
5b543965 | 5379 | HARDWARE MONITORING |
d8130624 | 5380 | M: Jean Delvare <jdelvare@suse.com> |
ca462085 | 5381 | M: Guenter Roeck <linux@roeck-us.net> |
968ce1b1 GR |
5382 | L: linux-hwmon@vger.kernel.org |
5383 | W: http://hwmon.wiki.kernel.org/ | |
a94ef4ed | 5384 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/ |
885374e3 | 5385 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 5386 | S: Maintained |
047f4ec2 | 5387 | F: Documentation/hwmon/ |
679655da | 5388 | F: drivers/hwmon/ |
047f4ec2 | 5389 | F: include/linux/hwmon*.h |
5b543965 | 5390 | |
844dd05f | 5391 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
5392 | M: Matt Mackall <mpm@selenic.com> |
5393 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
3eda7167 | 5394 | L: linux-crypto@vger.kernel.org |
c0d0787b | 5395 | S: Odd fixes |
f6c60b15 | 5396 | F: Documentation/devicetree/bindings/rng/ |
679655da JP |
5397 | F: Documentation/hw_random.txt |
5398 | F: drivers/char/hw_random/ | |
5399 | F: include/linux/hw_random.h | |
844dd05f | 5400 | |
8b37fcfc OBC |
5401 | HARDWARE SPINLOCK CORE |
5402 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
69ae9895 | 5403 | M: Bjorn Andersson <bjorn.andersson@linaro.org> |
d7586849 | 5404 | L: linux-remoteproc@vger.kernel.org |
8b37fcfc | 5405 | S: Maintained |
9f273c24 | 5406 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git |
2dbd8585 | 5407 | F: Documentation/devicetree/bindings/hwlock/ |
8b37fcfc | 5408 | F: Documentation/hwspinlock.txt |
2dbd8585 | 5409 | F: drivers/hwspinlock/ |
8b37fcfc OBC |
5410 | F: include/linux/hwspinlock.h |
5411 | ||
1da177e4 | 5412 | HARMONY SOUND DRIVER |
ac6aecbf | 5413 | L: linux-parisc@vger.kernel.org |
1da177e4 | 5414 | S: Maintained |
679655da | 5415 | F: sound/parisc/harmony.* |
1da177e4 | 5416 | |
91952bc0 AP |
5417 | HD29L2 MEDIA DRIVER |
5418 | M: Antti Palosaari <crope@iki.fi> | |
5419 | L: linux-media@vger.kernel.org | |
a825eaec | 5420 | W: https://linuxtv.org |
91952bc0 AP |
5421 | W: http://palosaari.fi/linux/ |
5422 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5423 | T: git git://linuxtv.org/anttip/media_tree.git | |
5424 | S: Maintained | |
5425 | F: drivers/media/dvb-frontends/hd29l2* | |
5426 | ||
214de83e BB |
5427 | HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER |
5428 | M: Brian Boylston <brian.boylston@hpe.com> | |
5429 | S: Supported | |
5430 | F: Documentation/watchdog/hpwdt.txt | |
5431 | F: drivers/watchdog/hpwdt.c | |
5432 | ||
9257aa49 | 5433 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
a0a268ad | 5434 | M: Don Brace <don.brace@microsemi.com> |
9257aa49 | 5435 | L: iss_storagedev@hp.com |
a0a268ad | 5436 | L: esc.storagedev@microsemi.com |
693373db | 5437 | L: linux-scsi@vger.kernel.org |
9257aa49 SC |
5438 | S: Supported |
5439 | F: Documentation/scsi/hpsa.txt | |
5440 | F: drivers/scsi/hpsa*.[ch] | |
5441 | F: include/linux/cciss*.h | |
c117ab84 | 5442 | F: include/uapi/linux/cciss*.h |
9257aa49 | 5443 | |
e2d1d6c0 | 5444 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
516fdcea | 5445 | M: Don Brace <don.brace@microsemi.com> |
e2d1d6c0 | 5446 | L: iss_storagedev@hp.com |
516fdcea | 5447 | L: esc.storagedev@microsemi.com |
693373db | 5448 | L: linux-scsi@vger.kernel.org |
e2d1d6c0 | 5449 | S: Supported |
679655da JP |
5450 | F: Documentation/blockdev/cciss.txt |
5451 | F: drivers/block/cciss* | |
5452 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 5453 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 5454 | |
f48ad614 DD |
5455 | HFI1 DRIVER |
5456 | M: Mike Marciniszyn <mike.marciniszyn@intel.com> | |
5457 | M: Dennis Dalessandro <dennis.dalessandro@intel.com> | |
5458 | L: linux-rdma@vger.kernel.org | |
5459 | S: Supported | |
5460 | F: drivers/infiniband/hw/hfi1 | |
5461 | ||
1da177e4 | 5462 | HFS FILESYSTEM |
6cf515e1 GU |
5463 | L: linux-fsdevel@vger.kernel.org |
5464 | S: Orphan | |
679655da JP |
5465 | F: Documentation/filesystems/hfs.txt |
5466 | F: fs/hfs/ | |
1da177e4 | 5467 | |
ef575f47 GU |
5468 | HFSPLUS FILESYSTEM |
5469 | L: linux-fsdevel@vger.kernel.org | |
5470 | S: Orphan | |
5471 | F: Documentation/filesystems/hfsplus.txt | |
5472 | F: fs/hfsplus/ | |
5473 | ||
1da177e4 | 5474 | HGA FRAMEBUFFER DRIVER |
8b58be88 | 5475 | M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> |
1da177e4 LT |
5476 | L: linux-nvidia@lists.surfsouth.com |
5477 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
5478 | S: Maintained | |
8a61f013 | 5479 | F: drivers/video/fbdev/hgafb.c |
1da177e4 | 5480 | |
4480f15b | 5481 | HIBERNATION (aka Software Suspend, aka swsusp) |
49db1903 | 5482 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 5483 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 5484 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 5485 | S: Supported |
679655da JP |
5486 | F: arch/x86/power/ |
5487 | F: drivers/base/power/ | |
5488 | F: kernel/power/ | |
5489 | F: include/linux/suspend.h | |
5490 | F: include/linux/freezer.h | |
5491 | F: include/linux/pm.h | |
679655da | 5492 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 5493 | |
4ef4caad | 5494 | HID CORE LAYER |
e5f6450c | 5495 | M: Jiri Kosina <jikos@kernel.org> |
406df153 | 5496 | R: Benjamin Tissoires <benjamin.tissoires@redhat.com> |
eb76c5c0 | 5497 | L: linux-input@vger.kernel.org |
54e5881d | 5498 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 5499 | S: Maintained |
679655da JP |
5500 | F: drivers/hid/ |
5501 | F: include/linux/hid* | |
c117ab84 | 5502 | F: include/uapi/linux/hid* |
4ef4caad | 5503 | |
30ee72f0 | 5504 | HID SENSOR HUB DRIVERS |
e5f6450c | 5505 | M: Jiri Kosina <jikos@kernel.org> |
30ee72f0 SP |
5506 | M: Jonathan Cameron <jic23@kernel.org> |
5507 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> | |
5508 | L: linux-input@vger.kernel.org | |
5509 | L: linux-iio@vger.kernel.org | |
5510 | S: Maintained | |
5511 | F: Documentation/hid/hid-sensor* | |
5512 | F: drivers/hid/hid-sensor-* | |
5513 | F: drivers/iio/*/hid-* | |
5514 | F: include/linux/hid-sensor-* | |
5515 | ||
38bed542 | 5516 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 5517 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 5518 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 5519 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 5520 | S: Maintained |
679655da | 5521 | F: Documentation/timers/ |
5cee9645 | 5522 | F: kernel/time/hrtimer.c |
88606e80 TG |
5523 | F: kernel/time/clockevents.c |
5524 | F: kernel/time/tick*.* | |
5525 | F: kernel/time/timer_*.c | |
05ed8490 | 5526 | F: include/linux/clockchips.h |
679655da | 5527 | F: include/linux/hrtimer.h |
38bed542 | 5528 | |
1da177e4 | 5529 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 5530 | L: linux-hams@vger.kernel.org |
8b64f2a0 | 5531 | S: Orphan |
679655da JP |
5532 | F: drivers/net/hamradio/dmascc.c |
5533 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 5534 | |
ede1e6f8 | 5535 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 5536 | M: HighPoint Linux Team <linux@highpoint-tech.com> |
ede1e6f8 HLT |
5537 | W: http://www.highpoint-tech.com |
5538 | S: Supported | |
679655da JP |
5539 | F: Documentation/scsi/hptiop.txt |
5540 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 5541 | |
1da177e4 | 5542 | HIPPI |
8b58be88 | 5543 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
5544 | L: linux-hippi@sunsite.dk |
5545 | S: Maintained | |
679655da | 5546 | F: include/linux/hippidevice.h |
c117ab84 | 5547 | F: include/uapi/linux/if_hippi.h |
679655da | 5548 | F: net/802/hippi.c |
ff5a3b50 | 5549 | F: drivers/net/hippi/ |
1da177e4 | 5550 | |
b30d74e4 DH |
5551 | HISILICON NETWORK SUBSYSTEM DRIVER |
5552 | M: Yisen Zhuang <yisen.zhuang@huawei.com> | |
5553 | M: Salil Mehta <salil.mehta@huawei.com> | |
5554 | L: netdev@vger.kernel.org | |
5555 | W: http://www.hisilicon.com | |
5556 | S: Maintained | |
5557 | F: drivers/net/ethernet/hisilicon/ | |
5558 | F: Documentation/devicetree/bindings/net/hisilicon*.txt | |
5559 | ||
16c6c252 JG |
5560 | HISILICON SAS Controller |
5561 | M: John Garry <john.garry@huawei.com> | |
5562 | W: http://www.hisilicon.com | |
5563 | S: Supported | |
5564 | F: drivers/scsi/hisi_sas/ | |
5565 | F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt | |
5566 | ||
ff1d2767 | 5567 | HOST AP DRIVER |
8b58be88 | 5568 | M: Jouni Malinen <j@w1.fi> |
85d32e7b | 5569 | L: hostap@shmoo.com (subscribers-only) |
724c6b35 | 5570 | L: linux-wireless@vger.kernel.org |
ff1d2767 JM |
5571 | W: http://hostap.epitest.fi/ |
5572 | S: Maintained | |
eb4f98d5 | 5573 | F: drivers/net/wireless/intersil/hostap/ |
ff1d2767 | 5574 | |
dd8cd779 | 5575 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 5576 | L: platform-driver-x86@vger.kernel.org |
95c70215 | 5577 | S: Orphan |
679655da | 5578 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 5579 | |
e2d1d6c0 | 5580 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 5581 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 5582 | S: Maintained |
7e25d724 | 5583 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 5584 | |
7d2c86b5 | 5585 | HPET: High Precision Event Timers driver |
8b58be88 | 5586 | M: Clemens Ladisch <clemens@ladisch.de> |
b9b0332f | 5587 | S: Maintained |
679655da JP |
5588 | F: Documentation/timers/hpet.txt |
5589 | F: drivers/char/hpet.c | |
5590 | F: include/linux/hpet.h | |
c117ab84 | 5591 | F: include/uapi/linux/hpet.h |
b9b0332f | 5592 | |
e07b5d79 | 5593 | HPET: x86 |
9e06f631 | 5594 | S: Orphan |
679655da JP |
5595 | F: arch/x86/kernel/hpet.c |
5596 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 5597 | |
1da177e4 | 5598 | HPFS FILESYSTEM |
8b58be88 | 5599 | M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> |
1da177e4 LT |
5600 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
5601 | S: Maintained | |
679655da | 5602 | F: fs/hpfs/ |
1da177e4 | 5603 | |
3441cded | 5604 | HSI SUBSYSTEM |
56459ea9 SR |
5605 | M: Sebastian Reichel <sre@kernel.org> |
5606 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git | |
3441cded SR |
5607 | S: Maintained |
5608 | F: Documentation/ABI/testing/sysfs-bus-hsi | |
56459ea9 | 5609 | F: Documentation/hsi.txt |
3441cded SR |
5610 | F: drivers/hsi/ |
5611 | F: include/linux/hsi/ | |
5612 | F: include/uapi/linux/hsi/ | |
5613 | ||
7d2c86b5 | 5614 | HSO 3G MODEM DRIVER |
8b58be88 | 5615 | M: Jan Dumon <j.dumon@option.com> |
11cd29b0 DJB |
5616 | W: http://www.pharscape.org |
5617 | S: Maintained | |
679655da | 5618 | F: drivers/net/usb/hso.c |
11cd29b0 | 5619 | |
19990e29 AB |
5620 | HSR NETWORK PROTOCOL |
5621 | M: Arvid Brodin <arvid.brodin@alten.se> | |
5622 | L: netdev@vger.kernel.org | |
5623 | S: Maintained | |
5624 | F: net/hsr/ | |
5625 | ||
5a18c343 | 5626 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 5627 | M: Pau Oliva Fora <pof@eslack.org> |
5a18c343 POF |
5628 | L: linux-input@vger.kernel.org |
5629 | S: Maintained | |
679655da | 5630 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 5631 | |
1da177e4 | 5632 | HUGETLB FILESYSTEM |
6d49e352 | 5633 | M: Nadia Yvette Chambers <nyc@holomorphy.com> |
1da177e4 | 5634 | S: Maintained |
679655da | 5635 | F: fs/hugetlbfs/ |
1da177e4 | 5636 | |
05183189 | 5637 | Hyper-V CORE AND DRIVERS |
9c3646d1 | 5638 | M: "K. Y. Srinivasan" <kys@microsoft.com> |
05183189 S |
5639 | M: Haiyang Zhang <haiyangz@microsoft.com> |
5640 | L: devel@linuxdriverproject.org | |
5641 | S: Maintained | |
a4162747 HZ |
5642 | F: arch/x86/include/asm/mshyperv.h |
5643 | F: arch/x86/include/uapi/asm/hyperv.h | |
5644 | F: arch/x86/kernel/cpu/mshyperv.c | |
05183189 | 5645 | F: drivers/hid/hid-hyperv.c |
a4162747 | 5646 | F: drivers/hv/ |
f92ca80b | 5647 | F: drivers/input/serio/hyperv-keyboard.c |
4daace0d | 5648 | F: drivers/pci/host/pci-hyperv.c |
05183189 | 5649 | F: drivers/net/hyperv/ |
a4162747 | 5650 | F: drivers/scsi/storvsc_drv.c |
8a61f013 | 5651 | F: drivers/video/fbdev/hyperv_fb.c |
a4162747 HZ |
5652 | F: include/linux/hyperv.h |
5653 | F: tools/hv/ | |
54bf725e | 5654 | F: Documentation/ABI/stable/sysfs-bus-vmbus |
05183189 | 5655 | |
7724fd04 PR |
5656 | I2C MUXES |
5657 | M: Peter Rosin <peda@axentia.se> | |
5658 | L: linux-i2c@vger.kernel.org | |
5659 | S: Maintained | |
2254d24a | 5660 | F: Documentation/i2c/i2c-topology |
7724fd04 PR |
5661 | F: Documentation/i2c/muxes/ |
5662 | F: Documentation/devicetree/bindings/i2c/i2c-mux* | |
5663 | F: drivers/i2c/i2c-mux.c | |
5664 | F: drivers/i2c/muxes/ | |
5665 | F: include/linux/i2c-mux.h | |
5666 | ||
d85c8a6a | 5667 | I2C OVER PARALLEL PORT |
d8130624 | 5668 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
5669 | L: linux-i2c@vger.kernel.org |
5670 | S: Maintained | |
5671 | F: Documentation/i2c/busses/i2c-parport | |
5672 | F: Documentation/i2c/busses/i2c-parport-light | |
5673 | F: drivers/i2c/busses/i2c-parport.c | |
5674 | F: drivers/i2c/busses/i2c-parport-light.c | |
5675 | ||
5676 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
d8130624 | 5677 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
5678 | L: linux-i2c@vger.kernel.org |
5679 | S: Maintained | |
5680 | F: Documentation/i2c/busses/i2c-ali1535 | |
5681 | F: Documentation/i2c/busses/i2c-ali1563 | |
5682 | F: Documentation/i2c/busses/i2c-ali15x3 | |
5683 | F: Documentation/i2c/busses/i2c-amd756 | |
5684 | F: Documentation/i2c/busses/i2c-amd8111 | |
5685 | F: Documentation/i2c/busses/i2c-i801 | |
5686 | F: Documentation/i2c/busses/i2c-nforce2 | |
5687 | F: Documentation/i2c/busses/i2c-piix4 | |
5688 | F: Documentation/i2c/busses/i2c-sis5595 | |
5689 | F: Documentation/i2c/busses/i2c-sis630 | |
5690 | F: Documentation/i2c/busses/i2c-sis96x | |
5691 | F: Documentation/i2c/busses/i2c-via | |
5692 | F: Documentation/i2c/busses/i2c-viapro | |
5693 | F: drivers/i2c/busses/i2c-ali1535.c | |
5694 | F: drivers/i2c/busses/i2c-ali1563.c | |
5695 | F: drivers/i2c/busses/i2c-ali15x3.c | |
5696 | F: drivers/i2c/busses/i2c-amd756.c | |
5697 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
5698 | F: drivers/i2c/busses/i2c-amd8111.c | |
5699 | F: drivers/i2c/busses/i2c-i801.c | |
5700 | F: drivers/i2c/busses/i2c-isch.c | |
5701 | F: drivers/i2c/busses/i2c-nforce2.c | |
5702 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
5703 | F: drivers/i2c/busses/i2c-piix4.c | |
5704 | F: drivers/i2c/busses/i2c-sis5595.c | |
5705 | F: drivers/i2c/busses/i2c-sis630.c | |
5706 | F: drivers/i2c/busses/i2c-sis96x.c | |
5707 | F: drivers/i2c/busses/i2c-via.c | |
5708 | F: drivers/i2c/busses/i2c-viapro.c | |
5709 | ||
cb7f07a4 NH |
5710 | I2C/SMBUS ISMT DRIVER |
5711 | M: Seth Heasley <seth.heasley@intel.com> | |
5712 | M: Neil Horman <nhorman@tuxdriver.com> | |
5713 | L: linux-i2c@vger.kernel.org | |
5714 | F: drivers/i2c/busses/i2c-ismt.c | |
5715 | F: Documentation/i2c/busses/i2c-ismt | |
5716 | ||
6ea884db | 5717 | I2C/SMBUS STUB DRIVER |
d8130624 | 5718 | M: Jean Delvare <jdelvare@suse.com> |
846557d3 | 5719 | L: linux-i2c@vger.kernel.org |
6ea884db | 5720 | S: Maintained |
8547a5bc | 5721 | F: drivers/i2c/i2c-stub.c |
6ea884db | 5722 | |
5b543965 | 5723 | I2C SUBSYSTEM |
14d77c4d | 5724 | M: Wolfram Sang <wsa@the-dreams.de> |
846557d3 | 5725 | L: linux-i2c@vger.kernel.org |
9d4ea27a WS |
5726 | W: https://i2c.wiki.kernel.org/ |
5727 | Q: https://patchwork.ozlabs.org/project/linux-i2c/list/ | |
14d77c4d | 5728 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
1da177e4 | 5729 | S: Maintained |
40ed1b4c | 5730 | F: Documentation/devicetree/bindings/i2c/ |
679655da JP |
5731 | F: Documentation/i2c/ |
5732 | F: drivers/i2c/ | |
630bc46e | 5733 | F: drivers/i2c/*/ |
679655da | 5734 | F: include/linux/i2c.h |
03b70d62 | 5735 | F: include/linux/i2c-*.h |
c117ab84 CEB |
5736 | F: include/uapi/linux/i2c.h |
5737 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 5738 | |
4560d677 WS |
5739 | I2C ACPI SUPPORT |
5740 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
5741 | L: linux-i2c@vger.kernel.org | |
5742 | L: linux-acpi@vger.kernel.org | |
5743 | S: Maintained | |
4560d677 | 5744 | |
d85c8a6a | 5745 | I2C-TAOS-EVM DRIVER |
d8130624 | 5746 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
5747 | L: linux-i2c@vger.kernel.org |
5748 | S: Maintained | |
5749 | F: Documentation/i2c/busses/i2c-taos-evm | |
5750 | F: drivers/i2c/busses/i2c-taos-evm.c | |
5751 | ||
e8c76eed | 5752 | I2C-TINY-USB DRIVER |
8b58be88 | 5753 | M: Till Harbaum <till@harbaum.org> |
846557d3 | 5754 | L: linux-i2c@vger.kernel.org |
932d1872 | 5755 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 5756 | S: Maintained |
679655da | 5757 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 5758 | |
1da177e4 | 5759 | i386 BOOT CODE |
8b58be88 | 5760 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 5761 | S: Maintained |
679655da | 5762 | F: arch/x86/boot/ |
1da177e4 LT |
5763 | |
5764 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 5765 | M: "H. Peter Anvin" <hpa@zytor.com> |
54e5881d | 5766 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
5767 | S: Maintained |
5768 | ||
1da177e4 | 5769 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
5770 | M: Tony Luck <tony.luck@intel.com> |
5771 | M: Fenghua Yu <fenghua.yu@intel.com> | |
1da177e4 | 5772 | L: linux-ia64@vger.kernel.org |
6b1c70b1 | 5773 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 5774 | S: Maintained |
679655da | 5775 | F: arch/ia64/ |
1da177e4 | 5776 | |
4cd38750 LDSB |
5777 | IBM Power VMX Cryptographic instructions |
5778 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> | |
5cd01fe1 | 5779 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> |
4cd38750 LDSB |
5780 | L: linux-crypto@vger.kernel.org |
5781 | S: Supported | |
5782 | F: drivers/crypto/vmx/Makefile | |
5783 | F: drivers/crypto/vmx/Kconfig | |
5784 | F: drivers/crypto/vmx/vmx.c | |
5785 | F: drivers/crypto/vmx/aes* | |
5786 | F: drivers/crypto/vmx/ghash* | |
5787 | F: drivers/crypto/vmx/ppc-xlate.pl | |
5788 | ||
956c203c | 5789 | IBM Power in-Nest Crypto Acceleration |
4cd38750 | 5790 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> |
5cd01fe1 | 5791 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> |
956c203c KY |
5792 | L: linux-crypto@vger.kernel.org |
5793 | S: Supported | |
28bceeaa DS |
5794 | F: drivers/crypto/nx/Makefile |
5795 | F: drivers/crypto/nx/Kconfig | |
5796 | F: drivers/crypto/nx/nx-aes* | |
5797 | F: drivers/crypto/nx/nx-sha* | |
5798 | F: drivers/crypto/nx/nx.* | |
5799 | F: drivers/crypto/nx/nx_csbcpb.h | |
5800 | F: drivers/crypto/nx/nx_debugfs.h | |
956c203c | 5801 | |
0e16aafb | 5802 | IBM Power 842 compression accelerator |
41656aa7 | 5803 | M: Dan Streetman <ddstreet@ieee.org> |
0e16aafb | 5804 | S: Supported |
28bceeaa DS |
5805 | F: drivers/crypto/nx/Makefile |
5806 | F: drivers/crypto/nx/Kconfig | |
7011a122 | 5807 | F: drivers/crypto/nx/nx-842* |
2da572c9 | 5808 | F: include/linux/sw842.h |
2062c5b6 | 5809 | F: crypto/842.c |
2da572c9 | 5810 | F: lib/842/ |
0e16aafb | 5811 | |
1da177e4 | 5812 | IBM Power Linux RAID adapter |
8b58be88 | 5813 | M: Brian King <brking@us.ibm.com> |
1da177e4 | 5814 | S: Supported |
679655da | 5815 | F: drivers/scsi/ipr.* |
1da177e4 | 5816 | |
9d348af4 | 5817 | IBM Power Virtual Ethernet Device Driver |
eddd63a6 | 5818 | M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> |
9d348af4 SL |
5819 | L: netdev@vger.kernel.org |
5820 | S: Supported | |
9aa32835 | 5821 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 5822 | |
032c5e82 TF |
5823 | IBM Power SRIOV Virtual NIC Device Driver |
5824 | M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> | |
5825 | M: John Allen <jallen@linux.vnet.ibm.com> | |
5826 | L: netdev@vger.kernel.org | |
5827 | S: Supported | |
5828 | F: drivers/net/ethernet/ibm/ibmvnic.* | |
5829 | ||
e6babec6 | 5830 | IBM Power Virtual SCSI Device Drivers |
bcbde52b | 5831 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
4b7652cc RJ |
5832 | L: linux-scsi@vger.kernel.org |
5833 | S: Supported | |
e6babec6 | 5834 | F: drivers/scsi/ibmvscsi/ibmvscsi* |
88a678bb BL |
5835 | F: include/scsi/viosrp.h |
5836 | ||
5837 | IBM Power Virtual SCSI Device Target Driver | |
5838 | M: Bryant G. Ly <bryantly@linux.vnet.ibm.com> | |
5839 | M: Michael Cyr <mikecyr@linux.vnet.ibm.com> | |
5840 | L: linux-scsi@vger.kernel.org | |
5841 | L: target-devel@vger.kernel.org | |
5842 | S: Supported | |
5843 | F: drivers/scsi/ibmvscsi_tgt/ | |
e6babec6 NF |
5844 | |
5845 | IBM Power Virtual FC Device Drivers | |
44b4dad9 | 5846 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
e6babec6 NF |
5847 | L: linux-scsi@vger.kernel.org |
5848 | S: Supported | |
5849 | F: drivers/scsi/ibmvscsi/ibmvfc* | |
4b7652cc | 5850 | |
1da177e4 | 5851 | IBM ServeRAID RAID DRIVER |
f9213e78 | 5852 | S: Orphan |
679655da | 5853 | F: drivers/scsi/ips.* |
1da177e4 | 5854 | |
6ed9f9c4 PT |
5855 | ICH LPC AND GPIO DRIVER |
5856 | M: Peter Tyser <ptyser@xes-inc.com> | |
5857 | S: Maintained | |
5858 | F: drivers/mfd/lpc_ich.c | |
5859 | F: drivers/gpio/gpio-ich.c | |
5860 | ||
1e7106fc | 5861 | IDE SUBSYSTEM |
8b58be88 | 5862 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 5863 | L: linux-ide@vger.kernel.org |
8a6e2535 | 5864 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 5865 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 5866 | S: Maintained |
679655da JP |
5867 | F: Documentation/ide/ |
5868 | F: drivers/ide/ | |
5869 | F: include/linux/ide.h | |
1da177e4 | 5870 | |
6cb8c13d IP |
5871 | IDEAPAD LAPTOP EXTRAS DRIVER |
5872 | M: Ike Panhc <ike.pan@canonical.com> | |
5873 | L: platform-driver-x86@vger.kernel.org | |
5874 | W: http://launchpad.net/ideapad-laptop | |
5875 | S: Maintained | |
5876 | F: drivers/platform/x86/ideapad-laptop.c | |
5877 | ||
1ea4c161 AM |
5878 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
5879 | M: Andrey Moiseev <o2g.org.ru@gmail.com> | |
5880 | L: linux-input@vger.kernel.org | |
5881 | W: https://github.com/o2genum/ideapad-slidebar | |
5882 | S: Maintained | |
5883 | F: drivers/input/misc/ideapad_slidebar.c | |
5884 | ||
0f861e8c | 5885 | IDE/ATAPI DRIVERS |
487ba8e8 | 5886 | M: Borislav Petkov <bp@alien8.de> |
9c5b0ce4 | 5887 | L: linux-ide@vger.kernel.org |
c404c199 | 5888 | S: Maintained |
679655da JP |
5889 | F: Documentation/cdrom/ide-cd |
5890 | F: drivers/ide/ide-cd* | |
1da177e4 | 5891 | |
27471fdb | 5892 | IDLE-I7300 |
8b58be88 | 5893 | M: Andy Henroid <andrew.d.henroid@intel.com> |
bf1c138e | 5894 | L: linux-pm@vger.kernel.org |
27471fdb | 5895 | S: Supported |
679655da | 5896 | F: drivers/idle/i7300_idle.c |
27471fdb | 5897 | |
02cf2286 | 5898 | IEEE 802.15.4 SUBSYSTEM |
aff3eaa0 | 5899 | M: Alexander Aring <aar@pengutronix.de> |
ebef9c12 | 5900 | L: linux-wpan@vger.kernel.org |
aff3eaa0 AA |
5901 | W: http://wpan.cakelab.org/ |
5902 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git | |
5903 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
02cf2286 SL |
5904 | S: Maintained |
5905 | F: net/ieee802154/ | |
68653359 | 5906 | F: net/mac802154/ |
251741b1 | 5907 | F: drivers/net/ieee802154/ |
580947d3 AA |
5908 | F: include/linux/nl802154.h |
5909 | F: include/linux/ieee802154.h | |
5910 | F: include/net/nl802154.h | |
5911 | F: include/net/mac802154.h | |
5912 | F: include/net/af_ieee802154.h | |
5913 | F: include/net/cfg802154.h | |
5914 | F: include/net/ieee802154_netdev.h | |
ebef9c12 | 5915 | F: Documentation/networking/ieee802154.txt |
02cf2286 | 5916 | |
b1c97193 SY |
5917 | IGORPLUG-USB IR RECEIVER |
5918 | M: Sean Young <sean@mess.org> | |
5919 | L: linux-media@vger.kernel.org | |
5920 | S: Maintained | |
5921 | F: drivers/media/rc/igorplugusb.c | |
5922 | ||
40ad4a30 SY |
5923 | IGUANAWORKS USB IR TRANSCEIVER |
5924 | M: Sean Young <sean@mess.org> | |
5925 | L: linux-media@vger.kernel.org | |
5926 | S: Maintained | |
5927 | F: drivers/media/rc/iguanair.c | |
5928 | ||
9545f86e | 5929 | IIO SUBSYSTEM AND DRIVERS |
030a13d7 | 5930 | M: Jonathan Cameron <jic23@kernel.org> |
f0d61161 LPC |
5931 | R: Hartmut Knaack <knaack.h@gmx.de> |
5932 | R: Lars-Peter Clausen <lars@metafoo.de> | |
6fca5aa8 | 5933 | R: Peter Meerwald-Stadler <pmeerw@pmeerw.net> |
9545f86e | 5934 | L: linux-iio@vger.kernel.org |
21d41655 | 5935 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git |
9545f86e | 5936 | S: Maintained |
866b148a | 5937 | F: Documentation/devicetree/bindings/iio/ |
03e7c251 | 5938 | F: drivers/iio/ |
9545f86e | 5939 | F: drivers/staging/iio/ |
8fe671fc | 5940 | F: include/linux/iio/ |
817020cf | 5941 | F: tools/iio/ |
9545f86e | 5942 | |
65519263 SG |
5943 | IKANOS/ADI EAGLE ADSL USB DRIVER |
5944 | M: Matthieu Castet <castet.matthieu@free.fr> | |
5945 | M: Stanislaw Gruszka <stf_xl@wp.pl> | |
5946 | S: Maintained | |
5947 | F: drivers/usb/atm/ueagle-atm.c | |
5948 | ||
e89ab51f GR |
5949 | INA209 HARDWARE MONITOR DRIVER |
5950 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 5951 | L: linux-hwmon@vger.kernel.org |
e89ab51f GR |
5952 | S: Maintained |
5953 | F: Documentation/hwmon/ina209 | |
5954 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
5955 | F: drivers/hwmon/ina209.c | |
5956 | ||
5957 | INA2XX HARDWARE MONITOR DRIVER | |
5958 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 5959 | L: linux-hwmon@vger.kernel.org |
e89ab51f GR |
5960 | S: Maintained |
5961 | F: Documentation/hwmon/ina2xx | |
5962 | F: drivers/hwmon/ina2xx.c | |
5963 | F: include/linux/platform_data/ina2xx.h | |
5964 | ||
14dc124f SIG |
5965 | INDUSTRY PACK SUBSYSTEM (IPACK) |
5966 | M: Samuel Iglesias Gonsalvez <siglesias@igalia.com> | |
5967 | M: Jens Taprogge <jens.taprogge@taprogge.org> | |
5968 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
5969 | L: industrypack-devel@lists.sourceforge.net | |
5970 | W: http://industrypack.sourceforge.net | |
5971 | S: Maintained | |
5972 | F: drivers/ipack/ | |
5973 | ||
8adc53fd ZLK |
5974 | INGENIC JZ4780 DMA Driver |
5975 | M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> | |
5976 | S: Maintained | |
5977 | F: drivers/dma/dma-jz4780.c | |
5978 | ||
aa7168f4 | 5979 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
74dd744f | 5980 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
bfd33c4b | 5981 | M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com> |
74dd744f MZ |
5982 | L: linux-ima-devel@lists.sourceforge.net |
5983 | L: linux-ima-user@lists.sourceforge.net | |
5984 | L: linux-security-module@vger.kernel.org | |
9f273c24 | 5985 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git |
aa7168f4 | 5986 | S: Supported |
679655da | 5987 | F: security/integrity/ima/ |
aa7168f4 | 5988 | |
9a4ea5a9 JH |
5989 | IMGTEC IR DECODER DRIVER |
5990 | M: James Hogan <james.hogan@imgtec.com> | |
5991 | S: Maintained | |
5992 | F: drivers/media/rc/img-ir/ | |
5993 | ||
1da177e4 | 5994 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 5995 | L: linux-fbdev@vger.kernel.org |
843393d3 | 5996 | S: Orphan |
8a61f013 | 5997 | F: drivers/video/fbdev/imsttfb.c |
1da177e4 LT |
5998 | |
5999 | INFINIBAND SUBSYSTEM | |
b6b2bbe6 | 6000 | M: Doug Ledford <dledford@redhat.com> |
8b58be88 JP |
6001 | M: Sean Hefty <sean.hefty@intel.com> |
6002 | M: Hal Rosenstock <hal.rosenstock@gmail.com> | |
e6cc0fd1 | 6003 | L: linux-rdma@vger.kernel.org |
605841f5 | 6004 | W: http://www.openfabrics.org/ |
8a6e2535 | 6005 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
2936ae04 | 6006 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git |
1da177e4 | 6007 | S: Supported |
679655da JP |
6008 | F: Documentation/infiniband/ |
6009 | F: drivers/infiniband/ | |
c117ab84 | 6010 | F: include/uapi/linux/if_infiniband.h |
954138dc YD |
6011 | F: include/uapi/rdma/ |
6012 | F: include/rdma/ | |
1da177e4 | 6013 | |
c9f04f58 | 6014 | INOTIFY |
8b58be88 JP |
6015 | M: John McCutchan <john@johnmccutchan.com> |
6016 | M: Robert Love <rlove@rlove.org> | |
6017 | M: Eric Paris <eparis@parisplace.org> | |
c9f04f58 | 6018 | S: Maintained |
679655da JP |
6019 | F: Documentation/filesystems/inotify.txt |
6020 | F: fs/notify/inotify/ | |
6021 | F: include/linux/inotify.h | |
c117ab84 | 6022 | F: include/uapi/linux/inotify.h |
c9f04f58 | 6023 | |
e2d1d6c0 | 6024 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 | 6025 | M: Dmitry Torokhov <dmitry.torokhov@gmail.com> |
e2d1d6c0 | 6026 | L: linux-input@vger.kernel.org |
8a6e2535 | 6027 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 6028 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 6029 | S: Maintained |
679655da | 6030 | F: drivers/input/ |
f4eea7e2 | 6031 | F: include/linux/input.h |
c117ab84 | 6032 | F: include/uapi/linux/input.h |
f4eea7e2 | 6033 | F: include/linux/input/ |
e52d8398 | 6034 | F: Documentation/devicetree/bindings/input/ |
e2d1d6c0 | 6035 | |
3267a87f | 6036 | INPUT MULTITOUCH (MT) PROTOCOL |
75dd112a | 6037 | M: Henrik Rydberg <rydberg@bitmath.org> |
3267a87f | 6038 | L: linux-input@vger.kernel.org |
75dd112a | 6039 | S: Odd fixes |
3267a87f | 6040 | F: Documentation/input/multi-touch-protocol.txt |
7f9c2454 | 6041 | F: drivers/input/input-mt.c |
3267a87f HR |
6042 | K: \b(ABS|SYN)_MT_ |
6043 | ||
97fa99a3 JY |
6044 | INTEL ASoC BDW/HSW DRIVERS |
6045 | M: Jie Yang <yang.jie@linux.intel.com> | |
e5747e40 | 6046 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
97fa99a3 | 6047 | S: Supported |
e8e1225d JP |
6048 | F: sound/soc/intel/common/sst-dsp* |
6049 | F: sound/soc/intel/common/sst-firmware.c | |
6050 | F: sound/soc/intel/boards/broadwell.c | |
6051 | F: sound/soc/intel/haswell/ | |
97fa99a3 | 6052 | |
4ac13e17 DJ |
6053 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
6054 | M: Intel SCU Linux support <intel-linux-scu@intel.com> | |
fdc5813f | 6055 | M: Artur Paszkiewicz <artur.paszkiewicz@intel.com> |
4ac13e17 | 6056 | L: linux-scsi@vger.kernel.org |
7106891a DJ |
6057 | T: git git://git.code.sf.net/p/intel-sas/isci |
6058 | S: Supported | |
4ac13e17 | 6059 | F: drivers/scsi/isci/ |
4ac13e17 | 6060 | |
ecc83e52 AH |
6061 | INTEL HID EVENT DRIVER |
6062 | M: Alex Hung <alex.hung@canonical.com> | |
6063 | L: platform-driver-x86@vger.kernel.org | |
6064 | S: Maintained | |
6065 | F: drivers/platform/x86/intel-hid.c | |
6066 | ||
332e0812 AK |
6067 | INTEL VIRTUAL BUTTON DRIVER |
6068 | M: AceLan Kao <acelan.kao@canonical.com> | |
6069 | L: platform-driver-x86@vger.kernel.org | |
6070 | S: Maintained | |
6071 | F: drivers/platform/x86/intel-vbtn.c | |
6072 | ||
26717172 LB |
6073 | INTEL IDLE DRIVER |
6074 | M: Len Brown <lenb@kernel.org> | |
bf1c138e | 6075 | L: linux-pm@vger.kernel.org |
08deed1e | 6076 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
26717172 LB |
6077 | S: Supported |
6078 | F: drivers/idle/intel_idle.c | |
6079 | ||
7c1ac18d | 6080 | INTEL PSTATE DRIVER |
58ac1f62 SP |
6081 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> |
6082 | M: Len Brown <lenb@kernel.org> | |
7c1ac18d KCA |
6083 | L: linux-pm@vger.kernel.org |
6084 | S: Supported | |
6085 | F: drivers/cpufreq/intel_pstate.c | |
6086 | ||
9eb8ef74 | 6087 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
55a23c4a | 6088 | M: Maik Broemme <mbroemme@plusserver.de> |
c69f677c | 6089 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 6090 | S: Maintained |
679655da | 6091 | F: Documentation/fb/intelfb.txt |
8a61f013 | 6092 | F: drivers/video/fbdev/intelfb/ |
9eb8ef74 | 6093 | |
1da177e4 | 6094 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 6095 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 6096 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 6097 | S: Maintained |
8a61f013 | 6098 | F: drivers/video/fbdev/i810/ |
1da177e4 | 6099 | |
f4a9bc4c | 6100 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 6101 | M: Sujith Thomas <sujith.thomas@intel.com> |
d0944853 | 6102 | L: platform-driver-x86@vger.kernel.org |
5ca92bd9 | 6103 | W: https://01.org/linux-acpi |
f4a9bc4c | 6104 | S: Supported |
679655da | 6105 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 6106 | |
248a9dc3 | 6107 | INTEL I/OAT DMA DRIVER |
18ebd564 | 6108 | M: Dave Jiang <dave.jiang@intel.com> |
08223d80 | 6109 | R: Dan Williams <dan.j.williams@intel.com> |
18ebd564 DJ |
6110 | L: dmaengine@vger.kernel.org |
6111 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
6112 | S: Supported | |
679655da | 6113 | F: drivers/dma/ioat* |
248a9dc3 | 6114 | |
6c8909b4 | 6115 | INTEL IOMMU (VT-d) |
8b58be88 | 6116 | M: David Woodhouse <dwmw2@infradead.org> |
6c8909b4 | 6117 | L: iommu@lists.linux-foundation.org |
54e5881d | 6118 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 6119 | S: Supported |
3fb39615 | 6120 | F: drivers/iommu/intel-iommu.c |
679655da | 6121 | F: include/linux/intel-iommu.h |
6c8909b4 | 6122 | |
b3e5f263 | 6123 | INTEL IOP-ADMA DMA DRIVER |
08223d80 | 6124 | R: Dan Williams <dan.j.williams@intel.com> |
1dd8372d | 6125 | S: Odd fixes |
679655da | 6126 | F: drivers/dma/iop-adma.c |
b3e5f263 | 6127 | |
9251ce95 | 6128 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
5529c2cd | 6129 | M: Krzysztof Halasa <khalasa@piap.pl> |
9251ce95 | 6130 | S: Maintained |
679655da JP |
6131 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
6132 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
6133 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
6134 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 6135 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 6136 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 6137 | |
844dd05f | 6138 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 6139 | M: Deepak Saxena <dsaxena@plexity.net> |
844dd05f | 6140 | S: Maintained |
679655da | 6141 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 6142 | |
2f302324 | 6143 | INTEL ETHERNET DRIVERS |
8b58be88 | 6144 | M: Jeff Kirsher <jeffrey.t.kirsher@intel.com> |
eff471b1 | 6145 | L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers) |
f6fde11a | 6146 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 6147 | W: http://e1000.sourceforge.net/ |
2f302324 JK |
6148 | Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/ |
6149 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git | |
6150 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git | |
1da177e4 | 6151 | S: Supported |
0d164401 JK |
6152 | F: Documentation/networking/e100.txt |
6153 | F: Documentation/networking/e1000.txt | |
6154 | F: Documentation/networking/e1000e.txt | |
6155 | F: Documentation/networking/igb.txt | |
6156 | F: Documentation/networking/igbvf.txt | |
6157 | F: Documentation/networking/ixgb.txt | |
6158 | F: Documentation/networking/ixgbe.txt | |
6159 | F: Documentation/networking/ixgbevf.txt | |
1bff6529 | 6160 | F: Documentation/networking/i40e.txt |
105bf2fe | 6161 | F: Documentation/networking/i40evf.txt |
dee1ad47 | 6162 | F: drivers/net/ethernet/intel/ |
bc90d291 | 6163 | F: drivers/net/ethernet/intel/*/ |
1da177e4 | 6164 | |
6e4de866 FL |
6165 | INTEL RDMA RNIC DRIVER |
6166 | M: Faisal Latif <faisal.latif@intel.com> | |
6167 | R: Chien Tin Tung <chien.tin.tung@intel.com> | |
6168 | R: Mustafa Ismail <mustafa.ismail@intel.com> | |
6169 | R: Shiraz Saleem <shiraz.saleem@intel.com> | |
6170 | R: Tatyana Nikolova <tatyana.e.nikolova@intel.com> | |
6171 | L: linux-rdma@vger.kernel.org | |
6172 | S: Supported | |
6173 | F: drivers/infiniband/hw/i40iw/ | |
6174 | ||
224f9e6d AS |
6175 | INTEL MERRIFIELD GPIO DRIVER |
6176 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> | |
6177 | L: linux-gpio@vger.kernel.org | |
6178 | S: Maintained | |
6179 | F: drivers/gpio/gpio-merrifield.c | |
6180 | ||
0963d59b LW |
6181 | INTEL-MID GPIO DRIVER |
6182 | M: David Cohen <david.a.cohen@linux.intel.com> | |
6183 | L: linux-gpio@vger.kernel.org | |
6184 | S: Maintained | |
6185 | F: drivers/gpio/gpio-intel-mid.c | |
6186 | ||
ca907a90 SY |
6187 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
6188 | M: Stanislav Yakovlev <stas.yakovlev@gmail.com> | |
724c6b35 | 6189 | L: linux-wireless@vger.kernel.org |
ca907a90 | 6190 | S: Maintained |
679655da | 6191 | F: Documentation/networking/README.ipw2100 |
679655da | 6192 | F: Documentation/networking/README.ipw2200 |
367a1092 | 6193 | F: drivers/net/wireless/intel/ipw2x00/ |
826d2abe | 6194 | |
5760b0a5 AS |
6195 | INTEL(R) TRACE HUB |
6196 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> | |
6197 | S: Supported | |
6198 | F: Documentation/trace/intel_th.txt | |
6199 | F: drivers/hwtracing/intel_th/ | |
6200 | ||
4bd96a7a | 6201 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
74b18e17 | 6202 | M: Ning Sun <ning.sun@intel.com> |
4bd96a7a SW |
6203 | L: tboot-devel@lists.sourceforge.net |
6204 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 6205 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
6206 | S: Supported |
6207 | F: Documentation/intel_txt.txt | |
6208 | F: include/linux/tboot.h | |
6209 | F: arch/x86/kernel/tboot.c | |
6210 | ||
8a70da82 | 6211 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 6212 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 6213 | M: linux-wimax@intel.com |
49e7d9df | 6214 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
6215 | S: Supported |
6216 | W: http://linuxwimax.org | |
679655da JP |
6217 | F: Documentation/wimax/README.i2400m |
6218 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 6219 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 6220 | |
1c0ce89c SG |
6221 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
6222 | M: Stanislaw Gruszka <sgruszka@redhat.com> | |
efa3144e | 6223 | L: linux-wireless@vger.kernel.org |
1c0ce89c | 6224 | S: Supported |
7ac9a364 | 6225 | F: drivers/net/wireless/intel/iwlegacy/ |
efa3144e | 6226 | |
b481de9c | 6227 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 6228 | M: Johannes Berg <johannes.berg@intel.com> |
6161b02b | 6229 | M: Emmanuel Grumbach <emmanuel.grumbach@intel.com> |
af5e964f | 6230 | M: Luca Coelho <luciano.coelho@intel.com> |
7b9aebf0 | 6231 | M: Intel Linux Wireless <linuxwifi@intel.com> |
b481de9c | 6232 | L: linux-wireless@vger.kernel.org |
b481de9c | 6233 | W: http://intellinuxwireless.org |
b62ff718 | 6234 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 6235 | S: Supported |
e705c121 | 6236 | F: drivers/net/wireless/intel/iwlwifi/ |
b481de9c | 6237 | |
de8fe023 TW |
6238 | INTEL MANAGEMENT ENGINE (mei) |
6239 | M: Tomas Winkler <tomas.winkler@intel.com> | |
6240 | L: linux-kernel@vger.kernel.org | |
6241 | S: Supported | |
c117ab84 | 6242 | F: include/uapi/linux/mei.h |
5069288b | 6243 | F: include/linux/mei_cl_bus.h |
de8fe023 | 6244 | F: drivers/misc/mei/* |
222818c3 | 6245 | F: drivers/watchdog/mei_wdt.c |
e07950a1 | 6246 | F: Documentation/misc-devices/mei/* |
de8fe023 | 6247 | |
50ceb98b SD |
6248 | INTEL MIC DRIVERS (mic) |
6249 | M: Sudeep Dutt <sudeep.dutt@intel.com> | |
6250 | M: Ashutosh Dixit <ashutosh.dixit@intel.com> | |
6251 | S: Supported | |
6252 | W: https://github.com/sudeepdutt/mic | |
6253 | W: http://software.intel.com/en-us/mic-developer | |
6254 | F: include/linux/mic_bus.h | |
6255 | F: include/linux/scif.h | |
6256 | F: include/uapi/linux/mic_common.h | |
6257 | F: include/uapi/linux/mic_ioctl.h | |
9f273c24 | 6258 | F: include/uapi/linux/scif_ioctl.h |
50ceb98b SD |
6259 | F: drivers/misc/mic/ |
6260 | F: drivers/dma/mic_x100_dma.c | |
6261 | F: drivers/dma/mic_x100_dma.h | |
9f273c24 | 6262 | F: Documentation/mic/ |
50ceb98b | 6263 | |
fdca4f16 | 6264 | INTEL PMC/P-Unit IPC DRIVER |
0a8b8353 | 6265 | M: Zha Qipeng<qipeng.zha@intel.com> |
6266 | L: platform-driver-x86@vger.kernel.org | |
6267 | S: Maintained | |
6268 | F: drivers/platform/x86/intel_pmc_ipc.c | |
fdca4f16 | 6269 | F: drivers/platform/x86/intel_punit_ipc.c |
0a8b8353 | 6270 | F: arch/x86/include/asm/intel_pmc_ipc.h |
fdca4f16 | 6271 | F: arch/x86/include/asm/intel_punit_ipc.h |
0a8b8353 | 6272 | |
378f956e SKC |
6273 | INTEL TELEMETRY DRIVER |
6274 | M: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com> | |
6275 | L: platform-driver-x86@vger.kernel.org | |
6276 | S: Maintained | |
378f956e | 6277 | F: arch/x86/include/asm/intel_telemetry.h |
f1fc3cd8 | 6278 | F: drivers/platform/x86/intel_telemetry* |
0a8b8353 | 6279 | |
b740d2e9 RB |
6280 | INTEL PMC CORE DRIVER |
6281 | M: Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com> | |
6282 | M: Vishwanath Somayaji <vishwanath.somayaji@intel.com> | |
6283 | L: platform-driver-x86@vger.kernel.org | |
6284 | S: Maintained | |
6285 | F: arch/x86/include/asm/pmc_core.h | |
6286 | F: drivers/platform/x86/intel_pmc_core* | |
6287 | ||
cb109a0e | 6288 | IOC3 ETHERNET DRIVER |
8b58be88 | 6289 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 LT |
6290 | L: linux-mips@linux-mips.org |
6291 | S: Maintained | |
8862bf1e | 6292 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 6293 | |
cb109a0e | 6294 | IOC3 SERIAL DRIVER |
8b58be88 | 6295 | M: Pat Gefre <pfg@sgi.com> |
d39e0721 | 6296 | L: linux-serial@vger.kernel.org |
cb109a0e | 6297 | S: Maintained |
df621252 | 6298 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 6299 | |
0b6e8569 SW |
6300 | IOMMU DRIVERS |
6301 | M: Joerg Roedel <joro@8bytes.org> | |
6302 | L: iommu@lists.linux-foundation.org | |
6303 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git | |
6304 | S: Maintained | |
efcd94c0 | 6305 | F: Documentation/devicetree/bindings/iommu/ |
0b6e8569 SW |
6306 | F: drivers/iommu/ |
6307 | ||
4480f15b | 6308 | IP MASQUERADING |
8b58be88 | 6309 | M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar> |
1da177e4 | 6310 | S: Maintained |
679655da | 6311 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 6312 | |
4409ebe9 | 6313 | IPMI SUBSYSTEM |
8b58be88 | 6314 | M: Corey Minyard <minyard@acm.org> |
b0c90653 | 6315 | L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers) |
4409ebe9 CM |
6316 | W: http://openipmi.sourceforge.net/ |
6317 | S: Supported | |
679655da JP |
6318 | F: Documentation/IPMI.txt |
6319 | F: drivers/char/ipmi/ | |
6320 | F: include/linux/ipmi* | |
c117ab84 | 6321 | F: include/uapi/linux/ipmi* |
4409ebe9 | 6322 | |
2d800897 KW |
6323 | QCOM AUDIO (ASoC) DRIVERS |
6324 | M: Patrick Lai <plai@codeaurora.org> | |
6325 | M: Banajit Goswami <bgoswami@codeaurora.org> | |
6326 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
6327 | S: Supported | |
6328 | F: sound/soc/qcom/ | |
6329 | ||
e2d1d6c0 | 6330 | IPS SCSI RAID DRIVER |
8b58be88 | 6331 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
6332 | L: linux-scsi@vger.kernel.org |
6333 | W: http://www.adaptec.com/ | |
6334 | S: Maintained | |
679655da | 6335 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
6336 | |
6337 | IPVS | |
8b58be88 JP |
6338 | M: Wensong Zhang <wensong@linux-vs.org> |
6339 | M: Simon Horman <horms@verge.net.au> | |
6340 | M: Julian Anastasov <ja@ssi.bg> | |
979b6c13 | 6341 | L: netdev@vger.kernel.org |
e2d1d6c0 | 6342 | L: lvs-devel@vger.kernel.org |
1da177e4 | 6343 | S: Maintained |
9f273c24 FW |
6344 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git |
6345 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git | |
679655da | 6346 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 6347 | F: include/net/ip_vs.h |
c117ab84 | 6348 | F: include/uapi/linux/ip_vs.h |
679655da | 6349 | F: net/netfilter/ipvs/ |
1da177e4 | 6350 | |
e7839f25 | 6351 | IPWIRELESS DRIVER |
e5f6450c | 6352 | M: Jiri Kosina <jikos@kernel.org> |
d8130624 | 6353 | M: David Sterba <dsterba@suse.com> |
92094aa0 | 6354 | S: Odd Fixes |
282361a0 | 6355 | F: drivers/tty/ipwireless/ |
099dc4fb | 6356 | |
e2d1d6c0 | 6357 | IPX NETWORK LAYER |
8b58be88 | 6358 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 RD |
6359 | L: netdev@vger.kernel.org |
6360 | S: Maintained | |
679655da | 6361 | F: include/net/ipx.h |
c117ab84 | 6362 | F: include/uapi/linux/ipx.h |
679655da | 6363 | F: net/ipx/ |
e2d1d6c0 | 6364 | |
1da177e4 | 6365 | IRDA SUBSYSTEM |
8b58be88 | 6366 | M: Samuel Ortiz <samuel@sortiz.org> |
a2ac953d | 6367 | L: irda-users@lists.sourceforge.net (subscribers-only) |
ced649ea | 6368 | L: netdev@vger.kernel.org |
1da177e4 | 6369 | W: http://irda.sourceforge.net/ |
f353976d | 6370 | S: Maintained |
e0057975 | 6371 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
6372 | F: Documentation/networking/irda.txt |
6373 | F: drivers/net/irda/ | |
6374 | F: include/net/irda/ | |
6375 | F: net/irda/ | |
1da177e4 | 6376 | |
a800c7cc TG |
6377 | IRQ SUBSYSTEM |
6378 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 6379 | L: linux-kernel@vger.kernel.org |
a800c7cc | 6380 | S: Maintained |
75fc2d37 | 6381 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc | 6382 | F: kernel/irq/ |
2ed9fd28 JC |
6383 | |
6384 | IRQCHIP DRIVERS | |
6385 | M: Thomas Gleixner <tglx@linutronix.de> | |
6386 | M: Jason Cooper <jason@lakedaemon.net> | |
54d9ffc4 | 6387 | M: Marc Zyngier <marc.zyngier@arm.com> |
2ed9fd28 JC |
6388 | L: linux-kernel@vger.kernel.org |
6389 | S: Maintained | |
6390 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core | |
6391 | T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core | |
5b5a9069 | 6392 | F: Documentation/devicetree/bindings/interrupt-controller/ |
edd96900 | 6393 | F: drivers/irqchip/ |
a800c7cc | 6394 | |
7ab3a837 | 6395 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
b09dec2c | 6396 | M: Marc Zyngier <marc.zyngier@arm.com> |
7ab3a837 | 6397 | S: Maintained |
b09dec2c | 6398 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
7ab3a837 GL |
6399 | F: Documentation/IRQ-domain.txt |
6400 | F: include/linux/irqdomain.h | |
6401 | F: kernel/irq/irqdomain.c | |
b09dec2c | 6402 | F: kernel/irq/msi.c |
7ab3a837 | 6403 | |
ad7afc38 WBG |
6404 | ISA |
6405 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
6406 | S: Maintained | |
6407 | F: Documentation/isa.txt | |
6408 | F: drivers/base/isa.c | |
6409 | F: include/linux/isa.h | |
6410 | ||
e2d1d6c0 | 6411 | ISAPNP |
8b58be88 | 6412 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 6413 | S: Maintained |
679655da JP |
6414 | F: Documentation/isapnp.txt |
6415 | F: drivers/pnp/isapnp/ | |
6416 | F: include/linux/isapnp.h | |
e2d1d6c0 | 6417 | |
d39b8420 HV |
6418 | ISA RADIO MODULE |
6419 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
6420 | L: linux-media@vger.kernel.org | |
6421 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 6422 | W: https://linuxtv.org |
d39b8420 HV |
6423 | S: Maintained |
6424 | F: drivers/media/radio/radio-isa* | |
6425 | ||
71a6d0af HW |
6426 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
6427 | M: Peter Jones <pjones@redhat.com> | |
6428 | M: Konrad Rzeszutek Wilk <konrad@kernel.org> | |
6429 | S: Maintained | |
6430 | F: drivers/firmware/iscsi_ibft* | |
6431 | ||
14816b1e | 6432 | ISCSI |
8b58be88 | 6433 | M: Mike Christie <michaelc@cs.wisc.edu> |
14816b1e MC |
6434 | L: open-iscsi@googlegroups.com |
6435 | W: www.open-iscsi.org | |
54e5881d | 6436 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
14816b1e | 6437 | S: Maintained |
679655da JP |
6438 | F: drivers/scsi/*iscsi* |
6439 | F: include/scsi/*iscsi* | |
14816b1e | 6440 | |
1e65eb42 OG |
6441 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
6442 | M: Or Gerlitz <ogerlitz@mellanox.com> | |
e7d2c25d | 6443 | M: Sagi Grimberg <sagi@grimberg.me> |
1e65eb42 OG |
6444 | M: Roi Dayan <roid@mellanox.com> |
6445 | L: linux-rdma@vger.kernel.org | |
6446 | S: Supported | |
6447 | W: http://www.openfabrics.org | |
6448 | W: www.open-iscsi.org | |
6449 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
14430813 | 6450 | F: drivers/infiniband/ulp/iser/ |
1e65eb42 | 6451 | |
2b70e5fd | 6452 | ISCSI EXTENSIONS FOR RDMA (ISER) TARGET |
e7d2c25d | 6453 | M: Sagi Grimberg <sagi@grimberg.me> |
2b70e5fd SG |
6454 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
6455 | L: linux-rdma@vger.kernel.org | |
6456 | L: target-devel@vger.kernel.org | |
6457 | S: Supported | |
6458 | W: http://www.linux-iscsi.org | |
6459 | F: drivers/infiniband/ulp/isert | |
6460 | ||
1da177e4 | 6461 | ISDN SUBSYSTEM |
8b58be88 | 6462 | M: Karsten Keil <isdn@linux-pingi.de> |
d5d52273 | 6463 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
3da0ae62 | 6464 | L: netdev@vger.kernel.org |
1da177e4 | 6465 | W: http://www.isdn4linux.de |
54e5881d | 6466 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 6467 | S: Maintained |
679655da JP |
6468 | F: Documentation/isdn/ |
6469 | F: drivers/isdn/ | |
6470 | F: include/linux/isdn.h | |
6471 | F: include/linux/isdn/ | |
c117ab84 CEB |
6472 | F: include/uapi/linux/isdn.h |
6473 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
6474 | |
6475 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 6476 | M: Armin Schindler <mac@melware.de> |
d5d52273 | 6477 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
1da177e4 LT |
6478 | W: http://www.melware.de |
6479 | S: Maintained | |
679655da | 6480 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 6481 | |
d624870f | 6482 | IT87 HARDWARE MONITORING DRIVER |
d8130624 | 6483 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 6484 | L: linux-hwmon@vger.kernel.org |
d624870f JD |
6485 | S: Maintained |
6486 | F: Documentation/hwmon/it87 | |
6487 | F: drivers/hwmon/it87.c | |
6488 | ||
d7104bff AP |
6489 | IT913X MEDIA DRIVER |
6490 | M: Antti Palosaari <crope@iki.fi> | |
6491 | L: linux-media@vger.kernel.org | |
a825eaec | 6492 | W: https://linuxtv.org |
d7104bff AP |
6493 | W: http://palosaari.fi/linux/ |
6494 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6495 | T: git git://linuxtv.org/anttip/media_tree.git | |
6496 | S: Maintained | |
249c697e | 6497 | F: drivers/media/tuners/it913x* |
d7104bff | 6498 | |
91821ff3 | 6499 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 6500 | M: Andy Walls <awalls@md.metrocast.net> |
7b212edf | 6501 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
661263b5 | 6502 | L: linux-media@vger.kernel.org |
275ffde4 | 6503 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
6504 | W: http://www.ivtvdriver.org |
6505 | S: Maintained | |
679655da | 6506 | F: Documentation/video4linux/*.ivtv |
90d72ac6 | 6507 | F: drivers/media/pci/ivtv/ |
c117ab84 | 6508 | F: include/uapi/linux/ivtv* |
91821ff3 | 6509 | |
68620bdd MP |
6510 | IX2505V MEDIA DRIVER |
6511 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
6512 | L: linux-media@vger.kernel.org | |
a825eaec | 6513 | W: https://linuxtv.org |
68620bdd MP |
6514 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
6515 | S: Maintained | |
6516 | F: drivers/media/dvb-frontends/ix2505v* | |
6517 | ||
4453d736 GR |
6518 | JC42.4 TEMPERATURE SENSOR DRIVER |
6519 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 6520 | L: linux-hwmon@vger.kernel.org |
4453d736 GR |
6521 | S: Maintained |
6522 | F: drivers/hwmon/jc42.c | |
6523 | F: Documentation/hwmon/jc42 | |
6524 | ||
e2d1d6c0 | 6525 | JFS FILESYSTEM |
3256f80f | 6526 | M: Dave Kleikamp <shaggy@kernel.org> |
e2d1d6c0 RD |
6527 | L: jfs-discussion@lists.sourceforge.net |
6528 | W: http://jfs.sourceforge.net/ | |
54e5881d | 6529 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 6530 | S: Maintained |
679655da JP |
6531 | F: Documentation/filesystems/jfs.txt |
6532 | F: fs/jfs/ | |
e2d1d6c0 | 6533 | |
95252236 | 6534 | JME NETWORK DRIVER |
8b58be88 | 6535 | M: Guo-Fu Tseng <cooldavid@cooldavid.org> |
95252236 GFT |
6536 | L: netdev@vger.kernel.org |
6537 | S: Maintained | |
63d24a0e | 6538 | F: drivers/net/ethernet/jme.* |
95252236 | 6539 | |
1da177e4 | 6540 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 6541 | M: David Woodhouse <dwmw2@infradead.org> |
6d85d066 DW |
6542 | L: linux-mtd@lists.infradead.org |
6543 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 6544 | S: Maintained |
679655da | 6545 | F: fs/jffs2/ |
c117ab84 | 6546 | F: include/uapi/linux/jffs2.h |
1da177e4 | 6547 | |
d183e11a TT |
6548 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) |
6549 | M: "Theodore Ts'o" <tytso@mit.edu> | |
c290ea01 | 6550 | M: Jan Kara <jack@suse.com> |
d183e11a TT |
6551 | L: linux-ext4@vger.kernel.org |
6552 | S: Maintained | |
6553 | F: fs/jbd2/ | |
6554 | F: include/linux/jbd2.h | |
ae0718f8 | 6555 | |
207dab5f MU |
6556 | JPU V4L2 MEM2MEM DRIVER FOR RENESAS |
6557 | M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com> | |
6558 | L: linux-media@vger.kernel.org | |
6559 | S: Maintained | |
6560 | F: drivers/media/platform/rcar_jpu.c | |
6561 | ||
fd8b6cb4 | 6562 | JSM Neo PCI based serial card |
df247081 | 6563 | M: Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com> |
fd8b6cb4 BL |
6564 | L: linux-serial@vger.kernel.org |
6565 | S: Maintained | |
df621252 | 6566 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 6567 | |
af39917d CL |
6568 | K10TEMP HARDWARE MONITORING DRIVER |
6569 | M: Clemens Ladisch <clemens@ladisch.de> | |
968ce1b1 | 6570 | L: linux-hwmon@vger.kernel.org |
af39917d CL |
6571 | S: Maintained |
6572 | F: Documentation/hwmon/k10temp | |
6573 | F: drivers/hwmon/k10temp.c | |
6574 | ||
4660cb35 | 6575 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 6576 | M: Rudolf Marek <r.marek@assembler.cz> |
968ce1b1 | 6577 | L: linux-hwmon@vger.kernel.org |
ae0718f8 | 6578 | S: Maintained |
679655da JP |
6579 | F: Documentation/hwmon/k8temp |
6580 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 6581 | |
0ba1d91d AR |
6582 | KASAN |
6583 | M: Andrey Ryabinin <aryabinin@virtuozzo.com> | |
6584 | R: Alexander Potapenko <glider@google.com> | |
6585 | R: Dmitry Vyukov <dvyukov@google.com> | |
6586 | L: kasan-dev@googlegroups.com | |
6587 | S: Maintained | |
6588 | F: arch/*/include/asm/kasan.h | |
6589 | F: arch/*/mm/kasan_init* | |
6590 | F: Documentation/kasan.txt | |
64f8ebaf | 6591 | F: include/linux/kasan*.h |
0ba1d91d AR |
6592 | F: lib/test_kasan.c |
6593 | F: mm/kasan/ | |
6594 | F: scripts/Makefile.kasan | |
6595 | ||
1da177e4 | 6596 | KCONFIG |
5eb1f99e | 6597 | M: "Yann E. MORIN" <yann.morin.1998@free.fr> |
347d12d7 | 6598 | L: linux-kbuild@vger.kernel.org |
cea8321c | 6599 | T: git git://gitorious.org/linux-kconfig/linux-kconfig |
5eb1f99e | 6600 | S: Maintained |
679655da JP |
6601 | F: Documentation/kbuild/kconfig-language.txt |
6602 | F: scripts/kconfig/ | |
1da177e4 | 6603 | |
ea6c2089 | 6604 | KDUMP |
f871f191 VG |
6605 | M: Dave Young <dyoung@redhat.com> |
6606 | M: Baoquan He <bhe@redhat.com> | |
6607 | R: Vivek Goyal <vgoyal@redhat.com> | |
34633993 | 6608 | L: kexec@lists.infradead.org |
ea6c2089 VG |
6609 | W: http://lse.sourceforge.net/kdump/ |
6610 | S: Maintained | |
80811493 | 6611 | F: Documentation/kdump/ |
ea6c2089 | 6612 | |
f41bf02f HV |
6613 | KEENE FM RADIO TRANSMITTER DRIVER |
6614 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
6615 | L: linux-media@vger.kernel.org | |
6616 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 6617 | W: https://linuxtv.org |
f41bf02f HV |
6618 | S: Maintained |
6619 | F: drivers/media/radio/radio-keene* | |
6620 | ||
1da177e4 | 6621 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 6622 | M: Ian Kent <raven@themaw.net> |
f694fc97 | 6623 | L: autofs@vger.kernel.org |
1da177e4 | 6624 | S: Maintained |
679655da | 6625 | F: fs/autofs4/ |
1da177e4 | 6626 | |
70fb7ba6 | 6627 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
d8130624 | 6628 | M: Michal Marek <mmarek@suse.com> |
08deed1e JP |
6629 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
6630 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 6631 | L: linux-kbuild@vger.kernel.org |
5ce45962 | 6632 | S: Maintained |
679655da JP |
6633 | F: Documentation/kbuild/ |
6634 | F: Makefile | |
6635 | F: scripts/Makefile.* | |
70fb7ba6 MM |
6636 | F: scripts/basic/ |
6637 | F: scripts/mk* | |
6638 | F: scripts/package/ | |
1da177e4 LT |
6639 | |
6640 | KERNEL JANITORS | |
c3000e03 | 6641 | L: kernel-janitors@vger.kernel.org |
10466f5a | 6642 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 6643 | S: Odd Fixes |
1da177e4 | 6644 | |
e8b43555 | 6645 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 6646 | M: "J. Bruce Fields" <bfields@fieldses.org> |
883985f6 | 6647 | M: Jeff Layton <jlayton@poochiereds.net> |
16141c02 | 6648 | L: linux-nfs@vger.kernel.org |
1da177e4 | 6649 | W: http://nfs.sourceforge.net/ |
9f273c24 | 6650 | T: git git://linux-nfs.org/~bfields/linux.git |
98fac23f | 6651 | S: Supported |
679655da | 6652 | F: fs/nfsd/ |
c117ab84 | 6653 | F: include/uapi/linux/nfsd/ |
679655da JP |
6654 | F: fs/lockd/ |
6655 | F: fs/nfs_common/ | |
6656 | F: net/sunrpc/ | |
6657 | F: include/linux/lockd/ | |
6658 | F: include/linux/sunrpc/ | |
c117ab84 | 6659 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 6660 | |
13b122b3 SK |
6661 | KERNEL SELFTEST FRAMEWORK |
6662 | M: Shuah Khan <shuahkh@osg.samsung.com> | |
90effdcd | 6663 | M: Shuah Khan <shuah@kernel.org> |
64f00850 | 6664 | L: linux-kselftest@vger.kernel.org |
13b122b3 SK |
6665 | T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest |
6666 | S: Maintained | |
6667 | F: tools/testing/selftests | |
6668 | ||
426d62e2 | 6669 | KERNEL VIRTUAL MACHINE (KVM) |
c93a64fe | 6670 | M: Paolo Bonzini <pbonzini@redhat.com> |
3d8e15dd | 6671 | M: Radim Krčmář <rkrcmar@redhat.com> |
1fc9d2bf | 6672 | L: kvm@vger.kernel.org |
e3e58478 | 6673 | W: http://www.linux-kvm.org |
a94b40a6 | 6674 | T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git |
426d62e2 | 6675 | S: Supported |
c93a64fe PB |
6676 | F: Documentation/*/kvm*.txt |
6677 | F: Documentation/virtual/kvm/ | |
679655da | 6678 | F: arch/*/kvm/ |
1662e862 CB |
6679 | F: arch/x86/kernel/kvm.c |
6680 | F: arch/x86/kernel/kvmclock.c | |
679655da JP |
6681 | F: arch/*/include/asm/kvm* |
6682 | F: include/linux/kvm* | |
c117ab84 | 6683 | F: include/uapi/linux/kvm* |
679655da | 6684 | F: virt/kvm/ |
6d0a1a61 | 6685 | F: tools/kvm/ |
426d62e2 | 6686 | |
ad8003d3 | 6687 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 6688 | M: Joerg Roedel <joro@8bytes.org> |
1fc9d2bf | 6689 | L: kvm@vger.kernel.org |
038161de | 6690 | W: http://www.linux-kvm.org/ |
7de609c8 | 6691 | S: Maintained |
679655da | 6692 | F: arch/x86/include/asm/svm.h |
679655da | 6693 | F: arch/x86/kvm/svm.c |
426d62e2 | 6694 | |
513014b7 | 6695 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
d8130624 | 6696 | M: Alexander Graf <agraf@suse.com> |
1fc9d2bf | 6697 | L: kvm-ppc@vger.kernel.org |
038161de | 6698 | W: http://www.linux-kvm.org/ |
6a7f972d | 6699 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 6700 | S: Supported |
679655da JP |
6701 | F: arch/powerpc/include/asm/kvm* |
6702 | F: arch/powerpc/kvm/ | |
513014b7 | 6703 | |
85f8fffe | 6704 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 6705 | M: Christian Borntraeger <borntraeger@de.ibm.com> |
4ae57b6c | 6706 | M: Cornelia Huck <cornelia.huck@de.ibm.com> |
85f8fffe CB |
6707 | L: linux-s390@vger.kernel.org |
6708 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
9f273c24 | 6709 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git |
85f8fffe | 6710 | S: Supported |
679655da JP |
6711 | F: Documentation/s390/kvm.txt |
6712 | F: arch/s390/include/asm/kvm* | |
80811493 | 6713 | F: arch/s390/kvm/ |
85f8fffe | 6714 | |
a749474d | 6715 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
0f4ca79e | 6716 | M: Christoffer Dall <christoffer.dall@linaro.org> |
5c8818b4 MZ |
6717 | M: Marc Zyngier <marc.zyngier@arm.com> |
6718 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
a749474d CD |
6719 | L: kvmarm@lists.cs.columbia.edu |
6720 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
1b1ebe82 | 6721 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git |
0f4ca79e | 6722 | S: Supported |
a749474d CD |
6723 | F: arch/arm/include/uapi/asm/kvm* |
6724 | F: arch/arm/include/asm/kvm* | |
6725 | F: arch/arm/kvm/ | |
5c8818b4 MZ |
6726 | F: virt/kvm/arm/ |
6727 | F: include/kvm/arm_* | |
a749474d | 6728 | |
6394a3ec | 6729 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
5c8818b4 | 6730 | M: Christoffer Dall <christoffer.dall@linaro.org> |
6394a3ec MZ |
6731 | M: Marc Zyngier <marc.zyngier@arm.com> |
6732 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6733 | L: kvmarm@lists.cs.columbia.edu | |
6734 | S: Maintained | |
6735 | F: arch/arm64/include/uapi/asm/kvm* | |
6736 | F: arch/arm64/include/asm/kvm* | |
6737 | F: arch/arm64/kvm/ | |
6738 | ||
bfd3d532 JH |
6739 | KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips) |
6740 | M: James Hogan <james.hogan@imgtec.com> | |
6741 | L: linux-mips@linux-mips.org | |
6742 | S: Supported | |
6743 | F: arch/mips/include/uapi/asm/kvm* | |
6744 | F: arch/mips/include/asm/kvm* | |
6745 | F: arch/mips/kvm/ | |
6746 | ||
dc009d92 | 6747 | KEXEC |
8b58be88 | 6748 | M: Eric Biederman <ebiederm@xmission.com> |
2f327dad | 6749 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 6750 | L: kexec@lists.infradead.org |
dc009d92 | 6751 | S: Maintained |
679655da | 6752 | F: include/linux/kexec.h |
c117ab84 | 6753 | F: include/uapi/linux/kexec.h |
10540a69 | 6754 | F: kernel/kexec* |
dc009d92 | 6755 | |
e971461f DH |
6756 | KEYS/KEYRINGS: |
6757 | M: David Howells <dhowells@redhat.com> | |
aa62efff | 6758 | L: keyrings@vger.kernel.org |
e971461f | 6759 | S: Maintained |
d410fa4e | 6760 | F: Documentation/security/keys.txt |
e971461f DH |
6761 | F: include/linux/key.h |
6762 | F: include/linux/key-type.h | |
75aeddd1 DH |
6763 | F: include/linux/keyctl.h |
6764 | F: include/uapi/linux/keyctl.h | |
e971461f DH |
6765 | F: include/keys/ |
6766 | F: security/keys/ | |
6767 | ||
7f3c68be | 6768 | KEYS-TRUSTED |
74dd744f MZ |
6769 | M: David Safford <safford@us.ibm.com> |
6770 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> | |
7f3c68be | 6771 | L: linux-security-module@vger.kernel.org |
aa62efff | 6772 | L: keyrings@vger.kernel.org |
7f3c68be | 6773 | S: Supported |
d410fa4e | 6774 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
6775 | F: include/keys/trusted-type.h |
6776 | F: security/keys/trusted.c | |
6777 | F: security/keys/trusted.h | |
6778 | ||
6779 | KEYS-ENCRYPTED | |
74dd744f MZ |
6780 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
6781 | M: David Safford <safford@us.ibm.com> | |
7f3c68be | 6782 | L: linux-security-module@vger.kernel.org |
aa62efff | 6783 | L: keyrings@vger.kernel.org |
7f3c68be | 6784 | S: Supported |
d410fa4e | 6785 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 6786 | F: include/keys/encrypted-type.h |
19c90aa6 | 6787 | F: security/keys/encrypted-keys/ |
7f3c68be | 6788 | |
5b778dad | 6789 | KGDB / KDB /debug_core |
8b58be88 | 6790 | M: Jason Wessel <jason.wessel@windriver.com> |
4063eb5f | 6791 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 | 6792 | L: kgdb-bugreport@lists.sourceforge.net |
9f273c24 | 6793 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git |
e3e2aaf7 | 6794 | S: Maintained |
679655da JP |
6795 | F: Documentation/DocBook/kgdb.tmpl |
6796 | F: drivers/misc/kgdbts.c | |
df621252 | 6797 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 6798 | F: include/linux/kdb.h |
679655da | 6799 | F: include/linux/kgdb.h |
4063eb5f | 6800 | F: kernel/debug/ |
e3e2aaf7 | 6801 | |
456db8cc | 6802 | KMEMCHECK |
8b58be88 | 6803 | M: Vegard Nossum <vegardno@ifi.uio.no> |
2ed1c525 | 6804 | M: Pekka Enberg <penberg@kernel.org> |
b9ce08c0 | 6805 | S: Maintained |
410d7a97 JP |
6806 | F: Documentation/kmemcheck.txt |
6807 | F: arch/x86/include/asm/kmemcheck.h | |
6808 | F: arch/x86/mm/kmemcheck/ | |
6809 | F: include/linux/kmemcheck.h | |
6810 | F: mm/kmemcheck.c | |
b9ce08c0 | 6811 | |
c3bb4d24 | 6812 | KMEMLEAK |
8b58be88 | 6813 | M: Catalin Marinas <catalin.marinas@arm.com> |
c3bb4d24 CM |
6814 | S: Maintained |
6815 | F: Documentation/kmemleak.txt | |
6816 | F: include/linux/kmemleak.h | |
6817 | F: mm/kmemleak.c | |
6818 | F: mm/kmemleak-test.c | |
6819 | ||
89559a61 | 6820 | KPROBES |
a320817c | 6821 | M: Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com> |
8b58be88 JP |
6822 | M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> |
6823 | M: "David S. Miller" <davem@davemloft.net> | |
353def94 | 6824 | M: Masami Hiramatsu <mhiramat@kernel.org> |
89559a61 | 6825 | S: Maintained |
679655da JP |
6826 | F: Documentation/kprobes.txt |
6827 | F: include/linux/kprobes.h | |
6828 | F: kernel/kprobes.c | |
89559a61 | 6829 | |
70e84049 | 6830 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 6831 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
6832 | W: http://miguelojeda.es/auxdisplay.htm |
6833 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 6834 | S: Maintained |
679655da JP |
6835 | F: Documentation/auxdisplay/ks0108 |
6836 | F: drivers/auxdisplay/ks0108.c | |
6837 | F: include/linux/ks0108.h | |
70e84049 | 6838 | |
1b69c6d0 DA |
6839 | L3MDEV |
6840 | M: David Ahern <dsa@cumulusnetworks.com> | |
6841 | L: netdev@vger.kernel.org | |
6842 | S: Maintained | |
6843 | F: net/l3mdev | |
6844 | F: include/net/l3mdev.h | |
6845 | ||
9ca44355 | 6846 | LANTIQ MIPS ARCHITECTURE |
bdb40e8e | 6847 | M: John Crispin <john@phrozen.org> |
9ca44355 JC |
6848 | L: linux-mips@linux-mips.org |
6849 | S: Maintained | |
6850 | F: arch/mips/lantiq | |
6851 | ||
1da177e4 | 6852 | LAPB module |
1da177e4 | 6853 | L: linux-x25@vger.kernel.org |
bf9915cc | 6854 | S: Orphan |
679655da JP |
6855 | F: Documentation/networking/lapb-module.txt |
6856 | F: include/*/lapb.h | |
6857 | F: net/lapb/ | |
1da177e4 LT |
6858 | |
6859 | LASI 53c700 driver for PARISC | |
8b58be88 | 6860 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
6861 | L: linux-scsi@vger.kernel.org |
6862 | S: Maintained | |
679655da JP |
6863 | F: Documentation/scsi/53c700.txt |
6864 | F: drivers/scsi/53c700* | |
1da177e4 | 6865 | |
263de9b5 | 6866 | LED SUBSYSTEM |
8b58be88 | 6867 | M: Richard Purdie <rpurdie@rpsys.net> |
48b945a1 | 6868 | M: Jacek Anaszewski <j.anaszewski@samsung.com> |
aa69cb8c | 6869 | L: linux-leds@vger.kernel.org |
b8926ba0 | 6870 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git |
263de9b5 | 6871 | S: Maintained |
85c90368 | 6872 | F: Documentation/devicetree/bindings/leds/ |
679655da JP |
6873 | F: drivers/leds/ |
6874 | F: include/linux/leds.h | |
263de9b5 | 6875 | |
b0461a44 | 6876 | LEGACY EEPROM DRIVER |
d8130624 | 6877 | M: Jean Delvare <jdelvare@suse.com> |
b0461a44 JD |
6878 | S: Maintained |
6879 | F: Documentation/misc-devices/eeprom | |
6880 | F: drivers/misc/eeprom/eeprom.c | |
6881 | ||
1da177e4 | 6882 | LEGO USB Tower driver |
8b58be88 | 6883 | M: Juergen Stuber <starblue@users.sourceforge.net> |
1da177e4 LT |
6884 | L: legousb-devel@lists.sourceforge.net |
6885 | W: http://legousb.sourceforge.net/ | |
6886 | S: Maintained | |
679655da | 6887 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 6888 | |
055616a8 MK |
6889 | LG2160 MEDIA DRIVER |
6890 | M: Michael Krufky <mkrufky@linuxtv.org> | |
6891 | L: linux-media@vger.kernel.org | |
a825eaec | 6892 | W: https://linuxtv.org |
055616a8 MK |
6893 | W: http://github.com/mkrufky |
6894 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6895 | T: git git://linuxtv.org/mkrufky/tuners.git | |
6896 | S: Maintained | |
6897 | F: drivers/media/dvb-frontends/lg2160.* | |
6898 | ||
6f0e7725 MK |
6899 | LGDT3305 MEDIA DRIVER |
6900 | M: Michael Krufky <mkrufky@linuxtv.org> | |
6901 | L: linux-media@vger.kernel.org | |
a825eaec | 6902 | W: https://linuxtv.org |
6f0e7725 MK |
6903 | W: http://github.com/mkrufky |
6904 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6905 | T: git git://linuxtv.org/mkrufky/tuners.git | |
6906 | S: Maintained | |
6907 | F: drivers/media/dvb-frontends/lgdt3305.* | |
6908 | ||
568a17ff | 6909 | LGUEST |
8b58be88 | 6910 | M: Rusty Russell <rusty@rustcorp.com.au> |
a4724ed6 | 6911 | L: lguest@lists.ozlabs.org |
568a17ff | 6912 | W: http://lguest.ozlabs.org/ |
72e91863 | 6913 | S: Odd Fixes |
070f420b | 6914 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
6915 | F: arch/x86/lguest/ |
6916 | F: drivers/lguest/ | |
6917 | F: include/linux/lguest*.h | |
070f420b | 6918 | F: tools/lguest/ |
568a17ff | 6919 | |
32ac7cb2 TH |
6920 | LIBATA SUBSYSTEM (Serial and Parallel ATA drivers) |
6921 | M: Tejun Heo <tj@kernel.org> | |
6922 | L: linux-ide@vger.kernel.org | |
6923 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6924 | S: Maintained | |
6925 | F: drivers/ata/ | |
6926 | F: include/linux/ata.h | |
6927 | F: include/linux/libata.h | |
d2abf98e | 6928 | F: Documentation/devicetree/bindings/ata/ |
32ac7cb2 TH |
6929 | |
6930 | LIBATA PATA ARASAN COMPACT FLASH CONTROLLER | |
da89947b | 6931 | M: Viresh Kumar <vireshk@kernel.org> |
32ac7cb2 TH |
6932 | L: linux-ide@vger.kernel.org |
6933 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6934 | S: Maintained | |
6935 | F: include/linux/pata_arasan_cf_data.h | |
6936 | F: drivers/ata/pata_arasan_cf.c | |
6937 | ||
c7fa056c BZ |
6938 | LIBATA PATA DRIVERS |
6939 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
6940 | M: Tejun Heo <tj@kernel.org> | |
6941 | L: linux-ide@vger.kernel.org | |
6942 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6943 | S: Maintained | |
6944 | F: drivers/ata/pata_*.c | |
6945 | F: drivers/ata/ata_generic.c | |
6946 | ||
32ac7cb2 TH |
6947 | LIBATA SATA AHCI PLATFORM devices support |
6948 | M: Hans de Goede <hdegoede@redhat.com> | |
6949 | M: Tejun Heo <tj@kernel.org> | |
6950 | L: linux-ide@vger.kernel.org | |
6951 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6952 | S: Maintained | |
6953 | F: drivers/ata/ahci_platform.c | |
6954 | F: drivers/ata/libahci_platform.c | |
6955 | F: include/linux/ahci_platform.h | |
6956 | ||
6957 | LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER | |
6958 | M: Mikael Pettersson <mikpelinux@gmail.com> | |
6959 | L: linux-ide@vger.kernel.org | |
6960 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6961 | S: Maintained | |
6962 | F: drivers/ata/sata_promise.* | |
6963 | ||
1acd437c SL |
6964 | LIBLOCKDEP |
6965 | M: Sasha Levin <sasha.levin@oracle.com> | |
6966 | S: Maintained | |
6967 | F: tools/lib/lockdep/ | |
6968 | ||
bc30196f DW |
6969 | LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM |
6970 | M: Dan Williams <dan.j.williams@intel.com> | |
6971 | L: linux-nvdimm@lists.01.org | |
6972 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
9f273c24 | 6973 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git |
bc30196f DW |
6974 | S: Supported |
6975 | F: drivers/nvdimm/* | |
6976 | F: include/linux/nd.h | |
6977 | F: include/linux/libnvdimm.h | |
6978 | F: include/uapi/linux/ndctl.h | |
6979 | ||
6980 | LIBNVDIMM BLK: MMIO-APERTURE DRIVER | |
6981 | M: Ross Zwisler <ross.zwisler@linux.intel.com> | |
6982 | L: linux-nvdimm@lists.01.org | |
6983 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
6984 | S: Supported | |
6985 | F: drivers/nvdimm/blk.c | |
6986 | F: drivers/nvdimm/region_devs.c | |
6987 | F: drivers/acpi/nfit* | |
6988 | ||
6989 | LIBNVDIMM BTT: BLOCK TRANSLATION TABLE | |
6990 | M: Vishal Verma <vishal.l.verma@intel.com> | |
6991 | L: linux-nvdimm@lists.01.org | |
6992 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
6993 | S: Supported | |
6994 | F: drivers/nvdimm/btt* | |
6995 | ||
6996 | LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER | |
6997 | M: Ross Zwisler <ross.zwisler@linux.intel.com> | |
6998 | L: linux-nvdimm@lists.01.org | |
6999 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
7000 | S: Supported | |
7001 | F: drivers/nvdimm/pmem.c | |
b864bc17 | 7002 | F: include/linux/pmem.h |
40603526 | 7003 | F: arch/*/include/asm/pmem.h |
bc30196f | 7004 | |
cd9e9808 MB |
7005 | LIGHTNVM PLATFORM SUPPORT |
7006 | M: Matias Bjorling <mb@lightnvm.io> | |
7007 | W: http://github/OpenChannelSSD | |
4ead1a25 | 7008 | L: linux-block@vger.kernel.org |
cd9e9808 MB |
7009 | S: Maintained |
7010 | F: drivers/lightnvm/ | |
7011 | F: include/linux/lightnvm.h | |
7012 | F: include/uapi/linux/lightnvm.h | |
7013 | ||
1da177e4 | 7014 | LINUX FOR IBM pSERIES (RS/6000) |
8b58be88 | 7015 | M: Paul Mackerras <paulus@au.ibm.com> |
1da177e4 LT |
7016 | W: http://www.ibm.com/linux/ltc/projects/ppc |
7017 | S: Supported | |
11c34c7d | 7018 | F: arch/powerpc/boot/rs6000.h |
1da177e4 | 7019 | |
852bb9f5 | 7020 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
7021 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
7022 | M: Paul Mackerras <paulus@samba.org> | |
ea668936 | 7023 | M: Michael Ellerman <mpe@ellerman.id.au> |
1da177e4 | 7024 | W: http://www.penguinppc.org/ |
a4724ed6 | 7025 | L: linuxppc-dev@lists.ozlabs.org |
8a6e2535 | 7026 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
9958084a | 7027 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git |
1da177e4 | 7028 | S: Supported |
11c34c7d JP |
7029 | F: Documentation/powerpc/ |
7030 | F: arch/powerpc/ | |
ef69b03d ME |
7031 | F: drivers/char/tpm/tpm_ibmvtpm* |
7032 | F: drivers/crypto/nx/ | |
7033 | F: drivers/crypto/vmx/ | |
7034 | F: drivers/net/ethernet/ibm/ibmveth.* | |
7035 | F: drivers/net/ethernet/ibm/ibmvnic.* | |
66725152 | 7036 | F: drivers/pci/hotplug/pnv_php.c |
ef69b03d ME |
7037 | F: drivers/pci/hotplug/rpa* |
7038 | F: drivers/scsi/ibmvscsi/ | |
7039 | N: opal | |
7040 | N: /pmac | |
7041 | N: powermac | |
7042 | N: powernv | |
7043 | N: [^a-z0-9]ps3 | |
7044 | N: pseries | |
1da177e4 LT |
7045 | |
7046 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 7047 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
1da177e4 | 7048 | W: http://www.penguinppc.org/ |
a4724ed6 | 7049 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 7050 | S: Maintained |
11c34c7d JP |
7051 | F: arch/powerpc/platforms/powermac/ |
7052 | F: drivers/macintosh/ | |
1da177e4 | 7053 | |
77a76369 | 7054 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 7055 | M: Anatolij Gustschin <agust@denx.de> |
a4724ed6 | 7056 | L: linuxppc-dev@lists.ozlabs.org |
cba5b1c6 | 7057 | T: git git://git.denx.de/linux-denx-agust.git |
1da177e4 | 7058 | S: Maintained |
11c34c7d JP |
7059 | F: arch/powerpc/platforms/512x/ |
7060 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
7061 | |
7062 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
49e7d9df | 7063 | M: Alistair Popple <alistair@popple.id.au> |
8b58be88 | 7064 | M: Matt Porter <mporter@kernel.crashing.org> |
1da177e4 | 7065 | W: http://www.penguinppc.org/ |
a4724ed6 | 7066 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 7067 | S: Maintained |
11c34c7d JP |
7068 | F: arch/powerpc/platforms/40x/ |
7069 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 7070 | |
260c02a9 | 7071 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
a4724ed6 | 7072 | L: linuxppc-dev@lists.ozlabs.org |
cdeb8994 | 7073 | S: Orphan |
11c34c7d JP |
7074 | F: arch/powerpc/*/*virtex* |
7075 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 7076 | |
e93adf1e | 7077 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 | 7078 | M: Vitaly Bordug <vitb@kernel.crashing.org> |
e93adf1e | 7079 | W: http://www.penguinppc.org/ |
a4724ed6 | 7080 | L: linuxppc-dev@lists.ozlabs.org |
e93adf1e | 7081 | S: Maintained |
a2b1f7c8 | 7082 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 7083 | |
1da177e4 | 7084 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
44451d4d | 7085 | M: Scott Wood <oss@buserror.net> |
8b58be88 | 7086 | M: Kumar Gala <galak@kernel.crashing.org> |
ce00f85c | 7087 | W: http://www.penguinppc.org/ |
a4724ed6 | 7088 | L: linuxppc-dev@lists.ozlabs.org |
a1e0fb42 | 7089 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git |
ce00f85c | 7090 | S: Maintained |
11c34c7d | 7091 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 7092 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 7093 | |
ab06ff3a | 7094 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
8b58be88 | 7095 | M: Olof Johansson <olof@lixom.net> |
a4724ed6 | 7096 | L: linuxppc-dev@lists.ozlabs.org |
92e19709 | 7097 | S: Maintained |
11c34c7d JP |
7098 | F: arch/powerpc/platforms/pasemi/ |
7099 | F: drivers/*/*pasemi* | |
7100 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 7101 | |
1da177e4 | 7102 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 7103 | M: Chris Wright <chrisw@sous-sol.org> |
1a4520be | 7104 | L: linux-security-module@vger.kernel.org |
1da177e4 LT |
7105 | S: Supported |
7106 | ||
a23ce6da HW |
7107 | LIS3LV02D ACCELEROMETER DRIVER |
7108 | M: Eric Piel <eric.piel@tremplin-utc.net> | |
7109 | S: Maintained | |
ff606677 JD |
7110 | F: Documentation/misc-devices/lis3lv02d |
7111 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 7112 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 7113 | |
b700e7f0 SJ |
7114 | LIVE PATCHING |
7115 | M: Josh Poimboeuf <jpoimboe@redhat.com> | |
06e1c170 | 7116 | M: Jessica Yu <jeyu@redhat.com> |
e5f6450c | 7117 | M: Jiri Kosina <jikos@kernel.org> |
06e1c170 JP |
7118 | M: Miroslav Benes <mbenes@suse.cz> |
7119 | R: Petr Mladek <pmladek@suse.com> | |
b700e7f0 SJ |
7120 | S: Maintained |
7121 | F: kernel/livepatch/ | |
7122 | F: include/linux/livepatch.h | |
7123 | F: arch/x86/include/asm/livepatch.h | |
7124 | F: arch/x86/kernel/livepatch.c | |
5e4e3844 | 7125 | F: Documentation/livepatch/ |
b700e7f0 | 7126 | F: Documentation/ABI/testing/sysfs-kernel-livepatch |
13d1cf7e | 7127 | F: samples/livepatch/ |
b700e7f0 | 7128 | L: live-patching@vger.kernel.org |
74d50da3 | 7129 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git |
b700e7f0 | 7130 | |
ea861d73 KC |
7131 | LINUX KERNEL DUMP TEST MODULE (LKDTM) |
7132 | M: Kees Cook <keescook@chromium.org> | |
7133 | S: Maintained | |
426f3a53 | 7134 | F: drivers/misc/lkdtm* |
ea861d73 | 7135 | |
e2d1d6c0 | 7136 | LLC (802.2) |
8b58be88 | 7137 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 | 7138 | S: Maintained |
679655da | 7139 | F: include/linux/llc.h |
c117ab84 | 7140 | F: include/uapi/linux/llc.h |
679655da JP |
7141 | F: include/net/llc* |
7142 | F: net/llc/ | |
e2d1d6c0 | 7143 | |
4e233cbe AD |
7144 | LM73 HARDWARE MONITOR DRIVER |
7145 | M: Guillaume Ligneul <guillaume.ligneul@gmail.com> | |
968ce1b1 | 7146 | L: linux-hwmon@vger.kernel.org |
4e233cbe AD |
7147 | S: Maintained |
7148 | F: drivers/hwmon/lm73.c | |
7149 | ||
156e2d1a | 7150 | LM78 HARDWARE MONITOR DRIVER |
d8130624 | 7151 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 7152 | L: linux-hwmon@vger.kernel.org |
156e2d1a JD |
7153 | S: Maintained |
7154 | F: Documentation/hwmon/lm78 | |
7155 | F: drivers/hwmon/lm78.c | |
7156 | ||
1da177e4 | 7157 | LM83 HARDWARE MONITOR DRIVER |
d8130624 | 7158 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 7159 | L: linux-hwmon@vger.kernel.org |
1da177e4 | 7160 | S: Maintained |
679655da JP |
7161 | F: Documentation/hwmon/lm83 |
7162 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
7163 | |
7164 | LM90 HARDWARE MONITOR DRIVER | |
d8130624 | 7165 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 7166 | L: linux-hwmon@vger.kernel.org |
1da177e4 | 7167 | S: Maintained |
679655da | 7168 | F: Documentation/hwmon/lm90 |
aae7bce4 | 7169 | F: Documentation/devicetree/bindings/hwmon/lm90.txt |
679655da | 7170 | F: drivers/hwmon/lm90.c |
1da177e4 | 7171 | |
917cc4e6 GR |
7172 | LM95234 HARDWARE MONITOR DRIVER |
7173 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7174 | L: linux-hwmon@vger.kernel.org |
917cc4e6 GR |
7175 | S: Maintained |
7176 | F: Documentation/hwmon/lm95234 | |
7177 | F: drivers/hwmon/lm95234.c | |
7178 | ||
68620bdd MP |
7179 | LME2510 MEDIA DRIVER |
7180 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
7181 | L: linux-media@vger.kernel.org | |
a825eaec | 7182 | W: https://linuxtv.org |
68620bdd MP |
7183 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
7184 | S: Maintained | |
7185 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
7186 | ||
d4c3be70 | 7187 | LOCKING PRIMITIVES |
8b58be88 JP |
7188 | M: Peter Zijlstra <peterz@infradead.org> |
7189 | M: Ingo Molnar <mingo@redhat.com> | |
981c3a4f | 7190 | L: linux-kernel@vger.kernel.org |
d4c3be70 | 7191 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core |
512e67f9 | 7192 | S: Maintained |
d4c3be70 | 7193 | F: Documentation/locking/ |
679655da | 7194 | F: include/linux/lockdep.h |
d4c3be70 IM |
7195 | F: include/linux/spinlock*.h |
7196 | F: arch/*/include/asm/spinlock*.h | |
7197 | F: include/linux/rwlock*.h | |
7198 | F: include/linux/mutex*.h | |
7199 | F: arch/*/include/asm/mutex*.h | |
7200 | F: include/linux/rwsem*.h | |
7201 | F: arch/*/include/asm/rwsem.h | |
7202 | F: include/linux/seqlock.h | |
7203 | F: lib/locking*.[ch] | |
7486d6da | 7204 | F: kernel/locking/ |
512e67f9 | 7205 | |
dde33348 | 7206 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 7207 | M: "Richard Russon (FlatCap)" <ldm@flatcap.org> |
dde33348 AA |
7208 | L: linux-ntfs-dev@lists.sourceforge.net |
7209 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 7210 | S: Maintained |
679655da | 7211 | F: Documentation/ldm.txt |
20d16fef | 7212 | F: block/partitions/ldm.* |
1da177e4 | 7213 | |
ef6ada3d JE |
7214 | LogFS |
7215 | M: Joern Engel <joern@logfs.org> | |
756ccb3c | 7216 | M: Prasad Joshi <prasadjoshi.linux@gmail.com> |
ef6ada3d JE |
7217 | L: logfs@logfs.org |
7218 | W: logfs.org | |
7219 | S: Maintained | |
7220 | F: fs/logfs/ | |
7221 | ||
c87e34ef | 7222 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
9495e835 SS |
7223 | M: Sathya Prakash <sathya.prakash@broadcom.com> |
7224 | M: Chaitra P B <chaitra.basappa@broadcom.com> | |
7225 | M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com> | |
7226 | L: MPT-FusionLinux.pdl@broadcom.com | |
c87e34ef | 7227 | L: linux-scsi@vger.kernel.org |
9495e835 | 7228 | W: http://www.avagotech.com/support/ |
c87e34ef | 7229 | S: Supported |
679655da | 7230 | F: drivers/message/fusion/ |
500c152a | 7231 | F: drivers/scsi/mpt2sas/ |
7232 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 7233 | |
1da177e4 | 7234 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 7235 | M: Matthew Wilcox <matthew@wil.cx> |
1da177e4 LT |
7236 | L: linux-scsi@vger.kernel.org |
7237 | S: Maintained | |
679655da | 7238 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 7239 | |
e5f5c99a GR |
7240 | LTC4261 HARDWARE MONITOR DRIVER |
7241 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7242 | L: linux-hwmon@vger.kernel.org |
e5f5c99a GR |
7243 | S: Maintained |
7244 | F: Documentation/hwmon/ltc4261 | |
7245 | F: drivers/hwmon/ltc4261.c | |
7246 | ||
81365c31 | 7247 | LTP (Linux Test Project) |
28b8e8d4 | 7248 | M: Mike Frysinger <vapier@gentoo.org> |
7d1ae8a8 | 7249 | M: Cyril Hrubis <chrubis@suse.cz> |
0526109a | 7250 | M: Wanlong Gao <wanlong.gao@gmail.com> |
f2eb7f6f CH |
7251 | M: Jan Stancek <jstancek@redhat.com> |
7252 | M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com> | |
7253 | M: Alexey Kodanev <alexey.kodanev@oracle.com> | |
0526109a | 7254 | L: ltp@lists.linux.it (subscribers-only) |
f2eb7f6f | 7255 | W: http://linux-test-project.github.io/ |
7d1ae8a8 | 7256 | T: git git://github.com/linux-test-project/ltp.git |
81365c31 MF |
7257 | S: Maintained |
7258 | ||
c12a54b3 | 7259 | M32R ARCHITECTURE |
c12a54b3 | 7260 | W: http://www.linux-m32r.org/ |
b4174867 | 7261 | S: Orphan |
679655da | 7262 | F: arch/m32r/ |
c12a54b3 | 7263 | |
1da177e4 | 7264 | M68K ARCHITECTURE |
8b58be88 | 7265 | M: Geert Uytterhoeven <geert@linux-m68k.org> |
1da177e4 LT |
7266 | L: linux-m68k@lists.linux-m68k.org |
7267 | W: http://www.linux-m68k.org/ | |
54e5881d | 7268 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 7269 | S: Maintained |
679655da | 7270 | F: arch/m68k/ |
9db35182 | 7271 | F: drivers/zorro/ |
1da177e4 LT |
7272 | |
7273 | M68K ON APPLE MACINTOSH | |
8b58be88 | 7274 | M: Joshua Thompson <funaho@jurai.org> |
1da177e4 | 7275 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 7276 | L: linux-m68k@lists.linux-m68k.org |
1da177e4 | 7277 | S: Maintained |
9db35182 | 7278 | F: arch/m68k/mac/ |
1da177e4 LT |
7279 | |
7280 | M68K ON HP9000/300 | |
8b58be88 | 7281 | M: Philip Blundell <philb@gnu.org> |
1da177e4 LT |
7282 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
7283 | S: Maintained | |
679655da | 7284 | F: arch/m68k/hp300/ |
1da177e4 | 7285 | |
74425546 AP |
7286 | M88DS3103 MEDIA DRIVER |
7287 | M: Antti Palosaari <crope@iki.fi> | |
7288 | L: linux-media@vger.kernel.org | |
a825eaec | 7289 | W: https://linuxtv.org |
74425546 AP |
7290 | W: http://palosaari.fi/linux/ |
7291 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7292 | T: git git://linuxtv.org/anttip/media_tree.git | |
7293 | S: Maintained | |
7294 | F: drivers/media/dvb-frontends/m88ds3103* | |
7295 | ||
68620bdd MP |
7296 | M88RS2000 MEDIA DRIVER |
7297 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
7298 | L: linux-media@vger.kernel.org | |
a825eaec | 7299 | W: https://linuxtv.org |
68620bdd MP |
7300 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
7301 | S: Maintained | |
7302 | F: drivers/media/dvb-frontends/m88rs2000* | |
7303 | ||
07a092fa | 7304 | MA901 MASTERKIT USB FM RADIO DRIVER |
b75f0050 JP |
7305 | M: Alexey Klimov <klimov.linux@gmail.com> |
7306 | L: linux-media@vger.kernel.org | |
7307 | T: git git://linuxtv.org/media_tree.git | |
7308 | S: Maintained | |
7309 | F: drivers/media/radio/radio-ma901.c | |
07a092fa | 7310 | |
64a327a7 | 7311 | MAC80211 |
8b58be88 | 7312 | M: Johannes Berg <johannes@sipsolutions.net> |
64a327a7 | 7313 | L: linux-wireless@vger.kernel.org |
491b26b4 | 7314 | W: http://wireless.kernel.org/ |
ce466579 JB |
7315 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
7316 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 7317 | S: Maintained |
679655da JP |
7318 | F: Documentation/networking/mac80211-injection.txt |
7319 | F: include/net/mac80211.h | |
7320 | F: net/mac80211/ | |
2af8c4dc | 7321 | F: drivers/net/wireless/mac80211_hwsim.[ch] |
64a327a7 | 7322 | |
b863ceb7 | 7323 | MACVLAN DRIVER |
8b58be88 | 7324 | M: Patrick McHardy <kaber@trash.net> |
b863ceb7 PM |
7325 | L: netdev@vger.kernel.org |
7326 | S: Maintained | |
679655da JP |
7327 | F: drivers/net/macvlan.c |
7328 | F: include/linux/if_macvlan.h | |
b863ceb7 | 7329 | |
2b6d83e2 JB |
7330 | MAILBOX API |
7331 | M: Jassi Brar <jassisinghbrar@gmail.com> | |
7332 | L: linux-kernel@vger.kernel.org | |
7333 | S: Maintained | |
7334 | F: drivers/mailbox/ | |
7335 | F: include/linux/mailbox_client.h | |
7336 | F: include/linux/mailbox_controller.h | |
7337 | ||
faf1668c | 7338 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 7339 | M: Michael Kerrisk <mtk.manpages@gmail.com> |
795fb7e7 | 7340 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 7341 | L: linux-man@vger.kernel.org |
1b53dc74 | 7342 | S: Maintained |
faf1668c | 7343 | |
0d3cd4b6 VD |
7344 | MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER |
7345 | M: Andrew Lunn <andrew@lunn.ch> | |
7346 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> | |
7347 | S: Maintained | |
7348 | F: drivers/net/dsa/mv88e6xxx/ | |
7349 | ||
8427defd | 7350 | MARVELL ARMADA DRM SUPPORT |
54176cc6 | 7351 | M: Russell King <rmk+kernel@armlinux.org.uk> |
8427defd RK |
7352 | S: Maintained |
7353 | F: drivers/gpu/drm/armada/ | |
4418833e EV |
7354 | F: include/uapi/drm/armada_drm.h |
7355 | F: Documentation/devicetree/bindings/display/armada/ | |
8427defd | 7356 | |
c4d007bc TP |
7357 | MARVELL CRYPTO DRIVER |
7358 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
7359 | M: Arnaud Ebalard <arno@natisbad.org> | |
7360 | F: drivers/crypto/marvell/ | |
7361 | S: Maintained | |
7362 | L: linux-crypto@vger.kernel.org | |
7363 | ||
44c14c1d | 7364 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
7365 | M: Mirko Lindner <mlindner@marvell.com> | |
adbbf69d | 7366 | M: Stephen Hemminger <stephen@networkplumber.org> |
44c14c1d | 7367 | L: netdev@vger.kernel.org |
7368 | S: Maintained | |
7369 | F: drivers/net/ethernet/marvell/sk* | |
7370 | ||
74cda169 | 7371 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 7372 | L: libertas-dev@lists.infradead.org |
8ac3e99e | 7373 | S: Orphan |
f988d640 | 7374 | F: drivers/net/wireless/marvell/libertas/ |
74cda169 | 7375 | |
b60d6975 | 7376 | MARVELL MV643XX ETHERNET DRIVER |
4e3faf88 | 7377 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
979b6c13 | 7378 | L: netdev@vger.kernel.org |
f5ca8502 | 7379 | S: Maintained |
527a6266 | 7380 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 7381 | F: include/linux/mv643xx.h |
1da177e4 | 7382 | |
370b8ed9 TP |
7383 | MARVELL MVNETA ETHERNET DRIVER |
7384 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
7385 | L: netdev@vger.kernel.org | |
7386 | S: Maintained | |
7387 | F: drivers/net/ethernet/marvell/mvneta.* | |
7388 | ||
fcad584d | 7389 | MARVELL MWIFIEX WIRELESS DRIVER |
b9d31704 | 7390 | M: Amitkumar Karwar <akarwar@marvell.com> |
550795fc | 7391 | M: Nishant Sarmukadam <nishants@marvell.com> |
fcad584d BZ |
7392 | L: linux-wireless@vger.kernel.org |
7393 | S: Maintained | |
277b024e | 7394 | F: drivers/net/wireless/marvell/mwifiex/ |
fcad584d | 7395 | |
a2c3f656 | 7396 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 7397 | M: Lennert Buytenhek <buytenh@wantstofly.org> |
a2c3f656 | 7398 | L: linux-wireless@vger.kernel.org |
16345910 | 7399 | S: Odd Fixes |
de60f1dc | 7400 | F: drivers/net/wireless/marvell/mwl8k.c |
a2c3f656 | 7401 | |
2a69567b | 7402 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 7403 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 7404 | S: Odd Fixes |
1fa7e547 | 7405 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 7406 | |
1da177e4 | 7407 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 7408 | L: linux-fbdev@vger.kernel.org |
52653199 | 7409 | S: Orphan |
8a61f013 | 7410 | F: drivers/video/fbdev/matrox/matroxfb_* |
c117ab84 | 7411 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 7412 | |
ca462085 GR |
7413 | MAX16065 HARDWARE MONITOR DRIVER |
7414 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7415 | L: linux-hwmon@vger.kernel.org |
ca462085 GR |
7416 | S: Maintained |
7417 | F: Documentation/hwmon/max16065 | |
7418 | F: drivers/hwmon/max16065.c | |
7419 | ||
1f61cab8 GR |
7420 | MAX20751 HARDWARE MONITOR DRIVER |
7421 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7422 | L: linux-hwmon@vger.kernel.org |
1f61cab8 GR |
7423 | S: Maintained |
7424 | F: Documentation/hwmon/max20751 | |
7425 | F: drivers/hwmon/max20751.c | |
7426 | ||
d20620de | 7427 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
6a534c9d | 7428 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
968ce1b1 | 7429 | L: linux-hwmon@vger.kernel.org |
d20620de | 7430 | S: Maintained |
679655da JP |
7431 | F: Documentation/hwmon/max6650 |
7432 | F: drivers/hwmon/max6650.c | |
d20620de | 7433 | |
e89ab51f GR |
7434 | MAX6697 HARDWARE MONITOR DRIVER |
7435 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7436 | L: linux-hwmon@vger.kernel.org |
e89ab51f GR |
7437 | S: Maintained |
7438 | F: Documentation/hwmon/max6697 | |
7439 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
7440 | F: drivers/hwmon/max6697.c | |
7441 | F: include/linux/platform_data/max6697.h | |
7442 | ||
3b2af7f7 PR |
7443 | MAX9860 MONO AUDIO VOICE CODEC DRIVER |
7444 | M: Peter Rosin <peda@axentia.se> | |
7445 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
7446 | S: Maintained | |
7447 | F: Documentation/devicetree/bindings/sound/max9860.txt | |
7448 | F: sound/soc/codecs/max9860.* | |
7449 | ||
f8f847b5 KK |
7450 | MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS |
7451 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> | |
7452 | L: linux-pm@vger.kernel.org | |
7453 | S: Supported | |
7454 | F: drivers/power/max14577_charger.c | |
7455 | F: drivers/power/max77693_charger.c | |
7456 | ||
3811405e JMC |
7457 | MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS |
7458 | M: Javier Martinez Canillas <javier@osg.samsung.com> | |
7459 | L: linux-kernel@vger.kernel.org | |
7460 | S: Supported | |
96173cc6 | 7461 | F: drivers/*/*max77802*.c |
3811405e JMC |
7462 | F: Documentation/devicetree/bindings/*/*max77802.txt |
7463 | F: include/dt-bindings/*/*max77802.h | |
7464 | ||
befeb596 KK |
7465 | MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS |
7466 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
7467 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> | |
7468 | L: linux-kernel@vger.kernel.org | |
7469 | S: Supported | |
86cf635a | 7470 | F: drivers/*/max14577*.c |
0998a436 | 7471 | F: drivers/*/max77686*.c |
86cf635a | 7472 | F: drivers/*/max77693*.c |
befeb596 KK |
7473 | F: drivers/extcon/extcon-max14577.c |
7474 | F: drivers/extcon/extcon-max77693.c | |
7475 | F: drivers/rtc/rtc-max77686.c | |
7476 | F: drivers/clk/clk-max77686.c | |
7477 | F: Documentation/devicetree/bindings/mfd/max14577.txt | |
377452f4 | 7478 | F: Documentation/devicetree/bindings/*/max77686.txt |
befeb596 KK |
7479 | F: Documentation/devicetree/bindings/mfd/max77693.txt |
7480 | F: Documentation/devicetree/bindings/clock/maxim,max77686.txt | |
7481 | F: include/linux/mfd/max14577*.h | |
7482 | F: include/linux/mfd/max77686*.h | |
7483 | F: include/linux/mfd/max77693*.h | |
7484 | ||
9be3c9a5 HV |
7485 | MAXIRADIO FM RADIO RECEIVER DRIVER |
7486 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7487 | L: linux-media@vger.kernel.org | |
7488 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 7489 | W: https://linuxtv.org |
9be3c9a5 HV |
7490 | S: Maintained |
7491 | F: drivers/media/radio/radio-maxiradio* | |
7492 | ||
c05dc2cc PR |
7493 | MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER |
7494 | M: Peter Rosin <peda@axentia.se> | |
7495 | L: linux-iio@vger.kernel.org | |
7496 | S: Maintained | |
7497 | F: drivers/iio/potentiometer/mcp4531.c | |
7498 | ||
7b49235e LP |
7499 | MEDIA DRIVERS FOR RENESAS - FCP |
7500 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
7501 | L: linux-media@vger.kernel.org | |
7502 | L: linux-renesas-soc@vger.kernel.org | |
7503 | T: git git://linuxtv.org/media_tree.git | |
7504 | S: Supported | |
7505 | F: Documentation/devicetree/bindings/media/renesas,fcp.txt | |
7506 | F: drivers/media/platform/rcar-fcp.c | |
7507 | F: include/media/rcar-fcp.h | |
7508 | ||
6f32a8c9 LP |
7509 | MEDIA DRIVERS FOR RENESAS - VSP1 |
7510 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
7511 | L: linux-media@vger.kernel.org | |
4a121096 | 7512 | L: linux-renesas-soc@vger.kernel.org |
6f32a8c9 LP |
7513 | T: git git://linuxtv.org/media_tree.git |
7514 | S: Supported | |
7515 | F: Documentation/devicetree/bindings/media/renesas,vsp1.txt | |
7516 | F: drivers/media/platform/vsp1/ | |
7517 | ||
fae2080a AO |
7518 | MEDIA DRIVERS FOR HELENE |
7519 | M: Abylay Ospan <aospan@netup.ru> | |
7520 | L: linux-media@vger.kernel.org | |
7521 | W: https://linuxtv.org | |
7522 | W: http://netup.tv/ | |
7523 | T: git git://linuxtv.org/media_tree.git | |
7524 | S: Supported | |
7525 | F: drivers/media/dvb-frontends/helene* | |
7526 | ||
dacf9ce8 KS |
7527 | MEDIA DRIVERS FOR ASCOT2E |
7528 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 7529 | M: Abylay Ospan <aospan@netup.ru> |
dacf9ce8 | 7530 | L: linux-media@vger.kernel.org |
a825eaec | 7531 | W: https://linuxtv.org |
dacf9ce8 KS |
7532 | W: http://netup.tv/ |
7533 | T: git git://linuxtv.org/media_tree.git | |
7534 | S: Supported | |
7535 | F: drivers/media/dvb-frontends/ascot2e* | |
7536 | ||
a6dc60ff KS |
7537 | MEDIA DRIVERS FOR CXD2841ER |
7538 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 7539 | M: Abylay Ospan <aospan@netup.ru> |
a6dc60ff | 7540 | L: linux-media@vger.kernel.org |
a825eaec | 7541 | W: https://linuxtv.org |
a6dc60ff KS |
7542 | W: http://netup.tv/ |
7543 | T: git git://linuxtv.org/media_tree.git | |
7544 | S: Supported | |
7545 | F: drivers/media/dvb-frontends/cxd2841er* | |
7546 | ||
a5d32b35 KS |
7547 | MEDIA DRIVERS FOR HORUS3A |
7548 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 7549 | M: Abylay Ospan <aospan@netup.ru> |
a5d32b35 | 7550 | L: linux-media@vger.kernel.org |
a825eaec | 7551 | W: https://linuxtv.org |
a5d32b35 KS |
7552 | W: http://netup.tv/ |
7553 | T: git git://linuxtv.org/media_tree.git | |
7554 | S: Supported | |
7555 | F: drivers/media/dvb-frontends/horus3a* | |
7556 | ||
e025273b KS |
7557 | MEDIA DRIVERS FOR LNBH25 |
7558 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 7559 | M: Abylay Ospan <aospan@netup.ru> |
e025273b | 7560 | L: linux-media@vger.kernel.org |
a825eaec | 7561 | W: https://linuxtv.org |
e025273b KS |
7562 | W: http://netup.tv/ |
7563 | T: git git://linuxtv.org/media_tree.git | |
7564 | S: Supported | |
7565 | F: drivers/media/dvb-frontends/lnbh25* | |
7566 | ||
52b1eaf4 KS |
7567 | MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices |
7568 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 7569 | M: Abylay Ospan <aospan@netup.ru> |
52b1eaf4 | 7570 | L: linux-media@vger.kernel.org |
a825eaec | 7571 | W: https://linuxtv.org |
52b1eaf4 KS |
7572 | W: http://netup.tv/ |
7573 | T: git git://linuxtv.org/media_tree.git | |
7574 | S: Supported | |
7575 | F: drivers/media/pci/netup_unidvb/* | |
7576 | ||
127c49ae | 7577 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
5dc8a864 MCC |
7578 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
7579 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
127c49ae JP |
7580 | P: LinuxTV.org Project |
7581 | L: linux-media@vger.kernel.org | |
a825eaec | 7582 | W: https://linuxtv.org |
8a6e2535 | 7583 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 7584 | T: git git://linuxtv.org/media_tree.git |
127c49ae JP |
7585 | S: Maintained |
7586 | F: Documentation/dvb/ | |
7587 | F: Documentation/video4linux/ | |
ffe06198 | 7588 | F: Documentation/DocBook/media/ |
127c49ae | 7589 | F: drivers/media/ |
ffe06198 | 7590 | F: drivers/staging/media/ |
eb4b0ec7 | 7591 | F: include/linux/platform_data/media/ |
127c49ae | 7592 | F: include/media/ |
6c0f0359 MCC |
7593 | F: include/uapi/linux/dvb/ |
7594 | F: include/uapi/linux/videodev2.h | |
7595 | F: include/uapi/linux/media.h | |
7596 | F: include/uapi/linux/v4l2-* | |
7597 | F: include/uapi/linux/meye.h | |
7598 | F: include/uapi/linux/ivtv* | |
7599 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 7600 | |
0c272fc9 JC |
7601 | MEDIATEK ETHERNET DRIVER |
7602 | M: Felix Fietkau <nbd@openwrt.org> | |
7603 | M: John Crispin <blogic@openwrt.org> | |
7604 | L: netdev@vger.kernel.org | |
7605 | S: Maintained | |
7606 | F: drivers/net/ethernet/mediatek/ | |
7607 | ||
c869f77d JK |
7608 | MEDIATEK MT7601U WIRELESS LAN DRIVER |
7609 | M: Jakub Kicinski <kubakici@wp.pl> | |
7610 | L: linux-wireless@vger.kernel.org | |
7611 | S: Maintained | |
7612 | F: drivers/net/wireless/mediatek/mt7601u/ | |
7613 | ||
e399065b SS |
7614 | MEGARAID SCSI/SAS DRIVERS |
7615 | M: Kashyap Desai <kashyap.desai@avagotech.com> | |
7616 | M: Sumit Saxena <sumit.saxena@avagotech.com> | |
7617 | M: Uday Lingala <uday.lingala@avagotech.com> | |
7618 | L: megaraidlinux.pdl@avagotech.com | |
baaea1dc | 7619 | L: linux-scsi@vger.kernel.org |
e399065b | 7620 | W: http://www.lsi.com |
ce00f85c | 7621 | S: Maintained |
679655da JP |
7622 | F: Documentation/scsi/megaraid.txt |
7623 | F: drivers/scsi/megaraid.* | |
7624 | F: drivers/scsi/megaraid/ | |
757e0108 | 7625 | |
2c46c9d5 | 7626 | MELLANOX ETHERNET DRIVER (mlx4_en) |
c40e4096 | 7627 | M: Tariq Toukan <tariqt@mellanox.com> |
b75f0050 | 7628 | L: netdev@vger.kernel.org |
2c46c9d5 AV |
7629 | S: Supported |
7630 | W: http://www.mellanox.com | |
7631 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
7632 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
7633 | ||
e7523a49 OG |
7634 | MELLANOX ETHERNET DRIVER (mlx5e) |
7635 | M: Saeed Mahameed <saeedm@mellanox.com> | |
7636 | L: netdev@vger.kernel.org | |
7637 | S: Supported | |
7638 | W: http://www.mellanox.com | |
7639 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
7640 | F: drivers/net/ethernet/mellanox/mlx5/core/en_* | |
7641 | ||
93c1edb2 JP |
7642 | MELLANOX ETHERNET SWITCH DRIVERS |
7643 | M: Jiri Pirko <jiri@mellanox.com> | |
7644 | M: Ido Schimmel <idosch@mellanox.com> | |
7645 | L: netdev@vger.kernel.org | |
7646 | S: Supported | |
7647 | W: http://www.mellanox.com | |
7648 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
7649 | F: drivers/net/ethernet/mellanox/mlxsw/ | |
7650 | ||
8700e3e7 MS |
7651 | SOFT-ROCE DRIVER (rxe) |
7652 | M: Moni Shoua <monis@mellanox.com> | |
7653 | L: linux-rdma@vger.kernel.org | |
7654 | S: Supported | |
7655 | W: https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home | |
7656 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
7657 | F: drivers/infiniband/hw/rxe/ | |
7658 | F: include/uapi/rdma/rdma_user_rxe.h | |
7659 | ||
5b25b13a MD |
7660 | MEMBARRIER SUPPORT |
7661 | M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
7662 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
7663 | L: linux-kernel@vger.kernel.org | |
7664 | S: Supported | |
7665 | F: kernel/membarrier.c | |
7666 | F: include/uapi/linux/membarrier.h | |
7667 | ||
70ea91f1 SR |
7668 | MEMORY MANAGEMENT |
7669 | L: linux-mm@kvack.org | |
70ea91f1 SR |
7670 | W: http://www.linux-mm.org |
7671 | S: Maintained | |
679655da | 7672 | F: include/linux/mm.h |
551450bb CS |
7673 | F: include/linux/gfp.h |
7674 | F: include/linux/mmzone.h | |
7675 | F: include/linux/memory_hotplug.h | |
7676 | F: include/linux/vmalloc.h | |
679655da | 7677 | F: mm/ |
70ea91f1 | 7678 | |
f4e9ce66 | 7679 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 7680 | M: David Woodhouse <dwmw2@infradead.org> |
242c325e | 7681 | M: Brian Norris <computersforpeace@gmail.com> |
1da177e4 | 7682 | L: linux-mtd@lists.infradead.org |
8a6e2535 JP |
7683 | W: http://www.linux-mtd.infradead.org/ |
7684 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
242c325e | 7685 | T: git git://git.infradead.org/linux-mtd.git |
ab95eac9 | 7686 | T: git git://git.infradead.org/l2-mtd.git |
1da177e4 | 7687 | S: Maintained |
becc7ae5 | 7688 | F: Documentation/devicetree/bindings/mtd/ |
679655da JP |
7689 | F: drivers/mtd/ |
7690 | F: include/linux/mtd/ | |
c117ab84 | 7691 | F: include/uapi/mtd/ |
1da177e4 | 7692 | |
26c57ef1 | 7693 | MEN A21 WATCHDOG DRIVER |
30c7469b | 7694 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
26c57ef1 | 7695 | L: linux-watchdog@vger.kernel.org |
30c7469b | 7696 | S: Maintained |
26c57ef1 JT |
7697 | F: drivers/watchdog/mena21_wdt.c |
7698 | ||
3764e82e | 7699 | MEN CHAMELEON BUS (mcb) |
30c7469b JT |
7700 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
7701 | S: Maintained | |
3764e82e JT |
7702 | F: drivers/mcb/ |
7703 | F: include/linux/mcb.h | |
b9f2f459 | 7704 | F: Documentation/men-chameleon-bus.txt |
3764e82e | 7705 | |
48b490d2 AW |
7706 | MEN F21BMC (Board Management Controller) |
7707 | M: Andreas Werner <andreas.werner@men.de> | |
7708 | S: Supported | |
7709 | F: drivers/mfd/menf21bmc.c | |
7710 | F: drivers/watchdog/menf21bmc_wdt.c | |
7711 | F: drivers/leds/leds-menf21bmc.c | |
7712 | F: drivers/hwmon/menf21bmc_hwmon.c | |
7713 | F: Documentation/hwmon/menf21bmc | |
7714 | ||
12285945 JH |
7715 | METAG ARCHITECTURE |
7716 | M: James Hogan <james.hogan@imgtec.com> | |
d668d9ed | 7717 | L: linux-metag@vger.kernel.org |
9f273c24 | 7718 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git |
f23d0e24 | 7719 | S: Odd Fixes |
12285945 JH |
7720 | F: arch/metag/ |
7721 | F: Documentation/metag/ | |
7722 | F: Documentation/devicetree/bindings/metag/ | |
2d799dde | 7723 | F: Documentation/devicetree/bindings/interrupt-controller/img,* |
a2c5d4ed | 7724 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
7725 | F: drivers/irqchip/irq-metag.c |
7726 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 | 7727 | F: drivers/tty/metag_da.c |
12285945 | 7728 | |
c6375b0a | 7729 | MICROBLAZE ARCHITECTURE |
8b58be88 | 7730 | M: Michal Simek <monstr@monstr.eu> |
c6375b0a MS |
7731 | W: http://www.monstr.eu/fdt/ |
7732 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
7733 | S: Supported | |
0a8c7914 | 7734 | F: arch/microblaze/ |
1da177e4 | 7735 | |
2508a45a CY |
7736 | MICROSOFT SURFACE PRO 3 BUTTON DRIVER |
7737 | M: Chen Yu <yu.c.chen@intel.com> | |
7738 | L: platform-driver-x86@vger.kernel.org | |
7739 | S: Supported | |
7740 | F: drivers/platform/x86/surfacepro3_button.c | |
7741 | ||
1da177e4 | 7742 | MICROTEK X6 SCANNER |
61eee9a7 | 7743 | M: Oliver Neukum <oliver@neukum.org> |
1da177e4 | 7744 | S: Maintained |
679655da | 7745 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
7746 | |
7747 | MIPS | |
8b58be88 | 7748 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 7749 | L: linux-mips@linux-mips.org |
6097050d | 7750 | W: http://www.linux-mips.org/ |
b05e988e | 7751 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 7752 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 7753 | S: Supported |
f46d92e8 | 7754 | F: Documentation/devicetree/bindings/mips/ |
679655da JP |
7755 | F: Documentation/mips/ |
7756 | F: arch/mips/ | |
1da177e4 | 7757 | |
413ef3f6 KC |
7758 | MIPS/LOONGSON1 ARCHITECTURE |
7759 | M: Keguang Zhang <keguang.zhang@gmail.com> | |
7760 | L: linux-mips@linux-mips.org | |
7761 | S: Maintained | |
7762 | F: arch/mips/loongson32/ | |
7763 | F: arch/mips/include/asm/mach-loongson32/ | |
7764 | F: drivers/*/*loongson1* | |
7765 | F: drivers/*/*/*loongson1* | |
7766 | ||
08b7620a HV |
7767 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
7768 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7769 | L: linux-media@vger.kernel.org | |
7770 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 7771 | W: https://linuxtv.org |
08b7620a HV |
7772 | S: Odd Fixes |
7773 | F: drivers/media/radio/radio-miropcm20* | |
7774 | ||
c09befcb OG |
7775 | MELLANOX MLX4 core VPI driver |
7776 | M: Yishai Hadas <yishaih@mellanox.com> | |
e126ba97 EC |
7777 | L: netdev@vger.kernel.org |
7778 | L: linux-rdma@vger.kernel.org | |
7779 | W: http://www.mellanox.com | |
7780 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
c09befcb OG |
7781 | S: Supported |
7782 | F: drivers/net/ethernet/mellanox/mlx4/ | |
7783 | F: include/linux/mlx4/ | |
7784 | ||
7785 | MELLANOX MLX4 IB driver | |
7786 | M: Yishai Hadas <yishaih@mellanox.com> | |
7787 | L: linux-rdma@vger.kernel.org | |
7788 | W: http://www.mellanox.com | |
e126ba97 | 7789 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
c09befcb OG |
7790 | S: Supported |
7791 | F: drivers/infiniband/hw/mlx4/ | |
7792 | F: include/linux/mlx4/ | |
7793 | ||
595a4d8f OG |
7794 | MELLANOX MLX5 core VPI driver |
7795 | M: Matan Barak <matanb@mellanox.com> | |
7796 | M: Leon Romanovsky <leonro@mellanox.com> | |
e126ba97 EC |
7797 | L: netdev@vger.kernel.org |
7798 | L: linux-rdma@vger.kernel.org | |
7799 | W: http://www.mellanox.com | |
7800 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
e126ba97 EC |
7801 | S: Supported |
7802 | F: drivers/net/ethernet/mellanox/mlx5/core/ | |
7803 | F: include/linux/mlx5/ | |
7804 | ||
595a4d8f OG |
7805 | MELLANOX MLX5 IB driver |
7806 | M: Matan Barak <matanb@mellanox.com> | |
7807 | M: Leon Romanovsky <leonro@mellanox.com> | |
b75f0050 JP |
7808 | L: linux-rdma@vger.kernel.org |
7809 | W: http://www.mellanox.com | |
7810 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
b75f0050 | 7811 | S: Supported |
b75f0050 | 7812 | F: drivers/infiniband/hw/mlx5/ |
595a4d8f | 7813 | F: include/linux/mlx5/ |
e126ba97 | 7814 | |
764589b6 CM |
7815 | MELEXIS MLX90614 DRIVER |
7816 | M: Crt Mori <cmo@melexis.com> | |
7817 | L: linux-iio@vger.kernel.org | |
7818 | W: http://www.melexis.com | |
7819 | S: Supported | |
7820 | F: drivers/iio/temperature/mlx90614.c | |
7821 | ||
0ce277e4 AP |
7822 | MN88472 MEDIA DRIVER |
7823 | M: Antti Palosaari <crope@iki.fi> | |
7824 | L: linux-media@vger.kernel.org | |
a825eaec | 7825 | W: https://linuxtv.org |
0ce277e4 AP |
7826 | W: http://palosaari.fi/linux/ |
7827 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
0ce277e4 | 7828 | S: Maintained |
94d0eaa4 | 7829 | F: drivers/media/dvb-frontends/mn88472* |
0ce277e4 | 7830 | |
4f4d238f AP |
7831 | MN88473 MEDIA DRIVER |
7832 | M: Antti Palosaari <crope@iki.fi> | |
7833 | L: linux-media@vger.kernel.org | |
a825eaec | 7834 | W: https://linuxtv.org |
4f4d238f AP |
7835 | W: http://palosaari.fi/linux/ |
7836 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4f4d238f | 7837 | S: Maintained |
877ba50b | 7838 | F: drivers/media/dvb-frontends/mn88473* |
4f4d238f | 7839 | |
1da177e4 | 7840 | MODULE SUPPORT |
8b58be88 | 7841 | M: Rusty Russell <rusty@rustcorp.com.au> |
1da177e4 | 7842 | S: Maintained |
679655da JP |
7843 | F: include/linux/module.h |
7844 | F: kernel/module.c | |
1da177e4 LT |
7845 | |
7846 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 7847 | W: http://popies.net/meye/ |
b7788e13 | 7848 | S: Orphan |
679655da | 7849 | F: Documentation/video4linux/meye.txt |
90d72ac6 | 7850 | F: drivers/media/pci/meye/ |
6c0f0359 | 7851 | F: include/uapi/linux/meye.h |
1da177e4 | 7852 | |
b9705b60 | 7853 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 7854 | M: Jiri Slaby <jirislaby@gmail.com> |
d735410a | 7855 | S: Maintained |
679655da | 7856 | F: Documentation/serial/moxa-smartio |
c897401b | 7857 | F: drivers/tty/mxser.* |
d735410a | 7858 | |
889b2f87 AK |
7859 | MR800 AVERMEDIA USB FM RADIO DRIVER |
7860 | M: Alexey Klimov <klimov.linux@gmail.com> | |
7861 | L: linux-media@vger.kernel.org | |
7862 | T: git git://linuxtv.org/media_tree.git | |
7863 | S: Maintained | |
7864 | F: drivers/media/radio/radio-mr800.c | |
7865 | ||
d7155691 AO |
7866 | MRF24J40 IEEE 802.15.4 RADIO DRIVER |
7867 | M: Alan Ott <alan@signal11.us> | |
7868 | L: linux-wpan@vger.kernel.org | |
7869 | S: Maintained | |
7870 | F: drivers/net/ieee802154/mrf24j40.c | |
2e6fd648 | 7871 | F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt |
d7155691 | 7872 | |
8c4c731a | 7873 | MSI LAPTOP SUPPORT |
182ae55c | 7874 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 7875 | L: platform-driver-x86@vger.kernel.org |
8c4c731a | 7876 | S: Maintained |
679655da | 7877 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 7878 | |
0f1006b1 | 7879 | MSI WMI SUPPORT |
d0944853 | 7880 | L: platform-driver-x86@vger.kernel.org |
5ee7041e | 7881 | S: Orphan |
0f1006b1 AA |
7882 | F: drivers/platform/x86/msi-wmi.c |
7883 | ||
19a628a0 AP |
7884 | MSI001 MEDIA DRIVER |
7885 | M: Antti Palosaari <crope@iki.fi> | |
7886 | L: linux-media@vger.kernel.org | |
a825eaec | 7887 | W: https://linuxtv.org |
19a628a0 AP |
7888 | W: http://palosaari.fi/linux/ |
7889 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7890 | T: git git://linuxtv.org/anttip/media_tree.git | |
7891 | S: Maintained | |
0185e197 | 7892 | F: drivers/media/tuners/msi001* |
19a628a0 | 7893 | |
7570589d | 7894 | MSI2500 MEDIA DRIVER |
2c57213f AP |
7895 | M: Antti Palosaari <crope@iki.fi> |
7896 | L: linux-media@vger.kernel.org | |
a825eaec | 7897 | W: https://linuxtv.org |
2c57213f AP |
7898 | W: http://palosaari.fi/linux/ |
7899 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7900 | T: git git://linuxtv.org/anttip/media_tree.git | |
7901 | S: Maintained | |
7570589d | 7902 | F: drivers/media/usb/msi2500/ |
2c57213f | 7903 | |
159eeea4 RJ |
7904 | MSYSTEMS DISKONCHIP G3 MTD DRIVER |
7905 | M: Robert Jarzmik <robert.jarzmik@free.fr> | |
7906 | L: linux-mtd@lists.infradead.org | |
7907 | S: Maintained | |
7908 | F: drivers/mtd/devices/docg3* | |
7909 | ||
62a37dc7 | 7910 | MT9M032 APTINA SENSOR DRIVER |
0e837fb9 LP |
7911 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7912 | L: linux-media@vger.kernel.org | |
7913 | T: git git://linuxtv.org/media_tree.git | |
7914 | S: Maintained | |
7915 | F: drivers/media/i2c/mt9m032.c | |
b5dcee22 | 7916 | F: include/media/i2c/mt9m032.h |
0e837fb9 | 7917 | |
62a37dc7 | 7918 | MT9P031 APTINA CAMERA SENSOR |
0e837fb9 LP |
7919 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7920 | L: linux-media@vger.kernel.org | |
7921 | T: git git://linuxtv.org/media_tree.git | |
7922 | S: Maintained | |
7923 | F: drivers/media/i2c/mt9p031.c | |
b5dcee22 | 7924 | F: include/media/i2c/mt9p031.h |
0e837fb9 | 7925 | |
62a37dc7 | 7926 | MT9T001 APTINA CAMERA SENSOR |
0e837fb9 LP |
7927 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7928 | L: linux-media@vger.kernel.org | |
7929 | T: git git://linuxtv.org/media_tree.git | |
7930 | S: Maintained | |
7931 | F: drivers/media/i2c/mt9t001.c | |
b5dcee22 | 7932 | F: include/media/i2c/mt9t001.h |
0e837fb9 | 7933 | |
62a37dc7 | 7934 | MT9V032 APTINA CAMERA SENSOR |
0e837fb9 LP |
7935 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7936 | L: linux-media@vger.kernel.org | |
7937 | T: git git://linuxtv.org/media_tree.git | |
7938 | S: Maintained | |
f2272e13 | 7939 | F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt |
0e837fb9 | 7940 | F: drivers/media/i2c/mt9v032.c |
b5dcee22 | 7941 | F: include/media/i2c/mt9v032.h |
0e837fb9 | 7942 | |
4e0d13cb | 7943 | MULTIFUNCTION DEVICES (MFD) |
f7d3210e | 7944 | M: Lee Jones <lee.jones@linaro.org> |
7caa7991 | 7945 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git |
4e0d13cb | 7946 | S: Supported |
679655da | 7947 | F: drivers/mfd/ |
55b5940d | 7948 | F: include/linux/mfd/ |
4e0d13cb | 7949 | |
5c4e6f13 | 7950 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
e18eaf8f | 7951 | M: Ulf Hansson <ulf.hansson@linaro.org> |
b2503a94 | 7952 | L: linux-mmc@vger.kernel.org |
708dce3f | 7953 | T: git git://git.linaro.org/people/ulf.hansson/mmc.git |
245feaa6 | 7954 | S: Maintained |
2810984b | 7955 | F: Documentation/devicetree/bindings/mmc/ |
679655da JP |
7956 | F: drivers/mmc/ |
7957 | F: include/linux/mmc/ | |
c117ab84 | 7958 | F: include/uapi/linux/mmc/ |
baca2da4 | 7959 | |
15a0580c | 7960 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 7961 | S: Orphan |
679655da JP |
7962 | F: drivers/mmc/host/mmc_spi.c |
7963 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 7964 | |
1da177e4 | 7965 | MULTISOUND SOUND DRIVER |
8b58be88 | 7966 | M: Andrew Veliath <andrewtv@usa.net> |
1da177e4 | 7967 | S: Maintained |
679655da JP |
7968 | F: Documentation/sound/oss/MultiSound |
7969 | F: sound/oss/msnd* | |
1da177e4 | 7970 | |
d735410a | 7971 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 7972 | S: Orphan |
c897401b | 7973 | F: drivers/tty/isicom.c |
679655da | 7974 | F: include/linux/isicom.h |
d735410a | 7975 | |
550a7375 | 7976 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
3b243519 | 7977 | M: Bin Liu <b-liu@ti.com> |
795fb7e7 | 7978 | L: linux-usb@vger.kernel.org |
43b416e5 | 7979 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 7980 | S: Maintained |
679655da | 7981 | F: drivers/usb/musb/ |
550a7375 | 7982 | |
ea0af5f6 MK |
7983 | MXL5007T MEDIA DRIVER |
7984 | M: Michael Krufky <mkrufky@linuxtv.org> | |
7985 | L: linux-media@vger.kernel.org | |
a825eaec | 7986 | W: https://linuxtv.org |
ea0af5f6 MK |
7987 | W: http://github.com/mkrufky |
7988 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7989 | T: git git://linuxtv.org/mkrufky/tuners.git | |
7990 | S: Maintained | |
7991 | F: drivers/media/tuners/mxl5007t.* | |
7992 | ||
2d3cf588 | 7993 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
205057ae | 7994 | M: Hyong-Youb Kim <hykim@myri.com> |
2d3cf588 | 7995 | L: netdev@vger.kernel.org |
205057ae | 7996 | W: https://www.myricom.com/support/downloads/myri10ge.html |
2d3cf588 | 7997 | S: Supported |
93f7848b | 7998 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 7999 | |
9df4f913 BB |
8000 | NAND FLASH SUBSYSTEM |
8001 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
8002 | R: Richard Weinberger <richard@nod.at> | |
8003 | L: linux-mtd@lists.infradead.org | |
8004 | W: http://www.linux-mtd.infradead.org/ | |
8005 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
8006 | T: git git://github.com/linux-nand/linux.git | |
8007 | S: Maintained | |
8008 | F: drivers/mtd/nand/ | |
8009 | F: include/linux/mtd/nand*.h | |
8010 | ||
1da177e4 | 8011 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 8012 | S: Orphan |
d9fb9f38 | 8013 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 8014 | |
23dc05a3 DM |
8015 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
8016 | M: Daniel Mack <zonque@gmail.com> | |
8017 | S: Maintained | |
e5747e40 | 8018 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
23dc05a3 DM |
8019 | W: http://www.native-instruments.com |
8020 | F: sound/usb/caiaq/ | |
8021 | ||
1da177e4 | 8022 | NCP FILESYSTEM |
52653199 PV |
8023 | M: Petr Vandrovec <petr@vandrovec.name> |
8024 | S: Odd Fixes | |
679655da | 8025 | F: fs/ncpfs/ |
1da177e4 | 8026 | |
a79b0322 FT |
8027 | NCR 5380 SCSI DRIVERS |
8028 | M: Finn Thain <fthain@telegraphics.com.au> | |
8029 | M: Michael Schmitz <schmitzmic@gmail.com> | |
8030 | L: linux-scsi@vger.kernel.org | |
8031 | S: Maintained | |
8032 | F: Documentation/scsi/g_NCR5380.txt | |
71d39758 | 8033 | F: Documentation/scsi/dtc3x80.txt |
a79b0322 FT |
8034 | F: drivers/scsi/NCR5380.* |
8035 | F: drivers/scsi/arm/cumana_1.c | |
8036 | F: drivers/scsi/arm/oak.c | |
a79b0322 FT |
8037 | F: drivers/scsi/atari_scsi.* |
8038 | F: drivers/scsi/dmx3191d.c | |
8039 | F: drivers/scsi/dtc.* | |
8040 | F: drivers/scsi/g_NCR5380.* | |
8041 | F: drivers/scsi/g_NCR5380_mmio.c | |
8042 | F: drivers/scsi/mac_scsi.* | |
8043 | F: drivers/scsi/pas16.* | |
a79b0322 FT |
8044 | F: drivers/scsi/sun3_scsi.* |
8045 | F: drivers/scsi/sun3_scsi_vme.c | |
8046 | F: drivers/scsi/t128.* | |
8047 | ||
1da177e4 | 8048 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
8b58be88 | 8049 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
8050 | L: linux-scsi@vger.kernel.org |
8051 | S: Maintained | |
679655da | 8052 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 8053 | |
4aa3eb4c GR |
8054 | NCT6775 HARDWARE MONITOR DRIVER |
8055 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 8056 | L: linux-hwmon@vger.kernel.org |
4aa3eb4c GR |
8057 | S: Maintained |
8058 | F: Documentation/hwmon/nct6775 | |
8059 | F: drivers/hwmon/nct6775.c | |
8060 | ||
3c2d774c | 8061 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 8062 | M: Faisal Latif <faisal.latif@intel.com> |
e6cc0fd1 | 8063 | L: linux-rdma@vger.kernel.org |
e3d33cb1 | 8064 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
8065 | S: Supported |
8066 | F: drivers/infiniband/hw/nes/ | |
8067 | ||
be2f2e84 | 8068 | NETEM NETWORK EMULATOR |
adbbf69d | 8069 | M: Stephen Hemminger <stephen@networkplumber.org> |
3430284f | 8070 | L: netem@lists.linux-foundation.org (moderated for non-subscribers) |
be2f2e84 | 8071 | S: Maintained |
679655da | 8072 | F: net/sched/sch_netem.c |
be2f2e84 | 8073 | |
b2f5a051 | 8074 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 8075 | M: Jon Mason <jdmason@kudzu.us> |
4a58448b | 8076 | L: netdev@vger.kernel.org |
4a58448b | 8077 | S: Supported |
679655da | 8078 | F: Documentation/networking/s2io.txt |
b2f5a051 | 8079 | F: Documentation/networking/vxge.txt |
86387e1a | 8080 | F: drivers/net/ethernet/neterion/ |
4a58448b | 8081 | |
db9cf3a3 | 8082 | NETFILTER ({IP,IP6,ARP,EB,NF}TABLES) |
0e05e192 | 8083 | M: Pablo Neira Ayuso <pablo@netfilter.org> |
8b58be88 | 8084 | M: Patrick McHardy <kaber@trash.net> |
42010ed0 | 8085 | M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> |
1a03b81d | 8086 | L: netfilter-devel@vger.kernel.org |
82b98543 | 8087 | L: coreteam@netfilter.org |
1da177e4 LT |
8088 | W: http://www.netfilter.org/ |
8089 | W: http://www.iptables.org/ | |
42010ed0 PNA |
8090 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
8091 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
8092 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1da177e4 | 8093 | S: Supported |
679655da JP |
8094 | F: include/linux/netfilter* |
8095 | F: include/linux/netfilter/ | |
8096 | F: include/net/netfilter/ | |
c117ab84 CEB |
8097 | F: include/uapi/linux/netfilter* |
8098 | F: include/uapi/linux/netfilter/ | |
679655da JP |
8099 | F: net/*/netfilter.c |
8100 | F: net/*/netfilter/ | |
8101 | F: net/netfilter/ | |
91c269a0 | 8102 | F: net/bridge/br_netfilter*.c |
1da177e4 | 8103 | |
4cc67735 | 8104 | NETLABEL |
87a0874c | 8105 | M: Paul Moore <paul@paul-moore.com> |
4cc67735 PM |
8106 | W: http://netlabel.sf.net |
8107 | L: netdev@vger.kernel.org | |
87a0874c | 8108 | S: Maintained |
80811493 | 8109 | F: Documentation/netlabel/ |
679655da JP |
8110 | F: include/net/netlabel.h |
8111 | F: net/netlabel/ | |
4cc67735 | 8112 | |
1da177e4 | 8113 | NETROM NETWORK LAYER |
8b58be88 | 8114 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 8115 | L: linux-hams@vger.kernel.org |
d34cb28a | 8116 | W: http://www.linux-ax25.org/ |
1da177e4 | 8117 | S: Maintained |
679655da | 8118 | F: include/net/netrom.h |
c117ab84 | 8119 | F: include/uapi/linux/netrom.h |
679655da | 8120 | F: net/netrom/ |
1da177e4 | 8121 | |
4c352362 JK |
8122 | NETRONOME ETHERNET DRIVERS |
8123 | M: Jakub Kicinski <jakub.kicinski@netronome.com> | |
4c352362 JK |
8124 | L: oss-drivers@netronome.com |
8125 | S: Maintained | |
8126 | F: drivers/net/ethernet/netronome/ | |
8127 | ||
5ddb88c0 | 8128 | NETWORK BLOCK DEVICE (NBD) |
4ca5829a | 8129 | M: Markus Pargmann <mpa@pengutronix.de> |
1da177e4 | 8130 | S: Maintained |
5e4b269b | 8131 | L: nbd-general@lists.sourceforge.net |
4ca5829a | 8132 | T: git git://git.pengutronix.de/git/mpa/linux-nbd.git |
679655da JP |
8133 | F: Documentation/blockdev/nbd.txt |
8134 | F: drivers/block/nbd.c | |
c117ab84 | 8135 | F: include/uapi/linux/nbd.h |
1da177e4 | 8136 | |
6e43650c NH |
8137 | NETWORK DROP MONITOR |
8138 | M: Neil Horman <nhorman@tuxdriver.com> | |
8139 | L: netdev@vger.kernel.org | |
8140 | S: Maintained | |
8141 | W: https://fedorahosted.org/dropwatch/ | |
8142 | F: net/core/drop_monitor.c | |
8143 | ||
1da177e4 | 8144 | NETWORKING [GENERAL] |
8b58be88 | 8145 | M: "David S. Miller" <davem@davemloft.net> |
979b6c13 | 8146 | L: netdev@vger.kernel.org |
b1e8fd54 | 8147 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 8148 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
8149 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
8150 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 8151 | S: Maintained |
679655da JP |
8152 | F: net/ |
8153 | F: include/net/ | |
018d21ed JP |
8154 | F: include/linux/in.h |
8155 | F: include/linux/net.h | |
8156 | F: include/linux/netdevice.h | |
c117ab84 CEB |
8157 | F: include/uapi/linux/in.h |
8158 | F: include/uapi/linux/net.h | |
8159 | F: include/uapi/linux/netdevice.h | |
0c7aecd4 | 8160 | F: include/uapi/linux/net_namespace.h |
7e814a6c | 8161 | F: tools/net/ |
f4e53f9a | 8162 | F: tools/testing/selftests/net/ |
335a67d2 | 8163 | F: lib/random32.c |
a101ccd1 | 8164 | F: lib/test_bpf.c |
1da177e4 LT |
8165 | |
8166 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
8167 | M: "David S. Miller" <davem@davemloft.net> |
8168 | M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> | |
8b58be88 JP |
8169 | M: James Morris <jmorris@namei.org> |
8170 | M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> | |
8171 | M: Patrick McHardy <kaber@trash.net> | |
979b6c13 | 8172 | L: netdev@vger.kernel.org |
08deed1e | 8173 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 8174 | S: Maintained |
679655da JP |
8175 | F: net/ipv4/ |
8176 | F: net/ipv6/ | |
8177 | F: include/net/ip* | |
0a14842f | 8178 | F: arch/x86/net/* |
1da177e4 | 8179 | |
73b7656c DM |
8180 | NETWORKING [IPSEC] |
8181 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
8182 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
8183 | M: "David S. Miller" <davem@davemloft.net> | |
8184 | L: netdev@vger.kernel.org | |
d1fc5024 SK |
8185 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git |
8186 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git | |
73b7656c | 8187 | S: Maintained |
5826bdd1 | 8188 | F: net/core/flow.c |
73b7656c DM |
8189 | F: net/xfrm/ |
8190 | F: net/key/ | |
8191 | F: net/ipv4/xfrm* | |
d1fc5024 SK |
8192 | F: net/ipv4/esp4.c |
8193 | F: net/ipv4/ah4.c | |
8194 | F: net/ipv4/ipcomp.c | |
8195 | F: net/ipv4/ip_vti.c | |
73b7656c | 8196 | F: net/ipv6/xfrm* |
d1fc5024 SK |
8197 | F: net/ipv6/esp6.c |
8198 | F: net/ipv6/ah6.c | |
8199 | F: net/ipv6/ipcomp6.c | |
8200 | F: net/ipv6/ip6_vti.c | |
73b7656c DM |
8201 | F: include/uapi/linux/xfrm.h |
8202 | F: include/net/xfrm.h | |
8203 | ||
10e2ff1c | 8204 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 8205 | M: Paul Moore <paul@paul-moore.com> |
10e2ff1c JM |
8206 | L: netdev@vger.kernel.org |
8207 | S: Maintained | |
8208 | ||
29f8f632 | 8209 | NETWORKING [WIRELESS] |
2cb4abd1 | 8210 | L: linux-wireless@vger.kernel.org |
8a6e2535 | 8211 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
29f8f632 | 8212 | |
788873ac JP |
8213 | NETWORKING DRIVERS |
8214 | L: netdev@vger.kernel.org | |
8215 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 8216 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
8217 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
8218 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac | 8219 | S: Odd Fixes |
156f4fbc | 8220 | F: Documentation/devicetree/bindings/net/ |
788873ac | 8221 | F: drivers/net/ |
018d21ed | 8222 | F: include/linux/if_* |
0b63bf1f | 8223 | F: include/linux/netdevice.h |
0b63bf1f JD |
8224 | F: include/linux/etherdevice.h |
8225 | F: include/linux/fcdevice.h | |
8226 | F: include/linux/fddidevice.h | |
8227 | F: include/linux/hippidevice.h | |
8228 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
8229 | F: include/uapi/linux/if_* |
8230 | F: include/uapi/linux/netdevice.h | |
788873ac | 8231 | |
0e324cf6 JL |
8232 | NETWORKING DRIVERS (WIRELESS) |
8233 | M: Kalle Valo <kvalo@codeaurora.org> | |
8234 | L: linux-wireless@vger.kernel.org | |
8235 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ | |
9f273c24 FW |
8236 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git |
8237 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git | |
0e324cf6 | 8238 | S: Maintained |
182fd9ee | 8239 | F: Documentation/devicetree/bindings/net/wireless/ |
0e324cf6 JL |
8240 | F: drivers/net/wireless/ |
8241 | ||
3d396eb1 | 8242 | NETXEN (1/10) GbE SUPPORT |
8622315e | 8243 | M: Manish Chopra <manish.chopra@qlogic.com> |
83c07dde AKS |
8244 | M: Sony Chacko <sony.chacko@qlogic.com> |
8245 | M: Rajesh Borundia <rajesh.borundia@qlogic.com> | |
3d396eb1 | 8246 | L: netdev@vger.kernel.org |
9c2b5bde | 8247 | W: http://www.qlogic.com |
3d396eb1 | 8248 | S: Supported |
aa43c215 | 8249 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 8250 | |
6423d30f AAJ |
8251 | NFC SUBSYSTEM |
8252 | M: Lauro Ramos Venancio <lauro.venancio@openbossa.org> | |
8253 | M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org> | |
8254 | M: Samuel Ortiz <sameo@linux.intel.com> | |
8255 | L: linux-wireless@vger.kernel.org | |
1eb3b216 | 8256 | L: linux-nfc@lists.01.org (subscribers-only) |
0293ba20 | 8257 | S: Supported |
6423d30f | 8258 | F: net/nfc/ |
55eb94f9 | 8259 | F: include/net/nfc/ |
c117ab84 | 8260 | F: include/uapi/linux/nfc.h |
6423d30f | 8261 | F: drivers/nfc/ |
397d6497 CR |
8262 | F: include/linux/platform_data/nfcmrvl.h |
8263 | F: include/linux/platform_data/nxp-nci.h | |
08eaa1e0 | 8264 | F: include/linux/platform_data/pn544.h |
397d6497 CR |
8265 | F: include/linux/platform_data/st21nfca.h |
8266 | F: include/linux/platform_data/st-nci.h | |
7ebb88e5 | 8267 | F: Documentation/devicetree/bindings/net/nfc/ |
3d396eb1 | 8268 | |
e8b43555 | 8269 | NFS, SUNRPC, AND LOCKD CLIENTS |
cd7b996a | 8270 | M: Trond Myklebust <trond.myklebust@primarydata.com> |
0e3b137f | 8271 | M: Anna Schumaker <anna.schumaker@netapp.com> |
78f58153 TM |
8272 | L: linux-nfs@vger.kernel.org |
8273 | W: http://client.linux-nfs.org | |
cd7b996a | 8274 | T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git |
1da177e4 | 8275 | S: Maintained |
679655da JP |
8276 | F: fs/lockd/ |
8277 | F: fs/nfs/ | |
8278 | F: fs/nfs_common/ | |
8279 | F: net/sunrpc/ | |
8280 | F: include/linux/lockd/ | |
8281 | F: include/linux/nfs* | |
8282 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
8283 | F: include/uapi/linux/nfs* |
8284 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 8285 | |
85ef9cea | 8286 | NILFS2 FILESYSTEM |
e2126935 | 8287 | M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> |
6aff43f8 | 8288 | L: linux-nilfs@vger.kernel.org |
f9472265 | 8289 | W: http://nilfs.sourceforge.net/ |
9e92e516 | 8290 | W: http://nilfs.osdn.jp/ |
e2126935 | 8291 | T: git git://github.com/konis/nilfs2.git |
85ef9cea | 8292 | S: Supported |
679655da JP |
8293 | F: Documentation/filesystems/nilfs2.txt |
8294 | F: fs/nilfs2/ | |
c35c7ac5 | 8295 | F: include/trace/events/nilfs2.h |
e63e88bc RK |
8296 | F: include/uapi/linux/nilfs2_api.h |
8297 | F: include/uapi/linux/nilfs2_ondisk.h | |
85ef9cea | 8298 | |
1da177e4 | 8299 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 8300 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
1da177e4 LT |
8301 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
8302 | S: Maintained | |
679655da JP |
8303 | F: Documentation/scsi/NinjaSCSI.txt |
8304 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
8305 | |
8306 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
8307 | M: GOTO Masanori <gotom@debian.or.jp> |
8308 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> | |
1da177e4 LT |
8309 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
8310 | S: Maintained | |
679655da JP |
8311 | F: Documentation/scsi/NinjaSCSI.txt |
8312 | F: drivers/scsi/nsp32* | |
1da177e4 | 8313 | |
383b8fb9 LFT |
8314 | NIOS2 ARCHITECTURE |
8315 | M: Ley Foon Tan <lftan@altera.com> | |
8316 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
0094dc40 | 8317 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git |
383b8fb9 LFT |
8318 | S: Maintained |
8319 | F: arch/nios2/ | |
8320 | ||
2a6afddb | 8321 | NOKIA N900 POWER SUPPLY DRIVERS |
e35a49b1 | 8322 | R: Pali Rohár <pali.rohar@gmail.com> |
2a6afddb | 8323 | F: include/linux/power/bq2415x_charger.h |
081bab21 | 8324 | F: include/linux/power/bq27xxx_battery.h |
2a6afddb PR |
8325 | F: include/linux/power/isp1704_charger.h |
8326 | F: drivers/power/bq2415x_charger.c | |
081bab21 | 8327 | F: drivers/power/bq27xxx_battery.c |
e35a49b1 | 8328 | F: drivers/power/bq27xxx_battery_i2c.c |
2a6afddb PR |
8329 | F: drivers/power/isp1704_charger.c |
8330 | F: drivers/power/rx51_battery.c | |
8331 | ||
a1bd3bae | 8332 | NTB DRIVER CORE |
9ef6bf6c JM |
8333 | M: Jon Mason <jdmason@kudzu.us> |
8334 | M: Dave Jiang <dave.jiang@intel.com> | |
a1bd3bae | 8335 | M: Allen Hubbe <Allen.Hubbe@emc.com> |
5e9fd733 | 8336 | L: linux-ntb@googlegroups.com |
fce8a7bb | 8337 | S: Supported |
2984411f JM |
8338 | W: https://github.com/jonmason/ntb/wiki |
8339 | T: git git://github.com/jonmason/ntb.git | |
fce8a7bb | 8340 | F: drivers/ntb/ |
548c237c | 8341 | F: drivers/net/ntb_netdev.c |
fce8a7bb | 8342 | F: include/linux/ntb.h |
a1bd3bae | 8343 | F: include/linux/ntb_transport.h |
a9c59ef7 | 8344 | F: tools/testing/selftests/ntb/ |
fce8a7bb | 8345 | |
e26a5843 AH |
8346 | NTB INTEL DRIVER |
8347 | M: Jon Mason <jdmason@kudzu.us> | |
8348 | M: Dave Jiang <dave.jiang@intel.com> | |
5e9fd733 | 8349 | L: linux-ntb@googlegroups.com |
e26a5843 AH |
8350 | S: Supported |
8351 | W: https://github.com/jonmason/ntb/wiki | |
8352 | T: git git://github.com/jonmason/ntb.git | |
8353 | F: drivers/ntb/hw/intel/ | |
fce8a7bb | 8354 | |
a1b36958 XY |
8355 | NTB AMD DRIVER |
8356 | M: Xiangliang Yu <Xiangliang.Yu@amd.com> | |
8357 | L: linux-ntb@googlegroups.com | |
8358 | S: Supported | |
8359 | F: drivers/ntb/hw/amd/ | |
8360 | ||
1da177e4 | 8361 | NTFS FILESYSTEM |
2818ef50 | 8362 | M: Anton Altaparmakov <anton@tuxera.com> |
1da177e4 | 8363 | L: linux-ntfs-dev@lists.sourceforge.net |
2818ef50 | 8364 | W: http://www.tuxera.com/ |
e6f4dee7 | 8365 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 8366 | S: Supported |
679655da JP |
8367 | F: Documentation/filesystems/ntfs.txt |
8368 | F: fs/ntfs/ | |
1da177e4 | 8369 | |
9eb8ef74 | 8370 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 8371 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 8372 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 8373 | S: Maintained |
8a61f013 JH |
8374 | F: drivers/video/fbdev/riva/ |
8375 | F: drivers/video/fbdev/nvidia/ | |
1da177e4 | 8376 | |
79461681 | 8377 | NVM EXPRESS DRIVER |
b3975e94 JF |
8378 | M: Keith Busch <keith.busch@intel.com> |
8379 | M: Jens Axboe <axboe@fb.com> | |
79461681 | 8380 | L: linux-nvme@lists.infradead.org |
b3975e94 JF |
8381 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
8382 | W: https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/ | |
79461681 | 8383 | S: Supported |
57dacad5 | 8384 | F: drivers/nvme/host/ |
79461681 MW |
8385 | F: include/linux/nvme.h |
8386 | ||
a07b4970 CH |
8387 | NVM EXPRESS TARGET DRIVER |
8388 | M: Christoph Hellwig <hch@lst.de> | |
8389 | M: Sagi Grimberg <sagi@grimberg.me> | |
8390 | L: linux-nvme@lists.infradead.org | |
8391 | S: Supported | |
8392 | F: drivers/nvme/target/ | |
8393 | ||
aee4b9bd SK |
8394 | NVMEM FRAMEWORK |
8395 | M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> | |
8396 | M: Maxime Ripard <maxime.ripard@free-electrons.com> | |
8397 | S: Maintained | |
8398 | F: drivers/nvmem/ | |
8399 | F: Documentation/devicetree/bindings/nvmem/ | |
8400 | F: include/linux/nvmem-consumer.h | |
8401 | F: include/linux/nvmem-provider.h | |
8402 | ||
dece4585 CP |
8403 | NXP-NCI NFC DRIVER |
8404 | M: Clément Perrochaud <clement.perrochaud@effinnov.com> | |
8405 | R: Charles Gorand <charles.gorand@effinnov.com> | |
8406 | L: linux-nfc@lists.01.org (moderated for non-subscribers) | |
8407 | S: Supported | |
8408 | F: drivers/nfc/nxp-nci | |
8409 | ||
f50d7146 | 8410 | NXP TDA998X DRM DRIVER |
54176cc6 | 8411 | M: Russell King <rmk+kernel@armlinux.org.uk> |
f50d7146 RK |
8412 | S: Supported |
8413 | F: drivers/gpu/drm/i2c/tda998x_drv.c | |
8414 | F: include/drm/i2c/tda998x.h | |
8415 | ||
fbace43e PR |
8416 | NXP TFA9879 DRIVER |
8417 | M: Peter Rosin <peda@axentia.se> | |
8418 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
8419 | S: Maintained | |
8420 | F: sound/soc/codecs/tfa9879* | |
8421 | ||
442f04c3 JP |
8422 | OBJTOOL |
8423 | M: Josh Poimboeuf <jpoimboe@redhat.com> | |
8424 | S: Supported | |
8425 | F: tools/objtool/ | |
8426 | ||
f5525786 | 8427 | OMAP SUPPORT |
0e24bdd4 | 8428 | M: Tony Lindgren <tony@atomide.com> |
f5525786 TL |
8429 | L: linux-omap@vger.kernel.org |
8430 | W: http://www.muru.com/linux/omap/ | |
8431 | W: http://linux.omap.com/ | |
8a6e2535 | 8432 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 8433 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 8434 | S: Maintained |
4e04d5a3 | 8435 | F: arch/arm/*omap*/ |
026da812 FB |
8436 | F: arch/arm/configs/omap1_defconfig |
8437 | F: arch/arm/configs/omap2plus_defconfig | |
046d0a37 | 8438 | F: drivers/i2c/busses/i2c-omap.c |
dc68cd11 FB |
8439 | F: drivers/irqchip/irq-omap-intc.c |
8440 | F: drivers/mfd/*omap*.c | |
8441 | F: drivers/mfd/menelaus.c | |
8442 | F: drivers/mfd/palmas.c | |
8443 | F: drivers/mfd/tps65217.c | |
8444 | F: drivers/mfd/tps65218.c | |
8445 | F: drivers/mfd/tps65910.c | |
8446 | F: drivers/mfd/twl-core.[ch] | |
8447 | F: drivers/mfd/twl4030*.c | |
8448 | F: drivers/mfd/twl6030*.c | |
8449 | F: drivers/mfd/twl6040*.c | |
8450 | F: drivers/regulator/palmas-regulator*.c | |
8451 | F: drivers/regulator/pbias-regulator.c | |
8452 | F: drivers/regulator/tps65217-regulator.c | |
8453 | F: drivers/regulator/tps65218-regulator.c | |
8454 | F: drivers/regulator/tps65910-regulator.c | |
8455 | F: drivers/regulator/twl-regulator.c | |
046d0a37 | 8456 | F: include/linux/i2c-omap.h |
f5525786 | 8457 | |
50f29fbd | 8458 | OMAP DEVICE TREE SUPPORT |
cdb55ab0 | 8459 | M: Benoît Cousson <bcousson@baylibre.com> |
50f29fbd TL |
8460 | M: Tony Lindgren <tony@atomide.com> |
8461 | L: linux-omap@vger.kernel.org | |
d0fb18c5 | 8462 | L: devicetree@vger.kernel.org |
50f29fbd TL |
8463 | S: Maintained |
8464 | F: arch/arm/boot/dts/*omap* | |
8465 | F: arch/arm/boot/dts/*am3* | |
05eb20fa NM |
8466 | F: arch/arm/boot/dts/*am4* |
8467 | F: arch/arm/boot/dts/*am5* | |
8468 | F: arch/arm/boot/dts/*dra7* | |
50f29fbd | 8469 | |
f5525786 | 8470 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 8471 | M: Paul Walmsley <paul@pwsan.com> |
f5525786 TL |
8472 | L: linux-omap@vger.kernel.org |
8473 | S: Maintained | |
8474 | F: arch/arm/*omap*/*clock* | |
8475 | ||
8476 | OMAP POWER MANAGEMENT SUPPORT | |
3cf2efd5 | 8477 | M: Kevin Hilman <khilman@kernel.org> |
f5525786 TL |
8478 | L: linux-omap@vger.kernel.org |
8479 | S: Maintained | |
8480 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 8481 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 8482 | |
d21db568 | 8483 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
ff2de822 | 8484 | M: Rajendra Nayak <rnayak@codeaurora.org> |
692ab1f3 PW |
8485 | M: Paul Walmsley <paul@pwsan.com> |
8486 | L: linux-omap@vger.kernel.org | |
8487 | S: Maintained | |
d21db568 | 8488 | F: arch/arm/mach-omap2/prm* |
692ab1f3 | 8489 | |
f5525786 | 8490 | OMAP AUDIO SUPPORT |
6c284903 | 8491 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
7ec41ee5 | 8492 | M: Jarkko Nikula <jarkko.nikula@bitmer.com> |
e5747e40 | 8493 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
f5525786 TL |
8494 | L: linux-omap@vger.kernel.org |
8495 | S: Maintained | |
8496 | F: sound/soc/omap/ | |
8497 | ||
18640193 TL |
8498 | OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT |
8499 | M: Roger Quadros <rogerq@ti.com> | |
8500 | M: Tony Lindgren <tony@atomide.com> | |
8501 | L: linux-omap@vger.kernel.org | |
8502 | S: Maintained | |
8503 | F: drivers/memory/omap-gpmc.c | |
8504 | F: arch/arm/mach-omap2/*gpmc* | |
8505 | ||
f5525786 | 8506 | OMAP FRAMEBUFFER SUPPORT |
830e6384 | 8507 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
c69f677c | 8508 | L: linux-fbdev@vger.kernel.org |
f5525786 TL |
8509 | L: linux-omap@vger.kernel.org |
8510 | S: Maintained | |
8a61f013 | 8511 | F: drivers/video/fbdev/omap/ |
f5525786 | 8512 | |
676eec0d | 8513 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 8514 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
178ff4c9 | 8515 | L: linux-omap@vger.kernel.org |
676eec0d | 8516 | L: linux-fbdev@vger.kernel.org |
178ff4c9 | 8517 | S: Maintained |
8a61f013 | 8518 | F: drivers/video/fbdev/omap2/ |
178ff4c9 TV |
8519 | F: Documentation/arm/OMAP/DSS |
8520 | ||
8b37fcfc OBC |
8521 | OMAP HARDWARE SPINLOCK SUPPORT |
8522 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
8523 | L: linux-omap@vger.kernel.org | |
8524 | S: Maintained | |
8525 | F: drivers/hwspinlock/omap_hwspinlock.c | |
8b37fcfc | 8526 | |
f5525786 | 8527 | OMAP MMC SUPPORT |
8b58be88 | 8528 | M: Jarkko Lavinen <jarkko.lavinen@nokia.com> |
f5525786 TL |
8529 | L: linux-omap@vger.kernel.org |
8530 | S: Maintained | |
653f41b5 MC |
8531 | F: drivers/mmc/host/omap.c |
8532 | ||
8533 | OMAP HS MMC SUPPORT | |
0a4585c6 | 8534 | L: linux-mmc@vger.kernel.org |
653f41b5 | 8535 | L: linux-omap@vger.kernel.org |
dfa5d196 | 8536 | S: Orphan |
653f41b5 | 8537 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
8538 | |
8539 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 8540 | M: Deepak Saxena <dsaxena@plexity.net> |
f5525786 TL |
8541 | S: Maintained |
8542 | F: drivers/char/hw_random/omap-rng.c | |
8543 | ||
f400c82e | 8544 | OMAP HWMOD SUPPORT |
cdb55ab0 | 8545 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
8546 | M: Paul Walmsley <paul@pwsan.com> |
8547 | L: linux-omap@vger.kernel.org | |
8548 | S: Maintained | |
8fc8b12b | 8549 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e | 8550 | |
8633fb30 PW |
8551 | OMAP HWMOD DATA |
8552 | M: Paul Walmsley <paul@pwsan.com> | |
8553 | L: linux-omap@vger.kernel.org | |
8554 | S: Maintained | |
8555 | F: arch/arm/mach-omap2/omap_hwmod*data* | |
8556 | ||
f400c82e | 8557 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES |
cdb55ab0 | 8558 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
8559 | L: linux-omap@vger.kernel.org |
8560 | S: Maintained | |
8561 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
8562 | ||
0db83ced | 8563 | OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS) |
7e8970e1 LP |
8564 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
8565 | L: linux-media@vger.kernel.org | |
8566 | S: Maintained | |
7eec52db | 8567 | F: Documentation/devicetree/bindings/media/ti,omap3isp.txt |
90d72ac6 | 8568 | F: drivers/media/platform/omap3isp/ |
0db83ced | 8569 | F: drivers/staging/media/omap4iss/ |
7e8970e1 | 8570 | |
f5525786 | 8571 | OMAP USB SUPPORT |
f5525786 TL |
8572 | L: linux-usb@vger.kernel.org |
8573 | L: linux-omap@vger.kernel.org | |
3b243519 | 8574 | S: Orphan |
a16fbd65 JP |
8575 | F: drivers/usb/*/*omap* |
8576 | F: arch/arm/*omap*/usb* | |
f5525786 | 8577 | |
6d994710 | 8578 | OMAP GPIO DRIVER |
fe643528 | 8579 | M: Grygorii Strashko <grygorii.strashko@ti.com> |
97215800 | 8580 | M: Santosh Shilimkar <ssantosh@kernel.org> |
3cf2efd5 | 8581 | M: Kevin Hilman <khilman@kernel.org> |
6d994710 KH |
8582 | L: linux-omap@vger.kernel.org |
8583 | S: Maintained | |
fe643528 | 8584 | F: Documentation/devicetree/bindings/gpio/gpio-omap.txt |
6d994710 KH |
8585 | F: drivers/gpio/gpio-omap.c |
8586 | ||
c351e290 MJ |
8587 | OMAP/NEWFLOW NANOBONE MACHINE SUPPORT |
8588 | M: Mark Jackson <mpfj@newflow.co.uk> | |
8589 | L: linux-omap@vger.kernel.org | |
8590 | S: Maintained | |
8591 | F: arch/arm/boot/dts/am335x-nano.dts | |
8592 | ||
0ad122d9 | 8593 | OMFS FILESYSTEM |
8b58be88 | 8594 | M: Bob Copeland <me@bobcopeland.com> |
0ad122d9 BC |
8595 | L: linux-karma-devel@lists.sourceforge.net |
8596 | S: Maintained | |
679655da JP |
8597 | F: Documentation/filesystems/omfs.txt |
8598 | F: fs/omfs/ | |
0ad122d9 | 8599 | |
c1986ee9 | 8600 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 8601 | M: Harald Welte <laforge@gnumonks.org> |
c1986ee9 | 8602 | S: Maintained |
679655da JP |
8603 | F: drivers/char/pcmcia/cm4000_cs.c |
8604 | F: include/linux/cm4000_cs.h | |
c117ab84 | 8605 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 8606 | |
77c44ab1 | 8607 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 8608 | M: Harald Welte <laforge@gnumonks.org> |
77c44ab1 | 8609 | S: Maintained |
679655da | 8610 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 8611 | |
77d5140f | 8612 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 8613 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 8614 | L: linux-media@vger.kernel.org |
275ffde4 | 8615 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 8616 | S: Maintained |
90d72ac6 | 8617 | F: drivers/media/i2c/ov7670.c |
77d5140f | 8618 | |
431bca73 | 8619 | ONENAND FLASH DRIVER |
8b58be88 | 8620 | M: Kyungmin Park <kyungmin.park@samsung.com> |
431bca73 TG |
8621 | L: linux-mtd@lists.infradead.org |
8622 | S: Maintained | |
679655da JP |
8623 | F: drivers/mtd/onenand/ |
8624 | F: include/linux/mtd/onenand*.h | |
431bca73 | 8625 | |
1da177e4 | 8626 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 8627 | M: Willem Riede <osst@riede.org> |
1da177e4 LT |
8628 | L: osst-users@lists.sourceforge.net |
8629 | L: linux-scsi@vger.kernel.org | |
8630 | S: Maintained | |
f7269cfc JD |
8631 | F: Documentation/scsi/osst.txt |
8632 | F: drivers/scsi/osst.* | |
8633 | F: drivers/scsi/osst_*.h | |
8634 | F: drivers/scsi/st.h | |
1da177e4 | 8635 | |
e2d1d6c0 | 8636 | OPENCORES I2C BUS DRIVER |
8b58be88 | 8637 | M: Peter Korsgaard <jacmet@sunsite.dk> |
846557d3 | 8638 | L: linux-i2c@vger.kernel.org |
e2d1d6c0 | 8639 | S: Maintained |
679655da JP |
8640 | F: Documentation/i2c/busses/i2c-ocores |
8641 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 8642 | |
860c44c1 | 8643 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
5d3ad8a6 | 8644 | M: Rob Herring <robh+dt@kernel.org> |
c8fb70a3 | 8645 | M: Frank Rowand <frowand.list@gmail.com> |
d0fb18c5 | 8646 | L: devicetree@vger.kernel.org |
a7fefe9f | 8647 | W: http://www.devicetree.org/ |
fcdec35e | 8648 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git |
860c44c1 | 8649 | S: Maintained |
f8828205 | 8650 | F: drivers/of/ |
860c44c1 | 8651 | F: include/linux/of*.h |
f8828205 | 8652 | F: scripts/dtc/ |
860c44c1 | 8653 | |
f8828205 | 8654 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
5d3ad8a6 | 8655 | M: Rob Herring <robh+dt@kernel.org> |
f8828205 | 8656 | M: Mark Rutland <mark.rutland@arm.com> |
f8828205 | 8657 | L: devicetree@vger.kernel.org |
9f273c24 | 8658 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git |
fcdec35e | 8659 | Q: http://patchwork.ozlabs.org/project/devicetree-bindings/list/ |
f8828205 GL |
8660 | S: Maintained |
8661 | F: Documentation/devicetree/ | |
8662 | F: arch/*/boot/dts/ | |
8663 | F: include/dt-bindings/ | |
8664 | ||
2bb65f56 PA |
8665 | OPEN FIRMWARE AND DEVICE TREE OVERLAYS |
8666 | M: Pantelis Antoniou <pantelis.antoniou@konsulko.com> | |
8667 | L: devicetree@vger.kernel.org | |
8668 | S: Maintained | |
8669 | F: Documentation/devicetree/dynamic-resolution-notes.txt | |
8670 | F: Documentation/devicetree/overlay-notes.txt | |
8671 | F: drivers/of/overlay.c | |
8672 | F: drivers/of/resolver.c | |
8673 | ||
19f9d392 JB |
8674 | OPENRISC ARCHITECTURE |
8675 | M: Jonas Bonn <jonas@southpole.se> | |
8676 | W: http://openrisc.net | |
19f9d392 JB |
8677 | S: Maintained |
8678 | T: git git://openrisc.net/~jonas/linux | |
14430813 | 8679 | F: arch/openrisc/ |
19f9d392 | 8680 | |
ccb1352e | 8681 | OPENVSWITCH |
4f337ed5 | 8682 | M: Pravin Shelar <pshelar@nicira.com> |
b422da7c | 8683 | L: netdev@vger.kernel.org |
ccb1352e JG |
8684 | L: dev@openvswitch.org |
8685 | W: http://openvswitch.org | |
ccb1352e JG |
8686 | S: Maintained |
8687 | F: net/openvswitch/ | |
b422da7c | 8688 | F: include/uapi/linux/openvswitch.h |
ccb1352e | 8689 | |
875fa6fb VK |
8690 | OPERATING PERFORMANCE POINTS (OPP) |
8691 | M: Viresh Kumar <vireshk@kernel.org> | |
8692 | M: Nishanth Menon <nm@ti.com> | |
8693 | M: Stephen Boyd <sboyd@codeaurora.org> | |
8694 | L: linux-pm@vger.kernel.org | |
8695 | S: Maintained | |
8696 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git | |
8697 | F: drivers/base/power/opp/ | |
8698 | F: include/linux/pm_opp.h | |
8699 | F: Documentation/power/opp.txt | |
8700 | F: Documentation/devicetree/bindings/opp/ | |
8701 | ||
af39917d CL |
8702 | OPL4 DRIVER |
8703 | M: Clemens Ladisch <clemens@ladisch.de> | |
8704 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
8705 | T: git git://git.alsa-project.org/alsa-kernel.git | |
8706 | S: Maintained | |
8707 | F: sound/drivers/opl4/ | |
8708 | ||
1da177e4 | 8709 | OPROFILE |
4cf7e718 | 8710 | M: Robert Richter <rric@kernel.org> |
1da177e4 LT |
8711 | L: oprofile-list@lists.sf.net |
8712 | S: Maintained | |
81c4a8a6 | 8713 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
8714 | F: arch/*/oprofile/ |
8715 | F: drivers/oprofile/ | |
8716 | F: include/linux/oprofile.h | |
1da177e4 | 8717 | |
e2d1d6c0 | 8718 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
8b58be88 | 8719 | M: Mark Fasheh <mfasheh@suse.com> |
d6351db2 | 8720 | M: Joel Becker <jlbec@evilplan.org> |
e2d1d6c0 | 8721 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
01945fa2 | 8722 | W: http://ocfs2.wiki.kernel.org |
e2d1d6c0 | 8723 | S: Supported |
679655da JP |
8724 | F: Documentation/filesystems/ocfs2.txt |
8725 | F: Documentation/filesystems/dlmfs.txt | |
8726 | F: fs/ocfs2/ | |
e2d1d6c0 | 8727 | |
1da177e4 | 8728 | ORINOCO DRIVER |
724c6b35 | 8729 | L: linux-wireless@vger.kernel.org |
491b26b4 | 8730 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 8731 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 8732 | S: Orphan |
2be45b66 | 8733 | F: drivers/net/wireless/intersil/orinoco/ |
1da177e4 | 8734 | |
42c55aa8 | 8735 | OSD LIBRARY and FILESYSTEM |
fadc0752 | 8736 | M: Boaz Harrosh <ooo@electrozaur.com> |
f1f6630b | 8737 | M: Benny Halevy <bhalevy@primarydata.com> |
68274794 BH |
8738 | L: osd-dev@open-osd.org |
8739 | W: http://open-osd.org | |
54e5881d | 8740 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 8741 | S: Maintained |
42c55aa8 | 8742 | F: drivers/scsi/osd/ |
6b6f0b6c | 8743 | F: include/scsi/osd_* |
42c55aa8 | 8744 | F: fs/exofs/ |
68274794 | 8745 | |
ef94b186 | 8746 | OVERLAY FILESYSTEM |
7c37fbda | 8747 | M: Miklos Szeredi <miklos@szeredi.hu> |
1d113735 MS |
8748 | L: linux-unionfs@vger.kernel.org |
8749 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git | |
7c37fbda | 8750 | S: Supported |
1d113735 | 8751 | F: fs/overlayfs/ |
7c37fbda NB |
8752 | F: Documentation/filesystems/overlayfs.txt |
8753 | ||
85096169 MM |
8754 | ORANGEFS FILESYSTEM |
8755 | M: Mike Marshall <hubcap@omnibond.com> | |
b39c3cf4 | 8756 | L: pvfs2-developers@beowulf-underground.org (subscribers-only) |
85096169 MM |
8757 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git |
8758 | S: Supported | |
8759 | F: fs/orangefs/ | |
8760 | F: Documentation/filesystems/orangefs.txt | |
8761 | ||
e2d1d6c0 | 8762 | P54 WIRELESS DRIVER |
084cb0fe | 8763 | M: Christian Lamparter <chunkeey@googlemail.com> |
e2d1d6c0 | 8764 | L: linux-wireless@vger.kernel.org |
084cb0fe | 8765 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 8766 | S: Maintained |
d3466830 | 8767 | F: drivers/net/wireless/intersil/p54/ |
e2d1d6c0 | 8768 | |
f5cd7872 | 8769 | PA SEMI ETHERNET DRIVER |
8b58be88 | 8770 | M: Olof Johansson <olof@lixom.net> |
f5cd7872 OJ |
8771 | L: netdev@vger.kernel.org |
8772 | S: Maintained | |
ded19add | 8773 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 8774 | |
beb58aa3 | 8775 | PA SEMI SMBUS DRIVER |
8b58be88 | 8776 | M: Olof Johansson <olof@lixom.net> |
846557d3 | 8777 | L: linux-i2c@vger.kernel.org |
beb58aa3 | 8778 | S: Maintained |
679655da | 8779 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 8780 | |
48fc267e SK |
8781 | PADATA PARALLEL EXECUTION MECHANISM |
8782 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
48fc267e SK |
8783 | L: linux-crypto@vger.kernel.org |
8784 | S: Maintained | |
8785 | F: kernel/padata.c | |
8786 | F: include/linux/padata.h | |
8787 | F: Documentation/padata.txt | |
8788 | ||
709ee531 | 8789 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 8790 | M: Harald Welte <laforge@gnumonks.org> |
d0944853 | 8791 | L: platform-driver-x86@vger.kernel.org |
709ee531 | 8792 | S: Maintained |
679655da | 8793 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 8794 | |
368dd5ac | 8795 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 | 8796 | M: David Howells <dhowells@redhat.com> |
4fa97181 DH |
8797 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
8798 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
8799 | S: Maintained | |
679655da JP |
8800 | F: Documentation/mn10300/ |
8801 | F: arch/mn10300/ | |
4fa97181 | 8802 | |
305b37bd KS |
8803 | PARALLEL LCD/KEYPAD PANEL DRIVER |
8804 | M: Willy Tarreau <willy@haproxy.com> | |
8805 | M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com> | |
8806 | S: Odd Fixes | |
8807 | F: Documentation/misc-devices/lcd-panel-cgram.txt | |
8808 | F: drivers/misc/panel.c | |
8809 | ||
64dfff03 SM |
8810 | PARALLEL PORT SUBSYSTEM |
8811 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
8812 | M: Sudip Mukherjee <sudip@vectorindia.org> | |
3dd1a329 | 8813 | L: linux-parport@lists.infradead.org (subscribers-only) |
64dfff03 | 8814 | S: Maintained |
679655da JP |
8815 | F: drivers/parport/ |
8816 | F: include/linux/parport*.h | |
8817 | F: drivers/char/ppdev.c | |
c117ab84 | 8818 | F: include/uapi/linux/ppdev.h |
64dfff03 | 8819 | F: Documentation/parport*.txt |
1da177e4 | 8820 | |
4cdf6bc2 | 8821 | PARAVIRT_OPS INTERFACE |
d633180c | 8822 | M: Jeremy Fitzhardinge <jeremy@goop.org> |
8b58be88 JP |
8823 | M: Chris Wright <chrisw@sous-sol.org> |
8824 | M: Alok Kataria <akataria@vmware.com> | |
8825 | M: Rusty Russell <rusty@rustcorp.com.au> | |
c996d8b9 | 8826 | L: virtualization@lists.linux-foundation.org |
4cdf6bc2 | 8827 | S: Supported |
a2e19991 | 8828 | F: Documentation/virtual/paravirt_ops.txt |
679655da JP |
8829 | F: arch/*/kernel/paravirt* |
8830 | F: arch/*/include/asm/paravirt.h | |
4cdf6bc2 | 8831 | |
e2d1d6c0 | 8832 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 8833 | M: Tim Waugh <tim@cyberelk.net> |
e2d1d6c0 | 8834 | L: linux-parport@lists.infradead.org (subscribers-only) |
e2d1d6c0 | 8835 | S: Maintained |
679655da JP |
8836 | F: Documentation/blockdev/paride.txt |
8837 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
8838 | |
8839 | PARISC ARCHITECTURE | |
b8828770 | 8840 | M: "James E.J. Bottomley" <jejb@parisc-linux.org> |
b38a03b8 | 8841 | M: Helge Deller <deller@gmx.de> |
e2d1d6c0 RD |
8842 | L: linux-parisc@vger.kernel.org |
8843 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 8844 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 8845 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 8846 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 8847 | S: Maintained |
679655da | 8848 | F: arch/parisc/ |
2b6bac9e | 8849 | F: Documentation/parisc/ |
679655da | 8850 | F: drivers/parisc/ |
2b6bac9e HD |
8851 | F: drivers/char/agp/parisc-agp.c |
8852 | F: drivers/input/serio/gscps2.c | |
8853 | F: drivers/parport/parport_gsc.* | |
8854 | F: drivers/tty/serial/8250/8250_gsc.c | |
8a61f013 | 8855 | F: drivers/video/fbdev/sti* |
2b6bac9e HD |
8856 | F: drivers/video/console/sti* |
8857 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 8858 | |
1662d32c | 8859 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 8860 | M: Jim Cromie <jim.cromie@gmail.com> |
968ce1b1 | 8861 | L: linux-hwmon@vger.kernel.org |
1662d32c | 8862 | S: Maintained |
679655da JP |
8863 | F: Documentation/hwmon/pc87360 |
8864 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
8865 | |
8866 | PC8736x GPIO DRIVER | |
8b58be88 | 8867 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 8868 | S: Maintained |
679655da | 8869 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 8870 | |
1ad107fd | 8871 | PC87427 HARDWARE MONITORING DRIVER |
d8130624 | 8872 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 8873 | L: linux-hwmon@vger.kernel.org |
1ad107fd JD |
8874 | S: Maintained |
8875 | F: Documentation/hwmon/pc87427 | |
8876 | F: drivers/hwmon/pc87427.c | |
8877 | ||
b26e0ed4 | 8878 | PCA9532 LED DRIVER |
8b58be88 | 8879 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 | 8880 | S: Maintained |
d5ca6918 JP |
8881 | F: drivers/leds/leds-pca9532.c |
8882 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 8883 | |
5ce914a8 | 8884 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 8885 | M: Guenter Roeck <linux@roeck-us.net> |
5ce914a8 GR |
8886 | L: linux-i2c@vger.kernel.org |
8887 | S: Maintained | |
b4f0b74e | 8888 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 8889 | |
3971dae5 | 8890 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 8891 | M: Khalid Aziz <khalid@gonehiking.org> |
3971dae5 KA |
8892 | S: Maintained |
8893 | F: drivers/firmware/pcdp.* | |
8894 | ||
065c6359 | 8895 | PCI ERROR RECOVERY |
6305902c | 8896 | M: Linas Vepstas <linasvepstas@gmail.com> |
c1f69db7 | 8897 | L: linux-pci@vger.kernel.org |
065c6359 | 8898 | S: Supported |
679655da | 8899 | F: Documentation/PCI/pci-error-recovery.txt |
065c6359 | 8900 | |
78c1cffd RC |
8901 | PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC |
8902 | M: Russell Currey <ruscur@russell.cc> | |
8903 | L: linuxppc-dev@lists.ozlabs.org | |
8904 | S: Supported | |
8905 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
8906 | F: arch/powerpc/kernel/eeh*.c | |
8907 | F: arch/powerpc/platforms/*/eeh*.c | |
8908 | F: arch/powerpc/include/*/eeh*.h | |
8909 | ||
1da177e4 | 8910 | PCI SUBSYSTEM |
5ac3a6d2 | 8911 | M: Bjorn Helgaas <bhelgaas@google.com> |
2905474d | 8912 | L: linux-pci@vger.kernel.org |
99662dd1 | 8913 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 8914 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 8915 | S: Supported |
92a1fe2e | 8916 | F: Documentation/devicetree/bindings/pci/ |
679655da JP |
8917 | F: Documentation/PCI/ |
8918 | F: drivers/pci/ | |
8919 | F: include/linux/pci* | |
6b49ee49 | 8920 | F: arch/x86/pci/ |
cad01f91 | 8921 | F: arch/x86/kernel/quirks.c |
1da177e4 | 8922 | |
eaa6111b LFT |
8923 | PCI DRIVER FOR ALTERA PCIE IP |
8924 | M: Ley Foon Tan <lftan@altera.com> | |
8925 | L: rfi@lists.rocketboards.org (moderated for non-subscribers) | |
8926 | L: linux-pci@vger.kernel.org | |
8927 | S: Supported | |
8928 | F: Documentation/devicetree/bindings/pci/altera-pcie.txt | |
8929 | F: drivers/pci/host/pcie-altera.c | |
8930 | ||
b7e78170 RH |
8931 | PCI DRIVER FOR ARM VERSATILE PLATFORM |
8932 | M: Rob Herring <robh@kernel.org> | |
8933 | L: linux-pci@vger.kernel.org | |
8934 | L: linux-arm-kernel@lists.infradead.org | |
8935 | S: Maintained | |
8936 | F: Documentation/devicetree/bindings/pci/versatile.txt | |
8937 | F: drivers/pci/host/pci-versatile.c | |
8938 | ||
5f6b6ccd TI |
8939 | PCI DRIVER FOR APPLIEDMICRO XGENE |
8940 | M: Tanmay Inamdar <tinamdar@apm.com> | |
8941 | L: linux-pci@vger.kernel.org | |
8942 | L: linux-arm-kernel@lists.infradead.org | |
8943 | S: Maintained | |
8944 | F: Documentation/devicetree/bindings/pci/xgene-pci.txt | |
8945 | F: drivers/pci/host/pci-xgene.c | |
8946 | ||
62d0ff83 ML |
8947 | PCI DRIVER FOR FREESCALE LAYERSCAPE |
8948 | M: Minghuan Lian <minghuan.Lian@freescale.com> | |
8949 | M: Mingkai Hu <mingkai.hu@freescale.com> | |
8950 | M: Roy Zang <tie-fei.zang@freescale.com> | |
8951 | L: linuxppc-dev@lists.ozlabs.org | |
8952 | L: linux-pci@vger.kernel.org | |
8953 | L: linux-arm-kernel@lists.infradead.org | |
8954 | S: Maintained | |
8955 | F: drivers/pci/host/*layerscape* | |
8956 | ||
f0b75693 | 8957 | PCI DRIVER FOR IMX6 |
f175aa2c | 8958 | M: Richard Zhu <Richard.Zhu@freescale.com> |
1ba55f55 | 8959 | M: Lucas Stach <l.stach@pengutronix.de> |
f0b75693 BH |
8960 | L: linux-pci@vger.kernel.org |
8961 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8962 | S: Maintained | |
8963 | F: drivers/pci/host/*imx6* | |
8964 | ||
0c4ffcfe MK |
8965 | PCI DRIVER FOR TI KEYSTONE |
8966 | M: Murali Karicheri <m-karicheri2@ti.com> | |
8967 | L: linux-pci@vger.kernel.org | |
8968 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8969 | S: Maintained | |
8970 | F: drivers/pci/host/*keystone* | |
8971 | ||
f0b75693 BH |
8972 | PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support) |
8973 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
8974 | M: Jason Cooper <jason@lakedaemon.net> | |
8975 | L: linux-pci@vger.kernel.org | |
8976 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8977 | S: Maintained | |
8978 | F: drivers/pci/host/*mvebu* | |
8979 | ||
8c39d710 TP |
8980 | PCI DRIVER FOR AARDVARK (Marvell Armada 3700) |
8981 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
8982 | L: linux-pci@vger.kernel.org | |
8983 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8984 | S: Maintained | |
8985 | F: drivers/pci/host/pci-aardvark.c | |
8986 | ||
0447cfd7 TR |
8987 | PCI DRIVER FOR NVIDIA TEGRA |
8988 | M: Thierry Reding <thierry.reding@gmail.com> | |
8989 | L: linux-tegra@vger.kernel.org | |
f0b75693 | 8990 | L: linux-pci@vger.kernel.org |
0447cfd7 TR |
8991 | S: Supported |
8992 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt | |
8993 | F: drivers/pci/host/pci-tegra.c | |
8994 | ||
47ff3de9 KVA |
8995 | PCI DRIVER FOR TI DRA7XX |
8996 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
8997 | L: linux-omap@vger.kernel.org | |
8998 | L: linux-pci@vger.kernel.org | |
8999 | S: Supported | |
9000 | F: Documentation/devicetree/bindings/pci/ti-pci.txt | |
9001 | F: drivers/pci/host/pci-dra7xx.c | |
9002 | ||
f0b75693 BH |
9003 | PCI DRIVER FOR RENESAS R-CAR |
9004 | M: Simon Horman <horms@verge.net.au> | |
9005 | L: linux-pci@vger.kernel.org | |
4a121096 | 9006 | L: linux-renesas-soc@vger.kernel.org |
f0b75693 BH |
9007 | S: Maintained |
9008 | F: drivers/pci/host/*rcar* | |
9009 | ||
4af82255 | 9010 | PCI DRIVER FOR SAMSUNG EXYNOS |
b7701755 | 9011 | M: Jingoo Han <jingoohan1@gmail.com> |
4af82255 | 9012 | L: linux-pci@vger.kernel.org |
f0b75693 BH |
9013 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9014 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
4af82255 JH |
9015 | S: Maintained |
9016 | F: drivers/pci/host/pci-exynos.c | |
9017 | ||
f0b75693 | 9018 | PCI DRIVER FOR SYNOPSIS DESIGNWARE |
b7701755 | 9019 | M: Jingoo Han <jingoohan1@gmail.com> |
110baab1 | 9020 | M: Pratyush Anand <pratyush.anand@gmail.com> |
f0b75693 BH |
9021 | L: linux-pci@vger.kernel.org |
9022 | S: Maintained | |
9023 | F: drivers/pci/host/*designware* | |
9024 | ||
5a3aa2a8 JP |
9025 | PCI DRIVER FOR SYNOPSYS PROTOTYPING DEVICE |
9026 | M: Joao Pinto <jpinto@synopsys.com> | |
9027 | L: linux-pci@vger.kernel.org | |
9028 | S: Maintained | |
9029 | F: Documentation/devicetree/bindings/pci/designware-pcie.txt | |
9030 | F: drivers/pci/host/pcie-designware-plat.c | |
9031 | ||
cf28855b WD |
9032 | PCI DRIVER FOR GENERIC OF HOSTS |
9033 | M: Will Deacon <will.deacon@arm.com> | |
9034 | L: linux-pci@vger.kernel.org | |
9035 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9036 | S: Maintained | |
9037 | F: Documentation/devicetree/bindings/pci/host-generic-pci.txt | |
4e64dbe2 | 9038 | F: drivers/pci/host/pci-host-common.c |
cf28855b WD |
9039 | F: drivers/pci/host/pci-host-generic.c |
9040 | ||
185a383a KB |
9041 | PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD) |
9042 | M: Keith Busch <keith.busch@intel.com> | |
9043 | L: linux-pci@vger.kernel.org | |
9044 | S: Supported | |
9045 | F: arch/x86/pci/vmd.c | |
9046 | ||
51b66a6c | 9047 | PCIE DRIVER FOR ST SPEAR13XX |
110baab1 | 9048 | M: Pratyush Anand <pratyush.anand@gmail.com> |
51b66a6c | 9049 | L: linux-pci@vger.kernel.org |
110baab1 | 9050 | S: Maintained |
51b66a6c PA |
9051 | F: drivers/pci/host/*spear* |
9052 | ||
af1169b4 LFT |
9053 | PCI MSI DRIVER FOR ALTERA MSI IP |
9054 | M: Ley Foon Tan <lftan@altera.com> | |
9055 | L: rfi@lists.rocketboards.org (moderated for non-subscribers) | |
9056 | L: linux-pci@vger.kernel.org | |
9057 | S: Supported | |
9058 | F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt | |
9059 | F: drivers/pci/host/pcie-altera-msi.c | |
51b66a6c | 9060 | |
dcd19de3 DD |
9061 | PCI MSI DRIVER FOR APPLIEDMICRO XGENE |
9062 | M: Duc Dang <dhdang@apm.com> | |
9063 | L: linux-pci@vger.kernel.org | |
9064 | L: linux-arm-kernel@lists.infradead.org | |
9065 | S: Maintained | |
9066 | F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt | |
9067 | F: drivers/pci/host/pci-xgene-msi.c | |
9068 | ||
a3cbfae1 NC |
9069 | PCIE DRIVER FOR AXIS ARTPEC |
9070 | M: Niklas Cassel <niklas.cassel@axis.com> | |
9071 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
9072 | L: linux-arm-kernel@axis.com | |
9073 | L: linux-pci@vger.kernel.org | |
9074 | S: Maintained | |
9075 | F: Documentation/devicetree/bindings/pci/axis,artpec* | |
9076 | F: drivers/pci/host/*artpec* | |
9077 | ||
500a1d9a ZW |
9078 | PCIE DRIVER FOR HISILICON |
9079 | M: Zhou Wang <wangzhou1@hisilicon.com> | |
5930fe4e | 9080 | M: Gabriele Paoloni <gabriele.paoloni@huawei.com> |
500a1d9a ZW |
9081 | L: linux-pci@vger.kernel.org |
9082 | S: Maintained | |
9083 | F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt | |
9084 | F: drivers/pci/host/pcie-hisi.c | |
9085 | ||
82a82383 SV |
9086 | PCIE DRIVER FOR QUALCOMM MSM |
9087 | M: Stanimir Varbanov <svarbanov@mm-sol.com> | |
9088 | L: linux-pci@vger.kernel.org | |
9089 | L: linux-arm-msm@vger.kernel.org | |
9090 | S: Maintained | |
9091 | F: drivers/pci/host/*qcom* | |
9092 | ||
f12b76e5 DD |
9093 | PCIE DRIVER FOR CAVIUM THUNDERX |
9094 | M: David Daney <david.daney@cavium.com> | |
9095 | L: linux-pci@vger.kernel.org | |
9096 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9097 | S: Supported | |
9098 | F: Documentation/devicetree/bindings/pci/pci-thunder-* | |
9099 | F: drivers/pci/host/pci-thunder-* | |
9100 | ||
1da177e4 | 9101 | PCMCIA SUBSYSTEM |
4230dfc9 | 9102 | P: Linux PCMCIA Team |
f5df5881 | 9103 | L: linux-pcmcia@lists.infradead.org |
6650e0a5 | 9104 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
9f273c24 | 9105 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git |
4230dfc9 | 9106 | S: Maintained |
679655da JP |
9107 | F: Documentation/pcmcia/ |
9108 | F: drivers/pcmcia/ | |
9109 | F: include/pcmcia/ | |
1da177e4 LT |
9110 | |
9111 | PCNET32 NETWORK DRIVER | |
227fb925 | 9112 | M: Don Fry <pcnet32@frontier.com> |
979b6c13 | 9113 | L: netdev@vger.kernel.org |
1da177e4 | 9114 | S: Maintained |
b955f6ca | 9115 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 9116 | |
48fc267e SK |
9117 | PCRYPT PARALLEL CRYPTO ENGINE |
9118 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
9119 | L: linux-crypto@vger.kernel.org | |
9120 | S: Maintained | |
9121 | F: crypto/pcrypt.c | |
9122 | F: include/crypto/pcrypt.h | |
9123 | ||
e72df0b8 TH |
9124 | PER-CPU MEMORY ALLOCATOR |
9125 | M: Tejun Heo <tj@kernel.org> | |
93e205a7 | 9126 | M: Christoph Lameter <cl@linux.com> |
e72df0b8 TH |
9127 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
9128 | S: Maintained | |
9129 | F: include/linux/percpu*.h | |
9130 | F: mm/percpu*.c | |
9131 | F: arch/*/include/asm/percpu.h | |
9132 | ||
ad4ecbcb | 9133 | PER-TASK DELAY ACCOUNTING |
185e595f | 9134 | M: Balbir Singh <bsingharora@gmail.com> |
ad4ecbcb | 9135 | S: Maintained |
679655da JP |
9136 | F: include/linux/delayacct.h |
9137 | F: kernel/delayacct.c | |
ad4ecbcb | 9138 | |
57c0c15b | 9139 | PERFORMANCE EVENTS SUBSYSTEM |
daecbd26 | 9140 | M: Peter Zijlstra <peterz@infradead.org> |
dd9b238c | 9141 | M: Ingo Molnar <mingo@redhat.com> |
f80c5393 | 9142 | M: Arnaldo Carvalho de Melo <acme@kernel.org> |
a54d690e | 9143 | R: Alexander Shishkin <alexander.shishkin@linux.intel.com> |
981c3a4f | 9144 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 9145 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 9146 | S: Supported |
d53e8365 | 9147 | F: kernel/events/* |
a003236c | 9148 | F: include/linux/perf_event.h |
c117ab84 | 9149 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
9150 | F: arch/*/kernel/perf_event*.c |
9151 | F: arch/*/kernel/*/perf_event*.c | |
9152 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 9153 | F: arch/*/include/asm/perf_event.h |
a003236c | 9154 | F: arch/*/kernel/perf_callchain.c |
b0a434fb | 9155 | F: arch/*/events/* |
a003236c | 9156 | F: tools/perf/ |
6c0b3244 | 9157 | |
dd49d0f5 | 9158 | PERSONALITY HANDLING |
8b58be88 | 9159 | M: Christoph Hellwig <hch@infradead.org> |
dd49d0f5 JC |
9160 | L: linux-abi-devel@lists.sourceforge.net |
9161 | S: Maintained | |
679655da | 9162 | F: include/linux/personality.h |
c117ab84 | 9163 | F: include/uapi/linux/personality.h |
dd49d0f5 | 9164 | |
838e7a03 | 9165 | PHONET PROTOCOL |
2a06b40f | 9166 | M: Remi Denis-Courmont <courmisch@gmail.com> |
838e7a03 RDC |
9167 | S: Supported |
9168 | F: Documentation/networking/phonet.txt | |
9169 | F: include/linux/phonet.h | |
9170 | F: include/net/phonet/ | |
c117ab84 | 9171 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
9172 | F: net/phonet/ |
9173 | ||
1da177e4 | 9174 | PHRAM MTD DRIVER |
8b58be88 | 9175 | M: Joern Engel <joern@lazybastard.org> |
1da177e4 LT |
9176 | L: linux-mtd@lists.infradead.org |
9177 | S: Maintained | |
679655da | 9178 | F: drivers/mtd/devices/phram.c |
1da177e4 | 9179 | |
efdbb10e BP |
9180 | PICOLCD HID DRIVER |
9181 | M: Bruno Prémont <bonbons@linux-vserver.org> | |
9182 | L: linux-input@vger.kernel.org | |
9183 | S: Maintained | |
9184 | F: drivers/hid/hid-picolcd* | |
9185 | ||
a53bfa07 JI |
9186 | PICOXCELL SUPPORT |
9187 | M: Jamie Iles <jamie@jamieiles.com> | |
9188 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9189 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
9190 | S: Supported | |
b8733987 | 9191 | F: arch/arm/boot/dts/picoxcell* |
14430813 | 9192 | F: arch/arm/mach-picoxcell/ |
b8733987 | 9193 | F: drivers/crypto/picoxcell* |
a53bfa07 | 9194 | |
2744e8af LW |
9195 | PIN CONTROL SUBSYSTEM |
9196 | M: Linus Walleij <linus.walleij@linaro.org> | |
c11f042b | 9197 | L: linux-gpio@vger.kernel.org |
dbe752a3 | 9198 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git |
2744e8af | 9199 | S: Maintained |
9feeed94 | 9200 | F: Documentation/devicetree/bindings/pinctrl/ |
fefb6245 | 9201 | F: Documentation/pinctrl.txt |
07f29ba6 | 9202 | F: drivers/pinctrl/ |
8e406fe4 | 9203 | F: include/linux/pinctrl/ |
2744e8af | 9204 | |
2201bbb8 JCPV |
9205 | PIN CONTROLLER - ATMEL AT91 |
9206 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> | |
9207 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9208 | S: Maintained | |
c654b6bf | 9209 | F: drivers/pinctrl/pinctrl-at91.* |
2201bbb8 | 9210 | |
33d3690c LD |
9211 | PIN CONTROLLER - ATMEL AT91 PIO4 |
9212 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
9213 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9214 | L: linux-gpio@vger.kernel.org | |
9215 | S: Supported | |
9216 | F: drivers/pinctrl/pinctrl-at91-pio4.* | |
9217 | ||
cbd1b652 MW |
9218 | PIN CONTROLLER - INTEL |
9219 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
9220 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> | |
9221 | S: Maintained | |
9222 | F: drivers/pinctrl/intel/ | |
2201bbb8 | 9223 | |
9963b536 LP |
9224 | PIN CONTROLLER - RENESAS |
9225 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
1a4ca6dd | 9226 | M: Geert Uytterhoeven <geert+renesas@glider.be> |
4a121096 | 9227 | L: linux-renesas-soc@vger.kernel.org |
9963b536 LP |
9228 | S: Maintained |
9229 | F: drivers/pinctrl/sh-pfc/ | |
9230 | ||
b75e60d6 | 9231 | PIN CONTROLLER - SAMSUNG |
fea685e9 | 9232 | M: Tomasz Figa <tomasz.figa@gmail.com> |
44b03c10 KK |
9233 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> |
9234 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> | |
b75e60d6 DA |
9235 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9236 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
9237 | S: Maintained | |
9b5b33f6 | 9238 | F: drivers/pinctrl/samsung/ |
b75e60d6 | 9239 | |
13cbd906 TL |
9240 | PIN CONTROLLER - SINGLE |
9241 | M: Tony Lindgren <tony@atomide.com> | |
9242 | M: Haojian Zhuang <haojian.zhuang@linaro.org> | |
9243 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9244 | L: linux-omap@vger.kernel.org | |
9245 | S: Maintained | |
9246 | F: drivers/pinctrl/pinctrl-single.c | |
9247 | ||
deda8287 | 9248 | PIN CONTROLLER - ST SPEAR |
da89947b | 9249 | M: Viresh Kumar <vireshk@kernel.org> |
deda8287 VK |
9250 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9251 | W: http://www.st.com/spear | |
9252 | S: Maintained | |
8e406fe4 | 9253 | F: drivers/pinctrl/spear/ |
deda8287 | 9254 | |
11a1cf34 JH |
9255 | PISTACHIO SOC SUPPORT |
9256 | M: James Hartley <james.hartley@imgtec.com> | |
9257 | M: Ionela Voinescu <ionela.voinescu@imgtec.com> | |
9258 | L: linux-mips@linux-mips.org | |
9259 | S: Maintained | |
9260 | F: arch/mips/pistachio/ | |
9261 | F: arch/mips/include/asm/mach-pistachio/ | |
9262 | F: arch/mips/boot/dts/pistachio/ | |
9263 | F: arch/mips/configs/pistachio*_defconfig | |
9264 | ||
249a6771 | 9265 | PKTCDVD DRIVER |
e5f6450c | 9266 | M: Jiri Kosina <jikos@kernel.org> |
249a6771 | 9267 | S: Maintained |
679655da JP |
9268 | F: drivers/block/pktcdvd.c |
9269 | F: include/linux/pktcdvd.h | |
c117ab84 | 9270 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 9271 | |
b31d8273 G |
9272 | PKUNITY SOC DRIVERS |
9273 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
9274 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
9275 | S: Maintained | |
ceebf4d5 | 9276 | T: git git://github.com/gxt/linux.git |
b31d8273 | 9277 | F: drivers/input/serio/i8042-unicore32io.h |
d10e4a66 | 9278 | F: drivers/i2c/busses/i2c-puv3.c |
8a61f013 | 9279 | F: drivers/video/fbdev/fb-puv3.c |
2809e80b | 9280 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 9281 | |
9d2ecfb7 | 9282 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 9283 | M: Guenter Roeck <linux@roeck-us.net> |
968ce1b1 GR |
9284 | L: linux-hwmon@vger.kernel.org |
9285 | W: http://hwmon.wiki.kernel.org/ | |
9d2ecfb7 GR |
9286 | W: http://www.roeck-us.net/linux/drivers/ |
9287 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
9288 | S: Maintained | |
9289 | F: Documentation/hwmon/pmbus | |
9290 | F: drivers/hwmon/pmbus/ | |
9291 | F: include/linux/i2c/pmbus.h | |
9292 | ||
89a36810 | 9293 | PMC SIERRA MaxRAID DRIVER |
89a36810 AR |
9294 | L: linux-scsi@vger.kernel.org |
9295 | W: http://www.pmc-sierra.com/ | |
3cdea4d7 | 9296 | S: Orphan |
89a36810 AR |
9297 | F: drivers/scsi/pmcraid.* |
9298 | ||
dbf9bfe6 | 9299 | PMC SIERRA PM8001 DRIVER |
d32477e2 | 9300 | M: Jack Wang <jinpu.wang@profitbricks.com> |
dbf9bfe6 | 9301 | M: lindar_liu@usish.com |
f5a7b525 | 9302 | L: pmchba@pmcs.com |
dbf9bfe6 | 9303 | L: linux-scsi@vger.kernel.org |
9304 | S: Supported | |
9305 | F: drivers/scsi/pm8001/ | |
9306 | ||
1da177e4 | 9307 | POSIX CLOCKS and TIMERS |
8b58be88 | 9308 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 9309 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 9310 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
5cee9645 | 9311 | S: Maintained |
679655da JP |
9312 | F: fs/timerfd.c |
9313 | F: include/linux/timer* | |
5cee9645 | 9314 | F: kernel/time/*timer* |
1da177e4 | 9315 | |
7b06a6d7 RW |
9316 | POWER MANAGEMENT CORE |
9317 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> | |
9318 | L: linux-pm@vger.kernel.org | |
9319 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
9320 | S: Supported | |
9321 | F: drivers/base/power/ | |
9322 | F: include/linux/pm.h | |
9323 | F: include/linux/pm_* | |
9324 | F: include/linux/powercap.h | |
9325 | F: drivers/powercap/ | |
9326 | ||
3be86148 | 9327 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
ad8464a2 | 9328 | M: Sebastian Reichel <sre@kernel.org> |
57318935 | 9329 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
8b58be88 | 9330 | M: David Woodhouse <dwmw2@infradead.org> |
ad8464a2 | 9331 | L: linux-pm@vger.kernel.org |
54e5881d | 9332 | T: git git://git.infradead.org/battery-2.6.git |
3be86148 | 9333 | S: Maintained |
3cc5c704 GU |
9334 | F: Documentation/devicetree/bindings/power/ |
9335 | F: Documentation/devicetree/bindings/power_supply/ | |
679655da | 9336 | F: include/linux/power_supply.h |
8cd725a1 | 9337 | F: drivers/power/ |
26305022 | 9338 | X: drivers/power/avs/ |
3be86148 | 9339 | |
514f161a MR |
9340 | POWER STATE COORDINATION INTERFACE (PSCI) |
9341 | M: Mark Rutland <mark.rutland@arm.com> | |
9342 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
9343 | L: linux-arm-kernel@lists.infradead.org | |
9344 | S: Maintained | |
9345 | F: drivers/firmware/psci.c | |
9346 | F: include/linux/psci.h | |
9347 | F: include/uapi/linux/psci.h | |
9348 | ||
43a1dd9b SJS |
9349 | POWERNV OPERATOR PANEL LCD DISPLAY DRIVER |
9350 | M: Suraj Jitindar Singh <sjitindarsingh@gmail.com> | |
9351 | L: linuxppc-dev@lists.ozlabs.org | |
9352 | S: Maintained | |
9353 | F: drivers/char/powernv-op-panel.c | |
9354 | ||
1da177e4 | 9355 | PNP SUPPORT |
9c3646d1 | 9356 | M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> |
1da177e4 | 9357 | S: Maintained |
679655da | 9358 | F: drivers/pnp/ |
1da177e4 LT |
9359 | |
9360 | PPP PROTOCOL DRIVERS AND COMPRESSORS | |
8b58be88 | 9361 | M: Paul Mackerras <paulus@samba.org> |
1da177e4 LT |
9362 | L: linux-ppp@vger.kernel.org |
9363 | S: Maintained | |
224cf5ad | 9364 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
9365 | |
9366 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 9367 | M: Mitchell Blank Jr <mitch@sfgoth.com> |
1da177e4 | 9368 | S: Maintained |
679655da | 9369 | F: net/atm/pppoatm.c |
c117ab84 | 9370 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
9371 | |
9372 | PPP OVER ETHERNET | |
8b58be88 | 9373 | M: Michal Ostrowski <mostrows@earthlink.net> |
1da177e4 | 9374 | S: Maintained |
224cf5ad JK |
9375 | F: drivers/net/ppp/pppoe.c |
9376 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 9377 | |
a6d2370b | 9378 | PPP OVER L2TP |
8b58be88 | 9379 | M: James Chapman <jchapman@katalix.com> |
a6d2370b | 9380 | S: Maintained |
90ca28d1 | 9381 | F: net/l2tp/l2tp_ppp.c |
679655da | 9382 | F: include/linux/if_pppol2tp.h |
c117ab84 | 9383 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 9384 | |
eae9d2ba | 9385 | PPS SUPPORT |
8b58be88 | 9386 | M: Rodolfo Giometti <giometti@enneenne.com> |
eae9d2ba RG |
9387 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
9388 | L: linuxpps@ml.enneenne.com (subscribers-only) | |
9389 | S: Maintained | |
cabaaf41 JP |
9390 | F: Documentation/pps/ |
9391 | F: drivers/pps/ | |
9392 | F: include/linux/pps*.h | |
eae9d2ba | 9393 | |
71a6d0af HW |
9394 | PPTP DRIVER |
9395 | M: Dmitry Kozlov <xeb@mail.ru> | |
9396 | L: netdev@vger.kernel.org | |
9397 | S: Maintained | |
224cf5ad | 9398 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
9399 | W: http://sourceforge.net/projects/accel-pptp |
9400 | ||
1da177e4 | 9401 | PREEMPTIBLE KERNEL |
8b58be88 | 9402 | M: Robert Love <rml@tech9.net> |
1da177e4 LT |
9403 | L: kpreempt-tech@lists.sourceforge.net |
9404 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
9405 | S: Supported | |
679655da JP |
9406 | F: Documentation/preempt-locking.txt |
9407 | F: include/linux/preempt.h | |
1da177e4 LT |
9408 | |
9409 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 9410 | M: "Luis R. Rodriguez" <mcgrof@gmail.com> |
724c6b35 | 9411 | L: linux-wireless@vger.kernel.org |
9ef80804 | 9412 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 9413 | S: Obsolete |
c12edfe2 | 9414 | F: drivers/net/wireless/intersil/prism54/ |
1da177e4 | 9415 | |
02c18891 | 9416 | PS3 NETWORK SUPPORT |
b809b9ca | 9417 | M: Geoff Levand <geoff@infradead.org> |
02c18891 | 9418 | L: netdev@vger.kernel.org |
a14ab6b6 | 9419 | L: linuxppc-dev@lists.ozlabs.org |
b809b9ca | 9420 | S: Maintained |
8df158ac | 9421 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 9422 | |
f58a9d17 | 9423 | PS3 PLATFORM SUPPORT |
b809b9ca | 9424 | M: Geoff Levand <geoff@infradead.org> |
a4724ed6 | 9425 | L: linuxppc-dev@lists.ozlabs.org |
b809b9ca | 9426 | S: Maintained |
679655da JP |
9427 | F: arch/powerpc/boot/ps3* |
9428 | F: arch/powerpc/include/asm/lv1call.h | |
9429 | F: arch/powerpc/include/asm/ps3*.h | |
9430 | F: arch/powerpc/platforms/ps3/ | |
9431 | F: drivers/*/ps3* | |
9432 | F: drivers/ps3/ | |
fec629b8 | 9433 | F: drivers/rtc/rtc-ps3.c |
679655da | 9434 | F: drivers/usb/host/*ps3.c |
fec629b8 | 9435 | F: sound/ppc/snd_ps3* |
f58a9d17 | 9436 | |
cffb4add | 9437 | PS3VRAM DRIVER |
8b58be88 | 9438 | M: Jim Paris <jim@jtan.com> |
3715a5d0 | 9439 | M: Geoff Levand <geoff@infradead.org> |
a14ab6b6 | 9440 | L: linuxppc-dev@lists.ozlabs.org |
cffb4add | 9441 | S: Maintained |
8a3977cb | 9442 | F: drivers/block/ps3vram.c |
cffb4add | 9443 | |
8defe599 | 9444 | PSTORE FILESYSTEM |
9d5e2a02 | 9445 | M: Anton Vorontsov <anton@enomsg.org> |
8defe599 AV |
9446 | M: Colin Cross <ccross@android.com> |
9447 | M: Kees Cook <keescook@chromium.org> | |
9448 | M: Tony Luck <tony.luck@intel.com> | |
9449 | S: Maintained | |
9f273c24 | 9450 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
8defe599 AV |
9451 | F: fs/pstore/ |
9452 | F: include/linux/pstore* | |
04851772 | 9453 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 AV |
9454 | F: drivers/acpi/apei/erst.c |
9455 | ||
7fbc415d RC |
9456 | PTP HARDWARE CLOCK SUPPORT |
9457 | M: Richard Cochran <richardcochran@gmail.com> | |
e7333e3c | 9458 | L: netdev@vger.kernel.org |
7fbc415d RC |
9459 | S: Maintained |
9460 | W: http://linuxptp.sourceforge.net/ | |
9461 | F: Documentation/ABI/testing/sysfs-ptp | |
9462 | F: Documentation/ptp/* | |
0ecb3cdd | 9463 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
9464 | F: drivers/net/phy/dp83640* |
9465 | F: drivers/ptp/* | |
9466 | F: include/linux/ptp_cl* | |
9467 | ||
cf94a4d1 | 9468 | PTRACE SUPPORT |
e846ee5f | 9469 | M: Roland McGrath <roland@hack.frob.com> |
8b58be88 | 9470 | M: Oleg Nesterov <oleg@redhat.com> |
cf94a4d1 CH |
9471 | S: Maintained |
9472 | F: include/asm-generic/syscall.h | |
9473 | F: include/linux/ptrace.h | |
9474 | F: include/linux/regset.h | |
9475 | F: include/linux/tracehook.h | |
c117ab84 | 9476 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
9477 | F: kernel/ptrace.c |
9478 | ||
3e9d7ba7 HV |
9479 | PULSE8-CEC DRIVER |
9480 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9481 | L: linux-media@vger.kernel.org | |
9482 | T: git git://linuxtv.org/media_tree.git | |
9483 | S: Maintained | |
9484 | F: drivers/staging/media/pulse8-cec | |
9485 | ||
8320204a | 9486 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 9487 | M: Mike Isely <isely@pobox.com> |
16e9495d | 9488 | L: pvrusb2@isely.net (subscribers-only) |
661263b5 | 9489 | L: linux-media@vger.kernel.org |
8320204a | 9490 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 9491 | T: git git://linuxtv.org/media_tree.git |
8320204a | 9492 | S: Maintained |
679655da | 9493 | F: Documentation/video4linux/README.pvrusb2 |
0c0d06ca | 9494 | F: drivers/media/usb/pvrusb2/ |
8320204a | 9495 | |
39532e6c | 9496 | PWC WEBCAM DRIVER |
c0936df4 | 9497 | M: Hans Verkuil <hverkuil@xs4all.nl> |
39532e6c HG |
9498 | L: linux-media@vger.kernel.org |
9499 | T: git git://linuxtv.org/media_tree.git | |
c0936df4 | 9500 | S: Odd Fixes |
39532e6c HG |
9501 | F: drivers/media/usb/pwc/* |
9502 | ||
93c090b3 | 9503 | PWM FAN DRIVER |
774e0362 KD |
9504 | M: Kamil Debski <kamil@wypas.org> |
9505 | M: Lukasz Majewski <l.majewski@samsung.com> | |
968ce1b1 | 9506 | L: linux-hwmon@vger.kernel.org |
93c090b3 KD |
9507 | S: Supported |
9508 | F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt | |
9509 | F: Documentation/hwmon/pwm-fan | |
9510 | F: drivers/hwmon/pwm-fan.c | |
9511 | ||
200efedd | 9512 | PWM SUBSYSTEM |
aa3495f7 TR |
9513 | M: Thierry Reding <thierry.reding@gmail.com> |
9514 | L: linux-pwm@vger.kernel.org | |
0c2498f1 | 9515 | S: Maintained |
006e854f | 9516 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git |
200efedd TR |
9517 | F: Documentation/pwm.txt |
9518 | F: Documentation/devicetree/bindings/pwm/ | |
9519 | F: include/linux/pwm.h | |
0c2498f1 | 9520 | F: drivers/pwm/ |
a140b98d TR |
9521 | F: drivers/video/backlight/pwm_bl.c |
9522 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 9523 | |
30ec261e | 9524 | PXA2xx/PXA3xx SUPPORT |
8da5e302 | 9525 | M: Daniel Mack <daniel@zonque.org> |
a323f664 | 9526 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
8da5e302 | 9527 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 9528 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 | 9529 | T: git git://github.com/hzhuang1/linux.git |
8da5e302 | 9530 | T: git git://github.com/rjarzmik/linux.git |
1da177e4 | 9531 | S: Maintained |
e68d7c14 | 9532 | F: arch/arm/boot/dts/pxa* |
679655da | 9533 | F: arch/arm/mach-pxa/ |
820439f1 | 9534 | F: drivers/dma/pxa* |
679655da | 9535 | F: drivers/pcmcia/pxa2xx* |
1403ead9 | 9536 | F: drivers/pinctrl/pxa/ |
9df92e6c | 9537 | F: drivers/spi/spi-pxa2xx* |
faf2e1db | 9538 | F: drivers/usb/gadget/udc/pxa2* |
679655da | 9539 | F: include/sound/pxa2xx-lib.h |
bec4c99e | 9540 | F: sound/arm/pxa* |
14430813 | 9541 | F: sound/soc/pxa/ |
1da177e4 | 9542 | |
f3154a46 RJ |
9543 | PXA GPIO DRIVER |
9544 | M: Robert Jarzmik <robert.jarzmik@free.fr> | |
9545 | L: linux-gpio@vger.kernel.org | |
9546 | S: Maintained | |
9547 | F: drivers/gpio/gpio-pxa.c | |
9548 | ||
ec64d3bf EG |
9549 | PXA3xx NAND FLASH DRIVER |
9550 | M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> | |
9551 | L: linux-mtd@lists.infradead.org | |
9552 | S: Maintained | |
9a67f099 | 9553 | F: drivers/mtd/nand/pxa3xx_nand.c |
ec64d3bf | 9554 | |
3f640c61 | 9555 | MMP SUPPORT |
8b58be88 | 9556 | M: Eric Miao <eric.y.miao@gmail.com> |
a323f664 | 9557 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
e8e6cb32 | 9558 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 HZ |
9559 | T: git git://github.com/hzhuang1/linux.git |
9560 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 9561 | S: Maintained |
e68d7c14 | 9562 | F: arch/arm/boot/dts/mmp* |
3f640c61 | 9563 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 9564 | |
272f133a PO |
9565 | PXA MMCI DRIVER |
9566 | S: Orphan | |
9567 | ||
57f63bc8 | 9568 | PXA RTC DRIVER |
8b58be88 | 9569 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
57f63bc8 RJ |
9570 | L: rtc-linux@googlegroups.com |
9571 | S: Maintained | |
9572 | ||
cea4001a | 9573 | QAT DRIVER |
90ab5a81 TS |
9574 | M: Giovanni Cabiddu <giovanni.cabiddu@intel.com> |
9575 | M: Salvatore Benedetto <salvatore.benedetto@intel.com> | |
49e7d9df JP |
9576 | L: qat-linux@intel.com |
9577 | S: Supported | |
9578 | F: drivers/crypto/qat/ | |
cea4001a | 9579 | |
52a09a04 | 9580 | QIB DRIVER |
8473c603 | 9581 | M: Mike Marciniszyn <infinipath@intel.com> |
52a09a04 MM |
9582 | L: linux-rdma@vger.kernel.org |
9583 | S: Supported | |
9584 | F: drivers/infiniband/hw/qib/ | |
9585 | ||
5e9772b9 JS |
9586 | QLOGIC QLA1280 SCSI DRIVER |
9587 | M: Michael Reed <mdr@sgi.com> | |
9588 | L: linux-scsi@vger.kernel.org | |
9589 | S: Maintained | |
9590 | F: drivers/scsi/qla1280.[ch] | |
9591 | ||
1da177e4 | 9592 | QLOGIC QLA2XXX FC-SCSI DRIVER |
2c804eb0 | 9593 | M: qla2xxx-upstream@qlogic.com |
1da177e4 LT |
9594 | L: linux-scsi@vger.kernel.org |
9595 | S: Supported | |
679655da JP |
9596 | F: Documentation/scsi/LICENSE.qla2xxx |
9597 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 9598 | |
883c98fe | 9599 | QLOGIC QLA4XXX iSCSI DRIVER |
1018b8b9 | 9600 | M: QLogic-Storage-Upstream@qlogic.com |
883c98fe RA |
9601 | L: linux-scsi@vger.kernel.org |
9602 | S: Supported | |
bacfb81b | 9603 | F: Documentation/scsi/LICENSE.qla4xxx |
883c98fe RA |
9604 | F: drivers/scsi/qla4xxx/ |
9605 | ||
5a4faa87 | 9606 | QLOGIC QLA3XXX NETWORK DRIVER |
0a955c3a | 9607 | M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> |
8b58be88 | 9608 | M: Ron Mercer <ron.mercer@qlogic.com> |
5a4faa87 RM |
9609 | M: linux-driver@qlogic.com |
9610 | L: netdev@vger.kernel.org | |
9611 | S: Supported | |
679655da | 9612 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 9613 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 9614 | |
0ec00f03 | 9615 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
9f35a3cc | 9616 | M: Dept-GELinuxNICDev@qlogic.com |
0ec00f03 AKS |
9617 | L: netdev@vger.kernel.org |
9618 | S: Supported | |
aa43c215 | 9619 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 9620 | |
c4e84bde | 9621 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
c9b1a5b5 HP |
9622 | M: Harish Patil <harish.patil@qlogic.com> |
9623 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> | |
9624 | M: Dept-GELinuxNICDev@qlogic.com | |
4cbfbe25 | 9625 | M: linux-driver@qlogic.com |
c4e84bde RM |
9626 | L: netdev@vger.kernel.org |
9627 | S: Supported | |
aa43c215 | 9628 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 9629 | |
fe56b9e6 YM |
9630 | QLOGIC QL4xxx ETHERNET DRIVER |
9631 | M: Yuval Mintz <Yuval.Mintz@qlogic.com> | |
9632 | M: Ariel Elior <Ariel.Elior@qlogic.com> | |
9633 | M: everest-linux-l2@qlogic.com | |
9634 | L: netdev@vger.kernel.org | |
9635 | S: Supported | |
9636 | F: drivers/net/ethernet/qlogic/qed/ | |
9637 | F: include/linux/qed/ | |
9638 | F: drivers/net/ethernet/qlogic/qede/ | |
9639 | ||
1da177e4 | 9640 | QNX4 FILESYSTEM |
8b58be88 | 9641 | M: Anders Larsen <al@alarsen.net> |
1da177e4 LT |
9642 | W: http://www.alarsen.net/linux/qnx4fs/ |
9643 | S: Maintained | |
80811493 | 9644 | F: fs/qnx4/ |
c117ab84 CEB |
9645 | F: include/uapi/linux/qnx4_fs.h |
9646 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 9647 | |
91952bc0 AP |
9648 | QT1010 MEDIA DRIVER |
9649 | M: Antti Palosaari <crope@iki.fi> | |
9650 | L: linux-media@vger.kernel.org | |
a825eaec | 9651 | W: https://linuxtv.org |
91952bc0 AP |
9652 | W: http://palosaari.fi/linux/ |
9653 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9654 | T: git git://linuxtv.org/anttip/media_tree.git | |
9655 | S: Maintained | |
9656 | F: drivers/media/tuners/qt1010* | |
9657 | ||
966fb5ec SM |
9658 | QUALCOMM ATHEROS ATH9K WIRELESS DRIVER |
9659 | M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com> | |
9660 | L: linux-wireless@vger.kernel.org | |
9661 | L: ath9k-devel@lists.ath9k.org | |
9662 | W: http://wireless.kernel.org/en/users/Drivers/ath9k | |
9663 | S: Supported | |
9664 | F: drivers/net/wireless/ath/ath9k/ | |
9665 | ||
2ea0ffcb KV |
9666 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
9667 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
9668 | L: ath10k@lists.infradead.org | |
9669 | W: http://wireless.kernel.org/en/users/Drivers/ath10k | |
9f273c24 | 9670 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git |
2ea0ffcb KV |
9671 | S: Supported |
9672 | F: drivers/net/wireless/ath/ath10k/ | |
9673 | ||
4f4567cf RK |
9674 | QUALCOMM HEXAGON ARCHITECTURE |
9675 | M: Richard Kuo <rkuo@codeaurora.org> | |
9676 | L: linux-hexagon@vger.kernel.org | |
9f273c24 | 9677 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git |
4f4567cf RK |
9678 | S: Supported |
9679 | F: arch/hexagon/ | |
9680 | ||
8e84c258 EK |
9681 | QUALCOMM WCN36XX WIRELESS DRIVER |
9682 | M: Eugene Krasnikov <k.eugene.e@gmail.com> | |
9683 | L: wcn36xx@lists.infradead.org | |
9684 | W: http://wireless.kernel.org/en/users/Drivers/wcn36xx | |
9685 | T: git git://github.com/KrasnikovEugene/wcn36xx.git | |
9686 | S: Supported | |
9687 | F: drivers/net/wireless/ath/wcn36xx/ | |
9688 | ||
eeca9a67 MT |
9689 | QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT |
9690 | M: Gabriel Somlo <somlo@cmu.edu> | |
9691 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
9692 | L: qemu-devel@nongnu.org | |
9693 | S: Maintained | |
9694 | F: drivers/firmware/qemu_fw_cfg.c | |
9695 | ||
602adf40 | 9696 | RADOS BLOCK DEVICE (RBD) |
0f5417ce SW |
9697 | M: Ilya Dryomov <idryomov@gmail.com> |
9698 | M: Sage Weil <sage@redhat.com> | |
527a88b9 | 9699 | M: Alex Elder <elder@kernel.org> |
398ecff5 | 9700 | L: ceph-devel@vger.kernel.org |
09d90327 SW |
9701 | W: http://ceph.com/ |
9702 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
6e67b7ae | 9703 | T: git git://github.com/ceph/ceph-client.git |
602adf40 | 9704 | S: Supported |
398ecff5 | 9705 | F: Documentation/ABI/testing/sysfs-bus-rbd |
602adf40 YS |
9706 | F: drivers/block/rbd.c |
9707 | F: drivers/block/rbd_types.h | |
9708 | ||
1da177e4 | 9709 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 9710 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
c69f677c | 9711 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 9712 | S: Maintained |
8a61f013 | 9713 | F: drivers/video/fbdev/aty/radeon* |
c117ab84 | 9714 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 9715 | |
c6c9b34c | 9716 | RADIOSHARK RADIO DRIVER |
c0936df4 | 9717 | M: Hans Verkuil <hverkuil@xs4all.nl> |
c6c9b34c HG |
9718 | L: linux-media@vger.kernel.org |
9719 | T: git git://linuxtv.org/media_tree.git | |
9720 | S: Maintained | |
9721 | F: drivers/media/radio/radio-shark.c | |
9722 | ||
9723 | RADIOSHARK2 RADIO DRIVER | |
c0936df4 | 9724 | M: Hans Verkuil <hverkuil@xs4all.nl> |
c6c9b34c HG |
9725 | L: linux-media@vger.kernel.org |
9726 | T: git git://linuxtv.org/media_tree.git | |
9727 | S: Maintained | |
9728 | F: drivers/media/radio/radio-shark2.c | |
9729 | F: drivers/media/radio/radio-tea5777.c | |
9730 | ||
1da177e4 | 9731 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 9732 | M: Paul Mackerras <paulus@samba.org> |
c69f677c | 9733 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 9734 | S: Maintained |
8a61f013 | 9735 | F: drivers/video/fbdev/aty/aty128fb.c |
1da177e4 | 9736 | |
a0fd81a9 | 9737 | RALINK MIPS ARCHITECTURE |
bdb40e8e | 9738 | M: John Crispin <john@phrozen.org> |
a0fd81a9 JC |
9739 | L: linux-mips@linux-mips.org |
9740 | S: Maintained | |
9741 | F: arch/mips/ralink | |
9742 | ||
e7839f25 | 9743 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 9744 | P: rt2x00 project |
b182427e | 9745 | M: Stanislaw Gruszka <sgruszka@redhat.com> |
f198f98e | 9746 | M: Helmut Schaa <helmut.schaa@googlemail.com> |
95ea3627 | 9747 | L: linux-wireless@vger.kernel.org |
95ea3627 | 9748 | S: Maintained |
33aca94d | 9749 | F: drivers/net/wireless/ralink/rt2x00/ |
95ea3627 | 9750 | |
9db5579b | 9751 | RAMDISK RAM BLOCK DEVICE DRIVER |
ea7618ec | 9752 | M: Jens Axboe <axboe@kernel.dk> |
9db5579b | 9753 | S: Maintained |
679655da JP |
9754 | F: Documentation/blockdev/ramdisk.txt |
9755 | F: drivers/block/brd.c | |
9db5579b | 9756 | |
9e95ce27 | 9757 | RANDOM NUMBER DRIVER |
0624bcaa | 9758 | M: "Theodore Ts'o" <tytso@mit.edu> |
9e95ce27 | 9759 | S: Maintained |
679655da | 9760 | F: drivers/char/random.c |
9e95ce27 | 9761 | |
394b701c | 9762 | RAPIDIO SUBSYSTEM |
8b58be88 | 9763 | M: Matt Porter <mporter@kernel.crashing.org> |
b8bc1dd3 | 9764 | M: Alexandre Bounine <alexandre.bounine@idt.com> |
394b701c | 9765 | S: Maintained |
679655da | 9766 | F: drivers/rapidio/ |
394b701c | 9767 | |
e2d1d6c0 | 9768 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 9769 | L: linux-wireless@vger.kernel.org |
f52a5490 | 9770 | S: Orphan |
679655da | 9771 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
9772 | |
9773 | RCUTORTURE MODULE | |
e0198b29 | 9774 | M: Josh Triplett <josh@joshtriplett.org> |
8b58be88 | 9775 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
981c3a4f | 9776 | L: linux-kernel@vger.kernel.org |
f9094d8e | 9777 | S: Supported |
08deed1e | 9778 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da | 9779 | F: Documentation/RCU/torture.txt |
34e2d560 | 9780 | F: kernel/rcu/rcutorture.c |
e2d1d6c0 | 9781 | |
c87b9c60 PM |
9782 | RCUTORTURE TEST FRAMEWORK |
9783 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
ab0afd6c | 9784 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
9785 | R: Steven Rostedt <rostedt@goodmis.org> |
9786 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
96a39bc4 | 9787 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
981c3a4f | 9788 | L: linux-kernel@vger.kernel.org |
c87b9c60 PM |
9789 | S: Supported |
9790 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
9791 | F: tools/testing/selftests/rcutorture | |
9792 | ||
c1f766b5 | 9793 | RDC R-321X SoC |
8b58be88 | 9794 | M: Florian Fainelli <florian@openwrt.org> |
c1f766b5 FF |
9795 | S: Maintained |
9796 | ||
db17f395 | 9797 | RDC R6040 FAST ETHERNET DRIVER |
35566e96 | 9798 | M: Florian Fainelli <f.fainelli@gmail.com> |
db17f395 FF |
9799 | L: netdev@vger.kernel.org |
9800 | S: Maintained | |
58565a35 | 9801 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 9802 | |
a09ed661 | 9803 | RDS - RELIABLE DATAGRAM SOCKETS |
72f26eee | 9804 | M: Santosh Shilimkar <santosh.shilimkar@oracle.com> |
9805 | L: netdev@vger.kernel.org | |
9806 | L: linux-rdma@vger.kernel.org | |
fbb5a558 | 9807 | L: rds-devel@oss.oracle.com (moderated for non-subscribers) |
72f26eee | 9808 | W: https://oss.oracle.com/projects/rds/ |
a09ed661 | 9809 | S: Supported |
679655da | 9810 | F: net/rds/ |
72f26eee | 9811 | F: Documentation/networking/rds.txt |
a09ed661 | 9812 | |
0194621b DD |
9813 | RDMAVT - RDMA verbs software |
9814 | M: Dennis Dalessandro <dennis.dalessandro@intel.com> | |
9815 | L: linux-rdma@vger.kernel.org | |
9816 | S: Supported | |
9817 | F: drivers/infiniband/sw/rdmavt | |
9818 | ||
595182bc | 9819 | READ-COPY UPDATE (RCU) |
8b58be88 | 9820 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
ab0afd6c | 9821 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
9822 | R: Steven Rostedt <rostedt@goodmis.org> |
9823 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
96a39bc4 | 9824 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
981c3a4f | 9825 | L: linux-kernel@vger.kernel.org |
9fab9787 | 9826 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 9827 | S: Supported |
08deed1e | 9828 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 9829 | F: Documentation/RCU/ |
9fab9787 | 9830 | X: Documentation/RCU/torture.txt |
f9094d8e | 9831 | F: include/linux/rcu* |
4102adab PM |
9832 | X: include/linux/srcu.h |
9833 | F: kernel/rcu/ | |
34e2d560 | 9834 | X: kernel/torture.c |
595182bc | 9835 | |
0c86edc0 | 9836 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 9837 | M: Alessandro Zummo <a.zummo@towertech.it> |
7c6f84f8 | 9838 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
76465493 | 9839 | L: rtc-linux@googlegroups.com |
8a6e2535 | 9840 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
4733f397 | 9841 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git |
0c86edc0 | 9842 | S: Maintained |
7af6a2e1 | 9843 | F: Documentation/devicetree/bindings/rtc/ |
679655da JP |
9844 | F: Documentation/rtc.txt |
9845 | F: drivers/rtc/ | |
9846 | F: include/linux/rtc.h | |
c117ab84 | 9847 | F: include/uapi/linux/rtc.h |
fe23c336 AB |
9848 | F: include/linux/rtc/ |
9849 | F: include/linux/platform_data/rtc-* | |
9850 | F: tools/testing/selftests/timers/rtctest.c | |
0c86edc0 | 9851 | |
0e400c53 MB |
9852 | REALTEK AUDIO CODECS |
9853 | M: Bard Liao <bardliao@realtek.com> | |
9854 | M: Oder Chiou <oder_chiou@realtek.com> | |
9855 | S: Maintained | |
9856 | F: sound/soc/codecs/rt* | |
9857 | F: include/sound/rt*.h | |
9858 | ||
1da177e4 | 9859 | REISERFS FILE SYSTEM |
76c4e5ea | 9860 | L: reiserfs-devel@vger.kernel.org |
1da177e4 | 9861 | S: Supported |
679655da | 9862 | F: fs/reiserfs/ |
1da177e4 | 9863 | |
b83a313b | 9864 | REGISTER MAP ABSTRACTION |
b02e48f2 | 9865 | M: Mark Brown <broonie@kernel.org> |
dd060bc9 | 9866 | L: linux-kernel@vger.kernel.org |
b83a313b MB |
9867 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
9868 | S: Supported | |
9398a639 | 9869 | F: Documentation/devicetree/bindings/regmap/ |
b83a313b MB |
9870 | F: drivers/base/regmap/ |
9871 | F: include/linux/regmap.h | |
9872 | ||
400e64df OBC |
9873 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
9874 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
69ae9895 | 9875 | M: Bjorn Andersson <bjorn.andersson@linaro.org> |
d7586849 | 9876 | L: linux-remoteproc@vger.kernel.org |
6bb697b6 | 9877 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df | 9878 | S: Maintained |
15ebc72d | 9879 | F: Documentation/devicetree/bindings/remoteproc/ |
400e64df | 9880 | F: Documentation/remoteproc.txt |
15ebc72d | 9881 | F: drivers/remoteproc/ |
6fc26488 | 9882 | F: include/linux/remoteproc.h |
400e64df | 9883 | |
d8115db5 OBC |
9884 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
9885 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
69ae9895 | 9886 | M: Bjorn Andersson <bjorn.andersson@linaro.org> |
d7586849 | 9887 | L: linux-remoteproc@vger.kernel.org |
d8115db5 OBC |
9888 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git |
9889 | S: Maintained | |
9890 | F: drivers/rpmsg/ | |
9891 | F: Documentation/rpmsg.txt | |
9892 | F: include/linux/rpmsg.h | |
9893 | ||
8e6569af SS |
9894 | RENESAS ETHERNET DRIVERS |
9895 | R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> | |
9896 | L: netdev@vger.kernel.org | |
4a121096 | 9897 | L: linux-renesas-soc@vger.kernel.org |
8e6569af SS |
9898 | F: drivers/net/ethernet/renesas/ |
9899 | F: include/linux/sh_eth.h | |
9900 | ||
3e46c397 YS |
9901 | RENESAS USB2 PHY DRIVER |
9902 | M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> | |
4a121096 | 9903 | L: linux-renesas-soc@vger.kernel.org |
3e46c397 YS |
9904 | S: Maintained |
9905 | F: drivers/phy/phy-rcar-gen3-usb2.c | |
9906 | ||
1b0fe6be PZ |
9907 | RESET CONTROLLER FRAMEWORK |
9908 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
9f273c24 | 9909 | T: git git://git.pengutronix.de/git/pza/linux |
1b0fe6be PZ |
9910 | S: Maintained |
9911 | F: drivers/reset/ | |
9912 | F: Documentation/devicetree/bindings/reset/ | |
b2f6dd7b | 9913 | F: include/dt-bindings/reset/ |
1b0fe6be PZ |
9914 | F: include/linux/reset.h |
9915 | F: include/linux/reset-controller.h | |
9916 | ||
e0897645 | 9917 | RFKILL |
8b58be88 | 9918 | M: Johannes Berg <johannes@sipsolutions.net> |
19d337df | 9919 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
9920 | W: http://wireless.kernel.org/ |
9921 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
9922 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 9923 | S: Maintained |
505c9247 | 9924 | F: Documentation/rfkill.txt |
80811493 | 9925 | F: net/rfkill/ |
e0897645 | 9926 | |
933685ca TG |
9927 | RHASHTABLE |
9928 | M: Thomas Graf <tgraf@suug.ch> | |
9929 | L: netdev@vger.kernel.org | |
9930 | S: Maintained | |
9931 | F: lib/rhashtable.c | |
9932 | F: include/linux/rhashtable.h | |
9933 | ||
67e054e9 ML |
9934 | RICOH SMARTMEDIA/XD DRIVER |
9935 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
9936 | S: Maintained | |
21c26f50 JP |
9937 | F: drivers/mtd/nand/r852.c |
9938 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 9939 | |
92634125 ML |
9940 | RICOH R5C592 MEMORYSTICK DRIVER |
9941 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
9942 | S: Maintained | |
9943 | F: drivers/memstick/host/r592.* | |
9944 | ||
27f1d2f9 SA |
9945 | ROCCAT DRIVERS |
9946 | M: Stefan Achatz <erazor_de@users.sourceforge.net> | |
9947 | W: http://sourceforge.net/projects/roccat/ | |
9948 | S: Maintained | |
9949 | F: drivers/hid/hid-roccat* | |
9950 | F: include/linux/hid-roccat* | |
9951 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* | |
9952 | ||
4b8ac966 JP |
9953 | ROCKER DRIVER |
9954 | M: Jiri Pirko <jiri@resnulli.us> | |
4b8ac966 JP |
9955 | L: netdev@vger.kernel.org |
9956 | S: Supported | |
9957 | F: drivers/net/ethernet/rocker/ | |
9958 | ||
1da177e4 LT |
9959 | ROCKETPORT DRIVER |
9960 | P: Comtrol Corp. | |
1da177e4 LT |
9961 | W: http://www.comtrol.com |
9962 | S: Maintained | |
679655da | 9963 | F: Documentation/serial/rocket.txt |
c897401b | 9964 | F: drivers/tty/rocket* |
1da177e4 | 9965 | |
7645c2f4 KC |
9966 | ROCKETPORT EXPRESS/INFINITY DRIVER |
9967 | M: Kevin Cernekee <cernekee@gmail.com> | |
9968 | L: linux-serial@vger.kernel.org | |
9969 | S: Odd Fixes | |
9970 | F: drivers/tty/serial/rp2.* | |
9971 | ||
1da177e4 | 9972 | ROSE NETWORK LAYER |
8b58be88 | 9973 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 9974 | L: linux-hams@vger.kernel.org |
d34cb28a | 9975 | W: http://www.linux-ax25.org/ |
1da177e4 | 9976 | S: Maintained |
679655da | 9977 | F: include/net/rose.h |
c117ab84 | 9978 | F: include/uapi/linux/rose.h |
679655da | 9979 | F: net/rose/ |
1da177e4 | 9980 | |
91952bc0 AP |
9981 | RTL2830 MEDIA DRIVER |
9982 | M: Antti Palosaari <crope@iki.fi> | |
9983 | L: linux-media@vger.kernel.org | |
a825eaec | 9984 | W: https://linuxtv.org |
91952bc0 AP |
9985 | W: http://palosaari.fi/linux/ |
9986 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9987 | T: git git://linuxtv.org/anttip/media_tree.git | |
9988 | S: Maintained | |
9989 | F: drivers/media/dvb-frontends/rtl2830* | |
9990 | ||
27a0aacf AP |
9991 | RTL2832 MEDIA DRIVER |
9992 | M: Antti Palosaari <crope@iki.fi> | |
9993 | L: linux-media@vger.kernel.org | |
a825eaec | 9994 | W: https://linuxtv.org |
27a0aacf AP |
9995 | W: http://palosaari.fi/linux/ |
9996 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9997 | T: git git://linuxtv.org/anttip/media_tree.git | |
9998 | S: Maintained | |
9999 | F: drivers/media/dvb-frontends/rtl2832* | |
10000 | ||
ba6e6f6e AP |
10001 | RTL2832_SDR MEDIA DRIVER |
10002 | M: Antti Palosaari <crope@iki.fi> | |
10003 | L: linux-media@vger.kernel.org | |
a825eaec | 10004 | W: https://linuxtv.org |
ba6e6f6e AP |
10005 | W: http://palosaari.fi/linux/ |
10006 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10007 | T: git git://linuxtv.org/anttip/media_tree.git | |
10008 | S: Maintained | |
b4bb1c28 | 10009 | F: drivers/media/dvb-frontends/rtl2832_sdr* |
ba6e6f6e | 10010 | |
59840488 | 10011 | RTL8180 WIRELESS DRIVER |
605bebe2 | 10012 | L: linux-wireless@vger.kernel.org |
491b26b4 | 10013 | W: http://wireless.kernel.org/ |
54e5881d | 10014 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7be6ff65 | 10015 | S: Orphan |
62141726 | 10016 | F: drivers/net/wireless/realtek/rtl818x/rtl8180/ |
605bebe2 | 10017 | |
59840488 | 10018 | RTL8187 WIRELESS DRIVER |
9f0939bf | 10019 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
8b58be88 JP |
10020 | M: Hin-Tak Leung <htl10@users.sourceforge.net> |
10021 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
7d2c86b5 | 10022 | L: linux-wireless@vger.kernel.org |
491b26b4 | 10023 | W: http://wireless.kernel.org/ |
54e5881d | 10024 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 10025 | S: Maintained |
62141726 | 10026 | F: drivers/net/wireless/realtek/rtl818x/rtl8187/ |
59840488 | 10027 | |
3cf0c8ad LF |
10028 | RTL8192CE WIRELESS DRIVER |
10029 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
10030 | M: Chaoming Li <chaoming_li@realsil.com.cn> | |
10031 | L: linux-wireless@vger.kernel.org | |
491b26b4 | 10032 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
10033 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
10034 | S: Maintained | |
62141726 KV |
10035 | F: drivers/net/wireless/realtek/rtlwifi/ |
10036 | F: drivers/net/wireless/realtek/rtlwifi/rtl8192ce/ | |
59840488 | 10037 | |
26f1fad2 JS |
10038 | RTL8XXXU WIRELESS DRIVER (rtl8xxxu) |
10039 | M: Jes Sorensen <Jes.Sorensen@redhat.com> | |
10040 | L: linux-wireless@vger.kernel.org | |
171a900c | 10041 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel |
26f1fad2 JS |
10042 | S: Maintained |
10043 | F: drivers/net/wireless/realtek/rtl8xxxu/ | |
10044 | ||
9eb8ef74 | 10045 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 10046 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 10047 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 10048 | S: Maintained |
8a61f013 | 10049 | F: drivers/video/fbdev/savage/ |
9eb8ef74 | 10050 | |
1da177e4 | 10051 | S390 |
8b58be88 JP |
10052 | M: Martin Schwidefsky <schwidefsky@de.ibm.com> |
10053 | M: Heiko Carstens <heiko.carstens@de.ibm.com> | |
d58140cc | 10054 | L: linux-s390@vger.kernel.org |
5238da45 | 10055 | W: http://www.ibm.com/developerworks/linux/linux390/ |
9f273c24 | 10056 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git |
5238da45 | 10057 | S: Supported |
679655da | 10058 | F: arch/s390/ |
a968cd3e | 10059 | F: drivers/s390/ |
3bfe6858 JN |
10060 | F: Documentation/s390/ |
10061 | F: Documentation/DocBook/s390* | |
5238da45 | 10062 | |
322986ca SO |
10063 | S390 COMMON I/O LAYER |
10064 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
10065 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
10066 | L: linux-s390@vger.kernel.org | |
10067 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10068 | S: Supported | |
10069 | F: drivers/s390/cio/ | |
10070 | ||
10071 | S390 DASD DRIVER | |
10072 | M: Stefan Weinhuber <wein@de.ibm.com> | |
10073 | M: Stefan Haberland <stefan.haberland@de.ibm.com> | |
10074 | L: linux-s390@vger.kernel.org | |
10075 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10076 | S: Supported | |
10077 | F: drivers/s390/block/dasd* | |
10078 | F: block/partitions/ibm.c | |
10079 | ||
5238da45 | 10080 | S390 NETWORK DRIVERS |
f0c59aff | 10081 | M: Ursula Braun <ubraun@linux.vnet.ibm.com> |
d58140cc | 10082 | L: linux-s390@vger.kernel.org |
5238da45 HC |
10083 | W: http://www.ibm.com/developerworks/linux/linux390/ |
10084 | S: Supported | |
679655da | 10085 | F: drivers/s390/net/ |
5238da45 | 10086 | |
322986ca SO |
10087 | S390 PCI SUBSYSTEM |
10088 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
10089 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> | |
10090 | L: linux-s390@vger.kernel.org | |
10091 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10092 | S: Supported | |
10093 | F: arch/s390/pci/ | |
10094 | F: drivers/pci/hotplug/s390_pci_hpc.c | |
10095 | ||
feed9b62 | 10096 | S390 ZCRYPT DRIVER |
5c8d0983 | 10097 | M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com> |
feed9b62 | 10098 | L: linux-s390@vger.kernel.org |
a968cd3e | 10099 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 10100 | S: Supported |
d5ca6918 | 10101 | F: drivers/s390/crypto/ |
feed9b62 | 10102 | |
5238da45 | 10103 | S390 ZFCP DRIVER |
d38e19d0 | 10104 | M: Steffen Maier <maier@linux.vnet.ibm.com> |
d58140cc | 10105 | L: linux-s390@vger.kernel.org |
5238da45 | 10106 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 10107 | S: Supported |
679655da | 10108 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 10109 | |
dd96df2c | 10110 | S390 IUCV NETWORK LAYER |
f0c59aff | 10111 | M: Ursula Braun <ubraun@linux.vnet.ibm.com> |
dd96df2c UB |
10112 | L: linux-s390@vger.kernel.org |
10113 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10114 | S: Supported | |
679655da JP |
10115 | F: drivers/s390/net/*iucv* |
10116 | F: include/net/iucv/ | |
10117 | F: net/iucv/ | |
dd96df2c | 10118 | |
8128f23c GS |
10119 | S390 IOMMU (PCI) |
10120 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> | |
10121 | L: linux-s390@vger.kernel.org | |
10122 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10123 | S: Supported | |
10124 | F: drivers/iommu/s390-iommu.c | |
10125 | ||
4dde7f75 | 10126 | S3C24XX SD/MMC Driver |
8b58be88 | 10127 | M: Ben Dooks <ben-linux@fluff.org> |
efc03ecb | 10128 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4dde7f75 | 10129 | S: Supported |
679655da | 10130 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 10131 | |
1f15a229 HV |
10132 | SAA6588 RDS RECEIVER DRIVER |
10133 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10134 | L: linux-media@vger.kernel.org | |
10135 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10136 | W: https://linuxtv.org |
1f15a229 HV |
10137 | S: Odd Fixes |
10138 | F: drivers/media/i2c/saa6588* | |
10139 | ||
98ed12e6 | 10140 | SAA7134 VIDEO4LINUX DRIVER |
5dc8a864 MCC |
10141 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
10142 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
98ed12e6 | 10143 | L: linux-media@vger.kernel.org |
a825eaec | 10144 | W: https://linuxtv.org |
98ed12e6 MCC |
10145 | T: git git://linuxtv.org/media_tree.git |
10146 | S: Odd fixes | |
e42bf501 | 10147 | F: Documentation/video4linux/*.saa7134 |
98ed12e6 MCC |
10148 | F: drivers/media/pci/saa7134/ |
10149 | ||
1da177e4 | 10150 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 10151 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 10152 | L: linux-media@vger.kernel.org |
275ffde4 | 10153 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 10154 | S: Maintained |
90d72ac6 MCC |
10155 | F: drivers/media/common/saa7146/ |
10156 | F: drivers/media/pci/saa7146/ | |
10157 | F: include/media/saa7146* | |
1da177e4 | 10158 | |
92304a40 | 10159 | SAMSUNG LAPTOP DRIVER |
5909c654 | 10160 | M: Corentin Chary <corentin.chary@gmail.com> |
92304a40 CC |
10161 | L: platform-driver-x86@vger.kernel.org |
10162 | S: Maintained | |
10163 | F: drivers/platform/x86/samsung-laptop.c | |
10164 | ||
4a109cc0 | 10165 | SAMSUNG AUDIO (ASoC) DRIVERS |
09a01028 | 10166 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> |
250b6851 | 10167 | M: Sangbeom Kim <sbkim73@samsung.com> |
09a01028 | 10168 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
4a109cc0 MB |
10169 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
10170 | S: Supported | |
14430813 | 10171 | F: sound/soc/samsung/ |
4a109cc0 | 10172 | |
0d89a28b | 10173 | SAMSUNG FRAMEBUFFER DRIVER |
b7701755 | 10174 | M: Jingoo Han <jingoohan1@gmail.com> |
0d89a28b JH |
10175 | L: linux-fbdev@vger.kernel.org |
10176 | S: Maintained | |
8a61f013 | 10177 | F: drivers/video/fbdev/s3c-fb.c |
0d89a28b | 10178 | |
b40f0632 | 10179 | SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS |
f69d3a17 | 10180 | M: Sangbeom Kim <sbkim73@samsung.com> |
b40f0632 | 10181 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> |
f69d3a17 | 10182 | L: linux-kernel@vger.kernel.org |
b40f0632 | 10183 | L: linux-samsung-soc@vger.kernel.org |
f69d3a17 SK |
10184 | S: Supported |
10185 | F: drivers/mfd/sec*.c | |
10186 | F: drivers/regulator/s2m*.c | |
10187 | F: drivers/regulator/s5m*.c | |
b40f0632 KK |
10188 | F: drivers/clk/clk-s2mps11.c |
10189 | F: drivers/rtc/rtc-s5m.c | |
f69d3a17 | 10190 | F: include/linux/mfd/samsung/ |
a13c7c51 KK |
10191 | F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt |
10192 | F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt | |
27383ca9 | 10193 | F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt |
a13c7c51 | 10194 | F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt |
f69d3a17 | 10195 | |
038f5c4b SN |
10196 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
10197 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
10198 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> | |
10199 | L: linux-media@vger.kernel.org | |
10200 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
10201 | S: Supported | |
10202 | F: drivers/media/platform/exynos4-is/ | |
038f5c4b | 10203 | |
6fd86ab2 SN |
10204 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
10205 | M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com> | |
10206 | L: linux-media@vger.kernel.org | |
10207 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
10208 | S: Maintained | |
10209 | F: drivers/media/platform/s3c-camif/ | |
d647f0b7 | 10210 | F: include/media/drv-intf/s3c_camif.h |
6fd86ab2 | 10211 | |
b84ef24e AH |
10212 | SAMSUNG S5C73M3 CAMERA DRIVER |
10213 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
10214 | M: Andrzej Hajda <a.hajda@samsung.com> | |
10215 | L: linux-media@vger.kernel.org | |
10216 | S: Supported | |
10217 | F: drivers/media/i2c/s5c73m3/* | |
10218 | ||
7d459937 AH |
10219 | SAMSUNG S5K5BAF CAMERA DRIVER |
10220 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
10221 | M: Andrzej Hajda <a.hajda@samsung.com> | |
10222 | L: linux-media@vger.kernel.org | |
10223 | S: Supported | |
10224 | F: drivers/media/i2c/s5k5baf.c | |
10225 | ||
c04c674f RB |
10226 | SAMSUNG S3FWRN5 NFC DRIVER |
10227 | M: Robert Baldyga <r.baldyga@samsung.com> | |
079c2652 | 10228 | M: Krzysztof Opasiak <k.opasiak@samsung.com> |
c04c674f RB |
10229 | L: linux-nfc@lists.01.org (moderated for non-subscribers) |
10230 | S: Supported | |
10231 | F: drivers/nfc/s3fwrn5 | |
10232 | ||
310e39c9 | 10233 | SAMSUNG SOC CLOCK DRIVERS |
fea685e9 TF |
10234 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
10235 | M: Tomasz Figa <tomasz.figa@gmail.com> | |
310e39c9 TF |
10236 | S: Supported |
10237 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
10238 | F: drivers/clk/samsung/ | |
10239 | ||
66890ed6 BA |
10240 | SAMSUNG SXGBE DRIVERS |
10241 | M: Byungho An <bh74.an@samsung.com> | |
10242 | M: Girish K S <ks.giri@samsung.com> | |
66890ed6 BA |
10243 | M: Vipul Pandya <vipul.pandya@samsung.com> |
10244 | S: Supported | |
10245 | L: netdev@vger.kernel.org | |
10246 | F: drivers/net/ethernet/samsung/sxgbe/ | |
10247 | ||
93c537af LM |
10248 | SAMSUNG THERMAL DRIVER |
10249 | M: Lukasz Majewski <l.majewski@samsung.com> | |
10250 | L: linux-pm@vger.kernel.org | |
10251 | L: linux-samsung-soc@vger.kernel.org | |
10252 | S: Supported | |
9f273c24 | 10253 | T: git https://github.com/lmajewski/linux-samsung-thermal.git |
93c537af LM |
10254 | F: drivers/thermal/samsung/ |
10255 | ||
e296cd32 | 10256 | SAMSUNG USB2 PHY DRIVER |
774e0362 KD |
10257 | M: Kamil Debski <kamil@wypas.org> |
10258 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> | |
e296cd32 KD |
10259 | L: linux-kernel@vger.kernel.org |
10260 | S: Supported | |
10261 | F: Documentation/devicetree/bindings/phy/samsung-phy.txt | |
10262 | F: Documentation/phy/samsung-usb2.txt | |
10263 | F: drivers/phy/phy-exynos4210-usb2.c | |
10264 | F: drivers/phy/phy-exynos4x12-usb2.c | |
10265 | F: drivers/phy/phy-exynos5250-usb2.c | |
10266 | F: drivers/phy/phy-s5pv210-usb2.c | |
10267 | F: drivers/phy/phy-samsung-usb2.c | |
10268 | F: drivers/phy/phy-samsung-usb2.h | |
10269 | ||
ca749e2a | 10270 | SERIAL DRIVERS |
5e30bbb7 | 10271 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
ca749e2a | 10272 | L: linux-serial@vger.kernel.org |
5e30bbb7 | 10273 | S: Maintained |
30743257 | 10274 | F: Documentation/devicetree/bindings/serial/ |
14430813 | 10275 | F: drivers/tty/serial/ |
ca749e2a | 10276 | |
aecb7b64 | 10277 | SYNOPSYS DESIGNWARE DMAC DRIVER |
da89947b | 10278 | M: Viresh Kumar <vireshk@kernel.org> |
337ae47c | 10279 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
aecb7b64 | 10280 | S: Maintained |
1fb200d6 | 10281 | F: include/linux/dma/dw.h |
3d598f47 | 10282 | F: include/linux/platform_data/dma-dw.h |
61a76496 | 10283 | F: drivers/dma/dw/ |
aecb7b64 | 10284 | |
058999cc LP |
10285 | SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver |
10286 | M: Lars Persson <lars.persson@axis.com> | |
10287 | L: netdev@vger.kernel.org | |
10288 | S: Supported | |
10289 | F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt | |
10290 | F: drivers/net/ethernet/synopsys/dwc_eth_qos.c | |
10291 | ||
fc531d98 | 10292 | SYNOPSYS DESIGNWARE I2C DRIVER |
fc531d98 | 10293 | M: Jarkko Nikula <jarkko.nikula@linux.intel.com> |
d0781b98 AS |
10294 | R: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
10295 | R: Mika Westerberg <mika.westerberg@linux.intel.com> | |
fc531d98 WS |
10296 | L: linux-i2c@vger.kernel.org |
10297 | S: Maintained | |
10298 | F: drivers/i2c/busses/i2c-designware-* | |
10299 | F: include/linux/platform_data/i2c-designware.h | |
10300 | ||
f9e37137 | 10301 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
f9e37137 SJ |
10302 | M: Jaehoon Chung <jh80.chung@samsung.com> |
10303 | L: linux-mmc@vger.kernel.org | |
10304 | S: Maintained | |
10305 | F: include/linux/mmc/dw_mmc.h | |
10306 | F: drivers/mmc/host/dw_mmc* | |
10307 | ||
a961e698 AS |
10308 | SYSTEM TRACE MODULE CLASS |
10309 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> | |
10310 | S: Maintained | |
e787bc46 | 10311 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git |
a961e698 AS |
10312 | F: Documentation/trace/stm.txt |
10313 | F: drivers/hwtracing/stm/ | |
10314 | F: include/linux/stm.h | |
10315 | F: include/uapi/linux/stm.h | |
10316 | ||
1db121d6 AN |
10317 | THUNDERBOLT DRIVER |
10318 | M: Andreas Noever <andreas.noever@gmail.com> | |
10319 | S: Maintained | |
10320 | F: drivers/thunderbolt/ | |
10321 | ||
e35a49b1 SR |
10322 | TI BQ27XXX POWER SUPPLY DRIVER |
10323 | R: Andrew F. Davis <afd@ti.com> | |
10324 | F: include/linux/power/bq27xxx_battery.h | |
10325 | F: drivers/power/bq27xxx_battery.c | |
10326 | F: drivers/power/bq27xxx_battery_i2c.c | |
10327 | ||
34db37c6 | 10328 | TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER |
50363737 | 10329 | M: John Stultz <john.stultz@linaro.org> |
88606e80 | 10330 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 10331 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 10332 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
10333 | S: Supported |
10334 | F: include/linux/clocksource.h | |
10335 | F: include/linux/time.h | |
10336 | F: include/linux/timex.h | |
c117ab84 CEB |
10337 | F: include/uapi/linux/time.h |
10338 | F: include/uapi/linux/timex.h | |
88606e80 TG |
10339 | F: kernel/time/clocksource.c |
10340 | F: kernel/time/time*.c | |
34db37c6 | 10341 | F: kernel/time/alarmtimer.c |
88606e80 | 10342 | F: kernel/time/ntp.c |
7fe5f1c1 | 10343 | F: tools/testing/selftests/timers/ |
88606e80 | 10344 | |
1da177e4 | 10345 | SC1200 WDT DRIVER |
b300645a | 10346 | M: Zwane Mwaikambo <zwanem@gmail.com> |
1da177e4 | 10347 | S: Maintained |
679655da | 10348 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
10349 | |
10350 | SCHEDULER | |
dd9b238c | 10351 | M: Ingo Molnar <mingo@redhat.com> |
8b58be88 | 10352 | M: Peter Zijlstra <peterz@infradead.org> |
981c3a4f | 10353 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 10354 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 10355 | S: Maintained |
95c0d71d | 10356 | F: kernel/sched/ |
679655da | 10357 | F: include/linux/sched.h |
c117ab84 | 10358 | F: include/uapi/linux/sched.h |
c2eb505b | 10359 | F: include/linux/wait.h |
1da177e4 | 10360 | |
6bcf6737 | 10361 | SCORE ARCHITECTURE |
ed38665e | 10362 | M: Chen Liqin <liqin.linux@gmail.com> |
a2681a75 | 10363 | M: Lennox Wu <lennox.wu@gmail.com> |
ed38665e | 10364 | W: http://www.sunplus.com |
6bcf6737 | 10365 | S: Supported |
a2681a75 | 10366 | F: arch/score/ |
6bcf6737 | 10367 | |
80f390ea SH |
10368 | SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers |
10369 | M: Sudeep Holla <sudeep.holla@arm.com> | |
10370 | L: linux-arm-kernel@lists.infradead.org | |
10371 | S: Maintained | |
10372 | F: Documentation/devicetree/bindings/arm/arm,scpi.txt | |
cd52c2a4 | 10373 | F: drivers/clk/clk-scpi.c |
8def3103 | 10374 | F: drivers/cpufreq/scpi-cpufreq.c |
8cb7cf56 SH |
10375 | F: drivers/firmware/arm_scpi.c |
10376 | F: include/linux/scpi_protocol.h | |
80f390ea | 10377 | |
1da177e4 | 10378 | SCSI CDROM DRIVER |
8b58be88 | 10379 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
10380 | L: linux-scsi@vger.kernel.org |
10381 | W: http://www.kernel.dk | |
10382 | S: Maintained | |
679655da | 10383 | F: drivers/scsi/sr* |
1da177e4 | 10384 | |
fb50a83d | 10385 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
3453bddb | 10386 | M: Bart Van Assche <bart.vanassche@sandisk.com> |
fb50a83d RD |
10387 | L: linux-rdma@vger.kernel.org |
10388 | S: Supported | |
10389 | W: http://www.openfabrics.org | |
10390 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
10391 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
10392 | F: drivers/infiniband/ulp/srp/ | |
10393 | F: include/scsi/srp.h | |
10394 | ||
1da177e4 | 10395 | SCSI SG DRIVER |
8b58be88 | 10396 | M: Doug Gilbert <dgilbert@interlog.com> |
1da177e4 | 10397 | L: linux-scsi@vger.kernel.org |
59ab3c93 | 10398 | W: http://sg.danny.cz/sg |
1da177e4 | 10399 | S: Maintained |
59ab3c93 | 10400 | F: Documentation/scsi/scsi-generic.txt |
679655da JP |
10401 | F: drivers/scsi/sg.c |
10402 | F: include/scsi/sg.h | |
1da177e4 LT |
10403 | |
10404 | SCSI SUBSYSTEM | |
7ee7895c | 10405 | M: "James E.J. Bottomley" <jejb@linux.vnet.ibm.com> |
0351b8f8 | 10406 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git |
f4ab421b MP |
10407 | M: "Martin K. Petersen" <martin.petersen@oracle.com> |
10408 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git | |
10409 | L: linux-scsi@vger.kernel.org | |
1da177e4 | 10410 | S: Maintained |
2c99a314 | 10411 | F: Documentation/devicetree/bindings/scsi/ |
679655da JP |
10412 | F: drivers/scsi/ |
10413 | F: include/scsi/ | |
1da177e4 LT |
10414 | |
10415 | SCSI TAPE DRIVER | |
8b58be88 | 10416 | M: Kai Mäkisara <Kai.Makisara@kolumbus.fi> |
1da177e4 LT |
10417 | L: linux-scsi@vger.kernel.org |
10418 | S: Maintained | |
679655da | 10419 | F: Documentation/scsi/st.txt |
f7269cfc JD |
10420 | F: drivers/scsi/st.* |
10421 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
10422 | |
10423 | SCTP PROTOCOL | |
8b6efb75 | 10424 | M: Vlad Yasevich <vyasevich@gmail.com> |
02c38d0a | 10425 | M: Neil Horman <nhorman@tuxdriver.com> |
1a418796 | 10426 | L: linux-sctp@vger.kernel.org |
5f85813c | 10427 | W: http://lksctp.sourceforge.net |
8b6efb75 | 10428 | S: Maintained |
679655da JP |
10429 | F: Documentation/networking/sctp.txt |
10430 | F: include/linux/sctp.h | |
4d58c025 | 10431 | F: include/uapi/linux/sctp.h |
679655da JP |
10432 | F: include/net/sctp/ |
10433 | F: net/sctp/ | |
1da177e4 LT |
10434 | |
10435 | SCx200 CPU SUPPORT | |
8b58be88 | 10436 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 10437 | S: Odd Fixes |
679655da | 10438 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 10439 | F: arch/x86/platform/scx200/ |
679655da JP |
10440 | F: drivers/watchdog/scx200_wdt.c |
10441 | F: drivers/i2c/busses/scx200* | |
10442 | F: drivers/mtd/maps/scx200_docflash.c | |
10443 | F: include/linux/scx200.h | |
1662d32c JC |
10444 | |
10445 | SCx200 GPIO DRIVER | |
8b58be88 | 10446 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 10447 | S: Maintained |
679655da JP |
10448 | F: drivers/char/scx200_gpio.c |
10449 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
10450 | |
10451 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 10452 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 10453 | S: Maintained |
679655da | 10454 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 10455 | |
6a36913a | 10456 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 10457 | M: Sascha Sommer <saschasommer@freenet.de> |
6a36913a SS |
10458 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
10459 | S: Maintained | |
679655da | 10460 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 10461 | |
e7839f25 | 10462 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
ddfe954d | 10463 | M: Adrian Hunter <adrian.hunter@intel.com> |
7a241d6e | 10464 | L: linux-mmc@vger.kernel.org |
ddfe954d UH |
10465 | T: git git://git.infradead.org/users/ahunter/linux-sdhci.git |
10466 | S: Maintained | |
10467 | F: drivers/mmc/host/sdhci* | |
10468 | F: include/linux/mmc/sdhci* | |
e2d1d6c0 | 10469 | |
c04f9d61 KC |
10470 | SECURE COMPUTING |
10471 | M: Kees Cook <keescook@chromium.org> | |
a0cfd75f KC |
10472 | R: Andy Lutomirski <luto@amacapital.net> |
10473 | R: Will Drewry <wad@chromium.org> | |
c04f9d61 KC |
10474 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp |
10475 | S: Supported | |
10476 | F: kernel/seccomp.c | |
10477 | F: include/uapi/linux/seccomp.h | |
10478 | F: include/linux/seccomp.h | |
c99ee51a | 10479 | F: tools/testing/selftests/seccomp/* |
c04f9d61 KC |
10480 | K: \bsecure_computing |
10481 | K: \bTIF_SECCOMP\b | |
10482 | ||
476bf3d6 AC |
10483 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER |
10484 | M: Al Cooper <alcooperx@gmail.com> | |
10485 | L: linux-mmc@vger.kernel.org | |
10486 | L: bcm-kernel-feedback-list@broadcom.com | |
10487 | S: Maintained | |
10488 | F: drivers/mmc/host/sdhci-brcmstb* | |
10489 | ||
0d1bb41a | 10490 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 10491 | M: Ben Dooks <ben-linux@fluff.org> |
dc524882 | 10492 | M: Jaehoon Chung <jh80.chung@samsung.com> |
7a241d6e | 10493 | L: linux-mmc@vger.kernel.org |
0d1bb41a | 10494 | S: Maintained |
dc524882 | 10495 | F: drivers/mmc/host/sdhci-s3c* |
0d1bb41a | 10496 | |
c63b3cba | 10497 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
da89947b | 10498 | M: Viresh Kumar <vireshk@kernel.org> |
c63b3cba VK |
10499 | L: linux-mmc@vger.kernel.org |
10500 | S: Maintained | |
10501 | F: drivers/mmc/host/sdhci-spear.c | |
10502 | ||
8711cca2 | 10503 | SECURITY SUBSYSTEM |
9b45c0d2 | 10504 | M: James Morris <james.l.morris@oracle.com> |
9c3646d1 | 10505 | M: "Serge E. Hallyn" <serge@hallyn.com> |
8711cca2 | 10506 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
89879a7e | 10507 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 10508 | W: http://kernsec.org/ |
8711cca2 | 10509 | S: Supported |
7d2c86b5 | 10510 | F: security/ |
8711cca2 | 10511 | |
1da177e4 | 10512 | SECURITY CONTACT |
8b58be88 | 10513 | M: Security Officers <security@kernel.org> |
1da177e4 LT |
10514 | S: Supported |
10515 | ||
10516 | SELINUX SECURITY MODULE | |
e0238b4c | 10517 | M: Paul Moore <paul@paul-moore.com> |
8b58be88 | 10518 | M: Stephen Smalley <sds@tycho.nsa.gov> |
8b58be88 | 10519 | M: Eric Paris <eparis@parisplace.org> |
e0238b4c | 10520 | L: selinux@tycho.nsa.gov (moderated for non-subscribers) |
f058925b | 10521 | W: http://selinuxproject.org |
5a5f2acf | 10522 | T: git git://git.infradead.org/users/pcmoore/selinux |
1da177e4 | 10523 | S: Supported |
679655da JP |
10524 | F: include/linux/selinux* |
10525 | F: security/selinux/ | |
6bde95ce | 10526 | F: scripts/selinux/ |
1da177e4 | 10527 | |
c1c124e9 JJ |
10528 | APPARMOR SECURITY MODULE |
10529 | M: John Johansen <john.johansen@canonical.com> | |
10530 | L: apparmor@lists.ubuntu.com (subscribers-only, general discussion) | |
10531 | W: apparmor.wiki.kernel.org | |
10532 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
10533 | S: Supported | |
10534 | F: security/apparmor/ | |
10535 | ||
9b091556 KC |
10536 | LOADPIN SECURITY MODULE |
10537 | M: Kees Cook <keescook@chromium.org> | |
10538 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin | |
10539 | S: Supported | |
10540 | F: security/loadpin/ | |
10541 | ||
730daa16 KC |
10542 | YAMA SECURITY MODULE |
10543 | M: Kees Cook <keescook@chromium.org> | |
10544 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip | |
10545 | S: Supported | |
10546 | F: security/yama/ | |
10547 | ||
cef2cf07 | 10548 | SENSABLE PHANTOM |
8b58be88 | 10549 | M: Jiri Slaby <jirislaby@gmail.com> |
cef2cf07 | 10550 | S: Maintained |
679655da | 10551 | F: drivers/misc/phantom.c |
c117ab84 | 10552 | F: include/uapi/linux/phantom.h |
cef2cf07 | 10553 | |
6733b39a | 10554 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
4627de93 | 10555 | M: Jayamohan Kallickal <jayamohan.kallickal@avagotech.com> |
9d27e216 KM |
10556 | M: Ketan Mukadam <ketan.mukadam@avagotech.com> |
10557 | M: John Soni Jose <sony.john@avagotech.com> | |
3387f656 | 10558 | L: linux-scsi@vger.kernel.org |
4627de93 | 10559 | W: http://www.avagotech.com |
3387f656 JP |
10560 | S: Supported |
10561 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 10562 | |
d2ee76fa | 10563 | Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net) |
aa7b4537 SP |
10564 | M: Sathya Perla <sathya.perla@broadcom.com> |
10565 | M: Ajit Khaparde <ajit.khaparde@broadcom.com> | |
aa7b4537 SP |
10566 | M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com> |
10567 | M: Somnath Kotur <somnath.kotur@broadcom.com> | |
7d2c86b5 | 10568 | L: netdev@vger.kernel.org |
fea3af67 | 10569 | W: http://www.emulex.com |
7d2c86b5 | 10570 | S: Supported |
9aebddd1 | 10571 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 10572 | |
d2928a8c | 10573 | EMULEX ONECONNECT ROCE DRIVER |
2b8e7333 LN |
10574 | M: Selvin Xavier <selvin.xavier@avagotech.com> |
10575 | M: Devesh Sharma <devesh.sharma@avagotech.com> | |
10576 | M: Mitesh Ahuja <mitesh.ahuja@avagotech.com> | |
d2928a8c SX |
10577 | L: linux-rdma@vger.kernel.org |
10578 | W: http://www.emulex.com | |
10579 | S: Supported | |
10580 | F: drivers/infiniband/hw/ocrdma/ | |
10581 | ||
8ceee660 | 10582 | SFC NETWORK DRIVER |
c06f51ea | 10583 | M: Solarflare linux maintainers <linux-net-drivers@solarflare.com> |
e00f8017 BK |
10584 | M: Edward Cree <ecree@solarflare.com> |
10585 | M: Bert Kenward <bkenward@solarflare.com> | |
c06f51ea | 10586 | L: netdev@vger.kernel.org |
8ceee660 | 10587 | S: Supported |
874aeea5 | 10588 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 10589 | |
e2d1d6c0 | 10590 | SGI GRU DRIVER |
cc883afc | 10591 | M: Dimitri Sivanich <sivanich@sgi.com> |
e2d1d6c0 | 10592 | S: Maintained |
679655da | 10593 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
10594 | |
10595 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 10596 | M: Pat Gefre <pfg@sgi.com> |
e2d1d6c0 RD |
10597 | L: linux-ia64@vger.kernel.org |
10598 | S: Supported | |
679655da | 10599 | F: Documentation/ia64/serial.txt |
df621252 | 10600 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 10601 | F: include/linux/ioc?.h |
e2d1d6c0 | 10602 | |
75312619 | 10603 | SGI XP/XPC/XPNET DRIVER |
e180383f RH |
10604 | M: Cliff Whickman <cpw@sgi.com> |
10605 | M: Robin Holt <robinmholt@gmail.com> | |
75312619 | 10606 | S: Maintained |
679655da | 10607 | F: drivers/misc/sgi-xp/ |
75312619 | 10608 | |
46eacf3b AP |
10609 | SI2157 MEDIA DRIVER |
10610 | M: Antti Palosaari <crope@iki.fi> | |
10611 | L: linux-media@vger.kernel.org | |
a825eaec | 10612 | W: https://linuxtv.org |
46eacf3b AP |
10613 | W: http://palosaari.fi/linux/ |
10614 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10615 | T: git git://linuxtv.org/anttip/media_tree.git | |
10616 | S: Maintained | |
10617 | F: drivers/media/tuners/si2157* | |
10618 | ||
75e2d5ba AP |
10619 | SI2168 MEDIA DRIVER |
10620 | M: Antti Palosaari <crope@iki.fi> | |
10621 | L: linux-media@vger.kernel.org | |
a825eaec | 10622 | W: https://linuxtv.org |
75e2d5ba AP |
10623 | W: http://palosaari.fi/linux/ |
10624 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10625 | T: git git://linuxtv.org/anttip/media_tree.git | |
10626 | S: Maintained | |
10627 | F: drivers/media/dvb-frontends/si2168* | |
10628 | ||
49cc629d HV |
10629 | SI470X FM RADIO RECEIVER I2C DRIVER |
10630 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10631 | L: linux-media@vger.kernel.org | |
10632 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10633 | W: https://linuxtv.org |
49cc629d HV |
10634 | S: Odd Fixes |
10635 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
10636 | ||
10637 | SI470X FM RADIO RECEIVER USB DRIVER | |
10638 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10639 | L: linux-media@vger.kernel.org | |
10640 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10641 | W: https://linuxtv.org |
49cc629d HV |
10642 | S: Maintained |
10643 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
10644 | F: drivers/media/radio/si470x/radio-si470x.h | |
10645 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
10646 | ||
c937ca03 EV |
10647 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
10648 | M: Eduardo Valentin <edubezval@gmail.com> | |
10649 | L: linux-media@vger.kernel.org | |
10650 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10651 | W: https://linuxtv.org |
c937ca03 | 10652 | S: Odd Fixes |
99995ded | 10653 | F: drivers/media/radio/si4713/si4713.? |
c937ca03 EV |
10654 | |
10655 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
10656 | M: Eduardo Valentin <edubezval@gmail.com> | |
10657 | L: linux-media@vger.kernel.org | |
10658 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10659 | W: https://linuxtv.org |
c937ca03 | 10660 | S: Odd Fixes |
99995ded DR |
10661 | F: drivers/media/radio/si4713/radio-platform-si4713.c |
10662 | ||
10663 | SI4713 FM RADIO TRANSMITTER USB DRIVER | |
10664 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10665 | L: linux-media@vger.kernel.org | |
10666 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10667 | W: https://linuxtv.org |
99995ded DR |
10668 | S: Maintained |
10669 | F: drivers/media/radio/si4713/radio-usb-si4713.c | |
c937ca03 | 10670 | |
beb91d46 | 10671 | SIANO DVB DRIVER |
5dc8a864 MCC |
10672 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
10673 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
beb91d46 | 10674 | L: linux-media@vger.kernel.org |
a825eaec | 10675 | W: https://linuxtv.org |
beb91d46 MCC |
10676 | T: git git://linuxtv.org/media_tree.git |
10677 | S: Odd fixes | |
10678 | F: drivers/media/common/siano/ | |
beb91d46 | 10679 | F: drivers/media/usb/siano/ |
beb91d46 | 10680 | F: drivers/media/usb/siano/ |
14430813 | 10681 | F: drivers/media/mmc/siano/ |
beb91d46 | 10682 | |
6f15b602 HG |
10683 | SIMPLEFB FB DRIVER |
10684 | M: Hans de Goede <hdegoede@redhat.com> | |
10685 | L: linux-fbdev@vger.kernel.org | |
10686 | S: Maintained | |
2d799dde | 10687 | F: Documentation/devicetree/bindings/display/simple-framebuffer.txt |
6f15b602 HG |
10688 | F: drivers/video/fbdev/simplefb.c |
10689 | F: include/linux/platform_data/simplefb.h | |
10690 | ||
b618b69c | 10691 | SH_VEU V4L2 MEM2MEM DRIVER |
b618b69c | 10692 | L: linux-media@vger.kernel.org |
bb60fcb2 | 10693 | S: Orphan |
b618b69c | 10694 | F: drivers/media/platform/sh_veu.c |
b618b69c GL |
10695 | |
10696 | SH_VOU V4L2 OUTPUT DRIVER | |
b618b69c | 10697 | L: linux-media@vger.kernel.org |
bb60fcb2 | 10698 | S: Orphan |
b618b69c | 10699 | F: drivers/media/platform/sh_vou.c |
d647f0b7 | 10700 | F: include/media/drv-intf/sh_vou.h |
b618b69c | 10701 | |
6349d997 | 10702 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 10703 | M: Len Brown <lenb@kernel.org> |
6349d997 LB |
10704 | L: sfi-devel@simplefirmware.org |
10705 | W: http://simplefirmware.org/ | |
10706 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 10707 | S: Supported |
943fc810 | 10708 | F: arch/x86/platform/sfi/ |
6349d997 LB |
10709 | F: drivers/sfi/ |
10710 | F: include/linux/sfi*.h | |
e2d1d6c0 | 10711 | |
1da177e4 LT |
10712 | SIMTEC EB110ATX (Chalice CATS) |
10713 | P: Ben Dooks | |
b16957c6 BD |
10714 | P: Vincent Sanders <vince@simtec.co.uk> |
10715 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
10716 | W: http://www.simtec.co.uk/products/EB110ATX/ |
10717 | S: Supported | |
10718 | ||
10719 | SIMTEC EB2410ITX (BAST) | |
10720 | P: Ben Dooks | |
b16957c6 BD |
10721 | P: Vincent Sanders <vince@simtec.co.uk> |
10722 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
10723 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
10724 | S: Supported | |
15dba387 JP |
10725 | F: arch/arm/mach-s3c24xx/mach-bast.c |
10726 | F: arch/arm/mach-s3c24xx/bast-ide.c | |
10727 | F: arch/arm/mach-s3c24xx/bast-irq.c | |
1da177e4 | 10728 | |
4c5adde7 | 10729 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 | 10730 | M: Sekhar Nori <nsekhar@ti.com> |
3cf2efd5 | 10731 | M: Kevin Hilman <khilman@kernel.org> |
42c031df SN |
10732 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
10733 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git | |
4c5adde7 | 10734 | S: Supported |
14430813 | 10735 | F: arch/arm/mach-davinci/ |
046d0a37 | 10736 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 10737 | |
8d4b3f08 | 10738 | TI DAVINCI SERIES MEDIA DRIVER |
e43cdb56 | 10739 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
8d4b3f08 | 10740 | L: linux-media@vger.kernel.org |
a825eaec | 10741 | W: https://linuxtv.org |
8d4b3f08 LP |
10742 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
10743 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9ce5eca7 | 10744 | S: Maintained |
8d4b3f08 LP |
10745 | F: drivers/media/platform/davinci/ |
10746 | F: include/media/davinci/ | |
10747 | ||
417d2e50 | 10748 | TI AM437X VPFE DRIVER |
e43cdb56 | 10749 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
417d2e50 | 10750 | L: linux-media@vger.kernel.org |
a825eaec | 10751 | W: https://linuxtv.org |
417d2e50 BP |
10752 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
10753 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
10754 | S: Maintained | |
10755 | F: drivers/media/platform/am437x/ | |
10756 | ||
c4c0283a | 10757 | OV2659 OMNIVISION SENSOR DRIVER |
e43cdb56 | 10758 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
c4c0283a | 10759 | L: linux-media@vger.kernel.org |
a825eaec | 10760 | W: https://linuxtv.org |
c4c0283a BP |
10761 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
10762 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
10763 | S: Maintained | |
10764 | F: drivers/media/i2c/ov2659.c | |
b5dcee22 | 10765 | F: include/media/i2c/ov2659.h |
c4c0283a | 10766 | |
3a6779f5 SM |
10767 | SILICON MOTION SM712 FRAME BUFFER DRIVER |
10768 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
10769 | M: Teddy Wang <teddy.wang@siliconmotion.com> | |
10770 | M: Sudip Mukherjee <sudip@vectorindia.org> | |
10771 | L: linux-fbdev@vger.kernel.org | |
10772 | S: Maintained | |
10773 | F: drivers/video/fbdev/sm712* | |
10774 | F: Documentation/fb/sm712fb.txt | |
10775 | ||
92aab3c0 | 10776 | SIS 190 ETHERNET DRIVER |
8b58be88 | 10777 | M: Francois Romieu <romieu@fr.zoreil.com> |
92aab3c0 FR |
10778 | L: netdev@vger.kernel.org |
10779 | S: Maintained | |
8c7de408 | 10780 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 10781 | |
1da177e4 | 10782 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 10783 | M: Daniele Venzano <venza@brownhat.org> |
1da177e4 | 10784 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 10785 | L: netdev@vger.kernel.org |
1da177e4 | 10786 | S: Maintained |
8c7de408 | 10787 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
10788 | |
10789 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 10790 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 | 10791 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 10792 | S: Maintained |
679655da | 10793 | F: Documentation/fb/sisfb.txt |
8a61f013 | 10794 | F: drivers/video/fbdev/sis/ |
679655da | 10795 | F: include/video/sisfb.h |
1da177e4 LT |
10796 | |
10797 | SIS USB2VGA DRIVER | |
8b58be88 | 10798 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 LT |
10799 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
10800 | S: Maintained | |
679655da | 10801 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 10802 | |
415ad26d | 10803 | SLAB ALLOCATOR |
16e943bf | 10804 | M: Christoph Lameter <cl@linux.com> |
2ed1c525 | 10805 | M: Pekka Enberg <penberg@kernel.org> |
16e943bf CL |
10806 | M: David Rientjes <rientjes@google.com> |
10807 | M: Joonsoo Kim <iamjoonsoo.kim@lge.com> | |
10808 | M: Andrew Morton <akpm@linux-foundation.org> | |
415ad26d CL |
10809 | L: linux-mm@kvack.org |
10810 | S: Maintained | |
679655da | 10811 | F: include/linux/sl?b*.h |
16e943bf | 10812 | F: mm/sl?b* |
415ad26d | 10813 | |
9fab9787 | 10814 | SLEEPABLE READ-COPY UPDATE (SRCU) |
96a39bc4 | 10815 | M: Lai Jiangshan <jiangshanlai@gmail.com> |
9fab9787 | 10816 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
ab0afd6c | 10817 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
10818 | R: Steven Rostedt <rostedt@goodmis.org> |
10819 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
981c3a4f | 10820 | L: linux-kernel@vger.kernel.org |
9fab9787 PM |
10821 | W: http://www.rdrop.com/users/paulmck/RCU/ |
10822 | S: Supported | |
10823 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
4102adab PM |
10824 | F: include/linux/srcu.h |
10825 | F: kernel/rcu/srcu.c | |
9fab9787 | 10826 | |
66372841 CS |
10827 | SMACK SECURITY MODULE |
10828 | M: Casey Schaufler <casey@schaufler-ca.com> | |
10829 | L: linux-security-module@vger.kernel.org | |
10830 | W: http://schaufler-ca.com | |
ece38248 | 10831 | T: git git://github.com/cschaufler/smack-next |
66372841 CS |
10832 | S: Maintained |
10833 | F: Documentation/security/Smack.txt | |
10834 | F: security/smack/ | |
10835 | ||
20651e0b | 10836 | DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
68ace3e1 KH |
10837 | M: Kevin Hilman <khilman@kernel.org> |
10838 | M: Nishanth Menon <nm@ti.com> | |
10839 | S: Maintained | |
20651e0b | 10840 | F: drivers/power/avs/ |
68ace3e1 KH |
10841 | F: include/linux/power/smartreflex.h |
10842 | L: linux-pm@vger.kernel.org | |
10843 | ||
1da177e4 | 10844 | SMC91x ETHERNET DRIVER |
2f82af08 | 10845 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 10846 | S: Odd Fixes |
ae150435 | 10847 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 10848 | |
e8e31622 SA |
10849 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
10850 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
10851 | L: linux-media@vger.kernel.org | |
10852 | S: Maintained | |
14430813 | 10853 | F: drivers/media/i2c/smiapp/ |
b5dcee22 | 10854 | F: include/media/i2c/smiapp.h |
e8e31622 SA |
10855 | F: drivers/media/i2c/smiapp-pll.c |
10856 | F: drivers/media/i2c/smiapp-pll.h | |
fd2bfdc8 | 10857 | F: include/uapi/linux/smiapp.h |
a2cec3c0 | 10858 | F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt |
e8e31622 | 10859 | |
920fa1ff GR |
10860 | SMM665 HARDWARE MONITOR DRIVER |
10861 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 10862 | L: linux-hwmon@vger.kernel.org |
920fa1ff GR |
10863 | S: Maintained |
10864 | F: Documentation/hwmon/smm665 | |
10865 | F: drivers/hwmon/smm665.c | |
10866 | ||
9df7305b | 10867 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 10868 | M: Steve Glendinning <steve.glendinning@shawell.net> |
968ce1b1 | 10869 | L: linux-hwmon@vger.kernel.org |
90b24cfb | 10870 | S: Maintained |
9df7305b SG |
10871 | F: Documentation/hwmon/emc2103 |
10872 | F: drivers/hwmon/emc2103.c | |
10873 | ||
a98d506c HG |
10874 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
10875 | M: Hans de Goede <hdegoede@redhat.com> | |
968ce1b1 | 10876 | L: linux-hwmon@vger.kernel.org |
a98d506c HG |
10877 | S: Supported |
10878 | F: Documentation/hwmon/sch5627 | |
10879 | F: drivers/hwmon/sch5627.c | |
10880 | ||
6ea884db | 10881 | SMSC47B397 HARDWARE MONITOR DRIVER |
d8130624 | 10882 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 10883 | L: linux-hwmon@vger.kernel.org |
6ea884db | 10884 | S: Maintained |
679655da JP |
10885 | F: Documentation/hwmon/smsc47b397 |
10886 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 10887 | |
fd9abb3d | 10888 | SMSC911x ETHERNET DRIVER |
90b24cfb | 10889 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2cb37728 | 10890 | L: netdev@vger.kernel.org |
90b24cfb | 10891 | S: Maintained |
679655da | 10892 | F: include/linux/smsc911x.h |
ae150435 | 10893 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
10894 | |
10895 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 10896 | M: Steve Glendinning <steve.glendinning@shawell.net> |
fd9abb3d | 10897 | L: netdev@vger.kernel.org |
90b24cfb | 10898 | S: Maintained |
ae150435 | 10899 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 10900 | |
3c8a63e2 | 10901 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 10902 | M: Steve Glendinning <steve.glendinning@shawell.net> |
3c8a63e2 | 10903 | L: linux-fbdev@vger.kernel.org |
90b24cfb | 10904 | S: Maintained |
8a61f013 | 10905 | F: drivers/video/fbdev/smscufx.c |
3c8a63e2 | 10906 | |
668acf32 | 10907 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 10908 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
661263b5 | 10909 | L: linux-media@vger.kernel.org |
275ffde4 | 10910 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 10911 | S: Maintained |
90d72ac6 MCC |
10912 | F: include/media/soc* |
10913 | F: drivers/media/i2c/soc_camera/ | |
10914 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 10915 | |
e2d1d6c0 | 10916 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 10917 | M: Chris Boot <bootc@bootc.net> |
e2d1d6c0 | 10918 | S: Maintained |
679655da | 10919 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 10920 | |
e3994db1 | 10921 | SOFTLOGIC 6x10 MPEG CODEC |
9661975d AU |
10922 | M: Bluecherry Maintainers <maintainers@bluecherrydvr.com> |
10923 | M: Andrey Utkin <andrey.utkin@corp.bluecherry.net> | |
10924 | M: Andrey Utkin <andrey.krieger.utkin@gmail.com> | |
1f141f6b | 10925 | M: Ismael Luceno <ismael@iodev.co.uk> |
e3994db1 JP |
10926 | L: linux-media@vger.kernel.org |
10927 | S: Supported | |
10928 | F: drivers/media/pci/solo6x10/ | |
10929 | ||
1da177e4 | 10930 | SOFTWARE RAID (Multiple Disks) SUPPORT |
c2f662eb | 10931 | M: Shaohua Li <shli@kernel.org> |
1da177e4 | 10932 | L: linux-raid@vger.kernel.org |
0f9ce866 | 10933 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git |
524418bb | 10934 | S: Supported |
679655da JP |
10935 | F: drivers/md/ |
10936 | F: include/linux/raid/ | |
c117ab84 | 10937 | F: include/uapi/linux/raid/ |
1da177e4 | 10938 | |
1da177e4 | 10939 | SONIC NETWORK DRIVER |
8b58be88 | 10940 | M: Thomas Bogendoerfer <tsbogend@alpha.franken.de> |
979b6c13 | 10941 | L: netdev@vger.kernel.org |
1da177e4 | 10942 | S: Maintained |
d9fb9f38 | 10943 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 10944 | |
61e115a5 | 10945 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 10946 | M: Michael Buesch <m@bues.ch> |
e7828b28 | 10947 | L: linux-wireless@vger.kernel.org |
61e115a5 | 10948 | S: Maintained |
679655da JP |
10949 | F: drivers/ssb/ |
10950 | F: include/linux/ssb/ | |
61e115a5 | 10951 | |
1da177e4 | 10952 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 10953 | M: Mattia Dongili <malattia@linux.it> |
d0944853 | 10954 | L: platform-driver-x86@vger.kernel.org |
5b18167d | 10955 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 10956 | S: Maintained |
679655da JP |
10957 | F: Documentation/laptops/sony-laptop.txt |
10958 | F: drivers/char/sonypi.c | |
10959 | F: drivers/platform/x86/sony-laptop.c | |
10960 | F: include/linux/sony-laptop.h | |
1da177e4 | 10961 | |
baf8532a | 10962 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 10963 | M: Alex Dubov <oakad@yahoo.com> |
baf8532a AD |
10964 | W: http://tifmxx.berlios.de/ |
10965 | S: Maintained | |
679655da | 10966 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 10967 | |
0ab30494 ML |
10968 | SONY MEMORYSTICK STANDARD SUPPORT |
10969 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
10970 | S: Maintained | |
10971 | F: drivers/memstick/core/ms_block.* | |
10972 | ||
1da177e4 | 10973 | SOUND |
8b58be88 | 10974 | M: Jaroslav Kysela <perex@perex.cz> |
d8130624 | 10975 | M: Takashi Iwai <tiwai@suse.com> |
93711660 | 10976 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
3126a179 | 10977 | W: http://www.alsa-project.org/ |
dde7ad8d | 10978 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 10979 | T: git git://git.alsa-project.org/alsa-kernel.git |
ff4a8f32 | 10980 | Q: http://patchwork.kernel.org/project/alsa-devel/list/ |
1da177e4 | 10981 | S: Maintained |
3126a179 JP |
10982 | F: Documentation/sound/ |
10983 | F: include/sound/ | |
c117ab84 | 10984 | F: include/uapi/sound/ |
679655da | 10985 | F: sound/ |
1da177e4 | 10986 | |
33bbe149 MB |
10987 | SOUND - COMPRESSED AUDIO |
10988 | M: Vinod Koul <vinod.koul@intel.com> | |
10989 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
10990 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git | |
10991 | S: Supported | |
f672f31a | 10992 | F: Documentation/sound/alsa/compress_offload.txt |
33bbe149 | 10993 | F: include/sound/compress_driver.h |
f672f31a | 10994 | F: include/uapi/sound/compress_* |
33bbe149 MB |
10995 | F: sound/core/compress_offload.c |
10996 | F: sound/soc/soc-compress.c | |
10997 | ||
bd903bde | 10998 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 10999 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 11000 | M: Mark Brown <broonie@kernel.org> |
86f14df8 | 11001 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 11002 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
b0b8daf7 | 11003 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 11004 | S: Supported |
181ad2a5 | 11005 | F: Documentation/devicetree/bindings/sound/ |
2820f615 | 11006 | F: Documentation/sound/alsa/soc/ |
679655da | 11007 | F: sound/soc/ |
e6e55122 | 11008 | F: include/sound/soc* |
eb1a6af3 | 11009 | |
d7f8761b MB |
11010 | SOUND - DMAENGINE HELPERS |
11011 | M: Lars-Peter Clausen <lars@metafoo.de> | |
11012 | S: Supported | |
11013 | F: include/sound/dmaengine_pcm.h | |
11014 | F: sound/core/pcm_dmaengine.c | |
11015 | F: sound/soc/soc-generic-dmaengine-pcm.c | |
11016 | ||
990a6a99 OS |
11017 | SP2 MEDIA DRIVER |
11018 | M: Olli Salonen <olli.salonen@iki.fi> | |
11019 | L: linux-media@vger.kernel.org | |
a825eaec | 11020 | W: https://linuxtv.org |
990a6a99 OS |
11021 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
11022 | S: Maintained | |
11023 | F: drivers/media/dvb-frontends/sp2* | |
11024 | ||
473321fc | 11025 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 11026 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 11027 | L: sparclinux@vger.kernel.org |
8a6e2535 | 11028 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
11029 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
11030 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 11031 | S: Maintained |
679655da | 11032 | F: arch/sparc/ |
7765b8bb | 11033 | F: drivers/sbus/ |
1da177e4 | 11034 | |
6404fcca DM |
11035 | SPARC SERIAL DRIVERS |
11036 | M: "David S. Miller" <davem@davemloft.net> | |
11037 | L: sparclinux@vger.kernel.org | |
08deed1e JP |
11038 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
11039 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 11040 | S: Maintained |
6816383a | 11041 | F: include/linux/sunserialcore.h |
df621252 | 11042 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
11043 | F: drivers/tty/serial/sunhv.c |
11044 | F: drivers/tty/serial/sunsab.c | |
11045 | F: drivers/tty/serial/sunsab.h | |
11046 | F: drivers/tty/serial/sunsu.c | |
11047 | F: drivers/tty/serial/sunzilog.c | |
11048 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 11049 | |
389325b4 CL |
11050 | SPARSE CHECKER |
11051 | M: "Christopher Li" <sparse@chrisli.org> | |
11052 | L: linux-sparse@vger.kernel.org | |
11053 | W: https://sparse.wiki.kernel.org/ | |
11054 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
11055 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
11056 | S: Maintained | |
11057 | F: include/linux/compiler.h | |
11058 | ||
fc0c195a | 11059 | SPEAR PLATFORM SUPPORT |
da89947b | 11060 | M: Viresh Kumar <vireshk@kernel.org> |
9cc23682 | 11061 | M: Shiraz Hashim <shiraz.linux.kernel@gmail.com> |
fbfa0748 | 11062 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
fc0c195a VK |
11063 | W: http://www.st.com/spear |
11064 | S: Maintained | |
e68d7c14 | 11065 | F: arch/arm/boot/dts/spear* |
281e192f | 11066 | F: arch/arm/mach-spear/ |
fc0c195a VK |
11067 | |
11068 | SPEAR CLOCK FRAMEWORK SUPPORT | |
da89947b | 11069 | M: Viresh Kumar <vireshk@kernel.org> |
fbfa0748 | 11070 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
fc0c195a VK |
11071 | W: http://www.st.com/spear |
11072 | S: Maintained | |
5df33a62 | 11073 | F: drivers/clk/spear/ |
fc0c195a | 11074 | |
e2d1d6c0 | 11075 | SPI SUBSYSTEM |
b02e48f2 | 11076 | M: Mark Brown <broonie@kernel.org> |
dfbe403c | 11077 | L: linux-spi@vger.kernel.org |
e7e4e13c | 11078 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 11079 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 11080 | S: Maintained |
87306eb7 | 11081 | F: Documentation/devicetree/bindings/spi/ |
679655da JP |
11082 | F: Documentation/spi/ |
11083 | F: drivers/spi/ | |
11084 | F: include/linux/spi/ | |
c117ab84 | 11085 | F: include/uapi/linux/spi/ |
e2d1d6c0 | 11086 | |
2752e401 | 11087 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 | 11088 | M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp> |
2752e401 JL |
11089 | L: netdev@vger.kernel.org |
11090 | S: Supported | |
679655da | 11091 | F: Documentation/networking/spider_net.txt |
8df158ac | 11092 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 11093 | |
e2d1d6c0 | 11094 | SPU FILE SYSTEM |
8b58be88 | 11095 | M: Jeremy Kerr <jk@ozlabs.org> |
a4724ed6 | 11096 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 RD |
11097 | W: http://www.ibm.com/developerworks/power/cell/ |
11098 | S: Supported | |
679655da JP |
11099 | F: Documentation/filesystems/spufs.txt |
11100 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 11101 | |
fc555841 | 11102 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 11103 | M: Phillip Lougher <phillip@squashfs.org.uk> |
fc555841 PL |
11104 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
11105 | W: http://squashfs.org.uk | |
9f273c24 | 11106 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git |
fc555841 | 11107 | S: Maintained |
679655da JP |
11108 | F: Documentation/filesystems/squashfs.txt |
11109 | F: fs/squashfs/ | |
fc555841 | 11110 | |
1da177e4 | 11111 | SRM (Alpha) environment access |
8b58be88 | 11112 | M: Jan-Benedict Glaw <jbglaw@lug-owl.de> |
1da177e4 | 11113 | S: Maintained |
679655da | 11114 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 11115 | |
26e9a397 | 11116 | STABLE BRANCH |
879a5a00 | 11117 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
bc7a2f3a | 11118 | L: stable@vger.kernel.org |
879a5a00 | 11119 | S: Supported |
7b175c46 | 11120 | F: Documentation/stable_kernel_rules.txt |
e2d1d6c0 | 11121 | |
26e9a397 | 11122 | STAGING SUBSYSTEM |
879a5a00 | 11123 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
630081fd | 11124 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 11125 | L: devel@driverdev.osuosl.org |
879a5a00 | 11126 | S: Supported |
679655da | 11127 | F: drivers/staging/ |
dbc6c2cc | 11128 | |
ebd3d010 JP |
11129 | STAGING - COMEDI |
11130 | M: Ian Abbott <abbotti@mev.co.uk> | |
81b884c9 | 11131 | M: H Hartley Sweeten <hsweeten@visionengravers.com> |
ebd3d010 JP |
11132 | S: Odd Fixes |
11133 | F: drivers/staging/comedi/ | |
11134 | ||
a0138163 JP |
11135 | STAGING - FLARION FT1000 DRIVERS |
11136 | M: Marek Belisko <marek.belisko@gmail.com> | |
11137 | S: Odd Fixes | |
11138 | F: drivers/staging/ft1000/ | |
11139 | ||
6c1bb424 | 11140 | STAGING - INDUSTRIAL IO |
030a13d7 | 11141 | M: Jonathan Cameron <jic23@kernel.org> |
a0138163 | 11142 | L: linux-iio@vger.kernel.org |
6c1bb424 | 11143 | S: Odd Fixes |
5291582d | 11144 | F: Documentation/devicetree/bindings/staging/iio/ |
6c1bb424 JP |
11145 | F: drivers/staging/iio/ |
11146 | ||
a0138163 JP |
11147 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
11148 | M: Jarod Wilson <jarod@wilsonet.com> | |
11149 | W: http://www.lirc.org/ | |
11150 | S: Odd Fixes | |
b2b0186d | 11151 | F: drivers/staging/media/lirc/ |
a0138163 | 11152 | |
f5e5de1e OD |
11153 | STAGING - LUSTRE PARALLEL FILESYSTEM |
11154 | M: Oleg Drokin <oleg.drokin@intel.com> | |
11155 | M: Andreas Dilger <andreas.dilger@intel.com> | |
d98229f0 AD |
11156 | L: lustre-devel@lists.lustre.org (moderated for non-subscribers) |
11157 | W: http://wiki.lustre.org/ | |
f5e5de1e OD |
11158 | S: Maintained |
11159 | F: drivers/staging/lustre | |
11160 | ||
7c6b6c71 MD |
11161 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
11162 | M: Marc Dietrich <marvin24@gmx.de> | |
11163 | L: ac100@lists.launchpad.net (moderated for non-subscribers) | |
5d96bf4d | 11164 | L: linux-tegra@vger.kernel.org |
7c6b6c71 MD |
11165 | S: Maintained |
11166 | F: drivers/staging/nvec/ | |
11167 | ||
53c43c5c GKH |
11168 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
11169 | M: Jens Frederich <jfrederich@gmail.com> | |
11170 | M: Daniel Drake <dsd@laptop.org> | |
11171 | M: Jon Nettleton <jon.nettleton@gmail.com> | |
11172 | W: http://wiki.laptop.org/go/DCON | |
11173 | S: Maintained | |
11174 | F: drivers/staging/olpc_dcon/ | |
11175 | ||
a0138163 JP |
11176 | STAGING - REALTEK RTL8712U DRIVERS |
11177 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
11178 | M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>. | |
11179 | S: Odd Fixes | |
11180 | F: drivers/staging/rtl8712/ | |
11181 | ||
7591ba8b JS |
11182 | STAGING - REALTEK RTL8723U WIRELESS DRIVER |
11183 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
11184 | M: Jes Sorensen <Jes.Sorensen@redhat.com> | |
11185 | L: linux-wireless@vger.kernel.org | |
11186 | S: Maintained | |
11187 | F: drivers/staging/rtl8723au/ | |
11188 | ||
980ac4d7 SM |
11189 | STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER |
11190 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
11191 | M: Teddy Wang <teddy.wang@siliconmotion.com> | |
11192 | M: Sudip Mukherjee <sudip@vectorindia.org> | |
11193 | L: linux-fbdev@vger.kernel.org | |
11194 | S: Maintained | |
11195 | F: drivers/staging/sm750fb/ | |
11196 | ||
510fa408 JP |
11197 | STAGING - SLICOSS |
11198 | M: Lior Dotan <liodot@gmail.com> | |
11199 | M: Christopher Harrer <charrer@alacritech.com> | |
11200 | S: Odd Fixes | |
11201 | F: drivers/staging/slicoss/ | |
11202 | ||
a0138163 JP |
11203 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER |
11204 | M: William Hubbs <w.d.hubbs@gmail.com> | |
11205 | M: Chris Brannon <chris@the-brannons.com> | |
d33bce31 | 11206 | M: Kirk Reiser <kirk@reisers.ca> |
a0138163 | 11207 | M: Samuel Thibault <samuel.thibault@ens-lyon.org> |
e6a152ef | 11208 | L: speakup@linux-speakup.org |
a0138163 JP |
11209 | W: http://www.linux-speakup.org/ |
11210 | S: Odd Fixes | |
11211 | F: drivers/staging/speakup/ | |
11212 | ||
b3e871ce JP |
11213 | STAGING - VIA VT665X DRIVERS |
11214 | M: Forest Bond <forest@alittletooquiet.net> | |
11215 | S: Odd Fixes | |
11216 | F: drivers/staging/vt665?/ | |
11217 | ||
a30baec1 JK |
11218 | STAGING - WILC1000 WIFI DRIVER |
11219 | M: Johnny Kim <johnny.kim@atmel.com> | |
0c9dbce8 | 11220 | M: Austin Shin <austin.shin@atmel.com> |
a30baec1 | 11221 | M: Chris Park <chris.park@atmel.com> |
06b54863 TC |
11222 | M: Tony Cho <tony.cho@atmel.com> |
11223 | M: Glen Lee <glen.lee@atmel.com> | |
11224 | M: Leo Kim <leo.kim@atmel.com> | |
a30baec1 JK |
11225 | L: linux-wireless@vger.kernel.org |
11226 | S: Supported | |
11227 | F: drivers/staging/wilc1000/ | |
11228 | ||
709bcb07 | 11229 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 11230 | M: Arnaud Patard <arnaud.patard@rtp-net.org> |
709bcb07 JP |
11231 | S: Odd Fixes |
11232 | F: drivers/staging/xgifb/ | |
11233 | ||
1da177e4 | 11234 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 11235 | M: Ion Badulescu <ionut@badula.org> |
b4f90189 | 11236 | S: Odd Fixes |
9bba23b0 | 11237 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 11238 | |
e2d1d6c0 | 11239 | SUN3/3X |
8b58be88 | 11240 | M: Sam Creasey <sammy@sammy.net> |
e2d1d6c0 RD |
11241 | W: http://sammy.net/sun3/ |
11242 | S: Maintained | |
679655da JP |
11243 | F: arch/m68k/kernel/*sun3* |
11244 | F: arch/m68k/sun3*/ | |
11245 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 11246 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 11247 | |
af6a5af8 HG |
11248 | SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER |
11249 | M: Hans de Goede <hdegoede@redhat.com> | |
11250 | L: linux-input@vger.kernel.org | |
11251 | S: Maintained | |
11252 | F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt | |
11253 | F: drivers/input/keyboard/sun4i-lradc-keys.c | |
11254 | ||
2bc9ff01 DK |
11255 | SUNDANCE NETWORK DRIVER |
11256 | M: Denis Kirjanov <kda@linux-powerpc.org> | |
11257 | L: netdev@vger.kernel.org | |
11258 | S: Maintained | |
11259 | F: drivers/net/ethernet/dlink/sundance.c | |
11260 | ||
2cbb12a4 | 11261 | SUPERH |
114bf37e RF |
11262 | M: Yoshinori Sato <ysato@users.sourceforge.jp> |
11263 | M: Rich Felker <dalias@libc.org> | |
2cbb12a4 | 11264 | L: linux-sh@vger.kernel.org |
8a6e2535 | 11265 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
114bf37e | 11266 | S: Maintained |
066069e1 | 11267 | F: Documentation/sh/ |
679655da | 11268 | F: arch/sh/ |
066069e1 | 11269 | F: drivers/sh/ |
1da177e4 | 11270 | |
4480f15b | 11271 | SUSPEND TO RAM |
7fb06082 | 11272 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
8b58be88 JP |
11273 | M: Len Brown <len.brown@intel.com> |
11274 | M: Pavel Machek <pavel@ucw.cz> | |
bf1c138e | 11275 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 11276 | S: Supported |
679655da JP |
11277 | F: Documentation/power/ |
11278 | F: arch/x86/kernel/acpi/ | |
11279 | F: drivers/base/power/ | |
11280 | F: kernel/power/ | |
11281 | F: include/linux/suspend.h | |
11282 | F: include/linux/freezer.h | |
11283 | F: include/linux/pm.h | |
1da177e4 LT |
11284 | |
11285 | SVGA HANDLING | |
8b58be88 | 11286 | M: Martin Mares <mj@ucw.cz> |
1da177e4 LT |
11287 | L: linux-video@atrey.karlin.mff.cuni.cz |
11288 | S: Maintained | |
679655da JP |
11289 | F: Documentation/svga.txt |
11290 | F: arch/x86/boot/video* | |
1da177e4 | 11291 | |
6e28b761 KRW |
11292 | SWIOTLB SUBSYSTEM |
11293 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11294 | L: linux-kernel@vger.kernel.org | |
9f273c24 | 11295 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git |
6e28b761 KRW |
11296 | S: Supported |
11297 | F: lib/swiotlb.c | |
11298 | F: arch/*/kernel/pci-swiotlb.c | |
11299 | F: include/linux/swiotlb.h | |
11300 | ||
007f790c JP |
11301 | SWITCHDEV |
11302 | M: Jiri Pirko <jiri@resnulli.us> | |
11303 | L: netdev@vger.kernel.org | |
11304 | S: Supported | |
11305 | F: net/switchdev/ | |
11306 | F: include/net/switchdev.h | |
11307 | ||
db8e35d5 VG |
11308 | SYNOPSYS ARC ARCHITECTURE |
11309 | M: Vineet Gupta <vgupta@synopsys.com> | |
30b9dbee | 11310 | L: linux-snps-arc@lists.infradead.org |
db8e35d5 VG |
11311 | S: Supported |
11312 | F: arch/arc/ | |
9b28829d | 11313 | F: Documentation/devicetree/bindings/arc/* |
2d799dde | 11314 | F: Documentation/devicetree/bindings/interrupt-controller/snps,arc* |
c6a0fe4a | 11315 | F: drivers/tty/serial/arc_uart.c |
b7182d1a | 11316 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git |
db8e35d5 | 11317 | |
556cc1c5 AB |
11318 | SYNOPSYS ARC SDP platform support |
11319 | M: Alexey Brodkin <abrodkin@synopsys.com> | |
11320 | S: Supported | |
11321 | F: arch/arc/plat-axs10x | |
11322 | F: arch/arc/boot/dts/ax* | |
11323 | F: Documentation/devicetree/bindings/arc/axs10* | |
11324 | ||
6c284c9a LJ |
11325 | SYSTEM CONFIGURATION (SYSCON) |
11326 | M: Lee Jones <lee.jones@linaro.org> | |
11327 | M: Arnd Bergmann <arnd@arndb.de> | |
11328 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git | |
11329 | S: Supported | |
11330 | F: drivers/mfd/syscon.c | |
11331 | ||
1da177e4 | 11332 | SYSV FILESYSTEM |
8b58be88 | 11333 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 | 11334 | S: Maintained |
679655da JP |
11335 | F: Documentation/filesystems/sysv-fs.txt |
11336 | F: fs/sysv/ | |
11337 | F: include/linux/sysv_fs.h | |
1da177e4 | 11338 | |
86cfa7fc | 11339 | TARGET SUBSYSTEM |
9c3646d1 | 11340 | M: "Nicholas A. Bellinger" <nab@linux-iscsi.org> |
86cfa7fc | 11341 | L: linux-scsi@vger.kernel.org |
b9f5edc2 | 11342 | L: target-devel@vger.kernel.org |
86cfa7fc | 11343 | W: http://www.linux-iscsi.org |
cf015e9f | 11344 | W: http://groups.google.com/group/linux-iscsi-target-dev |
452cf324 | 11345 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
11346 | S: Supported |
11347 | F: drivers/target/ | |
11348 | F: include/target/ | |
11349 | F: Documentation/target/ | |
11350 | ||
4e68852d | 11351 | TASKSTATS STATISTICS INTERFACE |
185e595f | 11352 | M: Balbir Singh <bsingharora@gmail.com> |
4e68852d | 11353 | S: Maintained |
679655da JP |
11354 | F: Documentation/accounting/taskstats* |
11355 | F: include/linux/taskstats* | |
11356 | F: kernel/taskstats.c | |
4e68852d | 11357 | |
781b456a | 11358 | TC CLASSIFIER |
f935f3f8 | 11359 | M: Jamal Hadi Salim <jhs@mojatatu.com> |
781b456a SH |
11360 | L: netdev@vger.kernel.org |
11361 | S: Maintained | |
679655da | 11362 | F: include/net/pkt_cls.h |
c117ab84 | 11363 | F: include/uapi/linux/pkt_cls.h |
679655da | 11364 | F: net/sched/ |
781b456a | 11365 | |
5067f08a | 11366 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
11367 | M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com> |
11368 | M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com> | |
5067f08a WHSE |
11369 | W: http://tcp-lp-mod.sourceforge.net/ |
11370 | S: Maintained | |
679655da | 11371 | F: net/ipv4/tcp_lp.c |
5067f08a | 11372 | |
91952bc0 AP |
11373 | TDA10071 MEDIA DRIVER |
11374 | M: Antti Palosaari <crope@iki.fi> | |
11375 | L: linux-media@vger.kernel.org | |
a825eaec | 11376 | W: https://linuxtv.org |
91952bc0 AP |
11377 | W: http://palosaari.fi/linux/ |
11378 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11379 | T: git git://linuxtv.org/anttip/media_tree.git | |
11380 | S: Maintained | |
11381 | F: drivers/media/dvb-frontends/tda10071* | |
11382 | ||
11383 | TDA18212 MEDIA DRIVER | |
11384 | M: Antti Palosaari <crope@iki.fi> | |
11385 | L: linux-media@vger.kernel.org | |
a825eaec | 11386 | W: https://linuxtv.org |
91952bc0 AP |
11387 | W: http://palosaari.fi/linux/ |
11388 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11389 | T: git git://linuxtv.org/anttip/media_tree.git | |
11390 | S: Maintained | |
11391 | F: drivers/media/tuners/tda18212* | |
11392 | ||
11393 | TDA18218 MEDIA DRIVER | |
11394 | M: Antti Palosaari <crope@iki.fi> | |
11395 | L: linux-media@vger.kernel.org | |
a825eaec | 11396 | W: https://linuxtv.org |
91952bc0 AP |
11397 | W: http://palosaari.fi/linux/ |
11398 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11399 | T: git git://linuxtv.org/anttip/media_tree.git | |
11400 | S: Maintained | |
11401 | F: drivers/media/tuners/tda18218* | |
11402 | ||
3b2f6aba MK |
11403 | TDA18271 MEDIA DRIVER |
11404 | M: Michael Krufky <mkrufky@linuxtv.org> | |
11405 | L: linux-media@vger.kernel.org | |
a825eaec | 11406 | W: https://linuxtv.org |
3b2f6aba MK |
11407 | W: http://github.com/mkrufky |
11408 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11409 | T: git git://linuxtv.org/mkrufky/tuners.git | |
11410 | S: Maintained | |
11411 | F: drivers/media/tuners/tda18271* | |
11412 | ||
e48307a9 MK |
11413 | TDA827x MEDIA DRIVER |
11414 | M: Michael Krufky <mkrufky@linuxtv.org> | |
11415 | L: linux-media@vger.kernel.org | |
a825eaec | 11416 | W: https://linuxtv.org |
e48307a9 MK |
11417 | W: http://github.com/mkrufky |
11418 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11419 | T: git git://linuxtv.org/mkrufky/tuners.git | |
11420 | S: Maintained | |
11421 | F: drivers/media/tuners/tda8290.* | |
11422 | ||
66cf9212 MK |
11423 | TDA8290 MEDIA DRIVER |
11424 | M: Michael Krufky <mkrufky@linuxtv.org> | |
11425 | L: linux-media@vger.kernel.org | |
a825eaec | 11426 | W: https://linuxtv.org |
66cf9212 MK |
11427 | W: http://github.com/mkrufky |
11428 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11429 | T: git git://linuxtv.org/mkrufky/tuners.git | |
11430 | S: Maintained | |
11431 | F: drivers/media/tuners/tda8290.* | |
11432 | ||
4b9fba30 HV |
11433 | TDA9840 MEDIA DRIVER |
11434 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11435 | L: linux-media@vger.kernel.org | |
11436 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11437 | W: https://linuxtv.org |
4b9fba30 HV |
11438 | S: Maintained |
11439 | F: drivers/media/i2c/tda9840* | |
11440 | ||
2cb654fd | 11441 | TEA5761 TUNER DRIVER |
5dc8a864 MCC |
11442 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
11443 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
2cb654fd | 11444 | L: linux-media@vger.kernel.org |
a825eaec | 11445 | W: https://linuxtv.org |
2cb654fd MCC |
11446 | T: git git://linuxtv.org/media_tree.git |
11447 | S: Odd fixes | |
11448 | F: drivers/media/tuners/tea5761.* | |
11449 | ||
11450 | TEA5767 TUNER DRIVER | |
5dc8a864 MCC |
11451 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
11452 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
2cb654fd | 11453 | L: linux-media@vger.kernel.org |
a825eaec | 11454 | W: https://linuxtv.org |
2cb654fd MCC |
11455 | T: git git://linuxtv.org/media_tree.git |
11456 | S: Maintained | |
11457 | F: drivers/media/tuners/tea5767.* | |
11458 | ||
4b9fba30 HV |
11459 | TEA6415C MEDIA DRIVER |
11460 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11461 | L: linux-media@vger.kernel.org | |
11462 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11463 | W: https://linuxtv.org |
4b9fba30 HV |
11464 | S: Maintained |
11465 | F: drivers/media/i2c/tea6415c* | |
11466 | ||
11467 | TEA6420 MEDIA DRIVER | |
11468 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11469 | L: linux-media@vger.kernel.org | |
11470 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11471 | W: https://linuxtv.org |
4b9fba30 HV |
11472 | S: Maintained |
11473 | F: drivers/media/i2c/tea6420* | |
11474 | ||
3d249d4c | 11475 | TEAM DRIVER |
dca9ab92 | 11476 | M: Jiri Pirko <jiri@resnulli.us> |
3d249d4c JP |
11477 | L: netdev@vger.kernel.org |
11478 | S: Supported | |
11479 | F: drivers/net/team/ | |
11480 | F: include/linux/if_team.h | |
c117ab84 | 11481 | F: include/uapi/linux/if_team.h |
3d249d4c | 11482 | |
7d029125 | 11483 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
9c3646d1 | 11484 | M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com> |
7d029125 VD |
11485 | S: Maintained |
11486 | F: arch/x86/platform/ts5500/ | |
11487 | ||
40ad4a30 SY |
11488 | TECHNOTREND USB IR RECEIVER |
11489 | M: Sean Young <sean@mess.org> | |
11490 | L: linux-media@vger.kernel.org | |
11491 | S: Maintained | |
11492 | F: drivers/media/rc/ttusbir.c | |
11493 | ||
adabdb0c | 11494 | TEGRA ARCHITECTURE SUPPORT |
243d58ec | 11495 | M: Stephen Warren <swarren@wwwdotorg.org> |
adabdb0c | 11496 | M: Thierry Reding <thierry.reding@gmail.com> |
554077c5 | 11497 | M: Alexandre Courbot <gnurou@gmail.com> |
84b9414b | 11498 | L: linux-tegra@vger.kernel.org |
fd117cd1 | 11499 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
b779b88d | 11500 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git |
84b9414b | 11501 | S: Supported |
bbbe96ed | 11502 | N: [^a-z]tegra |
84b9414b | 11503 | |
adabdb0c SW |
11504 | TEGRA CLOCK DRIVER |
11505 | M: Peter De Schrijver <pdeschrijver@nvidia.com> | |
11506 | M: Prashant Gaikwad <pgaikwad@nvidia.com> | |
11507 | S: Supported | |
11508 | F: drivers/clk/tegra/ | |
11509 | ||
86e486a0 | 11510 | TEGRA DMA DRIVERS |
adabdb0c | 11511 | M: Laxman Dewangan <ldewangan@nvidia.com> |
86e486a0 | 11512 | M: Jon Hunter <jonathanh@nvidia.com> |
adabdb0c | 11513 | S: Supported |
86e486a0 | 11514 | F: drivers/dma/tegra* |
adabdb0c | 11515 | |
adabdb0c SW |
11516 | TEGRA I2C DRIVER |
11517 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
11518 | S: Supported | |
11519 | F: drivers/i2c/busses/i2c-tegra.c | |
11520 | ||
11521 | TEGRA IOMMU DRIVERS | |
11522 | M: Hiroshi Doyu <hdoyu@nvidia.com> | |
11523 | S: Supported | |
11524 | F: drivers/iommu/tegra* | |
11525 | ||
11526 | TEGRA KBC DRIVER | |
11527 | M: Rakesh Iyer <riyer@nvidia.com> | |
11528 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
11529 | S: Supported | |
11530 | F: drivers/input/keyboard/tegra-kbc.c | |
11531 | ||
adabdb0c SW |
11532 | TEGRA PWM DRIVER |
11533 | M: Thierry Reding <thierry.reding@gmail.com> | |
11534 | S: Supported | |
11535 | F: drivers/pwm/pwm-tegra.c | |
11536 | ||
11537 | TEGRA SERIAL DRIVER | |
11538 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
11539 | S: Supported | |
11540 | F: drivers/tty/serial/serial-tegra.c | |
11541 | ||
11542 | TEGRA SPI DRIVER | |
11543 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
11544 | S: Supported | |
11545 | F: drivers/spi/spi-tegra* | |
11546 | ||
1a348ccc | 11547 | TEHUTI ETHERNET DRIVER |
8b58be88 | 11548 | M: Andy Gospodarek <andy@greyhouse.net> |
1a348ccc AG |
11549 | L: netdev@vger.kernel.org |
11550 | S: Supported | |
ef7f5429 | 11551 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 11552 | |
4e68852d | 11553 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 11554 | M: Mark Gross <mark.gross@intel.com> |
4e68852d | 11555 | S: Supported |
679655da | 11556 | F: drivers/char/tlclk.c |
4e68852d | 11557 | |
4480f15b | 11558 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 11559 | M: Chris Zankel <chris@zankel.net> |
f959ed2f CZ |
11560 | M: Max Filippov <jcmvbkbc@gmail.com> |
11561 | L: linux-xtensa@linux-xtensa.org | |
9f273c24 | 11562 | T: git git://github.com/czankel/xtensa-linux.git |
4e68852d | 11563 | S: Maintained |
679655da | 11564 | F: arch/xtensa/ |
3dc99857 | 11565 | F: drivers/irqchip/irq-xtensa-* |
4e68852d | 11566 | |
5313ba66 HV |
11567 | THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER |
11568 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11569 | L: linux-media@vger.kernel.org | |
11570 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11571 | W: https://linuxtv.org |
5313ba66 HV |
11572 | S: Maintained |
11573 | F: drivers/media/radio/radio-raremono.c | |
11574 | ||
d3fb6955 | 11575 | THERMAL |
b75f0050 | 11576 | M: Zhang Rui <rui.zhang@intel.com> |
f14d1c24 | 11577 | M: Eduardo Valentin <edubezval@gmail.com> |
b75f0050 JP |
11578 | L: linux-pm@vger.kernel.org |
11579 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
11580 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git | |
11581 | Q: https://patchwork.kernel.org/project/linux-pm/list/ | |
11582 | S: Supported | |
11583 | F: drivers/thermal/ | |
11584 | F: include/linux/thermal.h | |
af6c9f16 | 11585 | F: include/uapi/linux/thermal.h |
b75f0050 JP |
11586 | F: include/linux/cpu_cooling.h |
11587 | F: Documentation/devicetree/bindings/thermal/ | |
d3fb6955 | 11588 | |
64e05d8b VK |
11589 | THERMAL/CPU_COOLING |
11590 | M: Amit Daniel Kachhap <amit.kachhap@gmail.com> | |
11591 | M: Viresh Kumar <viresh.kumar@linaro.org> | |
11592 | M: Javi Merino <javi.merino@arm.com> | |
11593 | L: linux-pm@vger.kernel.org | |
11594 | S: Supported | |
11595 | F: Documentation/thermal/cpu-cooling-api.txt | |
11596 | F: drivers/thermal/cpu_cooling.c | |
11597 | F: include/linux/cpu_cooling.h | |
11598 | ||
4e68852d | 11599 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 11600 | M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br> |
4e68852d | 11601 | L: ibm-acpi-devel@lists.sourceforge.net |
d0944853 | 11602 | L: platform-driver-x86@vger.kernel.org |
4e68852d AC |
11603 | W: http://ibm-acpi.sourceforge.net |
11604 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 11605 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 11606 | S: Maintained |
679655da | 11607 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 11608 | |
1b46f2a2 | 11609 | TI BANDGAP AND THERMAL DRIVER |
f14d1c24 | 11610 | M: Eduardo Valentin <edubezval@gmail.com> |
ef41be81 | 11611 | M: Keerthy <j-keerthy@ti.com> |
1b46f2a2 | 11612 | L: linux-pm@vger.kernel.org |
531ff13e | 11613 | L: linux-omap@vger.kernel.org |
5a723e81 | 11614 | S: Maintained |
794b2e25 | 11615 | F: drivers/thermal/ti-soc-thermal/ |
1b46f2a2 | 11616 | |
ccf963d3 BP |
11617 | TI VPE/CAL DRIVERS |
11618 | M: Benoit Parrot <bparrot@ti.com> | |
11619 | L: linux-media@vger.kernel.org | |
11620 | W: http://linuxtv.org/ | |
11621 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11622 | S: Maintained | |
11623 | F: drivers/media/platform/ti-vpe/ | |
11624 | ||
0c7665c3 MF |
11625 | TI CDCE706 CLOCK DRIVER |
11626 | M: Max Filippov <jcmvbkbc@gmail.com> | |
11627 | S: Maintained | |
11628 | F: drivers/clk/clk-cdce706.c | |
11629 | ||
49b6a5e3 TK |
11630 | TI CLOCK DRIVER |
11631 | M: Tero Kristo <t-kristo@ti.com> | |
11632 | L: linux-omap@vger.kernel.org | |
11633 | S: Maintained | |
11634 | F: drivers/clk/ti/ | |
11635 | F: include/linux/clk/ti.h | |
11636 | ||
f75cfbad GS |
11637 | TI ETHERNET SWITCH DRIVER (CPSW) |
11638 | M: Mugunthan V N <mugunthanvnm@ti.com> | |
11639 | R: Grygorii Strashko <grygorii.strashko@ti.com> | |
11640 | L: linux-omap@vger.kernel.org | |
11641 | L: netdev@vger.kernel.org | |
11642 | S: Maintained | |
11643 | F: drivers/net/ethernet/ti/cpsw* | |
11644 | F: drivers/net/ethernet/ti/davinci* | |
11645 | ||
4020f2d7 | 11646 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 11647 | M: Alex Dubov <oakad@yahoo.com> |
795fb7e7 | 11648 | S: Maintained |
679655da JP |
11649 | F: drivers/misc/tifm* |
11650 | F: drivers/mmc/host/tifm_sd.c | |
11651 | F: include/linux/tifm.h | |
4020f2d7 | 11652 | |
e0c52404 | 11653 | TI KEYSTONE MULTICORE NAVIGATOR DRIVERS |
97215800 | 11654 | M: Santosh Shilimkar <ssantosh@kernel.org> |
e0c52404 SS |
11655 | L: linux-kernel@vger.kernel.org |
11656 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
11657 | S: Maintained | |
11658 | F: drivers/soc/ti/* | |
11659 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git | |
11660 | ||
11661 | ||
152ad442 SR |
11662 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
11663 | M: M R Swami Reddy <mr.swami.reddy@ti.com> | |
d392dead | 11664 | M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com> |
152ad442 SR |
11665 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
11666 | S: Maintained | |
11667 | F: sound/soc/codecs/lm49453* | |
d392dead | 11668 | F: sound/soc/codecs/isabelle* |
152ad442 | 11669 | |
0edd807d KM |
11670 | TI LP855x BACKLIGHT DRIVER |
11671 | M: Milo Kim <milo.kim@ti.com> | |
11672 | S: Maintained | |
11673 | F: Documentation/backlight/lp855x-driver.txt | |
11674 | F: drivers/video/backlight/lp855x_bl.c | |
11675 | F: include/linux/platform_data/lp855x.h | |
11676 | ||
faf13f6d KM |
11677 | TI LP8727 CHARGER DRIVER |
11678 | M: Milo Kim <milo.kim@ti.com> | |
11679 | S: Maintained | |
11680 | F: drivers/power/lp8727_charger.c | |
11681 | F: include/linux/platform_data/lp8727.h | |
11682 | ||
22f1229f KM |
11683 | TI LP8788 MFD DRIVER |
11684 | M: Milo Kim <milo.kim@ti.com> | |
11685 | S: Maintained | |
11686 | F: drivers/iio/adc/lp8788_adc.c | |
11687 | F: drivers/leds/leds-lp8788.c | |
11688 | F: drivers/mfd/lp8788*.c | |
11689 | F: drivers/power/lp8788-charger.c | |
11690 | F: drivers/regulator/lp8788-*.c | |
11691 | F: include/linux/mfd/lp8788*.h | |
11692 | ||
84640e27 KM |
11693 | TI NETCP ETHERNET DRIVER |
11694 | M: Wingman Kwok <w-kwok2@ti.com> | |
11695 | M: Murali Karicheri <m-karicheri2@ti.com> | |
11696 | L: netdev@vger.kernel.org | |
11697 | S: Maintained | |
11698 | F: drivers/net/ethernet/ti/netcp* | |
11699 | ||
217e0ca9 KC |
11700 | TI TAS571X FAMILY ASoC CODEC DRIVER |
11701 | M: Kevin Cernekee <cernekee@chromium.org> | |
11702 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
11703 | S: Odd Fixes | |
11704 | F: sound/soc/codecs/tas571x* | |
11705 | ||
dd5e8e6b | 11706 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 11707 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
dd5e8e6b PU |
11708 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
11709 | S: Maintained | |
11710 | F: sound/soc/codecs/twl4030* | |
11711 | ||
90921014 | 11712 | TI WILINK WIRELESS DRIVERS |
90921014 LC |
11713 | L: linux-wireless@vger.kernel.org |
11714 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
11715 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
11716 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
22d072f6 | 11717 | S: Orphan |
90921014 LC |
11718 | F: drivers/net/wireless/ti/ |
11719 | F: include/linux/wl12xx.h | |
11720 | ||
e86eaa3a | 11721 | TIPC NETWORK LAYER |
8b58be88 | 11722 | M: Jon Maloy <jon.maloy@ericsson.com> |
115403df | 11723 | M: Ying Xue <ying.xue@windriver.com> |
633d2bde AS |
11724 | L: netdev@vger.kernel.org (core kernel code) |
11725 | L: tipc-discussion@lists.sourceforge.net (user apps, general discussion) | |
e86eaa3a | 11726 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 11727 | S: Maintained |
c117ab84 | 11728 | F: include/uapi/linux/tipc*.h |
679655da | 11729 | F: net/tipc/ |
e86eaa3a | 11730 | |
867e359b | 11731 | TILE ARCHITECTURE |
b9a279f6 | 11732 | M: Chris Metcalf <cmetcalf@mellanox.com> |
8c34d8d9 | 11733 | W: http://www.mellanox.com/repository/solutions/tile-scm/ |
7fa129cc | 11734 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git |
867e359b CM |
11735 | S: Supported |
11736 | F: arch/tile/ | |
6b940606 | 11737 | F: drivers/char/tile-srom.c |
5c770755 | 11738 | F: drivers/edac/tile_edac.c |
6b940606 CM |
11739 | F: drivers/net/ethernet/tile/ |
11740 | F: drivers/rtc/rtc-tile.c | |
11741 | F: drivers/tty/hvc/hvc_tile.c | |
b5c6c1a7 | 11742 | F: drivers/tty/serial/tilegx.c |
6b940606 CM |
11743 | F: drivers/usb/host/*-tilegx.c |
11744 | F: include/linux/usb/tilegx.h | |
867e359b | 11745 | |
1da177e4 | 11746 | TLAN NETWORK DRIVER |
8b58be88 | 11747 | M: Samuel Chessman <chessman@tux.org> |
88c07dde | 11748 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
1da177e4 LT |
11749 | W: http://sourceforge.net/projects/tlan/ |
11750 | S: Maintained | |
679655da | 11751 | F: Documentation/networking/tlan.txt |
b544dbac | 11752 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 11753 | |
d74db3b2 | 11754 | TOMOYO SECURITY MODULE |
8b58be88 JP |
11755 | M: Kentaro Takeda <takedakn@nttdata.co.jp> |
11756 | M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> | |
d03a5d88 TH |
11757 | L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English) |
11758 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English) | |
d74db3b2 KT |
11759 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
11760 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) | |
11761 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 11762 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 11763 | S: Maintained |
679655da | 11764 | F: security/tomoyo/ |
d74db3b2 | 11765 | |
9caeb532 | 11766 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 11767 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
d0944853 | 11768 | L: platform-driver-x86@vger.kernel.org |
9caeb532 HRK |
11769 | S: Maintained |
11770 | F: drivers/platform/x86/topstar-laptop.c | |
11771 | ||
1da177e4 | 11772 | TOSHIBA ACPI EXTRAS DRIVER |
0a63ca11 | 11773 | M: Azael Avalos <coproscefalo@gmail.com> |
d0944853 | 11774 | L: platform-driver-x86@vger.kernel.org |
0a63ca11 | 11775 | S: Maintained |
679655da | 11776 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 | 11777 | |
0a63ca11 AA |
11778 | TOSHIBA BLUETOOTH DRIVER |
11779 | M: Azael Avalos <coproscefalo@gmail.com> | |
11780 | L: platform-driver-x86@vger.kernel.org | |
11781 | S: Maintained | |
11782 | F: drivers/platform/x86/toshiba_bluetooth.c | |
11783 | ||
11784 | TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER | |
11785 | M: Azael Avalos <coproscefalo@gmail.com> | |
11786 | L: platform-driver-x86@vger.kernel.org | |
11787 | S: Maintained | |
11788 | F: drivers/platform/x86/toshiba_haps.c | |
11789 | ||
14991fc7 AA |
11790 | TOSHIBA WMI HOTKEYS DRIVER |
11791 | M: Azael Avalos <coproscefalo@gmail.com> | |
11792 | L: platform-driver-x86@vger.kernel.org | |
11793 | S: Maintained | |
11794 | F: drivers/platform/x86/toshiba-wmi.c | |
11795 | ||
1da177e4 | 11796 | TOSHIBA SMM DRIVER |
8b58be88 | 11797 | M: Jonathan Buzzard <jonathan@buzzard.org.uk> |
1da177e4 LT |
11798 | W: http://www.buzzard.org.uk/toshiba/ |
11799 | S: Maintained | |
679655da JP |
11800 | F: drivers/char/toshiba.c |
11801 | F: include/linux/toshiba.h | |
c117ab84 | 11802 | F: include/uapi/linux/toshiba.h |
1da177e4 | 11803 | |
d32d9864 MR |
11804 | TOSHIBA TC358743 DRIVER |
11805 | M: Mats Randgaard <matrandg@cisco.com> | |
11806 | L: linux-media@vger.kernel.org | |
11807 | S: Maintained | |
11808 | F: drivers/media/i2c/tc358743* | |
b5dcee22 | 11809 | F: include/media/i2c/tc358743.h |
d32d9864 | 11810 | |
560e6475 WS |
11811 | TMIO/SDHI MMC DRIVER |
11812 | M: Wolfram Sang <wsa+renesas@sang-engineering.com> | |
d1057c40 | 11813 | L: linux-mmc@vger.kernel.org |
560e6475 | 11814 | S: Supported |
d1057c40 GL |
11815 | F: drivers/mmc/host/tmio_mmc* |
11816 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
560e6475 | 11817 | F: include/linux/mfd/tmio.h |
d719f900 | 11818 | |
917cc4e6 GR |
11819 | TMP401 HARDWARE MONITOR DRIVER |
11820 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 11821 | L: linux-hwmon@vger.kernel.org |
917cc4e6 GR |
11822 | S: Maintained |
11823 | F: Documentation/hwmon/tmp401 | |
11824 | F: drivers/hwmon/tmp401.c | |
11825 | ||
98f32602 | 11826 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 11827 | M: Hugh Dickins <hughd@google.com> |
98f32602 HD |
11828 | L: linux-mm@kvack.org |
11829 | S: Maintained | |
11830 | F: include/linux/shmem_fs.h | |
11831 | F: mm/shmem.c | |
11832 | ||
45f95b53 | 11833 | TM6000 VIDEO4LINUX DRIVER |
5dc8a864 MCC |
11834 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
11835 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
45f95b53 | 11836 | L: linux-media@vger.kernel.org |
a825eaec | 11837 | W: https://linuxtv.org |
45f95b53 MCC |
11838 | T: git git://linuxtv.org/media_tree.git |
11839 | S: Odd fixes | |
11840 | F: drivers/media/usb/tm6000/ | |
11841 | ||
c65fde19 HV |
11842 | TW68 VIDEO4LINUX DRIVER |
11843 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11844 | L: linux-media@vger.kernel.org | |
11845 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11846 | W: https://linuxtv.org |
c65fde19 HV |
11847 | S: Odd Fixes |
11848 | F: drivers/media/pci/tw68/ | |
11849 | ||
704a84cc EG |
11850 | TW686X VIDEO4LINUX DRIVER |
11851 | M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> | |
11852 | L: linux-media@vger.kernel.org | |
11853 | T: git git://linuxtv.org/media_tree.git | |
11854 | W: http://linuxtv.org | |
11855 | S: Maintained | |
11856 | F: drivers/media/pci/tw686x/ | |
11857 | ||
4e68852d | 11858 | TPM DEVICE DRIVER |
901486b8 | 11859 | M: Peter Huewe <peterhuewe@gmx.de> |
cbb2d5e4 | 11860 | M: Marcel Selhorst <tpmdd@selhorst.net> |
89adb83c | 11861 | M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> |
ce93b4b0 | 11862 | R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> |
383dec1f | 11863 | W: http://tpmdd.sourceforge.net |
63a10dfd | 11864 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
d9912846 JS |
11865 | Q: https://patchwork.kernel.org/project/tpmdd-devel/list/ |
11866 | T: git git://git.infradead.org/users/jjs/linux-tpmdd.git | |
4e68852d | 11867 | S: Maintained |
679655da | 11868 | F: drivers/char/tpm/ |
4e68852d | 11869 | |
1a0f1b27 AL |
11870 | TPM IBM_VTPM DEVICE DRIVER |
11871 | M: Ashley Lai <ashleydlai@gmail.com> | |
11872 | W: http://tpmdd.sourceforge.net | |
11873 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) | |
11874 | S: Maintained | |
11875 | F: drivers/char/tpm/tpm_ibmvtpm* | |
11876 | ||
d6f005a1 JP |
11877 | TRACING |
11878 | M: Steven Rostedt <rostedt@goodmis.org> | |
d6f005a1 | 11879 | M: Ingo Molnar <mingo@redhat.com> |
75fc2d37 | 11880 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
11881 | S: Maintained |
11882 | F: Documentation/trace/ftrace.txt | |
11883 | F: arch/*/*/*/ftrace.h | |
11884 | F: arch/*/kernel/ftrace.c | |
11885 | F: include/*/ftrace.h | |
11886 | F: include/linux/trace*.h | |
11887 | F: include/trace/ | |
11888 | F: kernel/trace/ | |
6e68e6c5 | 11889 | F: tools/testing/selftests/ftrace/ |
d6f005a1 | 11890 | |
4abac0d0 IM |
11891 | TRACING MMIO ACCESSES (MMIOTRACE) |
11892 | M: Steven Rostedt <rostedt@goodmis.org> | |
11893 | M: Ingo Molnar <mingo@kernel.org> | |
11894 | R: Karol Herbst <karolherbst@gmail.com> | |
11895 | R: Pekka Paalanen <ppaalanen@gmail.com> | |
11896 | S: Maintained | |
11897 | L: linux-kernel@vger.kernel.org | |
11898 | L: nouveau@lists.freedesktop.org | |
11899 | F: kernel/trace/trace_mmiotrace.c | |
11900 | F: include/linux/mmiotrace.h | |
11901 | F: arch/x86/mm/kmmio.c | |
11902 | F: arch/x86/mm/mmio-mod.c | |
11903 | F: arch/x86/mm/testmmiotrace.c | |
11904 | ||
1da177e4 | 11905 | TRIVIAL PATCHES |
8b58be88 | 11906 | M: Jiri Kosina <trivial@kernel.org> |
54e5881d | 11907 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 11908 | S: Maintained |
86ef925f | 11909 | K: ^Subject:.*(?i)trivial |
1da177e4 | 11910 | |
4e68852d | 11911 | TTY LAYER |
879a5a00 | 11912 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
d8130624 | 11913 | M: Jiri Slaby <jslaby@suse.com> |
879a5a00 | 11914 | S: Supported |
08deed1e | 11915 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
84e1eb83 | 11916 | F: Documentation/serial/ |
8dd5d2f1 | 11917 | F: drivers/tty/ |
df621252 | 11918 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
11919 | F: include/linux/serial_core.h |
11920 | F: include/linux/serial.h | |
11921 | F: include/linux/tty.h | |
c117ab84 CEB |
11922 | F: include/uapi/linux/serial_core.h |
11923 | F: include/uapi/linux/serial.h | |
11924 | F: include/uapi/linux/tty.h | |
4e68852d | 11925 | |
91952bc0 AP |
11926 | TUA9001 MEDIA DRIVER |
11927 | M: Antti Palosaari <crope@iki.fi> | |
11928 | L: linux-media@vger.kernel.org | |
a825eaec | 11929 | W: https://linuxtv.org |
91952bc0 AP |
11930 | W: http://palosaari.fi/linux/ |
11931 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11932 | T: git git://linuxtv.org/anttip/media_tree.git | |
11933 | S: Maintained | |
11934 | F: drivers/media/tuners/tua9001* | |
11935 | ||
740db6d7 | 11936 | TULIP NETWORK DRIVERS |
740db6d7 | 11937 | L: netdev@vger.kernel.org |
cf869eb1 GG |
11938 | L: linux-parisc@vger.kernel.org |
11939 | S: Orphan | |
0f04e2aa | 11940 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
11941 | |
11942 | TUN/TAP driver | |
ba57b6f2 | 11943 | M: Maxim Krasnyansky <maxk@qti.qualcomm.com> |
1da177e4 LT |
11944 | W: http://vtun.sourceforge.net/tun |
11945 | S: Maintained | |
679655da JP |
11946 | F: Documentation/networking/tuntap.txt |
11947 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 11948 | |
b454cc66 | 11949 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 11950 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
c406339c RB |
11951 | M: Ralf Baechle <ralf@linux-mips.org> |
11952 | L: linux-mips@linux-mips.org | |
11953 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ | |
b454cc66 | 11954 | S: Maintained |
679655da JP |
11955 | F: drivers/tc/ |
11956 | F: include/linux/tc.h | |
b454cc66 | 11957 | |
1da177e4 | 11958 | U14-34F SCSI DRIVER |
8b58be88 | 11959 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
11960 | L: linux-scsi@vger.kernel.org |
11961 | S: Maintained | |
679655da | 11962 | F: drivers/scsi/u14-34f.c |
1da177e4 | 11963 | |
e2d1d6c0 | 11964 | UBI FILE SYSTEM (UBIFS) |
a7859936 | 11965 | M: Richard Weinberger <richard@nod.at> |
949cb623 | 11966 | M: Artem Bityutskiy <dedekind1@gmail.com> |
cc8f9b99 | 11967 | M: Adrian Hunter <adrian.hunter@intel.com> |
e2d1d6c0 | 11968 | L: linux-mtd@lists.infradead.org |
e2966cbe | 11969 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 | 11970 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
a7859936 | 11971 | S: Supported |
679655da JP |
11972 | F: Documentation/filesystems/ubifs.txt |
11973 | F: fs/ubifs/ | |
e2d1d6c0 | 11974 | |
e1632fa2 | 11975 | UCLINUX (M68KNOMMU AND COLDFIRE) |
44156aff GU |
11976 | M: Greg Ungerer <gerg@linux-m68k.org> |
11977 | W: http://www.linux-m68k.org/ | |
cc2020e6 | 11978 | W: http://www.uclinux.org/ |
e1632fa2 | 11979 | L: linux-m68k@lists.linux-m68k.org |
cc2020e6 | 11980 | L: uclinux-dev@uclinux.org (subscribers-only) |
e1632fa2 | 11981 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git |
cc2020e6 | 11982 | S: Maintained |
e1632fa2 GU |
11983 | F: arch/m68k/coldfire/ |
11984 | F: arch/m68k/68*/ | |
61bc02bb JP |
11985 | F: arch/m68k/*/*_no.* |
11986 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 11987 | |
1da177e4 | 11988 | UDF FILESYSTEM |
d8130624 | 11989 | M: Jan Kara <jack@suse.com> |
1da177e4 | 11990 | S: Maintained |
679655da JP |
11991 | F: Documentation/filesystems/udf.txt |
11992 | F: fs/udf/ | |
1da177e4 | 11993 | |
cc2020e6 | 11994 | UFS FILESYSTEM |
8b58be88 | 11995 | M: Evgeniy Dushistov <dushistov@mail.ru> |
cc2020e6 | 11996 | S: Maintained |
679655da JP |
11997 | F: Documentation/filesystems/ufs.txt |
11998 | F: fs/ufs/ | |
cc2020e6 | 11999 | |
0a09d3ab DH |
12000 | UHID USERSPACE HID IO DRIVER: |
12001 | M: David Herrmann <dh.herrmann@googlemail.com> | |
12002 | L: linux-input@vger.kernel.org | |
12003 | S: Maintained | |
12004 | F: drivers/hid/uhid.c | |
c117ab84 | 12005 | F: include/uapi/linux/uhid.h |
0a09d3ab | 12006 | |
18332a80 | 12007 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 12008 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 12009 | S: Orphan |
355ffe69 | 12010 | F: drivers/uwb/ |
679655da JP |
12011 | F: include/linux/uwb.h |
12012 | F: include/linux/uwb/ | |
18332a80 | 12013 | |
b31d8273 G |
12014 | UNICORE32 ARCHITECTURE: |
12015 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
12016 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
12017 | S: Maintained | |
ceebf4d5 | 12018 | T: git git://github.com/gxt/linux.git |
b31d8273 G |
12019 | F: arch/unicore32/ |
12020 | ||
d8379ab1 TF |
12021 | UNIFDEF |
12022 | M: Tony Finch <dot@dotat.at> | |
12023 | W: http://dotat.at/prog/unifdef | |
12024 | S: Maintained | |
12025 | F: scripts/unifdef.c | |
12026 | ||
1da177e4 | 12027 | UNIFORM CDROM DRIVER |
8b58be88 | 12028 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
12029 | W: http://www.kernel.dk |
12030 | S: Maintained | |
679655da JP |
12031 | F: Documentation/cdrom/ |
12032 | F: drivers/cdrom/cdrom.c | |
12033 | F: include/linux/cdrom.h | |
c117ab84 | 12034 | F: include/uapi/linux/cdrom.h |
1da177e4 | 12035 | |
56df0122 | 12036 | UNISYS S-PAR DRIVERS |
49e7d9df JP |
12037 | M: David Kershner <david.kershner@unisys.com> |
12038 | L: sparmaintainer@unisys.com (Unisys internal) | |
12039 | S: Supported | |
12040 | F: drivers/staging/unisys/ | |
56df0122 | 12041 | |
9941fa6e VH |
12042 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
12043 | M: Vinayak Holikatti <vinholikatti@gmail.com> | |
9941fa6e VH |
12044 | L: linux-scsi@vger.kernel.org |
12045 | S: Supported | |
12046 | F: Documentation/scsi/ufs.txt | |
12047 | F: drivers/scsi/ufs/ | |
12048 | ||
4b9ffb5a JP |
12049 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS |
12050 | M: Joao Pinto <Joao.Pinto@synopsys.com> | |
12051 | L: linux-scsi@vger.kernel.org | |
12052 | S: Supported | |
12053 | F: drivers/scsi/ufs/*dwc* | |
12054 | ||
e2d1d6c0 | 12055 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 12056 | M: Artem Bityutskiy <dedekind1@gmail.com> |
346be9bc | 12057 | M: Richard Weinberger <richard@nod.at> |
e2d1d6c0 RD |
12058 | W: http://www.linux-mtd.infradead.org/ |
12059 | L: linux-mtd@lists.infradead.org | |
b6b44e0a | 12060 | T: git git://git.infradead.org/ubifs-2.6.git |
346be9bc | 12061 | S: Supported |
80811493 | 12062 | F: drivers/mtd/ubi/ |
679655da | 12063 | F: include/linux/mtd/ubi.h |
c117ab84 | 12064 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 12065 | |
1da177e4 | 12066 | USB ACM DRIVER |
ca1c3e6f | 12067 | M: Oliver Neukum <oneukum@suse.com> |
6372594a | 12068 | L: linux-usb@vger.kernel.org |
1da177e4 | 12069 | S: Maintained |
679655da JP |
12070 | F: Documentation/usb/acm.txt |
12071 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 12072 | |
b7d572e1 PF |
12073 | USB AR5523 WIRELESS DRIVER |
12074 | M: Pontus Fuchs <pontus.fuchs@gmail.com> | |
12075 | L: linux-wireless@vger.kernel.org | |
12076 | S: Maintained | |
12077 | F: drivers/net/wireless/ath/ar5523/ | |
12078 | ||
115bb1ff | 12079 | USB ATTACHED SCSI |
866d372e | 12080 | M: Oliver Neukum <oneukum@suse.com> |
115bb1ff MW |
12081 | L: linux-usb@vger.kernel.org |
12082 | L: linux-scsi@vger.kernel.org | |
8eae0fb7 | 12083 | S: Maintained |
115bb1ff MW |
12084 | F: drivers/usb/storage/uas.c |
12085 | ||
1da177e4 | 12086 | USB CDC ETHERNET DRIVER |
61eee9a7 | 12087 | M: Oliver Neukum <oliver@neukum.org> |
795fb7e7 | 12088 | L: linux-usb@vger.kernel.org |
1da177e4 | 12089 | S: Maintained |
679655da | 12090 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 12091 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 12092 | |
66e3e591 KP |
12093 | USB CHAOSKEY DRIVER |
12094 | M: Keith Packard <keithp@keithp.com> | |
12095 | L: linux-usb@vger.kernel.org | |
12096 | S: Maintained | |
12097 | F: drivers/usb/misc/chaoskey.c | |
12098 | ||
b02b371e | 12099 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 12100 | M: Peter Korsgaard <jacmet@sunsite.dk> |
b02b371e PK |
12101 | L: linux-usb@vger.kernel.org |
12102 | S: Maintained | |
679655da | 12103 | F: drivers/usb/c67x00/ |
b02b371e | 12104 | |
d0374f4f | 12105 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 12106 | M: Peter Korsgaard <jacmet@sunsite.dk> |
043600a6 | 12107 | L: netdev@vger.kernel.org |
d0374f4f PK |
12108 | W: http://www.linux-usb.org/usbnet |
12109 | S: Maintained | |
679655da | 12110 | F: drivers/net/usb/dm9601.c |
d0374f4f | 12111 | |
cc2020e6 | 12112 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 12113 | M: Cesar Miquel <miquel@df.uba.ar> |
cc2020e6 AC |
12114 | L: rio500-users@lists.sourceforge.net |
12115 | W: http://rio500.sourceforge.net | |
12116 | S: Maintained | |
679655da | 12117 | F: drivers/usb/misc/rio500* |
cc2020e6 | 12118 | |
1da177e4 | 12119 | USB EHCI DRIVER |
578333ab | 12120 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 12121 | L: linux-usb@vger.kernel.org |
578333ab | 12122 | S: Maintained |
679655da JP |
12123 | F: Documentation/usb/ehci.txt |
12124 | F: drivers/usb/host/ehci* | |
1da177e4 | 12125 | |
69ae9e3e | 12126 | USB GADGET/PERIPHERAL SUBSYSTEM |
a55f6286 | 12127 | M: Felipe Balbi <balbi@kernel.org> |
795fb7e7 | 12128 | L: linux-usb@vger.kernel.org |
69ae9e3e | 12129 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
12130 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
12131 | S: Maintained | |
679655da JP |
12132 | F: drivers/usb/gadget/ |
12133 | F: include/linux/usb/gadget* | |
69ae9e3e | 12134 | |
2dea64b4 | 12135 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
e5f6450c | 12136 | M: Jiri Kosina <jikos@kernel.org> |
406df153 | 12137 | R: Benjamin Tissoires <benjamin.tissoires@redhat.com> |
795fb7e7 | 12138 | L: linux-usb@vger.kernel.org |
54e5881d | 12139 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 12140 | S: Maintained |
c2f01971 | 12141 | F: Documentation/hid/hiddev.txt |
679655da | 12142 | F: drivers/hid/usbhid/ |
1da177e4 | 12143 | |
959eea21 | 12144 | USB ISP116X DRIVER |
8b58be88 | 12145 | M: Olav Kongas <ok@artecdesign.ee> |
795fb7e7 | 12146 | L: linux-usb@vger.kernel.org |
959eea21 | 12147 | S: Maintained |
679655da JP |
12148 | F: drivers/usb/host/isp116x* |
12149 | F: include/linux/usb/isp116x.h | |
959eea21 | 12150 | |
146498ea WH |
12151 | USB LAN78XX ETHERNET DRIVER |
12152 | M: Woojung Huh <woojung.huh@microchip.com> | |
12153 | M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com> | |
12154 | L: netdev@vger.kernel.org | |
12155 | S: Maintained | |
12156 | F: drivers/net/usb/lan78xx.* | |
12157 | ||
1da177e4 | 12158 | USB MASS STORAGE DRIVER |
8b58be88 | 12159 | M: Matthew Dharm <mdharm-usb@one-eyed-alien.net> |
795fb7e7 | 12160 | L: linux-usb@vger.kernel.org |
8836aeb8 | 12161 | L: usb-storage@lists.one-eyed-alien.net |
1da177e4 LT |
12162 | S: Maintained |
12163 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 12164 | F: drivers/usb/storage/ |
1da177e4 | 12165 | |
af39917d CL |
12166 | USB MIDI DRIVER |
12167 | M: Clemens Ladisch <clemens@ladisch.de> | |
12168 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
12169 | T: git git://git.alsa-project.org/alsa-kernel.git | |
12170 | S: Maintained | |
12171 | F: sound/usb/midi.* | |
12172 | ||
444ce9d4 JP |
12173 | USB NETWORKING DRIVERS |
12174 | L: linux-usb@vger.kernel.org | |
12175 | S: Odd Fixes | |
12176 | F: drivers/net/usb/ | |
12177 | ||
1da177e4 | 12178 | USB OHCI DRIVER |
578333ab | 12179 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 12180 | L: linux-usb@vger.kernel.org |
578333ab | 12181 | S: Maintained |
679655da JP |
12182 | F: Documentation/usb/ohci.txt |
12183 | F: drivers/usb/host/ohci* | |
1da177e4 | 12184 | |
963ffa3e | 12185 | USB OTG FSM (Finite State Machine) |
60d77b3d | 12186 | M: Peter Chen <Peter.Chen@nxp.com> |
8373856d | 12187 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
963ffa3e PC |
12188 | L: linux-usb@vger.kernel.org |
12189 | S: Maintained | |
12190 | F: drivers/usb/common/usb-otg-fsm.c | |
12191 | ||
563da3a9 VM |
12192 | USB OVER IP DRIVER |
12193 | M: Valentina Manea <valentina.manea.m@gmail.com> | |
90effdcd SK |
12194 | M: Shuah Khan <shuahkh@osg.samsung.com> |
12195 | M: Shuah Khan <shuah@kernel.org> | |
563da3a9 VM |
12196 | L: linux-usb@vger.kernel.org |
12197 | S: Maintained | |
a6d6fc2b | 12198 | F: Documentation/usb/usbip_protocol.txt |
563da3a9 VM |
12199 | F: drivers/usb/usbip/ |
12200 | F: tools/usb/usbip/ | |
12201 | ||
1da177e4 | 12202 | USB PEGASUS DRIVER |
a16b945c | 12203 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 12204 | L: linux-usb@vger.kernel.org |
043600a6 | 12205 | L: netdev@vger.kernel.org |
052e3128 PM |
12206 | T: git git://github.com/petkan/pegasus.git |
12207 | W: https://github.com/petkan/pegasus | |
1da177e4 | 12208 | S: Maintained |
679655da | 12209 | F: drivers/net/usb/pegasus.* |
1da177e4 | 12210 | |
d3ad558f | 12211 | USB PHY LAYER |
a55f6286 | 12212 | M: Felipe Balbi <balbi@kernel.org> |
d3ad558f FB |
12213 | L: linux-usb@vger.kernel.org |
12214 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
12215 | S: Maintained | |
12216 | F: drivers/usb/phy/ | |
d3ad558f | 12217 | |
73e4fb3f | 12218 | USB PRINTER DRIVER (usblp) |
8b58be88 | 12219 | M: Pete Zaitcev <zaitcev@redhat.com> |
795fb7e7 | 12220 | L: linux-usb@vger.kernel.org |
73e4fb3f | 12221 | S: Supported |
679655da | 12222 | F: drivers/usb/class/usblp.c |
1da177e4 | 12223 | |
4521b477 BM |
12224 | USB QMI WWAN NETWORK DRIVER |
12225 | M: Bjørn Mork <bjorn@mork.no> | |
12226 | L: netdev@vger.kernel.org | |
12227 | S: Maintained | |
12228 | F: Documentation/ABI/testing/sysfs-class-net-qmi | |
12229 | F: drivers/net/usb/qmi_wwan.c | |
12230 | ||
1da177e4 | 12231 | USB RTL8150 DRIVER |
a16b945c | 12232 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 12233 | L: linux-usb@vger.kernel.org |
043600a6 | 12234 | L: netdev@vger.kernel.org |
052e3128 PM |
12235 | T: git git://github.com/petkan/rtl8150.git |
12236 | W: https://github.com/petkan/rtl8150 | |
1da177e4 | 12237 | S: Maintained |
679655da | 12238 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 12239 | |
f896b796 | 12240 | USB SERIAL SUBSYSTEM |
66085694 | 12241 | M: Johan Hovold <johan@kernel.org> |
795fb7e7 | 12242 | L: linux-usb@vger.kernel.org |
4e68852d | 12243 | S: Maintained |
679655da | 12244 | F: Documentation/usb/usb-serial.txt |
f896b796 | 12245 | F: drivers/usb/serial/ |
679655da | 12246 | F: include/linux/usb/serial.h |
1da177e4 | 12247 | |
b3f0db1c SG |
12248 | USB SMSC75XX ETHERNET DRIVER |
12249 | M: Steve Glendinning <steve.glendinning@shawell.net> | |
12250 | L: netdev@vger.kernel.org | |
12251 | S: Maintained | |
12252 | F: drivers/net/usb/smsc75xx.* | |
12253 | ||
2f7ca802 | 12254 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 12255 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2f7ca802 | 12256 | L: netdev@vger.kernel.org |
90b24cfb | 12257 | S: Maintained |
679655da | 12258 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 12259 | |
1da177e4 | 12260 | USB SUBSYSTEM |
879a5a00 | 12261 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
795fb7e7 | 12262 | L: linux-usb@vger.kernel.org |
1da177e4 | 12263 | W: http://www.linux-usb.org |
08deed1e | 12264 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 12265 | S: Supported |
1700bd98 | 12266 | F: Documentation/devicetree/bindings/usb/ |
679655da | 12267 | F: Documentation/usb/ |
679655da JP |
12268 | F: drivers/usb/ |
12269 | F: include/linux/usb.h | |
12270 | F: include/linux/usb/ | |
1da177e4 LT |
12271 | |
12272 | USB UHCI DRIVER | |
8b58be88 | 12273 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 12274 | L: linux-usb@vger.kernel.org |
1da177e4 | 12275 | S: Maintained |
679655da | 12276 | F: drivers/usb/host/uhci* |
1da177e4 | 12277 | |
69ae9e3e | 12278 | USB "USBNET" DRIVER FRAMEWORK |
d8130624 | 12279 | M: Oliver Neukum <oneukum@suse.com> |
043600a6 | 12280 | L: netdev@vger.kernel.org |
69ae9e3e | 12281 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 12282 | S: Maintained |
679655da JP |
12283 | F: drivers/net/usb/usbnet.c |
12284 | F: include/linux/usb/usbnet.h | |
1da177e4 | 12285 | |
c0efd232 | 12286 | USB VIDEO CLASS |
c53ac071 | 12287 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
616bd4e2 | 12288 | L: linux-uvc-devel@lists.sourceforge.net (subscribers-only) |
661263b5 | 12289 | L: linux-media@vger.kernel.org |
275ffde4 | 12290 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 12291 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 12292 | S: Maintained |
0c0d06ca | 12293 | F: drivers/media/usb/uvc/ |
6c0f0359 | 12294 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 12295 | |
b60b9c45 HV |
12296 | USB VISION DRIVER |
12297 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
12298 | L: linux-media@vger.kernel.org | |
12299 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 12300 | W: https://linuxtv.org |
b60b9c45 HV |
12301 | S: Odd Fixes |
12302 | F: drivers/media/usb/usbvision/ | |
12303 | ||
8282da47 LP |
12304 | USB WEBCAM GADGET |
12305 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
12306 | L: linux-usb@vger.kernel.org | |
12307 | S: Maintained | |
3a83c16e | 12308 | F: drivers/usb/gadget/function/*uvc* |
faf2e1db | 12309 | F: drivers/usb/gadget/legacy/webcam.c |
8282da47 | 12310 | |
bf164cc0 | 12311 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 12312 | M: Jussi Kivilinna <jussi.kivilinna@iki.fi> |
bf164cc0 JK |
12313 | L: linux-wireless@vger.kernel.org |
12314 | S: Maintained | |
679655da | 12315 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 12316 | |
eb6bab13 | 12317 | USB XHCI DRIVER |
03d85053 | 12318 | M: Mathias Nyman <mathias.nyman@intel.com> |
eb6bab13 SS |
12319 | L: linux-usb@vger.kernel.org |
12320 | S: Supported | |
36d0344c SS |
12321 | F: drivers/usb/host/xhci* |
12322 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 12323 | |
1da177e4 | 12324 | USB ZD1201 DRIVER |
4086b9ca | 12325 | L: linux-wireless@vger.kernel.org |
1da177e4 | 12326 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 12327 | S: Orphan |
ed0ad06f | 12328 | F: drivers/net/wireless/zydas/zd1201.* |
1da177e4 | 12329 | |
b7eee616 | 12330 | USB ZR364XX DRIVER |
8b58be88 | 12331 | M: Antoine Jacquet <royale@zerezo.com> |
795fb7e7 | 12332 | L: linux-usb@vger.kernel.org |
661263b5 | 12333 | L: linux-media@vger.kernel.org |
275ffde4 | 12334 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
12335 | W: http://royale.zerezo.com/zr364xx/ |
12336 | S: Maintained | |
679655da | 12337 | F: Documentation/video4linux/zr364xx.txt |
90d72ac6 | 12338 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 12339 | |
289fcff4 HK |
12340 | ULPI BUS |
12341 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> | |
12342 | L: linux-usb@vger.kernel.org | |
12343 | S: Maintained | |
12344 | F: drivers/usb/common/ulpi.c | |
12345 | F: include/linux/ulpi/ | |
12346 | ||
e7839f25 | 12347 | USER-MODE LINUX (UML) |
8b58be88 | 12348 | M: Jeff Dike <jdike@addtoit.com> |
b15194b7 | 12349 | M: Richard Weinberger <richard@nod.at> |
1da177e4 LT |
12350 | L: user-mode-linux-devel@lists.sourceforge.net |
12351 | L: user-mode-linux-user@lists.sourceforge.net | |
12352 | W: http://user-mode-linux.sourceforge.net | |
9f273c24 | 12353 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git |
1da177e4 | 12354 | S: Maintained |
61516587 | 12355 | F: Documentation/virtual/uml/ |
679655da | 12356 | F: arch/um/ |
b070989a | 12357 | F: arch/x86/um/ |
679655da JP |
12358 | F: fs/hostfs/ |
12359 | F: fs/hppfs/ | |
b7eee616 | 12360 | |
e5f114e9 | 12361 | USERSPACE I/O (UIO) |
6a534c9d | 12362 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
879a5a00 | 12363 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
e5f114e9 | 12364 | S: Maintained |
3d3fecbd | 12365 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
679655da JP |
12366 | F: Documentation/DocBook/uio-howto.tmpl |
12367 | F: drivers/uio/ | |
12368 | F: include/linux/uio*.h | |
e5f114e9 | 12369 | |
256cccbe | 12370 | UTIL-LINUX PACKAGE |
8b58be88 | 12371 | M: Karel Zak <kzak@redhat.com> |
256cccbe KZ |
12372 | L: util-linux@vger.kernel.org |
12373 | W: http://en.wikipedia.org/wiki/Util-linux | |
12374 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
12375 | S: Maintained |
12376 | ||
c1fd1c07 | 12377 | UVESAFB DRIVER |
8b58be88 | 12378 | M: Michal Januszewski <spock@gentoo.org> |
c69f677c | 12379 | L: linux-fbdev@vger.kernel.org |
c1fd1c07 MJ |
12380 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
12381 | S: Maintained | |
679655da | 12382 | F: Documentation/fb/uvesafb.txt |
8a61f013 | 12383 | F: drivers/video/fbdev/uvesafb.* |
c1fd1c07 | 12384 | |
456930d8 SA |
12385 | VF610 NAND DRIVER |
12386 | M: Stefan Agner <stefan@agner.ch> | |
12387 | L: linux-mtd@lists.infradead.org | |
12388 | S: Supported | |
12389 | F: drivers/mtd/nand/vf610_nfc.c | |
12390 | ||
4480f15b | 12391 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 12392 | M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> |
1da177e4 | 12393 | S: Maintained |
679655da JP |
12394 | F: Documentation/filesystems/vfat.txt |
12395 | F: fs/fat/ | |
1da177e4 | 12396 | |
cba3345c AW |
12397 | VFIO DRIVER |
12398 | M: Alex Williamson <alex.williamson@redhat.com> | |
12399 | L: kvm@vger.kernel.org | |
9f273c24 | 12400 | T: git git://github.com/awilliam/linux-vfio.git |
cba3345c AW |
12401 | S: Maintained |
12402 | F: Documentation/vfio.txt | |
12403 | F: drivers/vfio/ | |
12404 | F: include/linux/vfio.h | |
c117ab84 | 12405 | F: include/uapi/linux/vfio.h |
cba3345c | 12406 | |
a714ea5f AW |
12407 | VFIO PLATFORM DRIVER |
12408 | M: Baptiste Reynal <b.reynal@virtualopensystems.com> | |
12409 | L: kvm@vger.kernel.org | |
12410 | S: Maintained | |
12411 | F: drivers/vfio/platform/ | |
12412 | ||
9e6f3438 PO |
12413 | VIDEOBUF2 FRAMEWORK |
12414 | M: Pawel Osciak <pawel@osciak.com> | |
12415 | M: Marek Szyprowski <m.szyprowski@samsung.com> | |
e76e4706 | 12416 | M: Kyungmin Park <kyungmin.park@samsung.com> |
9e6f3438 PO |
12417 | L: linux-media@vger.kernel.org |
12418 | S: Maintained | |
90d72ac6 | 12419 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
12420 | F: include/media/videobuf2-* |
12421 | ||
06a8fc78 AH |
12422 | VIRTIO AND VHOST VSOCK DRIVER |
12423 | M: Stefan Hajnoczi <stefanha@redhat.com> | |
12424 | L: kvm@vger.kernel.org | |
12425 | L: virtualization@lists.linux-foundation.org | |
12426 | L: netdev@vger.kernel.org | |
12427 | S: Maintained | |
12428 | F: include/linux/virtio_vsock.h | |
12429 | F: include/uapi/linux/virtio_vsock.h | |
12430 | F: net/vmw_vsock/virtio_transport_common.c | |
0ea9e1d3 | 12431 | F: net/vmw_vsock/virtio_transport.c |
433fc58e AH |
12432 | F: drivers/vhost/vsock.c |
12433 | F: drivers/vhost/vsock.h | |
06a8fc78 | 12434 | |
5523662e SCP |
12435 | VIRTUAL SERIO DEVICE DRIVER |
12436 | M: Stephen Chandler Paul <thatslyude@gmail.com> | |
12437 | S: Maintained | |
12438 | F: drivers/input/serio/userio.c | |
12439 | F: include/uapi/linux/userio.h | |
12440 | ||
9a82446b AS |
12441 | VIRTIO CONSOLE DRIVER |
12442 | M: Amit Shah <amit.shah@redhat.com> | |
12443 | L: virtualization@lists.linux-foundation.org | |
12444 | S: Maintained | |
12445 | F: drivers/char/virtio_console.c | |
12446 | F: include/linux/virtio_console.h | |
c117ab84 | 12447 | F: include/uapi/linux/virtio_console.h |
9a82446b | 12448 | |
2426ec8f | 12449 | VIRTIO CORE, NET AND BLOCK DRIVERS |
2426ec8f MT |
12450 | M: "Michael S. Tsirkin" <mst@redhat.com> |
12451 | L: virtualization@lists.linux-foundation.org | |
12452 | S: Maintained | |
0e4191fe | 12453 | F: Documentation/devicetree/bindings/virtio/ |
2426ec8f | 12454 | F: drivers/virtio/ |
c893c8d7 | 12455 | F: tools/virtio/ |
2426ec8f MT |
12456 | F: drivers/net/virtio_net.c |
12457 | F: drivers/block/virtio_blk.c | |
12458 | F: include/linux/virtio_*.h | |
916cdabc | 12459 | F: include/uapi/linux/virtio_*.h |
2426ec8f | 12460 | |
f2dbda3b CH |
12461 | VIRTIO DRIVERS FOR S390 |
12462 | M: Christian Borntraeger <borntraeger@de.ibm.com> | |
12463 | M: Cornelia Huck <cornelia.huck@de.ibm.com> | |
12464 | L: linux-s390@vger.kernel.org | |
12465 | L: virtualization@lists.linux-foundation.org | |
12466 | L: kvm@vger.kernel.org | |
12467 | S: Supported | |
1b568d93 | 12468 | F: drivers/s390/virtio/ |
f2dbda3b | 12469 | |
4ad6ee91 GH |
12470 | VIRTIO GPU DRIVER |
12471 | M: David Airlie <airlied@linux.ie> | |
12472 | M: Gerd Hoffmann <kraxel@redhat.com> | |
12473 | L: dri-devel@lists.freedesktop.org | |
12474 | L: virtualization@lists.linux-foundation.org | |
12475 | S: Maintained | |
12476 | F: drivers/gpu/drm/virtio/ | |
12477 | F: include/uapi/linux/virtio_gpu.h | |
12478 | ||
3a4d5c94 MT |
12479 | VIRTIO HOST (VHOST) |
12480 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
12481 | L: kvm@vger.kernel.org | |
c996d8b9 | 12482 | L: virtualization@lists.linux-foundation.org |
3a4d5c94 | 12483 | L: netdev@vger.kernel.org |
9f273c24 | 12484 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git |
3a4d5c94 MT |
12485 | S: Maintained |
12486 | F: drivers/vhost/ | |
c117ab84 | 12487 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 12488 | |
271c8651 GH |
12489 | VIRTIO INPUT DRIVER |
12490 | M: Gerd Hoffmann <kraxel@redhat.com> | |
12491 | S: Maintained | |
12492 | F: drivers/virtio/virtio_input.c | |
12493 | F: include/uapi/linux/virtio_input.h | |
12494 | ||
1da177e4 | 12495 | VIA RHINE NETWORK DRIVER |
210347e1 | 12496 | S: Orphan |
f2148a47 | 12497 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 12498 | |
f0bf7f61 | 12499 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 12500 | M: Bruce Chang <brucechang@via.com.tw> |
8b58be88 | 12501 | M: Harald Welte <HaraldWelte@viatech.com> |
f0bf7f61 HW |
12502 | S: Maintained |
12503 | F: drivers/mmc/host/via-sdmmc.c | |
12504 | ||
69e4a7c2 | 12505 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 12506 | M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> |
c69f677c | 12507 | L: linux-fbdev@vger.kernel.org |
69e4a7c2 | 12508 | S: Maintained |
c7babebd FTS |
12509 | F: include/linux/via-core.h |
12510 | F: include/linux/via-gpio.h | |
12511 | F: include/linux/via_i2c.h | |
8a61f013 | 12512 | F: drivers/video/fbdev/via/ |
69e4a7c2 | 12513 | |
01f20734 | 12514 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 12515 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 FR |
12516 | L: netdev@vger.kernel.org |
12517 | S: Maintained | |
f2148a47 | 12518 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 12519 | |
f73f8173 AW |
12520 | VIRT LIB |
12521 | M: Alex Williamson <alex.williamson@redhat.com> | |
12522 | M: Paolo Bonzini <pbonzini@redhat.com> | |
12523 | L: kvm@vger.kernel.org | |
12524 | S: Supported | |
12525 | F: virt/lib/ | |
12526 | ||
77911fd2 | 12527 | VIVID VIRTUAL VIDEO DRIVER |
0b7bc1fa HV |
12528 | M: Hans Verkuil <hverkuil@xs4all.nl> |
12529 | L: linux-media@vger.kernel.org | |
12530 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 12531 | W: https://linuxtv.org |
0b7bc1fa | 12532 | S: Maintained |
77911fd2 | 12533 | F: drivers/media/platform/vivid/* |
0b7bc1fa | 12534 | |
be7f8273 | 12535 | VLAN (802.1Q) |
8b58be88 | 12536 | M: Patrick McHardy <kaber@trash.net> |
be7f8273 PM |
12537 | L: netdev@vger.kernel.org |
12538 | S: Maintained | |
679655da JP |
12539 | F: drivers/net/macvlan.c |
12540 | F: include/linux/if_*vlan.h | |
12541 | F: net/8021q/ | |
be7f8273 | 12542 | |
55e331cf | 12543 | VLYNQ BUS |
8b58be88 | 12544 | M: Florian Fainelli <florian@openwrt.org> |
8578d7af | 12545 | L: openwrt-devel@lists.openwrt.org (subscribers-only) |
55e331cf FF |
12546 | S: Maintained |
12547 | F: drivers/vlynq/vlynq.c | |
12548 | F: include/linux/vlynq.h | |
12549 | ||
390beae4 | 12550 | VME SUBSYSTEM |
74c600e3 | 12551 | M: Martyn Welch <martyn@welchs.me.uk> |
1bd289d1 | 12552 | M: Manohar Vanga <manohar.vanga@gmail.com> |
390beae4 MW |
12553 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
12554 | L: devel@driverdev.osuosl.org | |
12555 | S: Maintained | |
12556 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
12557 | F: Documentation/vme_api.txt | |
12558 | F: drivers/staging/vme/ | |
12559 | F: drivers/vme/ | |
12560 | F: include/linux/vme* | |
12561 | ||
4488e09b AK |
12562 | VMWARE HYPERVISOR INTERFACE |
12563 | M: Alok Kataria <akataria@vmware.com> | |
12564 | L: virtualization@lists.linux-foundation.org | |
12565 | S: Supported | |
12566 | F: arch/x86/kernel/cpu/vmware.c | |
12567 | ||
73b35d07 DT |
12568 | VMWARE BALLOON DRIVER |
12569 | M: Xavier Deguillard <xdeguillard@vmware.com> | |
12570 | M: Philip Moltmann <moltmann@vmware.com> | |
12571 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
12572 | L: linux-kernel@vger.kernel.org | |
12573 | S: Maintained | |
12574 | F: drivers/misc/vmw_balloon.c | |
12575 | ||
8b8be51b TH |
12576 | VMWARE VMMOUSE SUBDRIVER |
12577 | M: "VMware Graphics" <linux-graphics-maintainer@vmware.com> | |
12578 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
12579 | L: linux-input@vger.kernel.org | |
12580 | S: Maintained | |
12581 | F: drivers/input/mouse/vmmouse.c | |
12582 | F: drivers/input/mouse/vmmouse.h | |
12583 | ||
d1a890fa | 12584 | VMWARE VMXNET3 ETHERNET DRIVER |
04e1b734 | 12585 | M: Shrikrishna Khare <skhare@vmware.com> |
65c8bb5b JP |
12586 | M: "VMware, Inc." <pv-drivers@vmware.com> |
12587 | L: netdev@vger.kernel.org | |
12588 | S: Maintained | |
12589 | F: drivers/net/vmxnet3/ | |
d1a890fa | 12590 | |
851b1642 | 12591 | VMware PVSCSI driver |
29374ec6 | 12592 | M: Jim Gill <jgill@vmware.com> |
851b1642 AK |
12593 | M: VMware PV-Drivers <pv-drivers@vmware.com> |
12594 | L: linux-scsi@vger.kernel.org | |
12595 | S: Maintained | |
12596 | F: drivers/scsi/vmw_pvscsi.c | |
12597 | F: drivers/scsi/vmw_pvscsi.h | |
12598 | ||
e53e86c7 | 12599 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 12600 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 12601 | M: Mark Brown <broonie@kernel.org> |
5cdeb2c8 | 12602 | L: linux-kernel@vger.kernel.org |
1dd68f01 | 12603 | W: http://www.slimlogic.co.uk/?p=48 |
6febb5ab | 12604 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
e53e86c7 | 12605 | S: Supported |
9d2597e8 | 12606 | F: Documentation/devicetree/bindings/regulator/ |
679655da | 12607 | F: drivers/regulator/ |
9d2597e8 | 12608 | F: include/dt-bindings/regulator/ |
679655da | 12609 | F: include/linux/regulator/ |
e53e86c7 | 12610 | |
081958eb DA |
12611 | VRF |
12612 | M: David Ahern <dsa@cumulusnetworks.com> | |
12613 | M: Shrijeet Mukherjee <shm@cumulusnetworks.com> | |
12614 | L: netdev@vger.kernel.org | |
12615 | S: Maintained | |
12616 | F: drivers/net/vrf.c | |
562d897d | 12617 | F: Documentation/networking/vrf.txt |
081958eb | 12618 | |
ab41319e | 12619 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 12620 | M: Juerg Haefliger <juergh@gmail.com> |
968ce1b1 | 12621 | L: linux-hwmon@vger.kernel.org |
ab41319e | 12622 | S: Maintained |
679655da JP |
12623 | F: Documentation/hwmon/vt1211 |
12624 | F: drivers/hwmon/vt1211.c | |
ab41319e | 12625 | |
1de9e371 | 12626 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 12627 | M: Roger Lucas <vt8231@hiddenengine.co.uk> |
968ce1b1 | 12628 | L: linux-hwmon@vger.kernel.org |
1de9e371 | 12629 | S: Maintained |
679655da | 12630 | F: drivers/hwmon/vt8231.c |
1de9e371 | 12631 | |
88095e7b TO |
12632 | VUB300 USB to SDIO/SD/MMC bridge chip |
12633 | M: Tony Olech <tony.olech@elandigitalsystems.com> | |
12634 | L: linux-mmc@vger.kernel.org | |
12635 | L: linux-usb@vger.kernel.org | |
12636 | S: Supported | |
12637 | F: drivers/mmc/host/vub300.c | |
12638 | ||
1da177e4 | 12639 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 12640 | M: Evgeniy Polyakov <zbr@ioremap.net> |
1da177e4 | 12641 | S: Maintained |
679655da JP |
12642 | F: Documentation/w1/ |
12643 | F: drivers/w1/ | |
1da177e4 | 12644 | |
13927079 | 12645 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 12646 | M: Marc Hulsman <m.hulsman@tudelft.nl> |
968ce1b1 | 12647 | L: linux-hwmon@vger.kernel.org |
25845c22 | 12648 | S: Maintained |
679655da JP |
12649 | F: Documentation/hwmon/w83791d |
12650 | F: drivers/hwmon/w83791d.c | |
13927079 | 12651 | |
61db011d | 12652 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 12653 | M: Rudolf Marek <r.marek@assembler.cz> |
968ce1b1 | 12654 | L: linux-hwmon@vger.kernel.org |
61db011d | 12655 | S: Maintained |
679655da JP |
12656 | F: Documentation/hwmon/w83793 |
12657 | F: drivers/hwmon/w83793.c | |
61db011d | 12658 | |
e3760b43 | 12659 | W83795 HARDWARE MONITORING DRIVER |
d8130624 | 12660 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 12661 | L: linux-hwmon@vger.kernel.org |
e3760b43 JD |
12662 | S: Maintained |
12663 | F: drivers/hwmon/w83795.c | |
12664 | ||
1da177e4 | 12665 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 12666 | M: Pierre Ossman <pierre@ossman.eu> |
1da177e4 | 12667 | S: Maintained |
679655da | 12668 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 12669 | |
b4e05923 HG |
12670 | WACOM PROTOCOL 4 SERIAL TABLETS |
12671 | M: Julian Squires <julian@cipht.net> | |
12672 | M: Hans de Goede <hdegoede@redhat.com> | |
12673 | L: linux-input@vger.kernel.org | |
12674 | S: Maintained | |
12675 | F: drivers/input/tablet/wacom_serial4.c | |
12676 | ||
3527761c | 12677 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 12678 | M: Wim Van Sebroeck <wim@iguana.be> |
1f32f83e | 12679 | R: Guenter Roeck <linux@roeck-us.net> |
230a5cef WVS |
12680 | L: linux-watchdog@vger.kernel.org |
12681 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 12682 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 12683 | S: Maintained |
540be8b2 | 12684 | F: Documentation/devicetree/bindings/watchdog/ |
679655da JP |
12685 | F: Documentation/watchdog/ |
12686 | F: drivers/watchdog/ | |
12687 | F: include/linux/watchdog.h | |
c117ab84 | 12688 | F: include/uapi/linux/watchdog.h |
3527761c | 12689 | |
1da177e4 | 12690 | WD7000 SCSI DRIVER |
8b58be88 | 12691 | M: Miroslav Zagorac <zaga@fly.cc.fer.hr> |
1da177e4 LT |
12692 | L: linux-scsi@vger.kernel.org |
12693 | S: Maintained | |
679655da | 12694 | F: drivers/scsi/wd7000.c |
1da177e4 | 12695 | |
b22e00f3 DH |
12696 | WIIMOTE HID DRIVER |
12697 | M: David Herrmann <dh.herrmann@googlemail.com> | |
12698 | L: linux-input@vger.kernel.org | |
12699 | S: Maintained | |
12700 | F: drivers/hid/hid-wiimote* | |
12701 | ||
e258b80e | 12702 | WINBOND CIR DRIVER |
364e9e18 | 12703 | M: David Härdeman <david@hardeman.nu> |
e258b80e | 12704 | S: Maintained |
116ab806 | 12705 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 12706 | |
c36a483d WBG |
12707 | WINSYSTEMS EBC-C384 WATCHDOG DRIVER |
12708 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
12709 | L: linux-watchdog@vger.kernel.org | |
12710 | S: Maintained | |
12711 | F: drivers/watchdog/ebc-c384_wdt.c | |
12712 | ||
9c26df9b WBG |
12713 | WINSYSTEMS WS16C48 GPIO DRIVER |
12714 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
12715 | L: linux-gpio@vger.kernel.org | |
12716 | S: Maintained | |
12717 | F: drivers/gpio/gpio-ws16c48.c | |
e258b80e | 12718 | |
8a70da82 | 12719 | WIMAX STACK |
8b58be88 | 12720 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 12721 | M: linux-wimax@intel.com |
49e7d9df | 12722 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
12723 | S: Supported |
12724 | W: http://linuxwimax.org | |
315987dc | 12725 | F: Documentation/wimax/README.wimax |
315987dc JP |
12726 | F: include/linux/wimax/debug.h |
12727 | F: include/net/wimax.h | |
c117ab84 | 12728 | F: include/uapi/linux/wimax.h |
315987dc | 12729 | F: net/wimax/ |
8a70da82 | 12730 | |
5fc14680 | 12731 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 12732 | M: Miloslav Trmac <mitr@volny.cz> |
5fc14680 | 12733 | S: Maintained |
679655da | 12734 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 12735 | |
1da177e4 | 12736 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 12737 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
724c6b35 | 12738 | L: linux-wireless@vger.kernel.org |
926554c4 | 12739 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 12740 | S: Maintained |
679655da | 12741 | F: drivers/net/wireless/wl3501* |
1da177e4 | 12742 | |
055bcbcb | 12743 | WOLFSON MICROELECTRONICS DRIVERS |
fef95164 | 12744 | L: patches@opensource.wolfsonmicro.com |
f0e03dbd RF |
12745 | T: git https://github.com/CirrusLogic/linux-drivers.git |
12746 | W: https://github.com/CirrusLogic/linux-drivers/wiki | |
b75ea16a | 12747 | S: Supported |
3768f0b1 | 12748 | F: Documentation/hwmon/wm83?? |
f494993f CK |
12749 | F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt |
12750 | F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt | |
12751 | F: Documentation/devicetree/bindings/mfd/arizona.txt | |
af1c5386 | 12752 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 12753 | F: drivers/clk/clk-wm83*.c |
9c309598 | 12754 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 12755 | F: drivers/leds/leds-wm83*.c |
25b273ba | 12756 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 12757 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 12758 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
12759 | F: drivers/input/misc/wm831x-on.c |
12760 | F: drivers/input/touchscreen/wm831x-ts.c | |
12761 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
12762 | F: drivers/mfd/arizona* |
12763 | F: drivers/mfd/wm*.c | |
12ebc137 | 12764 | F: drivers/mfd/cs47l24* |
b75ea16a MB |
12765 | F: drivers/power/wm83*.c |
12766 | F: drivers/rtc/rtc-wm83*.c | |
12767 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 12768 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 12769 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 12770 | F: include/linux/mfd/arizona/ |
3860e6c4 | 12771 | F: include/linux/mfd/wm831x/ |
b75ea16a | 12772 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 12773 | F: include/linux/mfd/wm8400* |
59ec6da2 | 12774 | F: include/linux/wm97xx.h |
055bcbcb | 12775 | F: include/sound/wm????.h |
9c309598 | 12776 | F: sound/soc/codecs/arizona.? |
055bcbcb | 12777 | F: sound/soc/codecs/wm* |
12ebc137 | 12778 | F: sound/soc/codecs/cs47l24* |
b75ea16a | 12779 | |
3e6cd7a4 TH |
12780 | WORKQUEUE |
12781 | M: Tejun Heo <tj@kernel.org> | |
badb7f5e | 12782 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
3e6cd7a4 TH |
12783 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
12784 | S: Maintained | |
12785 | F: include/linux/workqueue.h | |
12786 | F: kernel/workqueue.c | |
12787 | F: Documentation/workqueue.txt | |
12788 | ||
39ac9f48 CYT |
12789 | X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS |
12790 | M: Chen-Yu Tsai <wens@csie.org> | |
12791 | L: linux-kernel@vger.kernel.org | |
12792 | S: Maintained | |
12793 | N: axp[128] | |
12794 | ||
1da177e4 | 12795 | X.25 NETWORK LAYER |
8bf28059 | 12796 | M: Andrew Hendry <andrew.hendry@gmail.com> |
1da177e4 | 12797 | L: linux-x25@vger.kernel.org |
8bf28059 | 12798 | S: Odd Fixes |
679655da JP |
12799 | F: Documentation/networking/x25* |
12800 | F: include/net/x25* | |
12801 | F: net/x25/ | |
1da177e4 | 12802 | |
e2d1d6c0 | 12803 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
12804 | M: Thomas Gleixner <tglx@linutronix.de> |
12805 | M: Ingo Molnar <mingo@redhat.com> | |
12806 | M: "H. Peter Anvin" <hpa@zytor.com> | |
bcde563c | 12807 | M: x86@kernel.org |
981c3a4f | 12808 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 12809 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 12810 | S: Maintained |
679655da JP |
12811 | F: Documentation/x86/ |
12812 | F: arch/x86/ | |
e2d1d6c0 | 12813 | |
d0944853 | 12814 | X86 PLATFORM DRIVERS |
e181ba15 | 12815 | M: Darren Hart <dvhart@infradead.org> |
d0944853 | 12816 | L: platform-driver-x86@vger.kernel.org |
e181ba15 | 12817 | T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git |
d0944853 | 12818 | S: Maintained |
14430813 | 12819 | F: drivers/platform/x86/ |
3a4bceef | 12820 | F: drivers/platform/olpc/ |
d0944853 | 12821 | |
c1f5c54b IM |
12822 | X86 MCE INFRASTRUCTURE |
12823 | M: Tony Luck <tony.luck@intel.com> | |
487ba8e8 | 12824 | M: Borislav Petkov <bp@alien8.de> |
c1f5c54b IM |
12825 | L: linux-edac@vger.kernel.org |
12826 | S: Maintained | |
12827 | F: arch/x86/kernel/cpu/mcheck/* | |
12828 | ||
79ebdc95 BP |
12829 | X86 MICROCODE UPDATE SUPPORT |
12830 | M: Borislav Petkov <bp@alien8.de> | |
12831 | S: Maintained | |
12832 | F: arch/x86/kernel/cpu/microcode/* | |
12833 | ||
f0905c5a AL |
12834 | X86 VDSO |
12835 | M: Andy Lutomirski <luto@amacapital.net> | |
12836 | L: linux-kernel@vger.kernel.org | |
12837 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso | |
12838 | S: Maintained | |
d603c8e1 | 12839 | F: arch/x86/entry/vdso/ |
f0905c5a | 12840 | |
d6fad502 | 12841 | XC2028/3028 TUNER DRIVER |
5dc8a864 MCC |
12842 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
12843 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
d6fad502 | 12844 | L: linux-media@vger.kernel.org |
a825eaec | 12845 | W: https://linuxtv.org |
d6fad502 MCC |
12846 | T: git git://linuxtv.org/media_tree.git |
12847 | S: Maintained | |
12848 | F: drivers/media/tuners/tuner-xc2028.* | |
12849 | ||
c4468085 | 12850 | XEN HYPERVISOR INTERFACE |
3eeef8f7 KRW |
12851 | M: Boris Ostrovsky <boris.ostrovsky@oracle.com> |
12852 | M: David Vrabel <david.vrabel@citrix.com> | |
101ecde5 | 12853 | M: Juergen Gross <jgross@suse.com> |
11dbb52b | 12854 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
ea70ba3a | 12855 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git |
c4468085 IC |
12856 | S: Supported |
12857 | F: arch/x86/xen/ | |
12858 | F: drivers/*/xen-*front.c | |
12859 | F: drivers/xen/ | |
12860 | F: arch/x86/include/asm/xen/ | |
12861 | F: include/xen/ | |
c117ab84 | 12862 | F: include/uapi/xen/ |
c4468085 | 12863 | |
77bfb479 | 12864 | XEN HYPERVISOR ARM |
85d1a29d | 12865 | M: Stefano Stabellini <sstabellini@kernel.org> |
11dbb52b | 12866 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
85d1a29d | 12867 | S: Maintained |
77bfb479 SS |
12868 | F: arch/arm/xen/ |
12869 | F: arch/arm/include/asm/xen/ | |
12870 | ||
b475e83f | 12871 | XEN HYPERVISOR ARM64 |
85d1a29d | 12872 | M: Stefano Stabellini <sstabellini@kernel.org> |
11dbb52b | 12873 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
85d1a29d | 12874 | S: Maintained |
b475e83f SS |
12875 | F: arch/arm64/xen/ |
12876 | F: arch/arm64/include/asm/xen/ | |
12877 | ||
9b57e1a7 | 12878 | XEN NETWORK BACKEND DRIVER |
8386040b | 12879 | M: Wei Liu <wei.liu2@citrix.com> |
11dbb52b | 12880 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
9b57e1a7 IC |
12881 | L: netdev@vger.kernel.org |
12882 | S: Supported | |
12883 | F: drivers/net/xen-netback/* | |
12884 | ||
c5f8e29d KRW |
12885 | XEN PCI SUBSYSTEM |
12886 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 12887 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
12888 | S: Supported |
12889 | F: arch/x86/pci/*xen* | |
12890 | F: drivers/pci/*xen* | |
12891 | ||
a2c5ae65 KRW |
12892 | XEN BLOCK SUBSYSTEM |
12893 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
bcadb699 | 12894 | M: Roger Pau Monné <roger.pau@citrix.com> |
a2c5ae65 KRW |
12895 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
12896 | S: Supported | |
12897 | F: drivers/block/xen-blkback/* | |
12898 | F: drivers/block/xen* | |
12899 | ||
15d03609 JG |
12900 | XEN PVSCSI DRIVERS |
12901 | M: Juergen Gross <jgross@suse.com> | |
12902 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) | |
12903 | L: linux-scsi@vger.kernel.org | |
12904 | S: Supported | |
12905 | F: drivers/scsi/xen-scsifront.c | |
12906 | F: drivers/xen/xen-scsiback.c | |
12907 | F: include/xen/interface/io/vscsiif.h | |
12908 | ||
c5f8e29d KRW |
12909 | XEN SWIOTLB SUBSYSTEM |
12910 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 12911 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
12912 | S: Supported |
12913 | F: arch/x86/xen/*swiotlb* | |
12914 | F: drivers/xen/*swiotlb* | |
12915 | ||
1da177e4 LT |
12916 | XFS FILESYSTEM |
12917 | P: Silicon Graphics Inc | |
809625ca | 12918 | M: Dave Chinner <david@fromorbit.com> |
18caa67a | 12919 | M: xfs@oss.sgi.com |
d7ede1aa | 12920 | L: xfs@oss.sgi.com |
1da177e4 | 12921 | W: http://oss.sgi.com/projects/xfs |
9f273c24 | 12922 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git |
1da177e4 | 12923 | S: Supported |
679655da JP |
12924 | F: Documentation/filesystems/xfs.txt |
12925 | F: fs/xfs/ | |
1da177e4 | 12926 | |
8a3b7a25 | 12927 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
12928 | M: Anirudha Sarangi <anirudh@xilinx.com> |
12929 | M: John Linn <John.Linn@xilinx.com> | |
8a3b7a25 | 12930 | S: Maintained |
12931 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
12932 | ||
238b8721 | 12933 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 12934 | M: Peter Korsgaard <jacmet@sunsite.dk> |
238b8721 PK |
12935 | L: linux-serial@vger.kernel.org |
12936 | S: Maintained | |
df621252 | 12937 | F: drivers/tty/serial/uartlite.c |
238b8721 | 12938 | |
df330515 LP |
12939 | XILINX VIDEO IP CORES |
12940 | M: Hyun Kwon <hyun.kwon@xilinx.com> | |
12941 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
12942 | L: linux-media@vger.kernel.org | |
12943 | T: git git://linuxtv.org/media_tree.git | |
12944 | S: Supported | |
12945 | F: Documentation/devicetree/bindings/media/xilinx/ | |
12946 | F: drivers/media/platform/xilinx/ | |
a5562f65 | 12947 | F: include/uapi/linux/xilinx-v4l2-controls.h |
df330515 | 12948 | |
74316949 EB |
12949 | XILLYBUS DRIVER |
12950 | M: Eli Billauer <eli.billauer@gmail.com> | |
12951 | L: linux-kernel@vger.kernel.org | |
12952 | S: Supported | |
12953 | F: drivers/char/xillybus/ | |
12954 | ||
f620e4b8 MF |
12955 | XTENSA XTFPGA PLATFORM SUPPORT |
12956 | M: Max Filippov <jcmvbkbc@gmail.com> | |
12957 | L: linux-xtensa@linux-xtensa.org | |
12958 | S: Maintained | |
12959 | F: drivers/spi/spi-xtensa-xtfpga.c | |
57b7068d | 12960 | F: sound/soc/xtensa/xtfpga-i2s.c |
f620e4b8 | 12961 | |
1da177e4 | 12962 | YAM DRIVER FOR AX.25 |
8b58be88 | 12963 | M: Jean-Paul Roubelat <jpr@f6fbb.org> |
1da177e4 LT |
12964 | L: linux-hams@vger.kernel.org |
12965 | S: Maintained | |
679655da JP |
12966 | F: drivers/net/hamradio/yam* |
12967 | F: include/linux/yam.h | |
1da177e4 | 12968 | |
af64a5eb | 12969 | YEALINK PHONE DRIVER |
8b58be88 | 12970 | M: Henk Vergonet <Henk.Vergonet@gmail.com> |
af64a5eb HV |
12971 | L: usbb2k-api-dev@nongnu.org |
12972 | S: Maintained | |
679655da JP |
12973 | F: Documentation/input/yealink.txt |
12974 | F: drivers/input/misc/yealink.* | |
af64a5eb | 12975 | |
1da177e4 | 12976 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 12977 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
12978 | W: http://yaina.de/jreuter/ |
12979 | W: http://www.qsl.net/dl1bke/ | |
12980 | L: linux-hams@vger.kernel.org | |
12981 | S: Maintained | |
679655da JP |
12982 | F: Documentation/networking/z8530drv.txt |
12983 | F: drivers/net/hamradio/*scc.c | |
12984 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 12985 | |
0cf31ec1 | 12986 | ZBUD COMPRESSED PAGE ALLOCATOR |
0bb181c7 | 12987 | M: Seth Jennings <sjenning@redhat.com> |
0cf31ec1 SJ |
12988 | L: linux-mm@kvack.org |
12989 | S: Maintained | |
12990 | F: mm/zbud.c | |
12991 | F: include/linux/zbud.h | |
12992 | ||
7c0c3afb | 12993 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
12994 | M: Daniel Drake <dsd@gentoo.org> |
12995 | M: Ulrich Kunitz <kune@deine-taler.de> | |
7c0c3afb | 12996 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 12997 | L: linux-wireless@vger.kernel.org |
7c0c3afb DD |
12998 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
12999 | S: Maintained | |
6948300c | 13000 | F: drivers/net/wireless/zydas/zd1211rw/ |
7c0c3afb | 13001 | |
20263029 DS |
13002 | ZPOOL COMPRESSED PAGE STORAGE API |
13003 | M: Dan Streetman <ddstreet@ieee.org> | |
13004 | L: linux-mm@kvack.org | |
13005 | S: Maintained | |
13006 | F: mm/zpool.c | |
13007 | F: include/linux/zpool.h | |
13008 | ||
1da177e4 | 13009 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 13010 | L: mjpeg-users@lists.sourceforge.net |
f63145e2 | 13011 | L: linux-media@vger.kernel.org |
1da177e4 | 13012 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
a825eaec | 13013 | T: hg https://linuxtv.org/hg/v4l-dvb |
f63145e2 | 13014 | S: Odd Fixes |
90d72ac6 | 13015 | F: drivers/media/pci/zoran/ |
1da177e4 | 13016 | |
6920f2cc MK |
13017 | ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER |
13018 | M: Minchan Kim <minchan@kernel.org> | |
13019 | M: Nitin Gupta <ngupta@vflare.org> | |
74f3037c | 13020 | R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
6920f2cc MK |
13021 | L: linux-kernel@vger.kernel.org |
13022 | S: Maintained | |
13023 | F: drivers/block/zram/ | |
13024 | F: Documentation/blockdev/zram.txt | |
13025 | ||
8b4a4080 | 13026 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 13027 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
8b4a4080 | 13028 | S: Maintained |
df621252 | 13029 | F: drivers/tty/serial/zs.* |
8b4a4080 | 13030 | |
eae70d06 MK |
13031 | ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR |
13032 | M: Minchan Kim <minchan@kernel.org> | |
13033 | M: Nitin Gupta <ngupta@vflare.org> | |
41192a2d | 13034 | R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
eae70d06 MK |
13035 | L: linux-mm@kvack.org |
13036 | S: Maintained | |
13037 | F: mm/zsmalloc.c | |
13038 | F: include/linux/zsmalloc.h | |
d02be50d | 13039 | F: Documentation/vm/zsmalloc.txt |
eae70d06 | 13040 | |
0cf31ec1 | 13041 | ZSWAP COMPRESSED SWAP CACHING |
0bb181c7 | 13042 | M: Seth Jennings <sjenning@redhat.com> |
0cf31ec1 SJ |
13043 | L: linux-mm@kvack.org |
13044 | S: Maintained | |
13045 | F: mm/zswap.c | |
13046 | ||
1da177e4 | 13047 | THE REST |
8b58be88 | 13048 | M: Linus Torvalds <torvalds@linux-foundation.org> |
34d03cc1 | 13049 | L: linux-kernel@vger.kernel.org |
8a6e2535 | 13050 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 13051 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 13052 | S: Buried alive in reporters |
34d03cc1 JP |
13053 | F: * |
13054 | F: */ |