]>
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 | |
e9d766b9 | 801 | F: Documentation/devicetree/bindings/staging/ion/ |
d03c023e LA |
802 | F: drivers/staging/android/ion |
803 | F: drivers/staging/android/uapi/ion.h | |
804 | F: drivers/staging/android/uapi/ion_test.h | |
805 | ||
42269063 | 806 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 807 | M: Johannes Berg <johannes@sipsolutions.net> |
a4724ed6 | 808 | L: linuxppc-dev@lists.ozlabs.org |
93711660 | 809 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
42269063 | 810 | S: Maintained |
679655da | 811 | F: sound/aoa/ |
42269063 | 812 | |
97a445da WBG |
813 | APEX EMBEDDED SYSTEMS STX104 DAC DRIVER |
814 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
815 | L: linux-iio@vger.kernel.org | |
816 | S: Maintained | |
817 | F: drivers/iio/dac/stx104.c | |
818 | ||
1da177e4 | 819 | APM DRIVER |
e5f6450c | 820 | M: Jiri Kosina <jikos@kernel.org> |
81024fc4 | 821 | S: Odd fixes |
9f273c24 | 822 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git |
679655da JP |
823 | F: arch/x86/kernel/apm_32.c |
824 | F: include/linux/apm_bios.h | |
c117ab84 | 825 | F: include/uapi/linux/apm_bios.h |
81024fc4 | 826 | F: drivers/char/apm-emulation.c |
1da177e4 | 827 | |
bd7aa4b2 | 828 | APPLE BCM5974 MULTITOUCH DRIVER |
75dd112a | 829 | M: Henrik Rydberg <rydberg@bitmath.org> |
bd7aa4b2 | 830 | L: linux-input@vger.kernel.org |
75dd112a | 831 | S: Odd fixes |
679655da | 832 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 833 | |
6f2fad74 | 834 | APPLE SMC DRIVER |
75dd112a | 835 | M: Henrik Rydberg <rydberg@bitmath.org> |
968ce1b1 | 836 | L: linux-hwmon@vger.kernel.org |
75dd112a | 837 | S: Odd fixes |
679655da | 838 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 839 | |
1da177e4 | 840 | APPLETALK NETWORK LAYER |
8b58be88 | 841 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
1da177e4 | 842 | S: Maintained |
679655da JP |
843 | F: drivers/net/appletalk/ |
844 | F: net/appletalk/ | |
1da177e4 | 845 | |
21c75328 DD |
846 | APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT |
847 | M: Duc Dang <dhdang@apm.com> | |
848 | S: Supported | |
849 | F: arch/arm64/boot/dts/apm/ | |
850 | ||
24299502 IS |
851 | APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER |
852 | M: Iyappan Subramanian <isubramanian@apm.com> | |
853 | M: Keyur Chudgar <kchudgar@apm.com> | |
24299502 IS |
854 | S: Supported |
855 | F: drivers/net/ethernet/apm/xgene/ | |
2efccc60 | 856 | F: drivers/net/phy/mdio-xgene.c |
24299502 | 857 | F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt |
2efccc60 | 858 | F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt |
24299502 | 859 | |
62a37dc7 LP |
860 | APTINA CAMERA SENSOR PLL |
861 | M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com> | |
862 | L: linux-media@vger.kernel.org | |
863 | S: Maintained | |
864 | F: drivers/media/i2c/aptina-pll.* | |
865 | ||
1154ea7d | 866 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 867 | M: Jaya Kumar <jayalk@intworks.biz> |
1154ea7d | 868 | S: Maintained |
8a61f013 JH |
869 | F: drivers/video/fbdev/arcfb.c |
870 | F: drivers/video/fbdev/core/fb_defio.c | |
1154ea7d | 871 | |
c38f6ac7 MG |
872 | ARCNET NETWORK LAYER |
873 | M: Michael Grzeschik <m.grzeschik@pengutronix.de> | |
874 | L: netdev@vger.kernel.org | |
875 | S: Maintained | |
876 | F: drivers/net/arcnet/ | |
877 | F: include/uapi/linux/if_arcnet.h | |
878 | ||
71d298ce AB |
879 | ARC PGU DRM DRIVER |
880 | M: Alexey Brodkin <abrodkin@synopsys.com> | |
881 | S: Supported | |
882 | F: drivers/gpu/drm/arc/ | |
883 | F: Documentation/devicetree/bindings/display/snps,arcpgu.txt | |
884 | ||
588deb61 MR |
885 | ARM ARCHITECTED TIMER DRIVER |
886 | M: Mark Rutland <mark.rutland@arm.com> | |
887 | M: Marc Zyngier <marc.zyngier@arm.com> | |
888 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
889 | S: Maintained | |
890 | F: arch/arm/include/asm/arch_timer.h | |
891 | F: arch/arm64/include/asm/arch_timer.h | |
892 | F: drivers/clocksource/arm_arch_timer.c | |
893 | ||
c5a906a5 LD |
894 | ARM HDLCD DRM DRIVER |
895 | M: Liviu Dudau <liviu.dudau@arm.com> | |
896 | S: Supported | |
59ba2422 | 897 | F: drivers/gpu/drm/arm/hdlcd_* |
c5a906a5 LD |
898 | F: Documentation/devicetree/bindings/display/arm,hdlcd.txt |
899 | ||
59ba2422 LD |
900 | ARM MALI-DP DRM DRIVER |
901 | M: Liviu Dudau <liviu.dudau@arm.com> | |
902 | M: Brian Starkey <brian.starkey@arm.com> | |
903 | M: Mali DP Maintainers <malidp@foss.arm.com> | |
904 | S: Supported | |
905 | F: drivers/gpu/drm/arm/ | |
906 | F: Documentation/devicetree/bindings/display/arm,malidp.txt | |
907 | ||
1da177e4 | 908 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 909 | M: Ian Molton <spyro@f2s.com> |
1da177e4 | 910 | S: Maintained |
679655da JP |
911 | F: arch/arm/lib/floppydma.S |
912 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 913 | |
6f96521f WD |
914 | ARM PMU PROFILING AND DEBUGGING |
915 | M: Will Deacon <will.deacon@arm.com> | |
55d5c4ab | 916 | M: Mark Rutland <mark.rutland@arm.com> |
6f96521f | 917 | S: Maintained |
55d5c4ab | 918 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
dd06a84b | 919 | F: arch/arm*/kernel/perf_* |
6f96521f | 920 | F: arch/arm/oprofile/common.c |
dd06a84b MR |
921 | F: arch/arm*/kernel/hw_breakpoint.c |
922 | F: arch/arm*/include/asm/hw_breakpoint.h | |
923 | F: arch/arm*/include/asm/perf_event.h | |
55d5c4ab | 924 | F: drivers/perf/* |
fa8ad788 | 925 | F: include/linux/perf/arm_pmu.h |
55d5c4ab | 926 | F: Documentation/devicetree/bindings/arm/pmu.txt |
6f96521f | 927 | |
d4275354 | 928 | ARM PORT |
54176cc6 | 929 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 930 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 931 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
932 | S: Maintained |
933 | F: arch/arm/ | |
934 | ||
d323c243 SB |
935 | ARM SUB-ARCHITECTURES |
936 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
56ca9d98 | 937 | S: Maintained |
d323c243 SB |
938 | F: arch/arm/mach-*/ |
939 | F: arch/arm/plat-*/ | |
940 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
941 | ||
cefbf4ea | 942 | ARM PRIMECELL AACI PL041 DRIVER |
54176cc6 | 943 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea RK |
944 | S: Maintained |
945 | F: sound/arm/aaci.* | |
946 | ||
947 | ARM PRIMECELL CLCD PL110 DRIVER | |
54176cc6 | 948 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea | 949 | S: Maintained |
8a61f013 | 950 | F: drivers/video/fbdev/amba-clcd.* |
cefbf4ea RK |
951 | |
952 | ARM PRIMECELL KMI PL050 DRIVER | |
54176cc6 | 953 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea RK |
954 | S: Maintained |
955 | F: drivers/input/serio/ambakmi.* | |
956 | F: include/linux/amba/kmi.h | |
957 | ||
2761f5c2 | 958 | ARM PRIMECELL MMCI PL180/1 DRIVER |
54176cc6 | 959 | M: Russell King <linux@armlinux.org.uk> |
08a5c9a2 | 960 | S: Maintained |
679655da | 961 | F: drivers/mmc/host/mmci.* |
2f748aaa | 962 | F: include/linux/amba/mmci.h |
2761f5c2 | 963 | |
1b4304e5 | 964 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
54176cc6 | 965 | M: Russell King <linux@armlinux.org.uk> |
1b4304e5 RK |
966 | S: Maintained |
967 | F: drivers/tty/serial/amba-pl01*.c | |
968 | F: include/linux/amba/serial.h | |
2761f5c2 | 969 | |
cefbf4ea | 970 | ARM PRIMECELL BUS SUPPORT |
54176cc6 | 971 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea RK |
972 | S: Maintained |
973 | F: drivers/amba/ | |
974 | F: include/linux/amba/bus.h | |
975 | ||
2b7a52a4 | 976 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 977 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 978 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
979 | S: Maintained |
980 | ||
9c784f95 | 981 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 982 | M: Sergey Lapin <slapin@ossfans.org> |
efc03ecb | 983 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9c784f95 SL |
984 | S: Maintained |
985 | ||
2b7a52a4 | 986 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 987 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 988 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
989 | S: Maintained |
990 | ||
5c6dcd7f | 991 | ARM/Allwinner sunXi SoC support |
1b106699 | 992 | M: Maxime Ripard <maxime.ripard@free-electrons.com> |
5c6dcd7f | 993 | M: Chen-Yu Tsai <wens@csie.org> |
1b106699 MR |
994 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
995 | S: Maintained | |
5c6dcd7f | 996 | N: sun[x456789]i |
60b0f380 MR |
997 | |
998 | ARM/Allwinner SoC Clock Support | |
999 | M: Emilio López <emilio@elopez.com.ar> | |
1000 | S: Maintained | |
1001 | F: drivers/clk/sunxi/ | |
1b106699 | 1002 | |
79318452 | 1003 | ARM/Amlogic Meson SoC support |
7c1e3876 | 1004 | M: Carlo Caione <carlo@caione.org> |
6683d91c | 1005 | M: Kevin Hilman <khilman@baylibre.com> |
7c1e3876 | 1006 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
6683d91c | 1007 | L: linux-amlogic@lists.infradead.org |
79318452 | 1008 | W: http://linux-meson.com/ |
7c1e3876 | 1009 | S: Maintained |
79318452 CC |
1010 | F: arch/arm/mach-meson/ |
1011 | F: arch/arm/boot/dts/meson* | |
6683d91c KH |
1012 | F: arch/arm64/boot/dts/amlogic/ |
1013 | F: drivers/pinctrl/meson/ | |
79318452 | 1014 | N: meson |
7c1e3876 | 1015 | |
eff506fa TZ |
1016 | ARM/Annapurna Labs ALPINE ARCHITECTURE |
1017 | M: Tsahee Zidenberg <tsahee@annapurnalabs.com> | |
a9e5547b | 1018 | M: Antoine Tenart <antoine.tenart@free-electrons.com> |
4d2bf027 | 1019 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
eff506fa TZ |
1020 | S: Maintained |
1021 | F: arch/arm/mach-alpine/ | |
a9e5547b AT |
1022 | F: arch/arm/boot/dts/alpine* |
1023 | F: arch/arm64/boot/dts/al/ | |
1024 | F: drivers/*/*alpine* | |
eff506fa | 1025 | |
5255034d LP |
1026 | ARM/ARTPEC MACHINE SUPPORT |
1027 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
1028 | M: Lars Persson <lars.persson@axis.com> | |
1029 | M: Niklas Cassel <niklas.cassel@axis.com> | |
1030 | S: Maintained | |
1031 | L: linux-arm-kernel@axis.com | |
1032 | F: arch/arm/mach-artpec | |
1033 | F: arch/arm/boot/dts/artpec6* | |
33b8ac91 | 1034 | F: drivers/clk/axis |
5255034d | 1035 | |
8c2ed9bc JS |
1036 | ARM/ASPEED MACHINE SUPPORT |
1037 | M: Joel Stanley <joel@jms.id.au> | |
1038 | S: Maintained | |
1039 | F: arch/arm/mach-aspeed/ | |
1040 | F: arch/arm/boot/dts/aspeed-* | |
1041 | F: drivers/*/*aspeed* | |
1042 | ||
8dca5ce8 | 1043 | ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT |
c1fc8675 | 1044 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
d68b35f8 | 1045 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
c1fc8675 | 1046 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
efc03ecb | 1047 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
c1fc8675 | 1048 | W: http://www.linux4sam.org |
9f273c24 | 1049 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git |
c1fc8675 NF |
1050 | S: Supported |
1051 | F: arch/arm/mach-at91/ | |
f0a0a58e | 1052 | F: include/soc/at91/ |
70e389cc MB |
1053 | F: arch/arm/boot/dts/at91*.dts |
1054 | F: arch/arm/boot/dts/at91*.dtsi | |
1055 | F: arch/arm/boot/dts/sama*.dts | |
1056 | F: arch/arm/boot/dts/sama*.dtsi | |
5f58c970 | 1057 | F: arch/arm/include/debug/at91.S |
d4a89c7d | 1058 | |
6e05dd4e BB |
1059 | ARM/ATMEL AT91 Clock Support |
1060 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
1061 | S: Maintained | |
1062 | F: drivers/clk/at91 | |
1063 | ||
986cf2e9 | 1064 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
5d3ad8a6 | 1065 | M: Rob Herring <robh@kernel.org> |
986cf2e9 RH |
1066 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1067 | S: Maintained | |
1068 | F: arch/arm/mach-highbank/ | |
e68d7c14 RH |
1069 | F: arch/arm/boot/dts/highbank.dts |
1070 | F: arch/arm/boot/dts/ecx-*.dts* | |
986cf2e9 | 1071 | |
d94f944e | 1072 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
5529c2cd | 1073 | M: Krzysztof Halasa <khalasa@piap.pl> |
d94f944e AV |
1074 | S: Maintained |
1075 | F: arch/arm/mach-cns3xxx/ | |
d94f944e | 1076 | |
4863dea3 SG |
1077 | ARM/CAVIUM THUNDER NETWORK DRIVER |
1078 | M: Sunil Goutham <sgoutham@cavium.com> | |
1079 | M: Robert Richter <rric@kernel.org> | |
1080 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1081 | S: Supported | |
322e5cc5 | 1082 | F: drivers/net/ethernet/cavium/thunder/ |
4863dea3 | 1083 | |
386ab516 AS |
1084 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
1085 | M: Alexander Shiyan <shc_work@mail.ru> | |
1086 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1087 | S: Odd Fixes | |
b8ba3874 | 1088 | N: clps711x |
386ab516 | 1089 | |
2b7a52a4 | 1090 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 1091 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
1c5454ee | 1092 | M: Ryan Mallon <rmallon@gmail.com> |
efc03ecb | 1093 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 | 1094 | S: Maintained |
d19d3667 HS |
1095 | F: arch/arm/mach-ep93xx/ |
1096 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
1097 | |
1098 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 1099 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1100 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1101 | S: Maintained |
1102 | ||
d4275354 | 1103 | ARM/CLKDEV SUPPORT |
54176cc6 | 1104 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1105 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
37417046 | 1106 | S: Maintained |
d4275354 | 1107 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 1108 | F: drivers/clk/clkdev.c |
d4275354 | 1109 | |
d48134e7 | 1110 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 1111 | M: Mike Rapoport <mike@compulab.co.il> |
efc03ecb | 1112 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
a9da4f7e RK |
1113 | S: Maintained |
1114 | ||
94150095 HF |
1115 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
1116 | M: Hubert Feurstein <hubert.feurstein@contec.at> | |
1117 | S: Maintained | |
1118 | F: arch/arm/mach-ep93xx/micro9.c | |
1119 | ||
a06ae860 PP |
1120 | ARM/CORESIGHT FRAMEWORK AND DRIVERS |
1121 | M: Mathieu Poirier <mathieu.poirier@linaro.org> | |
1122 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1123 | S: Maintained | |
01081f5a | 1124 | F: drivers/hwtracing/coresight/* |
a06ae860 PP |
1125 | F: Documentation/trace/coresight.txt |
1126 | F: Documentation/devicetree/bindings/arm/coresight.txt | |
7a25ec8e | 1127 | F: Documentation/ABI/testing/sysfs-bus-coresight-devices-* |
7e21b0d5 | 1128 | F: tools/perf/arch/arm/util/pmu.c |
a818c563 MP |
1129 | F: tools/perf/arch/arm/util/auxtrace.c |
1130 | F: tools/perf/arch/arm/util/cs-etm.c | |
1131 | F: tools/perf/arch/arm/util/cs-etm.h | |
1132 | F: tools/perf/util/cs-etm.h | |
a06ae860 | 1133 | |
1da177e4 | 1134 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 1135 | M: Richard Purdie <rpurdie@rpsys.net> |
1da177e4 LT |
1136 | S: Maintained |
1137 | ||
881a95f9 | 1138 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 1139 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 1140 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
b60e23ba | 1141 | T: git git://github.com/ulli-kroll/linux.git |
162500b3 | 1142 | S: Maintained |
f49afbb5 | 1143 | F: arch/arm/mach-gemini/ |
98a9bb5b | 1144 | F: drivers/rtc/rtc-gemini.c |
881a95f9 | 1145 | |
a990cbd8 | 1146 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
5abf58bf | 1147 | M: Barry Song <baohua@kernel.org> |
a990cbd8 | 1148 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
85529d14 | 1149 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
a990cbd8 | 1150 | S: Maintained |
e68d7c14 | 1151 | F: arch/arm/boot/dts/prima2* |
a990cbd8 | 1152 | F: arch/arm/mach-prima2/ |
4a9c44f1 | 1153 | F: drivers/clk/sirf/ |
05f30e8d | 1154 | F: drivers/clocksource/timer-prima2.c |
5833ac98 | 1155 | F: drivers/clocksource/timer-atlas7.c |
f8505ef5 | 1156 | N: [^a-z]sirf |
a990cbd8 | 1157 | |
c9d862c4 BS |
1158 | ARM/CONEXANT DIGICOLOR MACHINE SUPPORT |
1159 | M: Baruch Siach <baruch@tkos.co.il> | |
1160 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1161 | S: Maintained | |
cde137aa | 1162 | F: arch/arm/boot/dts/cx92755* |
c9d862c4 BS |
1163 | N: digicolor |
1164 | ||
d4275354 | 1165 | ARM/EBSA110 MACHINE SUPPORT |
54176cc6 | 1166 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1167 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1168 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
1169 | S: Maintained |
1170 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 1171 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 1172 | |
4721f3ce UKK |
1173 | ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT |
1174 | M: Uwe Kleine-König <kernel@pengutronix.de> | |
1175 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1176 | S: Maintained | |
1177 | N: efm32 | |
1178 | ||
a9da4f7e | 1179 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
1180 | M: Daniel Ribeiro <drwyrm@gmail.com> |
1181 | M: Stefan Schmidt <stefan@openezx.org> | |
1182 | M: Harald Welte <laforge@openezx.org> | |
d66f1886 | 1183 | L: openezx-devel@lists.openezx.org (moderated for non-subscribers) |
a9da4f7e RK |
1184 | W: http://www.openezx.org/ |
1185 | S: Maintained | |
cafc2265 SS |
1186 | T: topgit git://git.openezx.org/openezx.git |
1187 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 1188 | |
6a915af9 | 1189 | ARM/FARADAY FA526 PORT |
162500b3 | 1190 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 1191 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
162500b3 | 1192 | S: Maintained |
1fa7e547 | 1193 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 1194 | F: arch/arm/mm/*-fa* |
6a915af9 | 1195 | |
d4275354 | 1196 | ARM/FOOTBRIDGE ARCHITECTURE |
54176cc6 | 1197 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1198 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1199 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
1200 | S: Maintained |
1201 | F: arch/arm/include/asm/hardware/dec21285.h | |
1202 | F: arch/arm/mach-footbridge/ | |
1203 | ||
86183a5f | 1204 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
7609ea2a | 1205 | M: Shawn Guo <shawnguo@kernel.org> |
8b58be88 | 1206 | M: Sascha Hauer <kernel@pengutronix.de> |
b046302a | 1207 | R: Fabio Estevam <fabio.estevam@nxp.com> |
efc03ecb | 1208 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
86183a5f | 1209 | S: Maintained |
f1c12837 | 1210 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
adf79292 | 1211 | F: arch/arm/mach-imx/ |
ce515a6b | 1212 | F: arch/arm/mach-mxs/ |
2a82f95c | 1213 | F: arch/arm/boot/dts/imx* |
e5dafa22 | 1214 | F: arch/arm/configs/imx*_defconfig |
cf20968a SG |
1215 | F: drivers/clk/imx/ |
1216 | F: include/soc/imx/ | |
86183a5f | 1217 | |
142109d2 | 1218 | ARM/FREESCALE VYBRID ARM ARCHITECTURE |
7609ea2a | 1219 | M: Shawn Guo <shawnguo@kernel.org> |
142109d2 SA |
1220 | M: Sascha Hauer <kernel@pengutronix.de> |
1221 | R: Stefan Agner <stefan@agner.ch> | |
1222 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1223 | S: Maintained | |
1224 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git | |
1225 | F: arch/arm/mach-imx/*vf610* | |
1226 | F: arch/arm/boot/dts/vf* | |
1227 | ||
2b7a52a4 | 1228 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 1229 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1230 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1231 | S: Maintained |
1232 | ||
90b8fc34 | 1233 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 1234 | M: Steve Sakoman <sakoman@gmail.com> |
efc03ecb | 1235 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
90b8fc34 JK |
1236 | S: Maintained |
1237 | ||
ef47d5f0 | 1238 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 1239 | M: Philipp Zabel <philipp.zabel@gmail.com> |
12a93f32 PZ |
1240 | M: Paul Parsons <lost.distance@yahoo.com> |
1241 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
ef47d5f0 PZ |
1242 | S: Maintained |
1243 | F: arch/arm/mach-pxa/hx4700.c | |
1244 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 1245 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 1246 | |
4dfad069 WX |
1247 | ARM/HISILICON SOC SUPPORT |
1248 | M: Wei Xu <xuwei5@hisilicon.com> | |
1249 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1250 | W: http://www.hisilicon.com | |
1251 | S: Supported | |
1252 | T: git git://github.com/hisilicon/linux-hisi.git | |
1253 | F: arch/arm/mach-hisi/ | |
e68d7c14 RH |
1254 | F: arch/arm/boot/dts/hi3* |
1255 | F: arch/arm/boot/dts/hip* | |
1256 | F: arch/arm/boot/dts/hisi* | |
1257 | F: arch/arm64/boot/dts/hisilicon/ | |
4dfad069 | 1258 | |
21f37bc3 | 1259 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 1260 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
795fb7e7 JD |
1261 | W: www.jlime.com |
1262 | S: Maintained | |
084bad91 KE |
1263 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
1264 | F: arch/arm/mach-sa1100/jornada720.c | |
1265 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 1266 | |
5e767ab9 JMC |
1267 | ARM/IGEP MACHINE SUPPORT |
1268 | M: Enric Balletbo i Serra <eballetbo@gmail.com> | |
1269 | M: Javier Martinez Canillas <javier@dowhile0.org> | |
1270 | L: linux-omap@vger.kernel.org | |
1271 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1272 | S: Maintained | |
06ff74fd | 1273 | F: arch/arm/boot/dts/omap3-igep* |
5e767ab9 | 1274 | |
403d2971 MV |
1275 | ARM/INCOME PXA270 SUPPORT |
1276 | M: Marek Vasut <marek.vasut@gmail.com> | |
1277 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1278 | S: Maintained | |
ec154082 | 1279 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 1280 | |
2b7a52a4 | 1281 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 1282 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1283 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1284 | S: Maintained |
e2bdb176 DW |
1285 | |
1286 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
efc03ecb | 1287 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
08223d80 | 1288 | S: Orphan |
2b7a52a4 LB |
1289 | |
1290 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 1291 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1292 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1293 | S: Maintained |
2b7a52a4 LB |
1294 | |
1295 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 1296 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1297 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1298 | S: Maintained |
2b7a52a4 | 1299 | |
2b7a52a4 | 1300 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 1301 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1302 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1303 | S: Maintained |
1304 | ||
dfdd8cc9 KH |
1305 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
1306 | M: Imre Kaloz <kaloz@openwrt.org> | |
5529c2cd | 1307 | M: Krzysztof Halasa <khalasa@piap.pl> |
baea7b94 | 1308 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
dfdd8cc9 KH |
1309 | S: Maintained |
1310 | F: arch/arm/mach-ixp4xx/ | |
1311 | ||
838553c5 | 1312 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
1313 | M: Jonathan Cameron <jic23@cam.ac.uk> |
1314 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1315 | S: Maintained | |
1316 | F: arch/arm/mach-pxa/stargate2.c | |
1317 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
1318 | ||
2b7a52a4 | 1319 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 1320 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1321 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1322 | S: Maintained |
2b7a52a4 LB |
1323 | |
1324 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 1325 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1326 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1327 | S: Maintained |
1328 | ||
1154f858 | 1329 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
97215800 | 1330 | M: Santosh Shilimkar <ssantosh@kernel.org> |
1154f858 SS |
1331 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1332 | S: Maintained | |
1333 | F: arch/arm/mach-keystone/ | |
5edafc29 | 1334 | F: arch/arm/boot/dts/keystone-* |
317929cd | 1335 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
1154f858 | 1336 | |
bc6aa566 | 1337 | ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK |
97215800 | 1338 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1339 | L: linux-kernel@vger.kernel.org |
1340 | S: Maintained | |
1341 | F: drivers/clk/keystone/ | |
1342 | ||
1343 | ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE | |
97215800 | 1344 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1345 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1346 | L: linux-kernel@vger.kernel.org | |
1347 | S: Maintained | |
1348 | F: drivers/clocksource/timer-keystone.c | |
1349 | ||
1350 | ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER | |
97215800 | 1351 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1352 | L: linux-kernel@vger.kernel.org |
1353 | S: Maintained | |
1354 | F: drivers/power/reset/keystone-reset.c | |
1355 | ||
1356 | ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS | |
97215800 | 1357 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1358 | L: linux-kernel@vger.kernel.org |
1359 | S: Maintained | |
1360 | F: drivers/memory/*emif* | |
1361 | ||
8cb555b6 CM |
1362 | ARM/LG1K ARCHITECTURE |
1363 | M: Chanho Min <chanho.min@lge.com> | |
1364 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1365 | S: Maintained | |
1366 | F: arch/arm64/boot/dts/lg/ | |
1367 | ||
2b7a52a4 | 1368 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
8b58be88 | 1369 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1370 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1371 | S: Maintained |
1372 | ||
3143875f JE |
1373 | ARM/LPC18XX ARCHITECTURE |
1374 | M: Joachim Eastwood <manabian@gmail.com> | |
1375 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1376 | S: Maintained | |
19c1c32c JE |
1377 | F: arch/arm/boot/dts/lpc43* |
1378 | F: drivers/clk/nxp/clk-lpc18xx* | |
1379 | F: drivers/clocksource/time-lpc32xx.c | |
1380 | F: drivers/i2c/busses/i2c-lpc2k.c | |
1381 | F: drivers/memory/pl172.c | |
1382 | F: drivers/mtd/spi-nor/nxp-spifi.c | |
1383 | F: drivers/rtc/rtc-lpc24xx.c | |
3143875f JE |
1384 | N: lpc18xx |
1385 | ||
15e4f7da | 1386 | ARM/LPC32XX SOC SUPPORT |
8d5a6b42 VZ |
1387 | M: Vladimir Zapolskiy <vz@mleia.com> |
1388 | M: Sylvain Lemieux <slemieux.tyco@gmail.com> | |
15e4f7da | 1389 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
8d5a6b42 | 1390 | T: git git://github.com/vzapolskiy/linux-lpc32xx.git |
15e4f7da | 1391 | S: Maintained |
2377f9fd | 1392 | F: arch/arm/boot/dts/lpc32* |
15e4f7da | 1393 | F: arch/arm/mach-lpc32xx/ |
2377f9fd VZ |
1394 | F: drivers/i2c/busses/i2c-pnx.c |
1395 | F: drivers/net/ethernet/nxp/lpc_eth.c | |
1396 | F: drivers/usb/host/ohci-nxp.c | |
1397 | F: drivers/watchdog/pnx4008_wdt.c | |
1398 | N: lpc32xx | |
15e4f7da | 1399 | |
3b886171 | 1400 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 1401 | M: Philipp Zabel <philipp.zabel@gmail.com> |
3b886171 PZ |
1402 | S: Maintained |
1403 | ||
1f664ab7 | 1404 | ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support |
75f41273 TP |
1405 | M: Jason Cooper <jason@lakedaemon.net> |
1406 | M: Andrew Lunn <andrew@lunn.ch> | |
1407 | M: Gregory Clement <gregory.clement@free-electrons.com> | |
dcb71503 | 1408 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
75f41273 TP |
1409 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1410 | S: Maintained | |
1411 | F: arch/arm/mach-mvebu/ | |
59ec9671 | 1412 | F: drivers/rtc/rtc-armada38x.c |
31c17ac9 GC |
1413 | F: arch/arm/boot/dts/armada* |
1414 | F: arch/arm/boot/dts/kirkwood* | |
dcc3068a | 1415 | F: arch/arm64/boot/dts/marvell/armada* |
9f123def | 1416 | F: drivers/cpufreq/mvebu-cpufreq.c |
e269777f | 1417 | F: arch/arm/configs/mvebu_*_defconfig |
75f41273 | 1418 | |
40f4978b SH |
1419 | ARM/Marvell Berlin SoC support |
1420 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> | |
1421 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1422 | S: Maintained | |
1423 | F: arch/arm/mach-berlin/ | |
31c17ac9 | 1424 | F: arch/arm/boot/dts/berlin* |
e68d7c14 | 1425 | F: arch/arm64/boot/dts/marvell/berlin* |
31c17ac9 | 1426 | |
40f4978b | 1427 | |
4cfab57e | 1428 | ARM/Marvell Dove/MV78xx0/Orion SOC support |
4f1312b0 NP |
1429 | M: Jason Cooper <jason@lakedaemon.net> |
1430 | M: Andrew Lunn <andrew@lunn.ch> | |
dcb71503 | 1431 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
bfda4031 | 1432 | M: Gregory Clement <gregory.clement@free-electrons.com> |
efc03ecb | 1433 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4f1312b0 NP |
1434 | S: Maintained |
1435 | F: arch/arm/mach-dove/ | |
54a246ff NP |
1436 | F: arch/arm/mach-mv78xx0/ |
1437 | F: arch/arm/mach-orion5x/ | |
1438 | F: arch/arm/plat-orion/ | |
31c17ac9 GC |
1439 | F: arch/arm/boot/dts/dove* |
1440 | F: arch/arm/boot/dts/orion5x* | |
1441 | ||
3b886171 | 1442 | |
d69ac131 AC |
1443 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
1444 | M: Alexander Clouter <alex@digriz.org.uk> | |
1445 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1446 | W: http://www.digriz.org.uk/ts78xx/kernel | |
1447 | S: Maintained | |
1448 | F: arch/arm/mach-orion5x/ts78xx-* | |
1449 | ||
e557959d NA |
1450 | ARM/OXNAS platform support |
1451 | M: Neil Armstrong <narmstrong@baylibre.com> | |
1452 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1453 | S: Maintained | |
1454 | F: arch/arm/mach-oxnas/ | |
1455 | F: arch/arm/boot/dts/oxnas* | |
1456 | F: arch/arm/boot/dts/wd-mbwe.dts | |
1457 | N: oxnas | |
1458 | ||
607b8fc9 EH |
1459 | ARM/Mediatek RTC DRIVER |
1460 | M: Eddie Huang <eddie.huang@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/rtc/rtc-mt6397.c | |
1465 | ||
e54951c8 MB |
1466 | ARM/Mediatek SoC support |
1467 | M: Matthias Brugger <matthias.bgg@gmail.com> | |
1468 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
17b199d6 | 1469 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) |
e54951c8 MB |
1470 | S: Maintained |
1471 | F: arch/arm/boot/dts/mt6* | |
1472 | F: arch/arm/boot/dts/mt8* | |
1473 | F: arch/arm/mach-mediatek/ | |
1474 | N: mtk | |
1475 | K: mediatek | |
1476 | ||
0f8669e3 CY |
1477 | ARM/Mediatek USB3 PHY DRIVER |
1478 | M: Chunfeng Yun <chunfeng.yun@mediatek.com> | |
1479 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1480 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) | |
1481 | S: Maintained | |
1482 | F: drivers/phy/phy-mt65xx-usb3.c | |
1483 | ||
adcb079f AB |
1484 | ARM/MICREL KS8695 ARCHITECTURE |
1485 | M: Greg Ungerer <gerg@uclinux.org> | |
1486 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
14430813 | 1487 | F: arch/arm/mach-ks8695/ |
adcb079f AB |
1488 | S: Odd Fixes |
1489 | ||
d78ff0a5 | 1490 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1491 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 1492 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d78ff0a5 RJ |
1493 | F: arch/arm/mach-pxa/mioa701.c |
1494 | S: Maintained | |
1495 | ||
9624dfe6 | 1496 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1497 | M: Michael Petchkovsky <mkpetch@internode.on.net> |
9624dfe6 KE |
1498 | S: Maintained |
1499 | ||
e0ee9851 | 1500 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1501 | M: Alessandro Rubini <rubini@unipv.it> |
e4651a9f | 1502 | M: Linus Walleij <linus.walleij@linaro.org> |
28b8e8d4 JP |
1503 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1504 | S: Maintained | |
1505 | F: arch/arm/mach-nomadik/ | |
ecc265fe | 1506 | F: drivers/pinctrl/nomadik/ |
87572880 | 1507 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1508 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1509 | |
9d76295a | 1510 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1511 | M: Nelson Castillo <arhuaco@freaks-unidos.net> |
9d76295a AG |
1512 | L: openmoko-kernel@lists.openmoko.org (subscribers-only) |
1513 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1514 | S: Supported | |
1515 | ||
8459c159 | 1516 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1517 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
1518 | M: Dirk Opfer <dirk@opfer-online.de> | |
8459c159 DO |
1519 | S: Maintained |
1520 | ||
5d783a2d | 1521 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1522 | M: Marek Vasut <marek.vasut@gmail.com> |
75280787 | 1523 | L: linux-arm-kernel@lists.infradead.org |
b5e4ad57 MV |
1524 | W: http://hackndev.com |
1525 | S: Maintained | |
933d35f0 JP |
1526 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1527 | F: arch/arm/mach-pxa/palmtx.c | |
1528 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1529 | F: arch/arm/mach-pxa/palmt5.c | |
1530 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1531 | F: arch/arm/mach-pxa/palmld.c | |
1532 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1533 | F: arch/arm/mach-pxa/palmte2.c | |
1534 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1535 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1536 | |
b57fe924 | 1537 | ARM/PALM TREO SUPPORT |
d8130624 | 1538 | M: Tomas Cech <sleep_walker@suse.com> |
75280787 | 1539 | L: linux-arm-kernel@lists.infradead.org |
90af5811 TSC |
1540 | W: http://hackndev.com |
1541 | S: Maintained | |
b57fe924 JP |
1542 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1543 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1544 | |
c49e1e63 | 1545 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1546 | M: Sergey Lapin <slapin@ossfans.org> |
75280787 | 1547 | L: linux-arm-kernel@lists.infradead.org |
7d2c86b5 JP |
1548 | W: http://hackndev.com |
1549 | S: Maintained | |
933d35f0 JP |
1550 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1551 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1552 | |
1da177e4 | 1553 | ARM/PLEB SUPPORT |
8b58be88 | 1554 | M: Peter Chubb <pleb@gelato.unsw.edu.au> |
1da177e4 LT |
1555 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1556 | S: Maintained | |
1557 | ||
1558 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1559 | M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> |
efc03ecb | 1560 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1561 | W: http://www.armlinux.org.uk/ |
1da177e4 LT |
1562 | S: Maintained |
1563 | ||
8fc1b0f8 | 1564 | ARM/QUALCOMM SUPPORT |
bbeaa595 AG |
1565 | M: Andy Gross <andy.gross@linaro.org> |
1566 | M: David Brown <david.brown@linaro.org> | |
8fc1b0f8 | 1567 | L: linux-arm-msm@vger.kernel.org |
f5d3af9d | 1568 | L: linux-soc@vger.kernel.org |
8fc1b0f8 | 1569 | S: Maintained |
0ff50d60 | 1570 | F: Documentation/devicetree/bindings/soc/qcom/ |
0c4cbf9e BA |
1571 | F: arch/arm/boot/dts/qcom-*.dts |
1572 | F: arch/arm/boot/dts/qcom-*.dtsi | |
8fc1b0f8 | 1573 | F: arch/arm/mach-qcom/ |
e68d7c14 | 1574 | F: arch/arm64/boot/dts/qcom/* |
5482cefa | 1575 | F: drivers/i2c/busses/i2c-qup.c |
39a3366a | 1576 | F: drivers/clk/qcom/ |
f5d3af9d | 1577 | F: drivers/soc/qcom/ |
5482cefa | 1578 | F: drivers/spi/spi-qup.c |
c0c89faf SB |
1579 | F: drivers/tty/serial/msm_serial.h |
1580 | F: drivers/tty/serial/msm_serial.c | |
1581 | F: drivers/*/pm8???-* | |
1582 | F: drivers/mfd/ssbi.c | |
916f743d | 1583 | F: drivers/firmware/qcom_scm.c |
bbeaa595 | 1584 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git |
8fc1b0f8 | 1585 | |
2b7a52a4 | 1586 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1587 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1588 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1589 | S: Maintained |
1590 | ||
b138e119 SH |
1591 | ARM/RENESAS ARM64 ARCHITECTURE |
1592 | M: Simon Horman <horms@verge.net.au> | |
1593 | M: Magnus Damm <magnus.damm@gmail.com> | |
1926e54f SH |
1594 | L: linux-renesas-soc@vger.kernel.org |
1595 | Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/ | |
b138e119 SH |
1596 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
1597 | S: Supported | |
1598 | F: arch/arm64/boot/dts/renesas/ | |
be32bcbb GU |
1599 | F: drivers/soc/renesas/ |
1600 | F: include/linux/soc/renesas/ | |
b138e119 | 1601 | |
d4275354 | 1602 | ARM/RISCPC ARCHITECTURE |
54176cc6 | 1603 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1604 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1605 | W: http://www.armlinux.org.uk/ |
d4275354 | 1606 | S: Maintained |
d4275354 RK |
1607 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1608 | F: arch/arm/include/asm/hardware/ioc.h | |
1609 | F: arch/arm/include/asm/hardware/iomd.h | |
1610 | F: arch/arm/include/asm/hardware/memc.h | |
1611 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1612 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1613 | F: drivers/net/ethernet/i825xx/ether1* |
1614 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1615 | F: drivers/scsi/arm/ |
1616 | ||
08ddbb0a HS |
1617 | ARM/Rockchip SoC support |
1618 | M: Heiko Stuebner <heiko@sntech.de> | |
1619 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
00250b52 | 1620 | L: linux-rockchip@lists.infradead.org |
9f273c24 | 1621 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git |
08ddbb0a | 1622 | S: Maintained |
541555e9 | 1623 | F: arch/arm/boot/dts/rk3* |
08ddbb0a | 1624 | F: arch/arm/mach-rockchip/ |
541555e9 HS |
1625 | F: drivers/clk/rockchip/ |
1626 | F: drivers/i2c/busses/i2c-rk3x.c | |
08ddbb0a | 1627 | F: drivers/*/*rockchip* |
541555e9 HS |
1628 | F: drivers/*/*/*rockchip* |
1629 | F: sound/soc/rockchip/ | |
b4331b43 | 1630 | N: rockchip |
08ddbb0a | 1631 | |
5bfb937c KK |
1632 | ARM/SAMSUNG EXYNOS ARM ARCHITECTURES |
1633 | M: Kukjin Kim <kgene@kernel.org> | |
326dce07 | 1634 | M: Krzysztof Kozlowski <krzk@kernel.org> |
29617e1c | 1635 | R: Javier Martinez Canillas <javier@osg.samsung.com> |
efc03ecb | 1636 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7a549d78 | 1637 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
b21477f9 | 1638 | S: Maintained |
6f0589c8 | 1639 | F: arch/arm/boot/dts/s3c* |
e68d7c14 RH |
1640 | F: arch/arm/boot/dts/s5p* |
1641 | F: arch/arm/boot/dts/samsung* | |
6f0589c8 | 1642 | F: arch/arm/boot/dts/exynos* |
d97236e6 | 1643 | F: arch/arm64/boot/dts/exynos/ |
482ce512 | 1644 | F: arch/arm/plat-samsung/ |
769bbb63 HS |
1645 | F: arch/arm/mach-s3c24*/ |
1646 | F: arch/arm/mach-s3c64xx/ | |
5bfb937c KK |
1647 | F: arch/arm/mach-s5p*/ |
1648 | F: arch/arm/mach-exynos*/ | |
1c03274d KK |
1649 | F: drivers/*/*s3c24* |
1650 | F: drivers/*/*/*s3c24* | |
1651 | F: drivers/*/*s3c64xx* | |
1652 | F: drivers/*/*s5pv210* | |
ffd51977 | 1653 | F: drivers/memory/samsung/* |
bf50ddcd | 1654 | F: drivers/soc/samsung/* |
d6b9aea6 KK |
1655 | F: Documentation/arm/Samsung/ |
1656 | F: Documentation/devicetree/bindings/arm/samsung/ | |
1657 | F: Documentation/devicetree/bindings/sram/samsung-sram.txt | |
1658 | F: Documentation/devicetree/bindings/power/pd-samsung.txt | |
33d43cdd | 1659 | N: exynos |
f556cb07 | 1660 | |
10ffa964 KP |
1661 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1662 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1663 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1664 | S: Maintained | |
004bbd3c | 1665 | F: arch/arm/mach-s5pv210/ |
10ffa964 | 1666 | |
3ce4ccb6 KD |
1667 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1668 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
774e0362 KD |
1669 | M: Kamil Debski <kamil@wypas.org> |
1670 | M: Andrzej Hajda <a.hajda@samsung.com> | |
3ce4ccb6 KD |
1671 | L: linux-arm-kernel@lists.infradead.org |
1672 | L: linux-media@vger.kernel.org | |
1673 | S: Maintained | |
1674 | F: drivers/media/platform/s5p-g2d/ | |
1675 | ||
e6a476fd MS |
1676 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1677 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
774e0362 | 1678 | M: Kamil Debski <kamil@wypas.org> |
6305902c | 1679 | M: Jeongtae Park <jtp.park@samsung.com> |
774e0362 | 1680 | M: Andrzej Hajda <a.hajda@samsung.com> |
e6a476fd MS |
1681 | L: linux-arm-kernel@lists.infradead.org |
1682 | L: linux-media@vger.kernel.org | |
1683 | S: Maintained | |
934455d7 | 1684 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1685 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd MS |
1686 | |
1687 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT | |
1688 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1689 | M: Tomasz Stanislawski <t.stanislaws@samsung.com> | |
1690 | L: linux-arm-kernel@lists.infradead.org | |
1691 | L: linux-media@vger.kernel.org | |
1692 | S: Maintained | |
90d72ac6 | 1693 | F: drivers/media/platform/s5p-tv/ |
e6a476fd | 1694 | |
1bcbf6f4 KD |
1695 | ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT |
1696 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1697 | L: linux-arm-kernel@lists.infradead.org | |
1698 | L: linux-media@vger.kernel.org | |
1699 | S: Maintained | |
78fc853b | 1700 | F: drivers/staging/media/platform/s5p-cec/ |
1bcbf6f4 | 1701 | |
7d9f9bf4 AP |
1702 | ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT |
1703 | M: Andrzej Pietrasiewicz <andrzej.p@samsung.com> | |
1704 | M: Jacek Anaszewski <j.anaszewski@samsung.com> | |
1705 | L: linux-arm-kernel@lists.infradead.org | |
1706 | L: linux-media@vger.kernel.org | |
1707 | S: Maintained | |
1708 | F: drivers/media/platform/s5p-jpeg/ | |
1709 | ||
d48d38e8 | 1710 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1711 | M: Simon Horman <horms@verge.net.au> |
d48d38e8 | 1712 | M: Magnus Damm <magnus.damm@gmail.com> |
4a121096 | 1713 | L: linux-renesas-soc@vger.kernel.org |
4a121096 | 1714 | Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/ |
5e212598 | 1715 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 | 1716 | S: Supported |
0b514fdb SH |
1717 | F: arch/arm/boot/dts/emev2* |
1718 | F: arch/arm/boot/dts/r7s* | |
1719 | F: arch/arm/boot/dts/r8a* | |
1720 | F: arch/arm/boot/dts/sh* | |
0b514fdb | 1721 | F: arch/arm/configs/shmobile_defconfig |
7a2071c5 | 1722 | F: arch/arm/include/debug/renesas-scif.S |
d48d38e8 | 1723 | F: arch/arm/mach-shmobile/ |
be32bcbb GU |
1724 | F: drivers/soc/renesas/ |
1725 | F: include/linux/soc/renesas/ | |
d48d38e8 | 1726 | |
66314223 | 1727 | ARM/SOCFPGA ARCHITECTURE |
ba2b7d0a | 1728 | M: Dinh Nguyen <dinguyen@opensource.altera.com> |
66314223 DN |
1729 | S: Maintained |
1730 | F: arch/arm/mach-socfpga/ | |
efadb751 DN |
1731 | F: arch/arm/boot/dts/socfpga* |
1732 | F: arch/arm/configs/socfpga_defconfig | |
e68d7c14 | 1733 | F: arch/arm64/boot/dts/altera/ |
ba2b7d0a | 1734 | W: http://www.rocketboards.org |
efadb751 | 1735 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git |
66314223 DN |
1736 | |
1737 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
ba2b7d0a | 1738 | M: Dinh Nguyen <dinguyen@opensource.altera.com> |
66314223 DN |
1739 | S: Maintained |
1740 | F: drivers/clk/socfpga/ | |
1741 | ||
71bcada8 TT |
1742 | ARM/SOCFPGA EDAC SUPPORT |
1743 | M: Thor Thayer <tthayer@opensource.altera.com> | |
1744 | S: Maintained | |
1745 | F: drivers/edac/altera_edac. | |
1746 | ||
65ebcc11 | 1747 | ARM/STI ARCHITECTURE |
a92177ea | 1748 | M: Patrice Chotard <patrice.chotard@st.com> |
65ebcc11 SK |
1749 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1750 | L: kernel@stlinux.com | |
1751 | W: http://www.stlinux.com | |
1752 | S: Maintained | |
1753 | F: arch/arm/mach-sti/ | |
a92177ea | 1754 | F: arch/arm/boot/dts/sti* |
b8e31bf3 | 1755 | F: drivers/char/hw_random/st-rng.c |
a92177ea | 1756 | F: drivers/clocksource/arm_global_timer.c |
82805d1b | 1757 | F: drivers/clocksource/clksrc_st_lpc.c |
1d4b42bc | 1758 | F: drivers/cpufreq/sti-cpufreq.c |
a92177ea | 1759 | F: drivers/i2c/busses/i2c-st.c |
346e2e4a | 1760 | F: drivers/media/rc/st_rc.c |
95d66b16 | 1761 | F: drivers/media/platform/sti/c8sectpfe/ |
f53b2bff | 1762 | F: drivers/mmc/host/sdhci-st.c |
e95cf393 PG |
1763 | F: drivers/phy/phy-miphy28lp.c |
1764 | F: drivers/phy/phy-miphy365x.c | |
6da969a5 | 1765 | F: drivers/phy/phy-stih407-usb.c |
26389c78 | 1766 | F: drivers/phy/phy-stih41x-usb.c |
346e2e4a | 1767 | F: drivers/pinctrl/pinctrl-st.c |
aac22524 | 1768 | F: drivers/remoteproc/st_remoteproc.c |
346e2e4a | 1769 | F: drivers/reset/sti/ |
db4112e6 | 1770 | F: drivers/rtc/rtc-st-lpc.c |
346e2e4a | 1771 | F: drivers/tty/serial/st-asc.c |
eb11adab | 1772 | F: drivers/usb/dwc3/dwc3-st.c |
62f6f086 PG |
1773 | F: drivers/usb/host/ehci-st.c |
1774 | F: drivers/usb/host/ohci-st.c | |
db4112e6 | 1775 | F: drivers/watchdog/st_lpc_wdt.c |
daac6f86 | 1776 | F: drivers/ata/ahci_st.c |
65ebcc11 | 1777 | |
ee6e7879 MC |
1778 | ARM/STM32 ARCHITECTURE |
1779 | M: Maxime Coquelin <mcoquelin.stm32@gmail.com> | |
8ca2cf2c | 1780 | M: Alexandre Torgue <alexandre.torgue@st.com> |
ee6e7879 MC |
1781 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1782 | S: Maintained | |
1783 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git | |
1784 | N: stm32 | |
1785 | F: drivers/clocksource/armv7m_systick.c | |
1786 | ||
d6de5b02 MG |
1787 | ARM/TANGO ARCHITECTURE |
1788 | M: Marc Gonzalez <marc_gonzalez@sigmadesigns.com> | |
1789 | L: linux-arm-kernel@lists.infradead.org | |
1790 | S: Maintained | |
e2bd0d37 | 1791 | N: tango |
d6de5b02 | 1792 | |
2b7a52a4 | 1793 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1794 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1795 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1796 | S: Maintained |
1797 | ||
1bbd7089 | 1798 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1799 | M: "Mark F. Brown" <mark.brown314@gmail.com> |
1bbd7089 MB |
1800 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1801 | S: Maintained | |
1802 | ||
2b7a52a4 | 1803 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1804 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1805 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1806 | S: Maintained |
1807 | ||
98ad6e3b | 1808 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1809 | M: Wan ZongShun <mcuos.com@gmail.com> |
efc03ecb | 1810 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7d2c86b5 JP |
1811 | W: http://www.mcuos.com |
1812 | S: Maintained | |
4e89e8f6 | 1813 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1814 | F: drivers/input/keyboard/w90p910_keypad.c |
1815 | F: drivers/input/touchscreen/w90p910_ts.c | |
1816 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1817 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1818 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1819 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1820 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 | 1821 | F: drivers/usb/host/ehci-w90x900.c |
8a61f013 | 1822 | F: drivers/video/fbdev/nuc900fb.c |
98ad6e3b | 1823 | |
54274d71 | 1824 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1825 | M: Linus Walleij <linus.walleij@linaro.org> |
54274d71 LW |
1826 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1827 | S: Supported | |
1828 | F: arch/arm/mach-u300/ | |
9affbd24 | 1829 | F: drivers/clocksource/timer-u300.c |
54274d71 LW |
1830 | F: drivers/i2c/busses/i2c-stu300.c |
1831 | F: drivers/rtc/rtc-coh901331.c | |
1832 | F: drivers/watchdog/coh901327_wdt.c | |
1833 | F: drivers/dma/coh901318* | |
87572880 LW |
1834 | F: drivers/mfd/ab3100* |
1835 | F: drivers/rtc/rtc-ab3100.c | |
1836 | F: drivers/rtc/rtc-coh901331.c | |
1837 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1838 | |
3d00d04f MY |
1839 | ARM/UNIPHIER ARCHITECTURE |
1840 | M: Masahiro Yamada <yamada.masahiro@socionext.com> | |
1841 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
becc8d3c | 1842 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git |
3d00d04f | 1843 | S: Maintained |
a3ff83d2 | 1844 | F: arch/arm/boot/dts/uniphier* |
e7ecbc05 | 1845 | F: arch/arm/include/asm/hardware/cache-uniphier.h |
3d00d04f | 1846 | F: arch/arm/mach-uniphier/ |
e7ecbc05 | 1847 | F: arch/arm/mm/cache-uniphier.c |
e1a0ebc8 | 1848 | F: arch/arm64/boot/dts/socionext/ |
4b7f48d3 | 1849 | F: drivers/bus/uniphier-system-bus.c |
dd6fd4a3 | 1850 | F: drivers/i2c/busses/i2c-uniphier* |
a3ff83d2 MY |
1851 | F: drivers/pinctrl/uniphier/ |
1852 | F: drivers/tty/serial/8250/8250_uniphier.c | |
3d00d04f MY |
1853 | N: uniphier |
1854 | ||
87572880 | 1855 | ARM/Ux500 ARM ARCHITECTURE |
e4651a9f | 1856 | M: Linus Walleij <linus.walleij@linaro.org> |
870725d9 SK |
1857 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1858 | S: Maintained | |
1859 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1860 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1861 | F: drivers/dma/ste_dma40* |
e4651a9f | 1862 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1863 | F: drivers/mfd/abx500* |
1864 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1865 | F: drivers/mfd/dbx500* |
1866 | F: drivers/mfd/db8500* | |
ecc265fe JP |
1867 | F: drivers/pinctrl/nomadik/pinctrl-ab* |
1868 | F: drivers/pinctrl/nomadik/pinctrl-nomadik* | |
87572880 | 1869 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1870 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1871 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1872 | |
e93fde28 UH |
1873 | ARM/Ux500 CLOCK FRAMEWORK SUPPORT |
1874 | M: Ulf Hansson <ulf.hansson@linaro.org> | |
1875 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1876 | T: git git://git.linaro.org/people/ulfh/clk.git | |
1877 | S: Maintained | |
1878 | F: drivers/clk/ux500/ | |
e93fde28 | 1879 | |
740d93b1 PM |
1880 | ARM/VERSATILE EXPRESS PLATFORM |
1881 | M: Liviu Dudau <liviu.dudau@arm.com> | |
1882 | M: Sudeep Holla <sudeep.holla@arm.com> | |
1883 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
1884 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1885 | S: Maintained | |
1886 | F: arch/arm/boot/dts/vexpress* | |
e68d7c14 | 1887 | F: arch/arm64/boot/dts/arm/ |
740d93b1 PM |
1888 | F: arch/arm/mach-vexpress/ |
1889 | F: */*/vexpress* | |
7e8f403f | 1890 | F: */*/*/vexpress* |
740d93b1 PM |
1891 | F: drivers/clk/versatile/clk-vexpress-osc.c |
1892 | F: drivers/clocksource/versatile.c | |
46a600ea | 1893 | N: mps2 |
740d93b1 | 1894 | |
d4275354 | 1895 | ARM/VFP SUPPORT |
54176cc6 | 1896 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1897 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1898 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
1899 | S: Maintained |
1900 | F: arch/arm/vfp/ | |
1901 | ||
e66b6d8e MV |
1902 | ARM/VOIPAC PXA270 SUPPORT |
1903 | M: Marek Vasut <marek.vasut@gmail.com> | |
1904 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1905 | S: Maintained | |
1906 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1907 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1908 | |
04529fe2 TP |
1909 | ARM/VT8500 ARM ARCHITECTURE |
1910 | M: Tony Prisk <linux@prisktech.co.nz> | |
1911 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1912 | S: Maintained | |
1913 | F: arch/arm/mach-vt8500/ | |
41fd91b4 | 1914 | F: drivers/clocksource/vt8500_timer.c |
560746eb | 1915 | F: drivers/i2c/busses/i2c-wmt.c |
41fd91b4 TP |
1916 | F: drivers/mmc/host/wmt-sdmmc.c |
1917 | F: drivers/pwm/pwm-vt8500.c | |
1918 | F: drivers/rtc/rtc-vt8500.c | |
1919 | F: drivers/tty/serial/vt8500_serial.c | |
4f31102b | 1920 | F: drivers/usb/host/ehci-platform.c |
41fd91b4 | 1921 | F: drivers/usb/host/uhci-platform.c |
8a61f013 JH |
1922 | F: drivers/video/fbdev/vt8500lcdfb.* |
1923 | F: drivers/video/fbdev/wm8505fb* | |
1924 | F: drivers/video/fbdev/wmt_ge_rops.* | |
04529fe2 | 1925 | |
e66b6d8e MV |
1926 | ARM/ZIPIT Z2 SUPPORT |
1927 | M: Marek Vasut <marek.vasut@gmail.com> | |
1928 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1929 | S: Maintained | |
1930 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1931 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1932 | |
5ecc4b53 JN |
1933 | ARM/ZTE ARCHITECTURE |
1934 | M: Jun Nie <jun.nie@linaro.org> | |
1935 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1936 | S: Maintained | |
1937 | F: arch/arm/mach-zx/ | |
1938 | F: drivers/clk/zte/ | |
1939 | F: Documentation/devicetree/bindings/arm/zte.txt | |
1940 | F: Documentation/devicetree/bindings/clock/zx296702-clk.txt | |
1941 | ||
51f29d44 MS |
1942 | ARM/ZYNQ ARCHITECTURE |
1943 | M: Michal Simek <michal.simek@xilinx.com> | |
f0fd9ad8 | 1944 | R: Sören Brinkmann <soren.brinkmann@xilinx.com> |
51f29d44 MS |
1945 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1946 | W: http://wiki.xilinx.com | |
d6448b76 | 1947 | T: git https://github.com/Xilinx/linux-xlnx.git |
51f29d44 MS |
1948 | S: Supported |
1949 | F: arch/arm/mach-zynq/ | |
bd2a337a | 1950 | F: drivers/cpuidle/cpuidle-zynq.c |
fb9d4959 | 1951 | F: drivers/block/xsysace.c |
c2fd4e38 MS |
1952 | N: zynq |
1953 | N: xilinx | |
1954 | F: drivers/clocksource/cadence_ttc_timer.c | |
df8eb569 | 1955 | F: drivers/i2c/busses/i2c-cadence.c |
e3ec3a3d | 1956 | F: drivers/mmc/host/sdhci-of-arasan.c |
ae9b56e3 | 1957 | F: drivers/edac/synopsys_edac.c |
51f29d44 | 1958 | |
48ec83bc | 1959 | ARM SMMU DRIVERS |
b8f9879e | 1960 | M: Will Deacon <will.deacon@arm.com> |
c8bff3a6 | 1961 | R: Robin Murphy <robin.murphy@arm.com> |
b8f9879e WD |
1962 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1963 | S: Maintained | |
1964 | F: drivers/iommu/arm-smmu.c | |
48ec83bc | 1965 | F: drivers/iommu/arm-smmu-v3.c |
e1d3c0fd | 1966 | F: drivers/iommu/io-pgtable-arm.c |
c8bff3a6 | 1967 | F: drivers/iommu/io-pgtable-arm-v7s.c |
b8f9879e | 1968 | |
38074229 CM |
1969 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1970 | M: Catalin Marinas <catalin.marinas@arm.com> | |
d19766ec | 1971 | M: Will Deacon <will.deacon@arm.com> |
38074229 | 1972 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9f273c24 | 1973 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git |
38074229 CM |
1974 | S: Maintained |
1975 | F: arch/arm64/ | |
d19766ec | 1976 | F: Documentation/arm64/ |
38074229 | 1977 | |
9d7005f9 LP |
1978 | AS3645A LED FLASH CONTROLLER DRIVER |
1979 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
1980 | L: linux-media@vger.kernel.org | |
1981 | T: git git://linuxtv.org/media_tree.git | |
1982 | S: Maintained | |
1983 | F: drivers/media/i2c/as3645a.c | |
b5dcee22 | 1984 | F: include/media/i2c/as3645a.h |
9d7005f9 | 1985 | |
d58de038 GJ |
1986 | ASC7621 HARDWARE MONITOR DRIVER |
1987 | M: George Joseph <george.joseph@fairview5.com> | |
968ce1b1 | 1988 | L: linux-hwmon@vger.kernel.org |
d58de038 GJ |
1989 | S: Maintained |
1990 | F: Documentation/hwmon/asc7621 | |
1991 | F: drivers/hwmon/asc7621.c | |
1992 | ||
b229ece9 | 1993 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 1994 | M: Corentin Chary <corentin.chary@gmail.com> |
1da177e4 | 1995 | L: acpi4asus-user@lists.sourceforge.net |
d0944853 | 1996 | L: platform-driver-x86@vger.kernel.org |
76593d6f | 1997 | W: http://acpi4asus.sf.net |
85091b71 | 1998 | S: Maintained |
b229ece9 CC |
1999 | F: drivers/platform/x86/asus*.c |
2000 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 2001 | |
f6a6bbae JPRV |
2002 | ASUS WIRELESS RADIO CONTROL DRIVER |
2003 | M: João Paulo Rechi Vita <jprvita@gmail.com> | |
2004 | L: platform-driver-x86@vger.kernel.org | |
2005 | S: Maintained | |
2006 | F: drivers/platform/x86/asus-wireless.c | |
2007 | ||
75aeddd1 DH |
2008 | ASYMMETRIC KEYS |
2009 | M: David Howells <dhowells@redhat.com> | |
2010 | L: keyrings@vger.kernel.org | |
2011 | S: Maintained | |
2012 | F: Documentation/crypto/asymmetric-keys.txt | |
2013 | F: include/linux/verification.h | |
2014 | F: include/crypto/public_key.h | |
2015 | F: include/crypto/pkcs7.h | |
2016 | F: crypto/asymmetric_keys/ | |
2017 | ||
953a6479 | 2018 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
08223d80 | 2019 | R: Dan Williams <dan.j.williams@intel.com> |
b3e5f263 | 2020 | W: http://sourceforge.net/projects/xscaleiop |
08223d80 | 2021 | S: Odd fixes |
679655da JP |
2022 | F: Documentation/crypto/async-tx-api.txt |
2023 | F: crypto/async_tx/ | |
2024 | F: drivers/dma/ | |
2025 | F: include/linux/dmaengine.h | |
2026 | F: include/linux/async_tx.h | |
b3e5f263 | 2027 | |
a1867d36 | 2028 | AT24 EEPROM DRIVER |
14d77c4d | 2029 | M: Wolfram Sang <wsa@the-dreams.de> |
a1867d36 WS |
2030 | L: linux-i2c@vger.kernel.org |
2031 | S: Maintained | |
2032 | F: drivers/misc/eeprom/at24.c | |
25f73ed5 | 2033 | F: include/linux/platform_data/at24.h |
a1867d36 | 2034 | |
e7839f25 | 2035 | ATA OVER ETHERNET (AOE) DRIVER |
fb903811 EC |
2036 | M: "Ed L. Cashin" <ed.cashin@acm.org> |
2037 | W: http://www.openaoe.org/ | |
1da177e4 | 2038 | S: Supported |
679655da JP |
2039 | F: Documentation/aoe/ |
2040 | F: drivers/block/aoe/ | |
1da177e4 | 2041 | |
aad7a211 AB |
2042 | ATHEROS 71XX/9XXX GPIO DRIVER |
2043 | M: Alban Bedel <albeu@free.fr> | |
2044 | W: https://github.com/AlbanBedel/linux | |
2045 | T: git git://github.com/AlbanBedel/linux | |
2046 | S: Maintained | |
2047 | F: drivers/gpio/gpio-ath79.c | |
2048 | F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt | |
2049 | ||
9a10a870 | 2050 | ATHEROS ATH GENERIC UTILITIES |
f726ee65 | 2051 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
9a10a870 JP |
2052 | L: linux-wireless@vger.kernel.org |
2053 | S: Supported | |
2054 | F: drivers/net/wireless/ath/* | |
2055 | ||
fa1c114f | 2056 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
2057 | M: Jiri Slaby <jirislaby@gmail.com> |
2058 | M: Nick Kossifidis <mickflemm@gmail.com> | |
f726ee65 | 2059 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
fa1c114f | 2060 | L: linux-wireless@vger.kernel.org |
72c706b7 | 2061 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 2062 | S: Maintained |
fa451753 | 2063 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 2064 | |
12e62d6f KV |
2065 | ATHEROS ATH6KL WIRELESS DRIVER |
2066 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
2067 | L: linux-wireless@vger.kernel.org | |
2068 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
9f273c24 | 2069 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git |
12e62d6f KV |
2070 | S: Supported |
2071 | F: drivers/net/wireless/ath/ath6kl/ | |
2072 | ||
2be7d22f | 2073 | WILOCITY WIL6210 WIRELESS DRIVER |
23ba8a66 | 2074 | M: Maya Erez <qca_merez@qca.qualcomm.com> |
2be7d22f VK |
2075 | L: linux-wireless@vger.kernel.org |
2076 | L: wil6210@qca.qualcomm.com | |
2077 | S: Supported | |
2078 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
2079 | F: drivers/net/wireless/ath/wil6210/ | |
dba4b74d | 2080 | F: include/uapi/linux/wil6210_uapi.h |
2be7d22f | 2081 | |
1d7e1e6b CL |
2082 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
2083 | M: Christian Lamparter <chunkeey@googlemail.com> | |
2084 | L: linux-wireless@vger.kernel.org | |
2085 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
2086 | S: Maintained | |
2087 | F: drivers/net/wireless/ath/carl9170/ | |
2088 | ||
2c2a6172 LT |
2089 | ATK0110 HWMON DRIVER |
2090 | M: Luca Tettamanti <kronos.it@gmail.com> | |
968ce1b1 | 2091 | L: linux-hwmon@vger.kernel.org |
2c2a6172 LT |
2092 | S: Maintained |
2093 | F: drivers/hwmon/asus_atk0110.c | |
2094 | ||
6f69a6d7 | 2095 | ATI_REMOTE2 DRIVER |
8b58be88 | 2096 | M: Ville Syrjala <syrjala@sci.fi> |
6f69a6d7 | 2097 | S: Maintained |
679655da | 2098 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 2099 | |
7ae115b4 | 2100 | ATLX ETHERNET DRIVERS |
8b58be88 | 2101 | M: Jay Cliburn <jcliburn@gmail.com> |
cb2f33e9 | 2102 | M: Chris Snook <chris.snook@gmail.com> |
e443e383 | 2103 | L: netdev@vger.kernel.org |
8d5ca6ec JC |
2104 | W: http://sourceforge.net/projects/atl1 |
2105 | W: http://atl1.sourceforge.net | |
2106 | S: Maintained | |
2b133ad6 | 2107 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 2108 | |
1da177e4 | 2109 | ATM |
366c1bd1 | 2110 | M: Chas Williams <3chas3@gmail.com> |
476604de | 2111 | L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers) |
44ae98b5 | 2112 | L: netdev@vger.kernel.org |
1da177e4 LT |
2113 | W: http://linux-atm.sourceforge.net |
2114 | S: Maintained | |
679655da JP |
2115 | F: drivers/atm/ |
2116 | F: include/linux/atm* | |
c117ab84 | 2117 | F: include/uapi/linux/atm* |
1da177e4 | 2118 | |
04ac2f46 | 2119 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 2120 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
04ac2f46 NF |
2121 | S: Maintained |
2122 | F: drivers/mmc/host/atmel-mci.c | |
04ac2f46 | 2123 | |
f80cb488 NF |
2124 | ATMEL AT91 SAMA5D2-Compatible Shutdown Controller |
2125 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
2126 | S: Supported | |
2127 | F: drivers/power/reset/at91-sama5d2_shdwc.c | |
2128 | ||
b9cd7a25 LD |
2129 | ATMEL SAMA5D2 ADC DRIVER |
2130 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
2131 | L: linux-iio@vger.kernel.org | |
2132 | S: Supported | |
2133 | F: drivers/iio/adc/at91-sama5d2_adc.c | |
2134 | ||
dfae90ed | 2135 | ATMEL Audio ALSA driver |
3a82002c | 2136 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
dfae90ed BS |
2137 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
2138 | S: Supported | |
2139 | F: sound/soc/atmel | |
2140 | ||
b414dc16 NF |
2141 | ATMEL DMA DRIVER |
2142 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
2143 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
2144 | S: Supported | |
2145 | F: drivers/dma/at_hdmac.c | |
2146 | F: drivers/dma/at_hdmac_regs.h | |
6f0d65af | 2147 | F: include/linux/platform_data/dma-atmel.h |
b414dc16 | 2148 | |
6bd0f436 LD |
2149 | ATMEL XDMA DRIVER |
2150 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
2151 | L: linux-arm-kernel@lists.infradead.org | |
2152 | L: dmaengine@vger.kernel.org | |
2153 | S: Supported | |
2154 | F: drivers/dma/at_xdmac.c | |
2155 | ||
888f2804 LD |
2156 | ATMEL I2C DRIVER |
2157 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
2158 | L: linux-i2c@vger.kernel.org | |
2159 | S: Supported | |
2160 | F: drivers/i2c/busses/i2c-at91.c | |
2161 | ||
15515545 | 2162 | ATMEL ISI DRIVER |
50cb2efa | 2163 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
15515545 JW |
2164 | L: linux-media@vger.kernel.org |
2165 | S: Supported | |
f2294c2d | 2166 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
2167 | F: include/media/atmel-isi.h |
2168 | ||
8f4c79ce | 2169 | ATMEL LCDFB DRIVER |
8b58be88 | 2170 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
c69f677c | 2171 | L: linux-fbdev@vger.kernel.org |
8f4c79ce | 2172 | S: Maintained |
8a61f013 | 2173 | F: drivers/video/fbdev/atmel_lcdfb.c |
679655da | 2174 | F: include/video/atmel_lcdc.h |
8f4c79ce | 2175 | |
89e5785f | 2176 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 2177 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
89e5785f | 2178 | S: Supported |
9f2f381f | 2179 | F: drivers/net/ethernet/cadence/ |
89e5785f | 2180 | |
5cbac98a | 2181 | ATMEL NAND DRIVER |
50cb2efa NF |
2182 | M: Wenyou Yang <wenyou.yang@atmel.com> |
2183 | M: Josh Wu <rainyfeeling@outlook.com> | |
5cbac98a JW |
2184 | L: linux-mtd@lists.infradead.org |
2185 | S: Supported | |
2186 | F: drivers/mtd/nand/atmel_nand* | |
2187 | ||
05c441ef | 2188 | ATMEL SDMMC DRIVER |
2189 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
2190 | L: linux-mmc@vger.kernel.org | |
2191 | S: Supported | |
2192 | F: drivers/mmc/host/sdhci-of-at91.c | |
2193 | ||
754ce4f2 | 2194 | ATMEL SPI DRIVER |
a02875a6 | 2195 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
754ce4f2 | 2196 | S: Supported |
9df92e6c | 2197 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 2198 | |
0ef09015 | 2199 | ATMEL SSC DRIVER |
03515f32 | 2200 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
0ef09015 BS |
2201 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2202 | S: Supported | |
2203 | F: drivers/misc/atmel-ssc.c | |
2204 | F: include/linux/atmel-ssc.h | |
2205 | ||
e9cb1c5a NF |
2206 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
2207 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
2208 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
2209 | S: Supported | |
2210 | F: drivers/misc/atmel_tclib.c | |
2211 | F: drivers/clocksource/tcb_clksrc.c | |
2212 | ||
914a3f3b | 2213 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
2214 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
2215 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
914a3f3b | 2216 | S: Supported |
faf2e1db | 2217 | F: drivers/usb/gadget/udc/atmel_usba_udc.* |
914a3f3b | 2218 | |
1da177e4 | 2219 | ATMEL WIRELESS DRIVER |
8b58be88 | 2220 | M: Simon Kelley <simon@thekelleys.org.uk> |
724c6b35 | 2221 | L: linux-wireless@vger.kernel.org |
1da177e4 LT |
2222 | W: http://www.thekelleys.org.uk/atmel |
2223 | W: http://atmelwlandriver.sourceforge.net/ | |
2224 | S: Maintained | |
30fe0f9b | 2225 | F: drivers/net/wireless/atmel/atmel* |
1da177e4 | 2226 | |
a14c0f8f ND |
2227 | ATMEL MAXTOUCH DRIVER |
2228 | M: Nick Dyer <nick.dyer@itdev.co.uk> | |
2229 | T: git git://github.com/atmel-maxtouch/linux.git | |
2230 | S: Supported | |
2231 | F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt | |
2232 | F: drivers/input/touchscreen/atmel_mxt_ts.c | |
2233 | F: include/linux/platform_data/atmel_mxt_ts.h | |
2234 | ||
26780d9e | 2235 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
b75f0050 JP |
2236 | M: Bradley Grove <linuxdrivers@attotech.com> |
2237 | L: linux-scsi@vger.kernel.org | |
2238 | W: http://www.attotech.com | |
2239 | S: Supported | |
2240 | F: drivers/scsi/esas2r | |
26780d9e | 2241 | |
bc6e17b8 SS |
2242 | ATUSB IEEE 802.15.4 RADIO DRIVER |
2243 | M: Stefan Schmidt <stefan@osg.samsung.com> | |
2244 | L: linux-wpan@vger.kernel.org | |
2245 | S: Maintained | |
2246 | F: drivers/net/ieee802154/atusb.c | |
2247 | F: drivers/net/ieee802154/atusb.h | |
2248 | F: drivers/net/ieee802154/at86rf230.h | |
2249 | ||
a92b7b80 | 2250 | AUDIT SUBSYSTEM |
915f389d | 2251 | M: Paul Moore <paul@paul-moore.com> |
8b58be88 | 2252 | M: Eric Paris <eparis@redhat.com> |
915f389d | 2253 | L: linux-audit@redhat.com (moderated for non-subscribers) |
ad3f9a22 | 2254 | W: http://people.redhat.com/sgrubb/audit/ |
915f389d | 2255 | T: git git://git.infradead.org/users/pcmoore/audit |
a92b7b80 | 2256 | S: Maintained |
679655da | 2257 | F: include/linux/audit.h |
c117ab84 | 2258 | F: include/uapi/linux/audit.h |
679655da | 2259 | F: kernel/audit* |
a92b7b80 | 2260 | |
70e84049 | 2261 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 2262 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2263 | W: http://miguelojeda.es/auxdisplay.htm |
2264 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2265 | S: Maintained |
679655da JP |
2266 | F: drivers/auxdisplay/ |
2267 | F: include/linux/cfag12864b.h | |
70e84049 | 2268 | |
5f97f7f9 | 2269 | AVR32 ARCHITECTURE |
e336f61f HCE |
2270 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
2271 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
5f97f7f9 | 2272 | W: http://www.atmel.com/products/AVR32/ |
249d9d9d | 2273 | W: http://mirror.egtvedt.no/avr32linux.org/ |
5f97f7f9 | 2274 | W: http://avrfreaks.net/ |
e336f61f | 2275 | S: Maintained |
679655da | 2276 | F: arch/avr32/ |
5f97f7f9 HS |
2277 | |
2278 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
2279 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
2280 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
2281 | S: Maintained | |
679655da | 2282 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 2283 | |
1da177e4 | 2284 | AX.25 NETWORK LAYER |
8b58be88 | 2285 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 2286 | L: linux-hams@vger.kernel.org |
d34cb28a | 2287 | W: http://www.linux-ax25.org/ |
1da177e4 | 2288 | S: Maintained |
c117ab84 | 2289 | F: include/uapi/linux/ax25.h |
679655da JP |
2290 | F: include/net/ax25.h |
2291 | F: net/ax25/ | |
1da177e4 | 2292 | |
d5269395 | 2293 | AZ6007 DVB DRIVER |
5dc8a864 MCC |
2294 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
2295 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
d5269395 | 2296 | L: linux-media@vger.kernel.org |
a825eaec | 2297 | W: https://linuxtv.org |
d5269395 MCC |
2298 | T: git git://linuxtv.org/media_tree.git |
2299 | S: Maintained | |
2300 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
2301 | ||
6777376e HV |
2302 | AZTECH FM RADIO RECEIVER DRIVER |
2303 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2304 | L: linux-media@vger.kernel.org | |
2305 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 2306 | W: https://linuxtv.org |
6777376e HV |
2307 | S: Maintained |
2308 | F: drivers/media/radio/radio-aztech* | |
2309 | ||
e2d1d6c0 | 2310 | B43 WIRELESS DRIVER |
e2d1d6c0 | 2311 | L: linux-wireless@vger.kernel.org |
ed072f9e | 2312 | L: b43-dev@lists.infradead.org |
491b26b4 | 2313 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
8a72ed6f | 2314 | S: Odd Fixes |
58619b14 | 2315 | F: drivers/net/wireless/broadcom/b43/ |
e2d1d6c0 RD |
2316 | |
2317 | B43LEGACY WIRELESS DRIVER | |
8b58be88 | 2318 | M: Larry Finger <Larry.Finger@lwfinger.net> |
e2d1d6c0 | 2319 | L: linux-wireless@vger.kernel.org |
ed072f9e | 2320 | L: b43-dev@lists.infradead.org |
491b26b4 | 2321 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 2322 | S: Maintained |
423e3ce3 | 2323 | F: drivers/net/wireless/broadcom/b43legacy/ |
e2d1d6c0 | 2324 | |
300abeb5 | 2325 | BACKLIGHT CLASS/SUBSYSTEM |
b7701755 | 2326 | M: Jingoo Han <jingoohan1@gmail.com> |
70d14fcf | 2327 | M: Lee Jones <lee.jones@linaro.org> |
9f273c24 | 2328 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git |
300abeb5 | 2329 | S: Maintained |
679655da JP |
2330 | F: drivers/video/backlight/ |
2331 | F: include/linux/backlight.h | |
300abeb5 | 2332 | |
c6c8fea2 | 2333 | BATMAN ADVANCED |
207df49e | 2334 | M: Marek Lindner <mareklindner@neomailbox.ch> |
c679ff8f | 2335 | M: Simon Wunderlich <sw@simonwunderlich.de> |
ca8e940c | 2336 | M: Antonio Quartulli <a@unstable.cc> |
1584f41f | 2337 | L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers) |
7b5e7396 | 2338 | W: https://www.open-mesh.org/ |
8b823170 | 2339 | Q: https://patchwork.open-mesh.org/project/batman/list/ |
c6c8fea2 | 2340 | S: Maintained |
286ddfb0 SE |
2341 | F: Documentation/ABI/testing/sysfs-class-net-batman-adv |
2342 | F: Documentation/ABI/testing/sysfs-class-net-mesh | |
2343 | F: Documentation/networking/batman-adv.txt | |
09748a22 | 2344 | F: include/uapi/linux/batman_adv.h |
c6c8fea2 SE |
2345 | F: net/batman-adv/ |
2346 | ||
e2d1d6c0 | 2347 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 2348 | M: Thomas Sailer <t.sailer@alumni.ethz.ch> |
e2d1d6c0 RD |
2349 | L: linux-hams@vger.kernel.org |
2350 | W: http://www.baycom.org/~tom/ham/ham.html | |
2351 | S: Maintained | |
679655da | 2352 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 2353 | |
cafe5635 | 2354 | BCACHE (BLOCK LAYER CACHE) |
d1aa1ab3 | 2355 | M: Kent Overstreet <kent.overstreet@gmail.com> |
cafe5635 KO |
2356 | L: linux-bcache@vger.kernel.org |
2357 | W: http://bcache.evilpiepirate.org | |
4d1034eb | 2358 | S: Orphan |
cafe5635 KO |
2359 | F: drivers/md/bcache/ |
2360 | ||
04bd844a HV |
2361 | BDISP ST MEDIA DRIVER |
2362 | M: Fabien Dessenne <fabien.dessenne@st.com> | |
2363 | L: linux-media@vger.kernel.org | |
2364 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 2365 | W: https://linuxtv.org |
04bd844a HV |
2366 | S: Supported |
2367 | F: drivers/media/platform/sti/bdisp | |
2368 | ||
e2d1d6c0 | 2369 | BEFS FILE SYSTEM |
db4ad036 LB |
2370 | M: Luis de Bethencourt <luisbg@osg.samsung.com> |
2371 | M: Salah Triki <salah.triki@gmail.com> | |
2372 | S: Maintained | |
2373 | T: git git://github.com/luisbg/linux-befs.git | |
679655da JP |
2374 | F: Documentation/filesystems/befs.txt |
2375 | F: fs/befs/ | |
e2d1d6c0 | 2376 | |
564ee360 | 2377 | BECKHOFF CX5020 ETHERCAT MASTER DRIVER |
49e7d9df JP |
2378 | M: Dariusz Marcinkiewicz <reksio@newterm.pl> |
2379 | L: netdev@vger.kernel.org | |
2380 | S: Maintained | |
2381 | F: drivers/net/ethernet/ec_bhf.c | |
564ee360 | 2382 | |
e2d1d6c0 | 2383 | BFS FILE SYSTEM |
8b58be88 | 2384 | M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk> |
e2d1d6c0 | 2385 | S: Maintained |
679655da JP |
2386 | F: Documentation/filesystems/bfs.txt |
2387 | F: fs/bfs/ | |
c117ab84 | 2388 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 2389 | |
1394f032 | 2390 | BLACKFIN ARCHITECTURE |
a4edbc10 | 2391 | M: Steven Miao <realmz6@gmail.com> |
b3fe92b0 | 2392 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1443176f | 2393 | T: git git://git.code.sf.net/p/adi-linux/code |
e3b2d3f3 BW |
2394 | W: http://blackfin.uclinux.org |
2395 | S: Supported | |
679655da | 2396 | F: arch/blackfin/ |
566da5b2 | 2397 | |
e190d6b1 | 2398 | BLACKFIN EMAC DRIVER |
b3fe92b0 | 2399 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e190d6b1 BW |
2400 | W: http://blackfin.uclinux.org |
2401 | S: Supported | |
7b35f033 | 2402 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 2403 | |
566da5b2 | 2404 | BLACKFIN RTC DRIVER |
b3fe92b0 | 2405 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
566da5b2 MF |
2406 | W: http://blackfin.uclinux.org |
2407 | S: Supported | |
679655da | 2408 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 2409 | |
936ed49a | 2410 | BLACKFIN SDH DRIVER |
109ec8c3 | 2411 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2412 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
936ed49a MF |
2413 | W: http://blackfin.uclinux.org |
2414 | S: Supported | |
2415 | F: drivers/mmc/host/bfin_sdh.c | |
2416 | ||
1394f032 | 2417 | BLACKFIN SERIAL DRIVER |
8b58be88 | 2418 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2419 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e3b2d3f3 BW |
2420 | W: http://blackfin.uclinux.org |
2421 | S: Supported | |
8460241e | 2422 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 2423 | |
1e6d320f | 2424 | BLACKFIN WATCHDOG DRIVER |
b3fe92b0 | 2425 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1e6d320f BW |
2426 | W: http://blackfin.uclinux.org |
2427 | S: Supported | |
679655da | 2428 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 2429 | |
d24ecfcc | 2430 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 2431 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2432 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
d24ecfcc BW |
2433 | W: http://blackfin.uclinux.org/ |
2434 | S: Supported | |
679655da | 2435 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 2436 | |
1e204377 SJ |
2437 | BLACKFIN MEDIA DRIVER |
2438 | M: Scott Jiang <scott.jiang.linux@gmail.com> | |
b3fe92b0 | 2439 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1e204377 SJ |
2440 | W: http://blackfin.uclinux.org/ |
2441 | S: Supported | |
2442 | F: drivers/media/platform/blackfin/ | |
2443 | F: drivers/media/i2c/adv7183* | |
2444 | F: drivers/media/i2c/vs6624* | |
2445 | ||
b54cf35a JSM |
2446 | BLINKM RGB LED DRIVER |
2447 | M: Jan-Simon Moeller <jansimon.moeller@gmx.de> | |
2448 | S: Maintained | |
2449 | F: drivers/leds/leds-blinkm.c | |
2450 | ||
1da177e4 | 2451 | BLOCK LAYER |
8b58be88 | 2452 | M: Jens Axboe <axboe@kernel.dk> |
82c426e0 | 2453 | L: linux-block@vger.kernel.org |
08deed1e | 2454 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 2455 | S: Maintained |
679655da | 2456 | F: block/ |
ae11f7ef | 2457 | F: kernel/trace/blktrace.c |
1da177e4 | 2458 | |
2b54aaef | 2459 | BLOCK2MTD DRIVER |
8b58be88 | 2460 | M: Joern Engel <joern@lazybastard.org> |
2b54aaef JE |
2461 | L: linux-mtd@lists.infradead.org |
2462 | S: Maintained | |
679655da | 2463 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 2464 | |
63fbd24e | 2465 | BLUETOOTH DRIVERS |
8b58be88 | 2466 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 2467 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 2468 | M: Johan Hedberg <johan.hedberg@gmail.com> |
781c2844 | 2469 | L: linux-bluetooth@vger.kernel.org |
63fbd24e | 2470 | W: http://www.bluez.org/ |
22e7a424 MH |
2471 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
2472 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 2473 | S: Maintained |
679655da | 2474 | F: drivers/bluetooth/ |
1da177e4 | 2475 | |
63fbd24e | 2476 | BLUETOOTH SUBSYSTEM |
8b58be88 | 2477 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 2478 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 2479 | M: Johan Hedberg <johan.hedberg@gmail.com> |
63fbd24e MH |
2480 | L: linux-bluetooth@vger.kernel.org |
2481 | W: http://www.bluez.org/ | |
22e7a424 MH |
2482 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
2483 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 2484 | S: Maintained |
679655da JP |
2485 | F: net/bluetooth/ |
2486 | F: include/net/bluetooth/ | |
1da177e4 LT |
2487 | |
2488 | BONDING DRIVER | |
79b30750 | 2489 | M: Jay Vosburgh <j.vosburgh@gmail.com> |
898602a0 | 2490 | M: Veaceslav Falico <vfalico@gmail.com> |
da29838d | 2491 | M: Andy Gospodarek <andy@greyhouse.net> |
a6c36ee6 | 2492 | L: netdev@vger.kernel.org |
ce00f85c JC |
2493 | W: http://sourceforge.net/projects/bonding/ |
2494 | S: Supported | |
679655da | 2495 | F: drivers/net/bonding/ |
c117ab84 | 2496 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 2497 | |
b5f4df34 AS |
2498 | BPF (Safe dynamic programs and tools) |
2499 | M: Alexei Starovoitov <ast@kernel.org> | |
2500 | L: netdev@vger.kernel.org | |
2501 | L: linux-kernel@vger.kernel.org | |
2502 | S: Supported | |
2503 | F: kernel/bpf/ | |
2504 | ||
39105890 | 2505 | BROADCOM B44 10/100 ETHERNET DRIVER |
75c9510b | 2506 | M: Michael Chan <michael.chan@broadcom.com> |
39105890 GZ |
2507 | L: netdev@vger.kernel.org |
2508 | S: Supported | |
adfc5217 | 2509 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 2510 | |
967dd82f FF |
2511 | BROADCOM B53 ETHERNET SWITCH DRIVER |
2512 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2513 | L: netdev@vger.kernel.org | |
2514 | L: openwrt-devel@lists.openwrt.org (subscribers-only) | |
2515 | S: Supported | |
2516 | F: drivers/net/dsa/b53/* | |
2517 | F: include/linux/platform_data/b53.h | |
2518 | ||
32ec90d5 FF |
2519 | BROADCOM GENET ETHERNET DRIVER |
2520 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2521 | L: netdev@vger.kernel.org | |
2522 | S: Supported | |
2523 | F: drivers/net/ethernet/broadcom/genet/ | |
2524 | ||
948c51e6 | 2525 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
f1d1baeb JK |
2526 | M: Sony Chacko <sony.chacko@qlogic.com> |
2527 | M: Dept-HSGLinuxNICDev@qlogic.com | |
948c51e6 MC |
2528 | L: netdev@vger.kernel.org |
2529 | S: Supported | |
adfc5217 JK |
2530 | F: drivers/net/ethernet/broadcom/bnx2.* |
2531 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 2532 | |
4d9d2cb0 | 2533 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
08f6dd89 | 2534 | M: Ariel Elior <ariel.elior@qlogic.com> |
4d9d2cb0 ET |
2535 | L: netdev@vger.kernel.org |
2536 | S: Supported | |
adfc5217 | 2537 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 2538 | |
90f4c594 | 2539 | BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE |
f18cf050 | 2540 | M: Florian Fainelli <f.fainelli@gmail.com> |
d3cc2e86 FF |
2541 | M: Ray Jui <rjui@broadcom.com> |
2542 | M: Scott Branden <sbranden@broadcom.com> | |
086f4704 | 2543 | M: bcm-kernel-feedback-list@broadcom.com |
90f4c594 | 2544 | T: git git://github.com/broadcom/mach-bcm |
af4b8e37 | 2545 | S: Maintained |
ccf62f5a JM |
2546 | N: bcm281* |
2547 | N: bcm113* | |
2548 | N: bcm216* | |
2549 | N: kona | |
af4b8e37 | 2550 | F: arch/arm/mach-bcm/ |
af4b8e37 | 2551 | |
9209bec4 | 2552 | BROADCOM BCM2835 ARM ARCHITECTURE |
f680f25c | 2553 | M: Stephen Warren <swarren@wwwdotorg.org> |
8bcdd929 | 2554 | M: Lee Jones <lee@kernel.org> |
10b9e887 | 2555 | M: Eric Anholt <eric@anholt.net> |
f680f25c | 2556 | L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers) |
82481129 | 2557 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
8bcdd929 | 2558 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git |
f680f25c | 2559 | S: Maintained |
9209bec4 | 2560 | N: bcm2835 |
f680f25c | 2561 | |
5564f092 RM |
2562 | BROADCOM BCM47XX MIPS ARCHITECTURE |
2563 | M: Hauke Mehrtens <hauke@hauke-m.de> | |
2564 | M: Rafał Miłecki <zajec5@gmail.com> | |
2565 | L: linux-mips@linux-mips.org | |
2566 | S: Maintained | |
7ad2410c | 2567 | F: Documentation/devicetree/bindings/mips/brcm/ |
5564f092 RM |
2568 | F: arch/mips/bcm47xx/* |
2569 | F: arch/mips/include/asm/mach-bcm47xx/* | |
2570 | ||
9209bec4 | 2571 | BROADCOM BCM5301X ARM ARCHITECTURE |
5b293ebe | 2572 | M: Hauke Mehrtens <hauke@hauke-m.de> |
1a50cd8a RM |
2573 | M: Rafał Miłecki <zajec5@gmail.com> |
2574 | M: bcm-kernel-feedback-list@broadcom.com | |
5b293ebe HM |
2575 | L: linux-arm-kernel@lists.infradead.org |
2576 | S: Maintained | |
2577 | F: arch/arm/mach-bcm/bcm_5301x.c | |
1a50cd8a | 2578 | F: arch/arm/boot/dts/bcm5301x*.dtsi |
5b293ebe HM |
2579 | F: arch/arm/boot/dts/bcm470* |
2580 | ||
e076e962 FF |
2581 | BROADCOM BCM63XX ARM ARCHITECTURE |
2582 | M: Florian Fainelli <f.fainelli@gmail.com> | |
086f4704 | 2583 | M: bcm-kernel-feedback-list@broadcom.com |
20de823e | 2584 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
20de823e | 2585 | T: git git://github.com/broadcom/stblinux.git |
e076e962 | 2586 | S: Maintained |
d6f4e76e | 2587 | N: bcm63xx |
e076e962 | 2588 | |
7110e227 KC |
2589 | BROADCOM BCM63XX/BCM33XX UDC DRIVER |
2590 | M: Kevin Cernekee <cernekee@gmail.com> | |
2591 | L: linux-usb@vger.kernel.org | |
2592 | S: Maintained | |
2593 | F: drivers/usb/gadget/udc/bcm63xx_udc.* | |
2594 | ||
2df94fd6 | 2595 | BROADCOM BCM7XXX ARM ARCHITECTURE |
2df94fd6 | 2596 | M: Brian Norris <computersforpeace@gmail.com> |
3b4b6fe9 FF |
2597 | M: Gregory Fong <gregory.0xf0@gmail.com> |
2598 | M: Florian Fainelli <f.fainelli@gmail.com> | |
086f4704 | 2599 | M: bcm-kernel-feedback-list@broadcom.com |
2df94fd6 | 2600 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
eb6725d0 | 2601 | T: git git://github.com/broadcom/stblinux.git |
2df94fd6 BN |
2602 | S: Maintained |
2603 | F: arch/arm/mach-bcm/*brcmstb* | |
2604 | F: arch/arm/boot/dts/bcm7*.dts* | |
e36661e4 | 2605 | F: drivers/bus/brcmstb_gisb.c |
5009a289 | 2606 | N: brcmstb |
2df94fd6 | 2607 | |
70371cef KC |
2608 | BROADCOM BMIPS MIPS ARCHITECTURE |
2609 | M: Kevin Cernekee <cernekee@gmail.com> | |
2610 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2611 | L: linux-mips@linux-mips.org | |
eb6725d0 | 2612 | T: git git://github.com/broadcom/stblinux.git |
70371cef KC |
2613 | S: Maintained |
2614 | F: arch/mips/bmips/* | |
2615 | F: arch/mips/include/asm/mach-bmips/* | |
2616 | F: arch/mips/kernel/*bmips* | |
338808de | 2617 | F: arch/mips/boot/dts/brcm/bcm*.dts* |
c7c42ec2 | 2618 | F: drivers/irqchip/irq-bcm63* |
70371cef KC |
2619 | F: drivers/irqchip/irq-bcm7* |
2620 | F: drivers/irqchip/irq-brcmstb* | |
3271e610 | 2621 | F: include/linux/bcm963xx_nvram.h |
8fce60b8 | 2622 | F: include/linux/bcm963xx_tag.h |
70371cef | 2623 | |
948c51e6 | 2624 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
ccad0993 | 2625 | M: Siva Reddy Kallam <siva.kallam@broadcom.com> |
23629477 | 2626 | M: Prashant Sreedharan <prashant@broadcom.com> |
8b58be88 | 2627 | M: Michael Chan <mchan@broadcom.com> |
948c51e6 MC |
2628 | L: netdev@vger.kernel.org |
2629 | S: Supported | |
adfc5217 | 2630 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 2631 | |
a9533e7e | 2632 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
2a734451 AS |
2633 | M: Arend van Spriel <arend.vanspriel@broadcom.com> |
2634 | M: Franky Lin <franky.lin@broadcom.com> | |
2635 | M: Hante Meuleman <hante.meuleman@broadcom.com> | |
a9533e7e | 2636 | L: linux-wireless@vger.kernel.org |
2a734451 | 2637 | L: brcm80211-dev-list.pdl@broadcom.com |
a9533e7e | 2638 | S: Supported |
05491d2c | 2639 | F: drivers/net/wireless/broadcom/brcm80211/ |
a9533e7e | 2640 | |
9958d6f9 | 2641 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
3b7f040a | 2642 | M: QLogic-Storage-Upstream@qlogic.com |
9958d6f9 BPG |
2643 | L: linux-scsi@vger.kernel.org |
2644 | S: Supported | |
2645 | F: drivers/scsi/bnx2fc/ | |
2646 | ||
6a6b5ad0 | 2647 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
3b7f040a | 2648 | M: QLogic-Storage-Upstream@qlogic.com |
6a6b5ad0 EW |
2649 | L: linux-scsi@vger.kernel.org |
2650 | S: Supported | |
2651 | F: drivers/scsi/bnx2i/ | |
2652 | ||
63f37ddf | 2653 | BROADCOM IPROC ARM ARCHITECTURE |
36c0237f SB |
2654 | M: Ray Jui <rjui@broadcom.com> |
2655 | M: Scott Branden <sbranden@broadcom.com> | |
63f37ddf | 2656 | M: Jon Mason <jonmason@broadcom.com> |
086f4704 | 2657 | M: bcm-kernel-feedback-list@broadcom.com |
36c0237f | 2658 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
eb6725d0 | 2659 | T: git git://github.com/broadcom/cygnus-linux.git |
36c0237f SB |
2660 | S: Maintained |
2661 | N: iproc | |
2662 | N: cygnus | |
5c161242 | 2663 | N: bcm[-_]nsp |
36c0237f SB |
2664 | N: bcm9113* |
2665 | N: bcm9583* | |
63f37ddf JM |
2666 | N: bcm9585* |
2667 | N: bcm9586* | |
2668 | N: bcm988312 | |
36c0237f | 2669 | N: bcm113* |
63f37ddf JM |
2670 | N: bcm583* |
2671 | N: bcm585* | |
2672 | N: bcm586* | |
2673 | N: bcm88312 | |
d76e21b8 | 2674 | F: arch/arm64/boot/dts/broadcom/ns2* |
5c161242 JM |
2675 | F: drivers/clk/bcm/clk-ns* |
2676 | F: drivers/pinctrl/bcm/pinctrl-ns* | |
36c0237f | 2677 | |
3b0213d5 GF |
2678 | BROADCOM BRCMSTB GPIO DRIVER |
2679 | M: Gregory Fong <gregory.0xf0@gmail.com> | |
9c2abe2f | 2680 | L: bcm-kernel-feedback-list@broadcom.com |
3b0213d5 GF |
2681 | S: Supported |
2682 | F: drivers/gpio/gpio-brcmstb.c | |
2683 | F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt | |
2684 | ||
7b7f588b | 2685 | BROADCOM KONA GPIO DRIVER |
5e163903 | 2686 | M: Ray Jui <rjui@broadcom.com> |
7b7f588b MM |
2687 | L: bcm-kernel-feedback-list@broadcom.com |
2688 | S: Supported | |
2689 | F: drivers/gpio/gpio-bcm-kona.c | |
1db12cde | 2690 | F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt |
7b7f588b | 2691 | |
f6e734a8 RM |
2692 | BROADCOM NVRAM DRIVER |
2693 | M: Rafał Miłecki <zajec5@gmail.com> | |
2694 | L: linux-mips@linux-mips.org | |
2695 | S: Maintained | |
2696 | F: drivers/firmware/broadcom/* | |
2697 | ||
02787daa BN |
2698 | BROADCOM STB NAND FLASH DRIVER |
2699 | M: Brian Norris <computersforpeace@gmail.com> | |
1ddaa021 | 2700 | M: Kamal Dasu <kdasu.kdev@gmail.com> |
02787daa | 2701 | L: linux-mtd@lists.infradead.org |
1285734c | 2702 | L: bcm-kernel-feedback-list@broadcom.com |
02787daa BN |
2703 | S: Maintained |
2704 | F: drivers/mtd/nand/brcmnand/ | |
2705 | ||
c9678d86 RM |
2706 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
2707 | M: Rafał Miłecki <zajec5@gmail.com> | |
2708 | L: linux-wireless@vger.kernel.org | |
2709 | S: Maintained | |
2710 | F: drivers/bcma/ | |
2711 | F: include/linux/bcma/ | |
2712 | ||
b8302205 FF |
2713 | BROADCOM SYSTEMPORT ETHERNET DRIVER |
2714 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2715 | L: netdev@vger.kernel.org | |
2716 | S: Supported | |
2717 | F: drivers/net/ethernet/broadcom/bcmsysport.* | |
2718 | ||
42515e61 J |
2719 | BROADCOM VULCAN ARM64 SOC |
2720 | M: Jayachandran C. <jchandra@broadcom.com> | |
086f4704 | 2721 | M: bcm-kernel-feedback-list@broadcom.com |
42515e61 | 2722 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
42515e61 J |
2723 | S: Maintained |
2724 | F: arch/arm64/boot/dts/broadcom/vulcan* | |
2725 | ||
7725ccfd | 2726 | BROCADE BFA FC SCSI DRIVER |
aa803370 AG |
2727 | M: Anil Gurumurthy <anil.gurumurthy@qlogic.com> |
2728 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> | |
455518e7 JP |
2729 | L: linux-scsi@vger.kernel.org |
2730 | S: Supported | |
2731 | F: drivers/scsi/bfa/ | |
7725ccfd | 2732 | |
8b230ed8 | 2733 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
439e9575 | 2734 | M: Rasesh Mody <rasesh.mody@qlogic.com> |
8b230ed8 RM |
2735 | L: netdev@vger.kernel.org |
2736 | S: Supported | |
f844a0ea | 2737 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 2738 | |
5cdf7f76 | 2739 | BSG (block layer generic sg v4 driver) |
8b58be88 | 2740 | M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> |
5cdf7f76 JA |
2741 | L: linux-scsi@vger.kernel.org |
2742 | S: Supported | |
679655da JP |
2743 | F: block/bsg.c |
2744 | F: include/linux/bsg.h | |
c117ab84 | 2745 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 2746 | |
af39917d CL |
2747 | BT87X AUDIO DRIVER |
2748 | M: Clemens Ladisch <clemens@ladisch.de> | |
2749 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2750 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2751 | S: Maintained | |
2752 | F: Documentation/sound/alsa/Bt87x.txt | |
2753 | F: sound/pci/bt87x.c | |
2754 | ||
ff1d5c2f | 2755 | BT8XXGPIO DRIVER |
eb032b98 | 2756 | M: Michael Buesch <m@bues.ch> |
ff1d5c2f MB |
2757 | W: http://bu3sch.de/btgpio.php |
2758 | S: Maintained | |
72dbb705 | 2759 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 2760 | |
eb1eb04f | 2761 | BTRFS FILE SYSTEM |
c0778e25 CM |
2762 | M: Chris Mason <clm@fb.com> |
2763 | M: Josef Bacik <jbacik@fb.com> | |
d8130624 | 2764 | M: David Sterba <dsterba@suse.com> |
eb1eb04f JP |
2765 | L: linux-btrfs@vger.kernel.org |
2766 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 2767 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 2768 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 2769 | S: Maintained |
679655da JP |
2770 | F: Documentation/filesystems/btrfs.txt |
2771 | F: fs/btrfs/ | |
eb1eb04f | 2772 | |
1da177e4 | 2773 | BTTV VIDEO4LINUX DRIVER |
5dc8a864 MCC |
2774 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
2775 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
661263b5 | 2776 | L: linux-media@vger.kernel.org |
a825eaec | 2777 | W: https://linuxtv.org |
275ffde4 | 2778 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 2779 | S: Odd fixes |
679655da | 2780 | F: Documentation/video4linux/bttv/ |
90d72ac6 | 2781 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 2782 | |
1f34923c KA |
2783 | BUSLOGIC SCSI DRIVER |
2784 | M: Khalid Aziz <khalid@gonehiking.org> | |
2785 | L: linux-scsi@vger.kernel.org | |
2786 | S: Maintained | |
2787 | F: drivers/scsi/BusLogic.* | |
2788 | F: drivers/scsi/FlashPoint.* | |
2789 | ||
af39917d CL |
2790 | C-MEDIA CMI8788 DRIVER |
2791 | M: Clemens Ladisch <clemens@ladisch.de> | |
2792 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2793 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2794 | S: Maintained | |
2795 | F: sound/pci/oxygen/ | |
2796 | ||
2141355f MS |
2797 | C6X ARCHITECTURE |
2798 | M: Mark Salter <msalter@redhat.com> | |
2799 | M: Aurelien Jacquiot <a-jacquiot@ti.com> | |
2800 | L: linux-c6x-dev@linux-c6x.org | |
2801 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
2802 | S: Maintained | |
2803 | F: arch/c6x/ | |
2804 | ||
a5432f5a | 2805 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 2806 | M: David Howells <dhowells@redhat.com> |
e62d6e24 | 2807 | L: linux-cachefs@redhat.com (moderated for non-subscribers) |
a5432f5a DH |
2808 | S: Supported |
2809 | F: Documentation/filesystems/caching/cachefiles.txt | |
2810 | F: fs/cachefiles/ | |
2811 | ||
c815ca39 HV |
2812 | CADET FM/AM RADIO RECEIVER DRIVER |
2813 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2814 | L: linux-media@vger.kernel.org | |
2815 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 2816 | W: https://linuxtv.org |
c815ca39 HV |
2817 | S: Maintained |
2818 | F: drivers/media/radio/radio-cadet* | |
2819 | ||
77d5140f | 2820 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 2821 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 2822 | L: linux-media@vger.kernel.org |
275ffde4 | 2823 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 2824 | S: Maintained |
679655da | 2825 | F: Documentation/video4linux/cafe_ccic |
90d72ac6 | 2826 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 2827 | |
201b6bab | 2828 | CAIF NETWORK LAYER |
5c574f50 | 2829 | M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no> |
201b6bab JP |
2830 | L: netdev@vger.kernel.org |
2831 | S: Supported | |
2832 | F: Documentation/networking/caif/ | |
2833 | F: drivers/net/caif/ | |
c117ab84 | 2834 | F: include/uapi/linux/caif/ |
201b6bab JP |
2835 | F: include/net/caif/ |
2836 | F: net/caif/ | |
2837 | ||
77dac90f | 2838 | CALGARY x86-64 IOMMU |
a6921c29 JM |
2839 | M: Muli Ben-Yehuda <mulix@mulix.org> |
2840 | M: Jon Mason <jdmason@kudzu.us> | |
2841 | L: iommu@lists.linux-foundation.org | |
77dac90f | 2842 | S: Maintained |
679655da JP |
2843 | F: arch/x86/kernel/pci-calgary_64.c |
2844 | F: arch/x86/kernel/tce_64.c | |
2845 | F: arch/x86/include/asm/calgary.h | |
2846 | F: arch/x86/include/asm/tce.h | |
77dac90f | 2847 | |
e2d1d6c0 | 2848 | CAN NETWORK LAYER |
8d15d386 | 2849 | M: Oliver Hartkopp <socketcan@hartkopp.net> |
f7214cf2 | 2850 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 2851 | L: linux-can@vger.kernel.org |
84b0d715 | 2852 | W: https://github.com/linux-can |
870482a4 MKB |
2853 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
2854 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git | |
e2d1d6c0 | 2855 | S: Maintained |
f35f6c8f | 2856 | F: Documentation/networking/can.txt |
8d15d386 | 2857 | F: net/can/ |
8d15d386 | 2858 | F: include/linux/can/core.h |
c117ab84 CEB |
2859 | F: include/uapi/linux/can.h |
2860 | F: include/uapi/linux/can/bcm.h | |
2861 | F: include/uapi/linux/can/raw.h | |
2862 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 2863 | |
4261a204 | 2864 | CAN NETWORK DRIVERS |
8b58be88 | 2865 | M: Wolfgang Grandegger <wg@grandegger.com> |
ec78213a | 2866 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 2867 | L: linux-can@vger.kernel.org |
84b0d715 | 2868 | W: https://github.com/linux-can |
870482a4 MKB |
2869 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
2870 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git | |
4261a204 | 2871 | S: Maintained |
3636876a | 2872 | F: Documentation/devicetree/bindings/net/can/ |
8d15d386 OH |
2873 | F: drivers/net/can/ |
2874 | F: include/linux/can/dev.h | |
8d15d386 | 2875 | F: include/linux/can/platform/ |
c117ab84 CEB |
2876 | F: include/uapi/linux/can/error.h |
2877 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 2878 | |
95d16c72 | 2879 | CAPABILITIES |
39baa7e6 | 2880 | M: Serge Hallyn <serge@hallyn.com> |
95d16c72 | 2881 | L: linux-security-module@vger.kernel.org |
6305902c | 2882 | S: Supported |
95d16c72 | 2883 | F: include/linux/capability.h |
c117ab84 | 2884 | F: include/uapi/linux/capability.h |
6305902c | 2885 | F: security/commoncap.c |
38a94118 | 2886 | F: kernel/capability.c |
95d16c72 | 2887 | |
b84894c7 KT |
2888 | CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER |
2889 | M: Kevin Tsai <ktsai@capellamicro.com> | |
2890 | S: Maintained | |
2891 | F: drivers/iio/light/cm* | |
2892 | F: Documentation/devicetree/bindings/i2c/trivial-devices.txt | |
2893 | ||
f21fb3ed RV |
2894 | CAVIUM LIQUIDIO NETWORK DRIVER |
2895 | M: Derek Chickles <derek.chickles@caviumnetworks.com> | |
2896 | M: Satanand Burla <satananda.burla@caviumnetworks.com> | |
2897 | M: Felix Manlunas <felix.manlunas@caviumnetworks.com> | |
2898 | M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com> | |
2899 | L: netdev@vger.kernel.org | |
2900 | W: http://www.cavium.com | |
2901 | S: Supported | |
f21fb3ed RV |
2902 | F: drivers/net/ethernet/cavium/liquidio/ |
2903 | ||
ef0bbac3 VB |
2904 | CC2520 IEEE-802.15.4 RADIO DRIVER |
2905 | M: Varka Bhadram <varkabhadram@gmail.com> | |
2906 | L: linux-wpan@vger.kernel.org | |
2907 | S: Maintained | |
2908 | F: drivers/net/ieee802154/cc2520.c | |
2909 | F: include/linux/spi/cc2520.h | |
2910 | F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt | |
2911 | ||
ca684386 HV |
2912 | CEC DRIVER |
2913 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
2914 | L: linux-media@vger.kernel.org | |
2915 | T: git git://linuxtv.org/media_tree.git | |
2916 | W: http://linuxtv.org | |
2917 | S: Supported | |
2918 | F: Documentation/cec.txt | |
2919 | F: Documentation/DocBook/media/v4l/cec* | |
2920 | F: drivers/staging/media/cec/ | |
2921 | F: drivers/media/cec-edid.c | |
2922 | F: drivers/media/rc/keymaps/rc-cec.c | |
2923 | F: include/media/cec.h | |
2924 | F: include/media/cec-edid.h | |
2925 | F: include/linux/cec.h | |
2926 | F: include/linux/cec-funcs.h | |
2927 | ||
b8154542 | 2928 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 2929 | M: Arnd Bergmann <arnd@arndb.de> |
a4724ed6 | 2930 | L: linuxppc-dev@lists.ozlabs.org |
b8154542 AB |
2931 | W: http://www.ibm.com/developerworks/power/cell/ |
2932 | S: Supported | |
679655da | 2933 | F: arch/powerpc/include/asm/cell*.h |
679655da | 2934 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 2935 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
2936 | F: arch/powerpc/oprofile/*cell* |
2937 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 2938 | |
398ecff5 SW |
2939 | CEPH COMMON CODE (LIBCEPH) |
2940 | M: Ilya Dryomov <idryomov@gmail.com> | |
e43cdb56 | 2941 | M: "Yan, Zheng" <zyan@redhat.com> |
0f5417ce | 2942 | M: Sage Weil <sage@redhat.com> |
82593f87 | 2943 | L: ceph-devel@vger.kernel.org |
09d90327 | 2944 | W: http://ceph.com/ |
fb99f881 | 2945 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
6e67b7ae | 2946 | T: git git://github.com/ceph/ceph-client.git |
9030aaf9 | 2947 | S: Supported |
14430813 JP |
2948 | F: net/ceph/ |
2949 | F: include/linux/ceph/ | |
2950 | F: include/linux/crush/ | |
9030aaf9 | 2951 | |
398ecff5 SW |
2952 | CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH) |
2953 | M: "Yan, Zheng" <zyan@redhat.com> | |
2954 | M: Sage Weil <sage@redhat.com> | |
2955 | M: Ilya Dryomov <idryomov@gmail.com> | |
2956 | L: ceph-devel@vger.kernel.org | |
2957 | W: http://ceph.com/ | |
2958 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
6e67b7ae | 2959 | T: git git://github.com/ceph/ceph-client.git |
398ecff5 SW |
2960 | S: Supported |
2961 | F: Documentation/filesystems/ceph.txt | |
2962 | F: fs/ceph/ | |
2963 | ||
cfc411e7 DH |
2964 | CERTIFICATE HANDLING: |
2965 | M: David Howells <dhowells@redhat.com> | |
2966 | M: David Woodhouse <dwmw2@infradead.org> | |
d8d80386 | 2967 | L: keyrings@vger.kernel.org |
cfc411e7 DH |
2968 | S: Maintained |
2969 | F: Documentation/module-signing.txt | |
2970 | F: certs/ | |
d8d80386 | 2971 | F: scripts/sign-file.c |
cfc411e7 DH |
2972 | F: scripts/extract-cert.c |
2973 | ||
18332a80 | 2974 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 2975 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 2976 | S: Orphan |
679655da JP |
2977 | F: Documentation/usb/WUSB-Design-overview.txt |
2978 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
2979 | F: drivers/usb/host/hwa-hc.c |
2980 | F: drivers/usb/host/whci/ | |
679655da JP |
2981 | F: drivers/usb/wusbcore/ |
2982 | F: include/linux/usb/wusb* | |
18332a80 | 2983 | |
70e84049 | 2984 | CFAG12864B LCD DRIVER |
8b58be88 | 2985 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2986 | W: http://miguelojeda.es/auxdisplay.htm |
2987 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2988 | S: Maintained |
679655da JP |
2989 | F: drivers/auxdisplay/cfag12864b.c |
2990 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
2991 | |
2992 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 2993 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2994 | W: http://miguelojeda.es/auxdisplay.htm |
2995 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2996 | S: Maintained |
679655da JP |
2997 | F: drivers/auxdisplay/cfag12864bfb.c |
2998 | F: include/linux/cfag12864b.h | |
70e84049 | 2999 | |
704232c2 | 3000 | CFG80211 and NL80211 |
8b58be88 | 3001 | M: Johannes Berg <johannes@sipsolutions.net> |
704232c2 | 3002 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
3003 | W: http://wireless.kernel.org/ |
3004 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
3005 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 3006 | S: Maintained |
c117ab84 | 3007 | F: include/uapi/linux/nl80211.h |
679655da JP |
3008 | F: include/net/cfg80211.h |
3009 | F: net/wireless/* | |
3010 | X: net/wireless/wext* | |
704232c2 | 3011 | |
46e64261 GKH |
3012 | CHAR and MISC DRIVERS |
3013 | M: Arnd Bergmann <arnd@arndb.de> | |
879a5a00 | 3014 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
46e64261 | 3015 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 3016 | S: Supported |
46e64261 GKH |
3017 | F: drivers/char/* |
3018 | F: drivers/misc/* | |
471322a8 | 3019 | F: include/linux/miscdevice.h |
46e64261 | 3020 | |
0a920b5b | 3021 | CHECKPATCH |
8b58be88 | 3022 | M: Andy Whitcroft <apw@canonical.com> |
10d83f07 JP |
3023 | M: Joe Perches <joe@perches.com> |
3024 | S: Maintained | |
679655da | 3025 | F: scripts/checkpatch.pl |
0a920b5b | 3026 | |
f8407f26 HW |
3027 | CHINESE DOCUMENTATION |
3028 | M: Harry Wei <harryxiyou@gmail.com> | |
9740153c | 3029 | L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only) |
f8407f26 HW |
3030 | L: linux-kernel@zh-kernel.org (moderated for non-subscribers) |
3031 | S: Maintained | |
3032 | F: Documentation/zh_CN/ | |
3033 | ||
2721ea2c | 3034 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
60d77b3d | 3035 | M: Peter Chen <Peter.Chen@nxp.com> |
8373856d | 3036 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
2721ea2c AS |
3037 | L: linux-usb@vger.kernel.org |
3038 | S: Maintained | |
3039 | F: drivers/usb/chipidea/ | |
3040 | ||
a93ad65d HG |
3041 | CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER |
3042 | M: Hans de Goede <hdegoede@redhat.com> | |
3043 | L: linux-input@vger.kernel.org | |
3044 | S: Maintained | |
3045 | F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt | |
3046 | F: drivers/input/touchscreen/chipone_icn8318.c | |
3047 | ||
ab043105 OJ |
3048 | CHROME HARDWARE PLATFORM SUPPORT |
3049 | M: Olof Johansson <olof@lixom.net> | |
3050 | S: Maintained | |
9f273c24 | 3051 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git |
ab043105 OJ |
3052 | F: drivers/platform/chrome/ |
3053 | ||
641cb85e | 3054 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 3055 | M: Christian Benvenuti <benve@cisco.com> |
001e1c1d | 3056 | M: Sujith Sankar <ssujith@cisco.com> |
c327e8f4 | 3057 | M: Govindarajulu Varadarajan <_govind@gmx.com> |
5c6652f5 | 3058 | M: Neel Patel <neepatel@cisco.com> |
7063fbf2 | 3059 | S: Supported |
a6a5580c | 3060 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 3061 | |
e3cf00d0 | 3062 | CISCO VIC LOW LATENCY NIC DRIVER |
35ef4a9e DG |
3063 | M: Christian Benvenuti <benve@cisco.com> |
3064 | M: Dave Goodell <dgoodell@cisco.com> | |
b75f0050 | 3065 | S: Supported |
35ef4a9e | 3066 | F: drivers/infiniband/hw/usnic/ |
e3cf00d0 | 3067 | |
2b7a52a4 | 3068 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 3069 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
2b7a52a4 LB |
3070 | L: netdev@vger.kernel.org |
3071 | S: Maintained | |
57d0b7a0 | 3072 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 3073 | |
3d4cfdc9 MB |
3074 | CIRRUS LOGIC AUDIO CODEC DRIVERS |
3075 | M: Brian Austin <brian.austin@cirrus.com> | |
3076 | M: Paul Handrigan <Paul.Handrigan@cirrus.com> | |
3077 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
3078 | S: Maintained | |
3079 | F: sound/soc/codecs/cs* | |
3080 | ||
94574d9a KRW |
3081 | CLEANCACHE API |
3082 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
3083 | L: linux-kernel@vger.kernel.org | |
3084 | S: Maintained | |
3085 | F: mm/cleancache.c | |
3086 | F: include/linux/cleancache.h | |
3087 | ||
d4275354 | 3088 | CLK API |
54176cc6 | 3089 | M: Russell King <linux@armlinux.org.uk> |
aa571b14 | 3090 | L: linux-clk@vger.kernel.org |
37417046 | 3091 | S: Maintained |
d4275354 RK |
3092 | F: include/linux/clk.h |
3093 | ||
9222d247 JS |
3094 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
3095 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3096 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 3097 | L: linux-kernel@vger.kernel.org |
9222d247 JS |
3098 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
3099 | S: Supported | |
3100 | F: drivers/clocksource | |
3101 | ||
5df6d737 | 3102 | CISCO FCOE HBA DRIVER |
8fc89a79 HP |
3103 | M: Hiral Patel <hiralpat@cisco.com> |
3104 | M: Suma Ramars <sramars@cisco.com> | |
d7e01dc6 | 3105 | M: Brian Uchino <buchino@cisco.com> |
5df6d737 AJ |
3106 | L: linux-scsi@vger.kernel.org |
3107 | S: Supported | |
2a99921a | 3108 | F: drivers/scsi/fnic/ |
5df6d737 | 3109 | |
c8806b6c NM |
3110 | CISCO SCSI HBA DRIVER |
3111 | M: Narsimhulu Musini <nmusini@cisco.com> | |
3112 | M: Sesidhar Baddela <sebaddel@cisco.com> | |
3113 | L: linux-scsi@vger.kernel.org | |
3114 | S: Supported | |
3115 | F: drivers/scsi/snic/ | |
3116 | ||
529aa8cb TLSC |
3117 | CMPC ACPI DRIVER |
3118 | M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> | |
3119 | M: Daniel Oliveira Nascimento <don@syst.com.br> | |
d0944853 | 3120 | L: platform-driver-x86@vger.kernel.org |
529aa8cb TLSC |
3121 | S: Supported |
3122 | F: drivers/platform/x86/classmate-laptop.c | |
3123 | ||
85756a06 HV |
3124 | COBALT MEDIA DRIVER |
3125 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
3126 | L: linux-media@vger.kernel.org | |
3127 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 3128 | W: https://linuxtv.org |
85756a06 HV |
3129 | S: Supported |
3130 | F: drivers/media/pci/cobalt/ | |
3131 | ||
74425eee | 3132 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 3133 | M: Julia Lawall <Julia.Lawall@lip6.fr> |
74425eee | 3134 | M: Gilles Muller <Gilles.Muller@lip6.fr> |
26de9c26 | 3135 | M: Nicolas Palix <nicolas.palix@imag.fr> |
d8130624 | 3136 | M: Michal Marek <mmarek@suse.com> |
26de9c26 | 3137 | L: cocci@systeme.lip6.fr (moderated for non-subscribers) |
c00b5110 | 3138 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
74425eee NP |
3139 | W: http://coccinelle.lip6.fr/ |
3140 | S: Supported | |
4b92b2aa | 3141 | F: Documentation/coccinelle.txt |
74425eee NP |
3142 | F: scripts/coccinelle/ |
3143 | F: scripts/coccicheck | |
3144 | ||
1da177e4 | 3145 | CODA FILE SYSTEM |
8b58be88 | 3146 | M: Jan Harkes <jaharkes@cs.cmu.edu> |
1da177e4 LT |
3147 | M: coda@cs.cmu.edu |
3148 | L: codalist@coda.cs.cmu.edu | |
3149 | W: http://www.coda.cs.cmu.edu/ | |
3150 | S: Maintained | |
679655da JP |
3151 | F: Documentation/filesystems/coda.txt |
3152 | F: fs/coda/ | |
3153 | F: include/linux/coda*.h | |
c117ab84 | 3154 | F: include/uapi/linux/coda*.h |
1da177e4 | 3155 | |
0b14261e PZ |
3156 | CODA V4L2 MEM2MEM DRIVER |
3157 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
3158 | L: linux-media@vger.kernel.org | |
3159 | S: Maintained | |
3160 | F: Documentation/devicetree/bindings/media/coda.txt | |
3161 | F: drivers/media/platform/coda/ | |
3162 | ||
7704addb | 3163 | COMMON CLK FRAMEWORK |
a85fa007 | 3164 | M: Michael Turquette <mturquette@baylibre.com> |
f956165f | 3165 | M: Stephen Boyd <sboyd@codeaurora.org> |
aa571b14 | 3166 | L: linux-clk@vger.kernel.org |
baeb0d9b | 3167 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git |
7704addb | 3168 | S: Maintained |
ae4185cd | 3169 | F: Documentation/devicetree/bindings/clock/ |
60bea3b5 SW |
3170 | F: drivers/clk/ |
3171 | X: drivers/clk/clkdev.c | |
7704addb | 3172 | F: include/linux/clk-pr* |
60bea3b5 | 3173 | F: include/linux/clk/ |
7704addb | 3174 | |
e2d1d6c0 | 3175 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 3176 | M: Steve French <sfrench@samba.org> |
51223df6 | 3177 | L: linux-cifs@vger.kernel.org |
d1f28953 | 3178 | L: samba-technical@lists.samba.org (moderated for non-subscribers) |
e2d1d6c0 | 3179 | W: http://linux-cifs.samba.org/ |
bb1d5dda | 3180 | T: git git://git.samba.org/sfrench/cifs-2.6.git |
e2d1d6c0 | 3181 | S: Supported |
ec421a71 | 3182 | F: Documentation/filesystems/cifs/ |
679655da | 3183 | F: fs/cifs/ |
e2d1d6c0 | 3184 | |
1da177e4 | 3185 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 3186 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 3187 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 3188 | S: Maintained |
679655da | 3189 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
3190 | |
3191 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 3192 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 3193 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 3194 | S: Maintained |
679655da | 3195 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
3196 | |
3197 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 3198 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 3199 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 3200 | S: Maintained |
679655da | 3201 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 3202 | |
5411552c | 3203 | COMPAL LAPTOP SUPPORT |
8b58be88 | 3204 | M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> |
d0944853 | 3205 | L: platform-driver-x86@vger.kernel.org |
5411552c | 3206 | S: Maintained |
679655da | 3207 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 3208 | |
949be0f7 | 3209 | CONEXANT ACCESSRUNNER USB DRIVER |
9ae5e3bc SA |
3210 | L: accessrunner-general@lists.sourceforge.net |
3211 | W: http://accessrunner.sourceforge.net/ | |
44243ef4 | 3212 | S: Orphan |
679655da | 3213 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 3214 | |
e2d1d6c0 | 3215 | CONFIGFS |
d6351db2 | 3216 | M: Joel Becker <jlbec@evilplan.org> |
1609bac8 CH |
3217 | M: Christoph Hellwig <hch@lst.de> |
3218 | T: git git://git.infradead.org/users/hch/configfs.git | |
e2d1d6c0 | 3219 | S: Supported |
679655da JP |
3220 | F: fs/configfs/ |
3221 | F: include/linux/configfs.h | |
e2d1d6c0 | 3222 | |
acb9c1b2 | 3223 | CONNECTOR |
8b58be88 | 3224 | M: Evgeniy Polyakov <zbr@ioremap.net> |
acb9c1b2 EP |
3225 | L: netdev@vger.kernel.org |
3226 | S: Maintained | |
3227 | F: drivers/connector/ | |
3228 | ||
a3e3354d | 3229 | CONTROL GROUP (CGROUP) |
860ca0e6 | 3230 | M: Tejun Heo <tj@kernel.org> |
ad50c159 | 3231 | M: Li Zefan <lizefan@huawei.com> |
4d205676 | 3232 | M: Johannes Weiner <hannes@cmpxchg.org> |
12340313 | 3233 | L: cgroups@vger.kernel.org |
860ca0e6 | 3234 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 3235 | S: Maintained |
4b16b0c0 | 3236 | F: Documentation/cgroup* |
679655da JP |
3237 | F: include/linux/cgroup* |
3238 | F: kernel/cgroup* | |
a3e3354d TH |
3239 | |
3240 | CONTROL GROUP - CPUSET | |
3241 | M: Li Zefan <lizefan@huawei.com> | |
3242 | L: cgroups@vger.kernel.org | |
3243 | W: http://www.bullopensource.org/cpuset/ | |
3244 | W: http://oss.sgi.com/projects/cpusets/ | |
3245 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git | |
3246 | S: Maintained | |
4b16b0c0 | 3247 | F: Documentation/cgroup-v1/cpusets.txt |
a3e3354d TH |
3248 | F: include/linux/cpuset.h |
3249 | F: kernel/cpuset.c | |
3250 | ||
3251 | CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG) | |
3252 | M: Johannes Weiner <hannes@cmpxchg.org> | |
fbd7dc74 | 3253 | M: Michal Hocko <mhocko@kernel.org> |
c4e29738 | 3254 | M: Vladimir Davydov <vdavydov.dev@gmail.com> |
a3e3354d TH |
3255 | L: cgroups@vger.kernel.org |
3256 | L: linux-mm@kvack.org | |
3257 | S: Maintained | |
3258 | F: mm/memcontrol.c | |
5d1ea48b | 3259 | F: mm/swap_cgroup.c |
fb3a0fb6 | 3260 | |
bebe4678 | 3261 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 3262 | M: Fenghua Yu <fenghua.yu@intel.com> |
968ce1b1 | 3263 | L: linux-hwmon@vger.kernel.org |
bebe4678 | 3264 | S: Maintained |
679655da JP |
3265 | F: Documentation/hwmon/coretemp |
3266 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 3267 | |
1da177e4 | 3268 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 3269 | M: Jan "Yenya" Kasprzak <kas@fi.muni.cz> |
1da177e4 LT |
3270 | W: http://www.fi.muni.cz/~kas/cosa/ |
3271 | S: Maintained | |
679655da | 3272 | F: drivers/net/wan/cosa* |
1da177e4 | 3273 | |
4371ee35 | 3274 | CPMAC ETHERNET DRIVER |
9dd4aaef | 3275 | M: Florian Fainelli <f.fainelli@gmail.com> |
4371ee35 FF |
3276 | L: netdev@vger.kernel.org |
3277 | S: Maintained | |
b544dbac | 3278 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 3279 | |
1da177e4 | 3280 | CPU FREQUENCY DRIVERS |
9c3646d1 | 3281 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
45c009a9 | 3282 | M: Viresh Kumar <viresh.kumar@linaro.org> |
a6c072c7 | 3283 | L: linux-pm@vger.kernel.org |
1da177e4 | 3284 | S: Maintained |
27209d91 VK |
3285 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
3286 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) | |
dabe73cb | 3287 | F: Documentation/cpu-freq/ |
679655da JP |
3288 | F: drivers/cpufreq/ |
3289 | F: include/linux/cpufreq.h | |
1da177e4 | 3290 | |
8a67f0ef VK |
3291 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
3292 | M: Viresh Kumar <viresh.kumar@linaro.org> | |
171d0ba8 | 3293 | M: Sudeep Holla <sudeep.holla@arm.com> |
8a67f0ef VK |
3294 | L: linux-pm@vger.kernel.org |
3295 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
3296 | S: Maintained | |
3297 | F: drivers/cpufreq/arm_big_little.h | |
3298 | F: drivers/cpufreq/arm_big_little.c | |
3299 | F: drivers/cpufreq/arm_big_little_dt.c | |
3300 | ||
14d2c34c | 3301 | CPUIDLE DRIVER - ARM BIG LITTLE |
b75f0050 JP |
3302 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
3303 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3304 | L: linux-pm@vger.kernel.org | |
3305 | L: linux-arm-kernel@lists.infradead.org | |
cea8321c | 3306 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
b75f0050 JP |
3307 | S: Maintained |
3308 | F: drivers/cpuidle/cpuidle-big_little.c | |
14d2c34c | 3309 | |
0c570c18 BZ |
3310 | CPUIDLE DRIVER - ARM EXYNOS |
3311 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
3312 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3313 | M: Kukjin Kim <kgene@kernel.org> | |
3314 | L: linux-pm@vger.kernel.org | |
3315 | L: linux-samsung-soc@vger.kernel.org | |
3316 | S: Supported | |
3317 | F: drivers/cpuidle/cpuidle-exynos.c | |
3318 | F: arch/arm/mach-exynos/pm.c | |
3319 | ||
a8e39c35 | 3320 | CPUIDLE DRIVERS |
9c3646d1 | 3321 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
a8e39c35 DL |
3322 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
3323 | L: linux-pm@vger.kernel.org | |
3324 | S: Maintained | |
cea8321c | 3325 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
a8e39c35 DL |
3326 | F: drivers/cpuidle/* |
3327 | F: include/linux/cpuidle.h | |
3328 | ||
1da177e4 | 3329 | CPUID/MSR DRIVER |
8b58be88 | 3330 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 3331 | S: Maintained |
679655da JP |
3332 | F: arch/x86/kernel/cpuid.c |
3333 | F: arch/x86/kernel/msr.c | |
1da177e4 | 3334 | |
7fe2f639 | 3335 | CPU POWER MONITORING SUBSYSTEM |
d8130624 | 3336 | M: Thomas Renninger <trenn@suse.com> |
103f1790 | 3337 | L: linux-pm@vger.kernel.org |
7fe2f639 | 3338 | S: Maintained |
14430813 | 3339 | F: tools/power/cpupower/ |
7fe2f639 | 3340 | |
1da177e4 | 3341 | CRAMFS FILESYSTEM |
ce00f85c | 3342 | W: http://sourceforge.net/projects/cramfs/ |
54886a71 | 3343 | S: Orphan / Obsolete |
679655da JP |
3344 | F: Documentation/filesystems/cramfs.txt |
3345 | F: fs/cramfs/ | |
1da177e4 LT |
3346 | |
3347 | CRIS PORT | |
8b58be88 JP |
3348 | M: Mikael Starvik <starvik@axis.com> |
3349 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
9937ac0c | 3350 | L: linux-cris-kernel@axis.com |
1da177e4 | 3351 | W: http://developer.axis.com |
9f273c24 | 3352 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git |
1da177e4 | 3353 | S: Maintained |
679655da | 3354 | F: arch/cris/ |
df621252 | 3355 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
3356 | |
3357 | CRYPTO API | |
8b58be88 JP |
3358 | M: Herbert Xu <herbert@gondor.apana.org.au> |
3359 | M: "David S. Miller" <davem@davemloft.net> | |
1da177e4 | 3360 | L: linux-crypto@vger.kernel.org |
9f273c24 | 3361 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git |
54e5881d | 3362 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 3363 | S: Maintained |
679655da | 3364 | F: Documentation/crypto/ |
fe1c445b | 3365 | F: Documentation/devicetree/bindings/crypto/ |
2ca87a17 | 3366 | F: Documentation/DocBook/crypto-API.tmpl |
679655da JP |
3367 | F: arch/*/crypto/ |
3368 | F: crypto/ | |
3369 | F: drivers/crypto/ | |
3370 | F: include/crypto/ | |
1da177e4 | 3371 | |
5b07bd57 | 3372 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 3373 | M: Neil Horman <nhorman@tuxdriver.com> |
5b07bd57 NH |
3374 | L: linux-crypto@vger.kernel.org |
3375 | S: Maintained | |
51a2228a JP |
3376 | F: crypto/ansi_cprng.c |
3377 | F: crypto/rng.c | |
5b07bd57 | 3378 | |
fc279cc2 HV |
3379 | CS3308 MEDIA DRIVER |
3380 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3381 | L: linux-media@vger.kernel.org | |
3382 | T: git git://linuxtv.org/media_tree.git | |
3383 | W: http://linuxtv.org | |
3384 | S: Odd Fixes | |
3385 | F: drivers/media/i2c/cs3308.c | |
3386 | F: drivers/media/i2c/cs3308.h | |
3387 | ||
9b4ffa48 | 3388 | CS5535 Audio ALSA driver |
8b58be88 | 3389 | M: Jaya Kumar <jayakumar.alsa@gmail.com> |
9b4ffa48 | 3390 | S: Maintained |
679655da | 3391 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 3392 | |
a910e4a9 | 3393 | CW1200 WLAN driver |
b75f0050 JP |
3394 | M: Solomon Peachy <pizza@shaftnet.org> |
3395 | S: Maintained | |
560424e9 | 3396 | F: drivers/net/wireless/st/cw1200/ |
a910e4a9 | 3397 | |
6d8425b1 | 3398 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 3399 | M: Andy Walls <awalls@md.metrocast.net> |
7b212edf | 3400 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
661263b5 | 3401 | L: linux-media@vger.kernel.org |
275ffde4 | 3402 | T: git git://linuxtv.org/media_tree.git |
a825eaec | 3403 | W: https://linuxtv.org |
30e10993 | 3404 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 3405 | S: Maintained |
679655da | 3406 | F: Documentation/video4linux/cx18.txt |
90d72ac6 | 3407 | F: drivers/media/pci/cx18/ |
6c0f0359 | 3408 | F: include/uapi/linux/ivtv* |
6d8425b1 | 3409 | |
3f101d91 HV |
3410 | CX2341X MPEG ENCODER HELPER MODULE |
3411 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3412 | L: linux-media@vger.kernel.org | |
3413 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 3414 | W: https://linuxtv.org |
3f101d91 | 3415 | S: Maintained |
c368360b | 3416 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
3417 | F: include/media/cx2341x* |
3418 | ||
b8fe6e2c PB |
3419 | CX24120 MEDIA DRIVER |
3420 | M: Jemma Denson <jdenson@gmail.com> | |
3421 | M: Patrick Boettcher <patrick.boettcher@posteo.de> | |
3422 | L: linux-media@vger.kernel.org | |
a825eaec | 3423 | W: https://linuxtv.org |
b8fe6e2c PB |
3424 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3425 | S: Maintained | |
3426 | F: drivers/media/dvb-frontends/cx24120* | |
3427 | ||
20357578 | 3428 | CX88 VIDEO4LINUX DRIVER |
5dc8a864 MCC |
3429 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
3430 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
20357578 | 3431 | L: linux-media@vger.kernel.org |
a825eaec | 3432 | W: https://linuxtv.org |
20357578 MCC |
3433 | T: git git://linuxtv.org/media_tree.git |
3434 | S: Odd fixes | |
3435 | F: Documentation/video4linux/cx88/ | |
3436 | F: drivers/media/pci/cx88/ | |
6d8425b1 | 3437 | |
91952bc0 AP |
3438 | CXD2820R MEDIA DRIVER |
3439 | M: Antti Palosaari <crope@iki.fi> | |
3440 | L: linux-media@vger.kernel.org | |
a825eaec | 3441 | W: https://linuxtv.org |
91952bc0 AP |
3442 | W: http://palosaari.fi/linux/ |
3443 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3444 | T: git git://linuxtv.org/anttip/media_tree.git | |
3445 | S: Maintained | |
3446 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 3447 | |
e5ec3789 | 3448 | CXGB3 ETHERNET DRIVER (CXGB3) |
cdc99239 | 3449 | M: Santosh Raspatur <santosh@chelsio.com> |
e5ec3789 SW |
3450 | L: netdev@vger.kernel.org |
3451 | W: http://www.chelsio.com | |
3452 | S: Supported | |
f7917c00 | 3453 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 | 3454 | |
d8ae3c33 | 3455 | CXGB3 ISCSI DRIVER (CXGB3I) |
49e7d9df JP |
3456 | M: Karen Xie <kxie@chelsio.com> |
3457 | L: linux-scsi@vger.kernel.org | |
3458 | W: http://www.chelsio.com | |
3459 | S: Supported | |
3460 | F: drivers/scsi/cxgbi/cxgb3i | |
d8ae3c33 | 3461 | |
e5ec3789 | 3462 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) |
8b58be88 | 3463 | M: Steve Wise <swise@chelsio.com> |
e6cc0fd1 | 3464 | L: linux-rdma@vger.kernel.org |
e5ec3789 SW |
3465 | W: http://www.openfabrics.org |
3466 | S: Supported | |
679655da | 3467 | F: drivers/infiniband/hw/cxgb3/ |
e5ec3789 | 3468 | |
be4c9bad | 3469 | CXGB4 ETHERNET DRIVER (CXGB4) |
56f16c74 | 3470 | M: Hariprasad S <hariprasad@chelsio.com> |
be4c9bad RD |
3471 | L: netdev@vger.kernel.org |
3472 | W: http://www.chelsio.com | |
3473 | S: Supported | |
f7917c00 | 3474 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad | 3475 | |
d8ae3c33 | 3476 | CXGB4 ISCSI DRIVER (CXGB4I) |
49e7d9df JP |
3477 | M: Karen Xie <kxie@chelsio.com> |
3478 | L: linux-scsi@vger.kernel.org | |
3479 | W: http://www.chelsio.com | |
3480 | S: Supported | |
3481 | F: drivers/scsi/cxgbi/cxgb4i | |
d8ae3c33 | 3482 | |
be4c9bad RD |
3483 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) |
3484 | M: Steve Wise <swise@chelsio.com> | |
3485 | L: linux-rdma@vger.kernel.org | |
3486 | W: http://www.openfabrics.org | |
3487 | S: Supported | |
3488 | F: drivers/infiniband/hw/cxgb4/ | |
3489 | ||
5c20a5c7 CL |
3490 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
3491 | M: Casey Leedom <leedom@chelsio.com> | |
3492 | L: netdev@vger.kernel.org | |
3493 | W: http://www.chelsio.com | |
3494 | S: Supported | |
f7917c00 | 3495 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 3496 | |
a9282d01 IM |
3497 | CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER |
3498 | M: Ian Munsie <imunsie@au1.ibm.com> | |
3499 | M: Michael Neuling <mikey@neuling.org> | |
3500 | L: linuxppc-dev@lists.ozlabs.org | |
3501 | S: Supported | |
3502 | F: drivers/misc/cxl/ | |
ec249dd8 | 3503 | F: include/misc/cxl* |
a9282d01 IM |
3504 | F: include/uapi/misc/cxl.h |
3505 | F: Documentation/powerpc/cxl.txt | |
3506 | F: Documentation/powerpc/cxl.txt | |
3507 | F: Documentation/ABI/testing/sysfs-class-cxl | |
3508 | ||
11f43ae7 MO |
3509 | CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER |
3510 | M: Manoj N. Kumar <manoj@linux.vnet.ibm.com> | |
3511 | M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com> | |
b2c0627c | 3512 | M: Uma Krishnan <ukrishn@linux.vnet.ibm.com> |
11f43ae7 MO |
3513 | L: linux-scsi@vger.kernel.org |
3514 | S: Supported | |
3515 | F: drivers/scsi/cxlflash/ | |
3516 | F: include/uapi/scsi/cxlflash_ioctls.h | |
3517 | F: Documentation/powerpc/cxlflash.txt | |
3518 | ||
b52b97a3 GC |
3519 | STMMAC ETHERNET DRIVER |
3520 | M: Giuseppe Cavallaro <peppe.cavallaro@st.com> | |
91979b9d | 3521 | M: Alexandre Torgue <alexandre.torgue@st.com> |
b52b97a3 GC |
3522 | L: netdev@vger.kernel.org |
3523 | W: http://www.stlinux.com | |
3524 | S: Supported | |
7ac6653a | 3525 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 3526 | |
1da177e4 | 3527 | CYBERPRO FB DRIVER |
54176cc6 | 3528 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 3529 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 3530 | W: http://www.armlinux.org.uk/ |
1da177e4 | 3531 | S: Maintained |
8a61f013 | 3532 | F: drivers/video/fbdev/cyber2000fb.* |
9fa68eae | 3533 | |
1da177e4 | 3534 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 3535 | W: http://www.cyclades.com/ |
d459883e | 3536 | S: Orphan |
c897401b | 3537 | F: drivers/tty/cyclades.c |
679655da | 3538 | F: include/linux/cyclades.h |
c117ab84 | 3539 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
3540 | |
3541 | CYCLADES PC300 DRIVER | |
1da177e4 | 3542 | W: http://www.cyclades.com/ |
d459883e | 3543 | S: Orphan |
679655da | 3544 | F: drivers/net/wan/pc300* |
1da177e4 | 3545 | |
402f6ae4 AP |
3546 | CYPRESS_FIRMWARE MEDIA DRIVER |
3547 | M: Antti Palosaari <crope@iki.fi> | |
3548 | L: linux-media@vger.kernel.org | |
a825eaec | 3549 | W: https://linuxtv.org |
402f6ae4 AP |
3550 | W: http://palosaari.fi/linux/ |
3551 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3552 | T: git git://linuxtv.org/anttip/media_tree.git | |
3553 | S: Maintained | |
3554 | F: drivers/media/common/cypress_firmware* | |
3555 | ||
e3ae3525 | 3556 | CYTTSP TOUCHSCREEN DRIVER |
be9a6f40 | 3557 | M: Ferruh Yigit <fery@cypress.com> |
6305902c | 3558 | L: linux-input@vger.kernel.org |
be9a6f40 | 3559 | S: Supported |
6305902c JP |
3560 | F: drivers/input/touchscreen/cyttsp* |
3561 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 3562 | |
aaaf5fbf JK |
3563 | DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK |
3564 | M: Joshua Kinard <kumba@gentoo.org> | |
3565 | S: Maintained | |
3566 | F: drivers/rtc/rtc-ds1685.c | |
3567 | F: include/linux/rtc/ds1685.h | |
3568 | ||
1da177e4 | 3569 | DAMA SLAVE for AX.25 |
8b58be88 | 3570 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
3571 | W: http://yaina.de/jreuter/ |
3572 | W: http://www.qsl.net/dl1bke/ | |
3573 | L: linux-hams@vger.kernel.org | |
3574 | S: Maintained | |
679655da JP |
3575 | F: net/ax25/af_ax25.c |
3576 | F: net/ax25/ax25_dev.c | |
3577 | F: net/ax25/ax25_ds_* | |
3578 | F: net/ax25/ax25_in.c | |
3579 | F: net/ax25/ax25_out.c | |
3580 | F: net/ax25/ax25_timer.c | |
3581 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 3582 | |
e2d1d6c0 | 3583 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 3584 | L: netdev@vger.kernel.org |
5ff77428 | 3585 | S: Orphan |
679655da | 3586 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 3587 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
3588 | |
3589 | DC390/AM53C974 SCSI driver | |
d8130624 | 3590 | M: Hannes Reinecke <hare@suse.com> |
71bd849d | 3591 | L: linux-scsi@vger.kernel.org |
e2d1d6c0 | 3592 | S: Maintained |
71bd849d | 3593 | F: drivers/scsi/am53c974.c |
e2d1d6c0 | 3594 | |
1da177e4 | 3595 | DC395x SCSI driver |
61eee9a7 | 3596 | M: Oliver Neukum <oliver@neukum.org> |
8b58be88 JP |
3597 | M: Ali Akcaagac <aliakc@web.de> |
3598 | M: Jamie Lenehan <lenehan@twibble.org> | |
f5df5881 | 3599 | L: dc395x@twibble.org |
cf015e9f JP |
3600 | W: http://twibble.org/dist/dc395x/ |
3601 | W: http://lists.twibble.org/mailman/listinfo/dc395x/ | |
1da177e4 | 3602 | S: Maintained |
679655da JP |
3603 | F: Documentation/scsi/dc395x.txt |
3604 | F: drivers/scsi/dc395x.* | |
1da177e4 | 3605 | |
eb8edb08 | 3606 | DCCP PROTOCOL |
a89d030e | 3607 | M: Gerrit Renker <gerrit@erg.abdn.ac.uk> |
eb8edb08 | 3608 | L: dccp@vger.kernel.org |
c996d8b9 | 3609 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 3610 | S: Maintained |
679655da | 3611 | F: include/linux/dccp.h |
c117ab84 | 3612 | F: include/uapi/linux/dccp.h |
679655da JP |
3613 | F: include/linux/tfrc.h |
3614 | F: net/dccp/ | |
eb8edb08 | 3615 | |
1da177e4 | 3616 | DECnet NETWORK LAYER |
1da177e4 LT |
3617 | W: http://linux-decnet.sourceforge.net |
3618 | L: linux-decnet-user@lists.sourceforge.net | |
f546444d | 3619 | S: Orphan |
679655da JP |
3620 | F: Documentation/networking/decnet.txt |
3621 | F: net/decnet/ | |
1da177e4 | 3622 | |
ebff05b9 MR |
3623 | DECSTATION PLATFORM SUPPORT |
3624 | M: "Maciej W. Rozycki" <macro@linux-mips.org> | |
3625 | L: linux-mips@linux-mips.org | |
3626 | W: http://www.linux-mips.org/wiki/DECstation | |
3627 | S: Maintained | |
3628 | F: arch/mips/dec/ | |
3629 | F: arch/mips/include/asm/dec/ | |
3630 | F: arch/mips/include/asm/mach-dec/ | |
3631 | ||
1da177e4 | 3632 | DEFXX FDDI NETWORK DRIVER |
8b58be88 | 3633 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
1da177e4 | 3634 | S: Maintained |
33f810b2 | 3635 | F: drivers/net/fddi/defxx.* |
1da177e4 | 3636 | |
ad8f07cc | 3637 | DELL LAPTOP DRIVER |
8b58be88 | 3638 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
cdbff611 | 3639 | M: Pali Rohár <pali.rohar@gmail.com> |
d0944853 | 3640 | L: platform-driver-x86@vger.kernel.org |
ad8f07cc | 3641 | S: Maintained |
679655da | 3642 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 3643 | |
817a5cdb PR |
3644 | DELL LAPTOP RBTN DRIVER |
3645 | M: Pali Rohár <pali.rohar@gmail.com> | |
3646 | S: Maintained | |
3647 | F: drivers/platform/x86/dell-rbtn.* | |
3648 | ||
cdbff611 PR |
3649 | DELL LAPTOP FREEFALL DRIVER |
3650 | M: Pali Rohár <pali.rohar@gmail.com> | |
3651 | S: Maintained | |
3652 | F: drivers/platform/x86/dell-smo8800.c | |
3653 | ||
1da177e4 | 3654 | DELL LAPTOP SMM DRIVER |
a5afba16 | 3655 | M: Pali Rohár <pali.rohar@gmail.com> |
ef3522f7 | 3656 | S: Maintained |
a5afba16 | 3657 | F: drivers/hwmon/dell-smm-hwmon.c |
c117ab84 | 3658 | F: include/uapi/linux/i8k.h |
1da177e4 | 3659 | |
90563ec4 | 3660 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 3661 | M: Doug Warzecha <Douglas_Warzecha@dell.com> |
90563ec4 | 3662 | S: Maintained |
679655da JP |
3663 | F: Documentation/dcdbas.txt |
3664 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 3665 | |
0b3f6109 | 3666 | DELL WMI EXTRAS DRIVER |
8b58be88 | 3667 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
cdbff611 | 3668 | M: Pali Rohár <pali.rohar@gmail.com> |
0b3f6109 | 3669 | S: Maintained |
36b3a96f | 3670 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 3671 | |
5efc75e3 | 3672 | DESIGNWARE USB2 DRD IP DRIVER |
16272ae7 | 3673 | M: John Youn <johnyoun@synopsys.com> |
5efc75e3 | 3674 | L: linux-usb@vger.kernel.org |
18f340f9 | 3675 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
5efc75e3 | 3676 | S: Maintained |
197ba5f4 | 3677 | F: drivers/usb/dwc2/ |
5efc75e3 | 3678 | |
94ab23dd | 3679 | DESIGNWARE USB3 DRD IP DRIVER |
a55f6286 | 3680 | M: Felipe Balbi <balbi@kernel.org> |
94ab23dd | 3681 | L: linux-usb@vger.kernel.org |
94ab23dd FB |
3682 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
3683 | S: Maintained | |
3684 | F: drivers/usb/dwc3/ | |
3685 | ||
833c9545 JB |
3686 | DEVICE COREDUMP (DEV_COREDUMP) |
3687 | M: Johannes Berg <johannes@sipsolutions.net> | |
3688 | L: linux-kernel@vger.kernel.org | |
3689 | S: Maintained | |
3690 | F: drivers/base/devcoredump.c | |
3691 | F: include/linux/devcoredump.h | |
3692 | ||
89d07767 KP |
3693 | DEVICE FREQUENCY (DEVFREQ) |
3694 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
3695 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
88476d34 | 3696 | L: linux-pm@vger.kernel.org |
6a3cd722 | 3697 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git |
89d07767 KP |
3698 | S: Maintained |
3699 | F: drivers/devfreq/ | |
6a3cd722 CC |
3700 | F: include/linux/devfreq.h |
3701 | F: Documentation/devicetree/bindings/devfreq/ | |
89d07767 | 3702 | |
7dbded06 CC |
3703 | DEVICE FREQUENCY EVENT (DEVFREQ-EVENT) |
3704 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
3705 | L: linux-pm@vger.kernel.org | |
3706 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git | |
3707 | S: Supported | |
3708 | F: drivers/devfreq/event/ | |
3709 | F: drivers/devfreq/devfreq-event.c | |
3710 | F: include/linux/devfreq-event.h | |
3711 | F: Documentation/devicetree/bindings/devfreq/event/ | |
89d07767 | 3712 | |
490b864b CC |
3713 | BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS |
3714 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
3715 | L: linux-pm@vger.kernel.org | |
3716 | L: linux-samsung-soc@vger.kernel.org | |
3717 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git | |
3718 | S: Maintained | |
3719 | F: drivers/devfreq/exynos-bus.c | |
3720 | F: Documentation/devicetree/bindings/devfreq/exynos-bus.txt | |
3721 | ||
1da177e4 | 3722 | DEVICE NUMBER REGISTRY |
8b58be88 | 3723 | M: Torben Mathiasen <device@lanana.org> |
1da177e4 | 3724 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
3725 | S: Maintained |
3726 | ||
e2d1d6c0 | 3727 | DEVICE-MAPPER (LVM) |
854ecaad | 3728 | M: Alasdair Kergon <agk@redhat.com> |
8504eed3 | 3729 | M: Mike Snitzer <snitzer@redhat.com> |
854ecaad | 3730 | M: dm-devel@redhat.com |
e2d1d6c0 RD |
3731 | L: dm-devel@redhat.com |
3732 | W: http://sources.redhat.com/dm | |
8a6e2535 | 3733 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
41d35d25 | 3734 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git |
854ecaad | 3735 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 3736 | S: Maintained |
679655da JP |
3737 | F: Documentation/device-mapper/ |
3738 | F: drivers/md/dm* | |
854ecaad | 3739 | F: drivers/md/persistent-data/ |
679655da JP |
3740 | F: include/linux/device-mapper.h |
3741 | F: include/linux/dm-*.h | |
8504eed3 | 3742 | F: include/uapi/linux/dm-*.h |
e2d1d6c0 | 3743 | |
bfcd3a46 JP |
3744 | DEVLINK |
3745 | M: Jiri Pirko <jiri@mellanox.com> | |
3746 | L: netdev@vger.kernel.org | |
3747 | S: Supported | |
3748 | F: net/core/devlink.c | |
3749 | F: include/net/devlink.h | |
3750 | F: include/uapi/linux/devlink.h | |
3751 | ||
c0d995aa OST |
3752 | DIALOG SEMICONDUCTOR DRIVERS |
3753 | M: Support Opensource <support.opensource@diasemi.com> | |
3754 | W: http://www.dialog-semiconductor.com/products | |
3755 | S: Supported | |
3756 | F: Documentation/hwmon/da90?? | |
047cfd01 | 3757 | F: Documentation/devicetree/bindings/mfd/da90*.txt |
4eeb08b4 | 3758 | F: Documentation/devicetree/bindings/regulator/da92*.txt |
7c933772 | 3759 | F: Documentation/devicetree/bindings/sound/da[79]*.txt |
c0d995aa OST |
3760 | F: drivers/gpio/gpio-da90??.c |
3761 | F: drivers/hwmon/da90??-hwmon.c | |
7be72c2c | 3762 | F: drivers/iio/adc/da91??-*.c |
c0d995aa OST |
3763 | F: drivers/input/misc/da90??_onkey.c |
3764 | F: drivers/input/touchscreen/da9052_tsi.c | |
3765 | F: drivers/leds/leds-da90??.c | |
3766 | F: drivers/mfd/da903x.c | |
3767 | F: drivers/mfd/da90??-*.c | |
7be72c2c | 3768 | F: drivers/mfd/da91??-*.c |
c0d995aa | 3769 | F: drivers/power/da9052-battery.c |
7be72c2c | 3770 | F: drivers/power/da91??-*.c |
c0d995aa OST |
3771 | F: drivers/regulator/da903x.c |
3772 | F: drivers/regulator/da9???-regulator.[ch] | |
3773 | F: drivers/rtc/rtc-da90??.c | |
3774 | F: drivers/video/backlight/da90??_bl.c | |
3775 | F: drivers/watchdog/da90??_wdt.c | |
3776 | F: include/linux/mfd/da903x.h | |
3777 | F: include/linux/mfd/da9052/ | |
3778 | F: include/linux/mfd/da9055/ | |
047cfd01 | 3779 | F: include/linux/mfd/da9062/ |
c0d995aa | 3780 | F: include/linux/mfd/da9063/ |
7be72c2c | 3781 | F: include/linux/mfd/da9150/ |
4eeb08b4 | 3782 | F: include/linux/regulator/da9211.h |
c0d995aa OST |
3783 | F: include/sound/da[79]*.h |
3784 | F: sound/soc/codecs/da[79]*.[ch] | |
3785 | ||
599aa697 LL |
3786 | DIGI NEO AND CLASSIC PCI PRODUCTS |
3787 | M: Lidza Louina <lidza.louina@gmail.com> | |
542f3d5a | 3788 | M: Mark Hounschell <markh@compro.net> |
599aa697 LL |
3789 | L: driverdev-devel@linuxdriverproject.org |
3790 | S: Maintained | |
3791 | F: drivers/staging/dgnc/ | |
3792 | ||
335d7c58 | 3793 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 3794 | M: Guenter Roeck <linux@roeck-us.net> |
335d7c58 GR |
3795 | L: linux-i2c@vger.kernel.org |
3796 | S: Maintained | |
3797 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
3798 | ||
d475c634 MW |
3799 | DIRECT ACCESS (DAX) |
3800 | M: Matthew Wilcox <willy@linux.intel.com> | |
3801 | L: linux-fsdevel@vger.kernel.org | |
3802 | S: Supported | |
3803 | F: fs/dax.c | |
3804 | ||
e7839f25 | 3805 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 3806 | M: Eric Paris <eparis@parisplace.org> |
3c5119c0 | 3807 | S: Maintained |
679655da JP |
3808 | F: Documentation/filesystems/dnotify.txt |
3809 | F: fs/notify/dnotify/ | |
3810 | F: include/linux/dnotify.h | |
1da177e4 LT |
3811 | |
3812 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 3813 | M: Andries Brouwer <aeb@cwi.nl> |
1da177e4 LT |
3814 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
3815 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
3816 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
3817 | S: Maintained | |
3818 | ||
4480f15b | 3819 | DISKQUOTA |
d8130624 | 3820 | M: Jan Kara <jack@suse.com> |
1da177e4 | 3821 | S: Maintained |
679655da JP |
3822 | F: Documentation/filesystems/quota.txt |
3823 | F: fs/quota/ | |
3824 | F: include/linux/quota*.h | |
c117ab84 | 3825 | F: include/uapi/linux/quota*.h |
1da177e4 | 3826 | |
702686ad BT |
3827 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
3828 | M: Bernie Thompson <bernie@plugable.com> | |
3829 | L: linux-fbdev@vger.kernel.org | |
3830 | S: Maintained | |
3831 | W: http://plugable.com/category/projects/udlfb/ | |
8a61f013 | 3832 | F: drivers/video/fbdev/udlfb.c |
702686ad BT |
3833 | F: include/video/udlfb.h |
3834 | F: Documentation/fb/udlfb.txt | |
3835 | ||
e7839f25 | 3836 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
3837 | M: Christine Caulfield <ccaulfie@redhat.com> |
3838 | M: David Teigland <teigland@redhat.com> | |
a4644184 | 3839 | L: cluster-devel@redhat.com |
5be7b50f | 3840 | W: http://sources.redhat.com/cluster/ |
9f273c24 | 3841 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git |
5be7b50f | 3842 | S: Supported |
679655da | 3843 | F: fs/dlm/ |
5be7b50f | 3844 | |
53b6b3e0 SS |
3845 | DMA BUFFER SHARING FRAMEWORK |
3846 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
3847 | S: Maintained | |
3848 | L: linux-media@vger.kernel.org | |
3849 | L: dri-devel@lists.freedesktop.org | |
8ada6d2d | 3850 | L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers) |
35fac7e3 | 3851 | F: drivers/dma-buf/ |
e46d12c6 JP |
3852 | F: include/linux/dma-buf* |
3853 | F: include/linux/reservation.h | |
3854 | F: include/linux/*fence.h | |
53b6b3e0 SS |
3855 | F: Documentation/dma-buf-sharing.txt |
3856 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
3857 | ||
c483e065 GP |
3858 | SYNC FILE FRAMEWORK |
3859 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
3860 | R: Gustavo Padovan <gustavo@padovan.org> | |
3861 | S: Maintained | |
3862 | L: linux-media@vger.kernel.org | |
3863 | L: dri-devel@lists.freedesktop.org | |
3864 | F: drivers/dma-buf/sync_file.c | |
3865 | F: include/linux/sync_file.h | |
3866 | F: Documentation/sync_file.txt | |
3867 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
3868 | ||
b3e5f263 | 3869 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 3870 | M: Vinod Koul <vinod.koul@intel.com> |
17b59560 VK |
3871 | L: dmaengine@vger.kernel.org |
3872 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
08223d80 | 3873 | S: Maintained |
679655da | 3874 | F: drivers/dma/ |
0ce3c066 | 3875 | F: include/linux/dmaengine.h |
c56d329e | 3876 | F: Documentation/devicetree/bindings/dma/ |
979a281e VK |
3877 | F: Documentation/dmaengine/ |
3878 | T: git git://git.infradead.org/users/vkoul/slave-dma.git | |
248a9dc3 | 3879 | |
b825037d | 3880 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 3881 | M: Juerg Haefliger <juergh@gmail.com> |
968ce1b1 | 3882 | L: linux-hwmon@vger.kernel.org |
b825037d | 3883 | S: Maintained |
679655da JP |
3884 | F: Documentation/hwmon/dme1737 |
3885 | F: drivers/hwmon/dme1737.c | |
b825037d | 3886 | |
1f31e1b1 | 3887 | DMI/SMBIOS SUPPORT |
d8130624 | 3888 | M: Jean Delvare <jdelvare@suse.com> |
1f31e1b1 | 3889 | S: Maintained |
d4aeef93 | 3890 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/ |
d7f96f97 | 3891 | F: Documentation/ABI/testing/sysfs-firmware-dmi-tables |
1f31e1b1 JD |
3892 | F: drivers/firmware/dmi-id.c |
3893 | F: drivers/firmware/dmi_scan.c | |
3894 | F: include/linux/dmi.h | |
3895 | ||
7d2c86b5 | 3896 | DOCUMENTATION |
ad3118b9 | 3897 | M: Jonathan Corbet <corbet@lwn.net> |
795fb7e7 JD |
3898 | L: linux-doc@vger.kernel.org |
3899 | S: Maintained | |
679655da | 3900 | F: Documentation/ |
42f41ecf JC |
3901 | F: scripts/docproc.c |
3902 | F: scripts/kernel-doc* | |
97be078b RD |
3903 | X: Documentation/ABI/ |
3904 | X: Documentation/devicetree/ | |
933a46b8 JC |
3905 | X: Documentation/acpi |
3906 | X: Documentation/power | |
3907 | X: Documentation/spi | |
6c121170 | 3908 | X: Documentation/DocBook/media |
c51edfb1 | 3909 | T: git git://git.lwn.net/linux.git docs-next |
abbaeff3 | 3910 | |
1da177e4 | 3911 | DOUBLETALK DRIVER |
8b58be88 | 3912 | M: "James R. Van Zandt" <jrv@vanzandt.mv.com> |
1da177e4 LT |
3913 | L: blinux-list@redhat.com |
3914 | S: Maintained | |
679655da JP |
3915 | F: drivers/char/dtlk.c |
3916 | F: include/linux/dtlk.h | |
1da177e4 | 3917 | |
e2d1d6c0 | 3918 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 3919 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
3920 | L: linux-scsi@vger.kernel.org |
3921 | W: http://www.adaptec.com/ | |
3922 | S: Maintained | |
679655da JP |
3923 | F: drivers/scsi/dpt* |
3924 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 3925 | |
b411b363 | 3926 | DRBD DRIVER |
bc2c049d RK |
3927 | M: Philipp Reisner <philipp.reisner@linbit.com> |
3928 | M: Lars Ellenberg <lars.ellenberg@linbit.com> | |
3929 | L: drbd-dev@lists.linbit.com | |
28b8e8d4 | 3930 | W: http://www.drbd.org |
bc2c049d RK |
3931 | T: git git://git.linbit.com/linux-drbd.git |
3932 | T: git git://git.linbit.com/drbd-8.4.git | |
28b8e8d4 JP |
3933 | S: Supported |
3934 | F: drivers/block/drbd/ | |
3935 | F: lib/lru_cache.c | |
3936 | F: Documentation/blockdev/drbd/ | |
b411b363 | 3937 | |
dc7dfcd8 | 3938 | DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS |
879a5a00 | 3939 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
08deed1e | 3940 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 3941 | S: Supported |
679655da | 3942 | F: Documentation/kobject.txt |
7cfc51b9 | 3943 | F: drivers/base/ |
87544653 | 3944 | F: fs/debugfs/ |
dc7dfcd8 WS |
3945 | F: fs/kernfs/ |
3946 | F: fs/sysfs/ | |
87544653 | 3947 | F: include/linux/debugfs.h |
dc7dfcd8 | 3948 | F: include/linux/kobj* |
679655da | 3949 | F: lib/kobj* |
1da177e4 LT |
3950 | |
3951 | DRM DRIVERS | |
8b58be88 | 3952 | M: David Airlie <airlied@linux.ie> |
4c6a3999 | 3953 | L: dri-devel@lists.freedesktop.org |
b0447888 | 3954 | T: git git://people.freedesktop.org/~airlied/linux |
1da177e4 | 3955 | S: Maintained |
679655da | 3956 | F: drivers/gpu/drm/ |
433e3b34 | 3957 | F: drivers/gpu/vga/ |
d28ab95b GU |
3958 | F: Documentation/devicetree/bindings/display/ |
3959 | F: Documentation/devicetree/bindings/gpu/ | |
3960 | F: Documentation/devicetree/bindings/video/ | |
621c5474 | 3961 | F: Documentation/gpu/ |
850e9411 | 3962 | F: include/drm/ |
c117ab84 | 3963 | F: include/uapi/drm/ |
1da177e4 | 3964 | |
c842b693 EV |
3965 | DRM DRIVER FOR AST SERVER GRAPHICS CHIPS |
3966 | M: Dave Airlie <airlied@redhat.com> | |
3967 | S: Odd Fixes | |
3968 | F: drivers/gpu/drm/ast/ | |
3969 | ||
3970 | DRM DRIVER FOR BOCHS VIRTUAL GPU | |
3971 | M: Gerd Hoffmann <kraxel@redhat.com> | |
3972 | S: Odd Fixes | |
3973 | F: drivers/gpu/drm/bochs/ | |
3974 | ||
3975 | DRM DRIVER FOR QEMU'S CIRRUS DEVICE | |
3976 | M: Dave Airlie <airlied@redhat.com> | |
3977 | S: Odd Fixes | |
3978 | F: drivers/gpu/drm/cirrus/ | |
3979 | ||
c26a4017 | 3980 | RADEON and AMDGPU DRM DRIVERS |
566f5939 AD |
3981 | M: Alex Deucher <alexander.deucher@amd.com> |
3982 | M: Christian König <christian.koenig@amd.com> | |
3983 | L: dri-devel@lists.freedesktop.org | |
3984 | T: git git://people.freedesktop.org/~agd5f/linux | |
3985 | S: Supported | |
3986 | F: drivers/gpu/drm/radeon/ | |
74c97375 | 3987 | F: include/uapi/drm/radeon_drm.h |
c26a4017 | 3988 | F: drivers/gpu/drm/amd/ |
74c97375 | 3989 | F: include/uapi/drm/amdgpu_drm.h |
566f5939 | 3990 | |
03e255b9 TR |
3991 | DRM PANEL DRIVERS |
3992 | M: Thierry Reding <thierry.reding@gmail.com> | |
3993 | L: dri-devel@lists.freedesktop.org | |
3994 | T: git git://anongit.freedesktop.org/tegra/linux.git | |
3995 | S: Maintained | |
3996 | F: drivers/gpu/drm/drm_panel.c | |
3997 | F: drivers/gpu/drm/panel/ | |
3998 | F: include/drm/drm_panel.h | |
2d799dde | 3999 | F: Documentation/devicetree/bindings/display/panel/ |
03e255b9 | 4000 | |
8daf7473 | 4001 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
cbce7107 | 4002 | M: Daniel Vetter <daniel.vetter@intel.com> |
47f95647 | 4003 | M: Jani Nikula <jani.nikula@linux.intel.com> |
362132d2 | 4004 | L: intel-gfx@lists.freedesktop.org |
8daf7473 | 4005 | L: dri-devel@lists.freedesktop.org |
7564fde3 | 4006 | W: https://01.org/linuxgraphics/ |
47f95647 | 4007 | Q: http://patchwork.freedesktop.org/project/intel-gfx/ |
89258a97 | 4008 | T: git git://anongit.freedesktop.org/drm-intel |
8daf7473 | 4009 | S: Supported |
14430813 | 4010 | F: drivers/gpu/drm/i915/ |
8daf7473 | 4011 | F: include/drm/i915* |
baceac3a | 4012 | F: include/uapi/drm/i915_drm.h |
621c5474 | 4013 | F: Documentation/gpu/i915.rst |
8daf7473 | 4014 | |
99763bb8 BB |
4015 | DRM DRIVERS FOR ATMEL HLCDC |
4016 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
4017 | L: dri-devel@lists.freedesktop.org | |
4018 | S: Supported | |
4019 | F: drivers/gpu/drm/atmel-hlcdc/ | |
4020 | F: Documentation/devicetree/bindings/drm/atmel/ | |
4021 | ||
bf1139df MR |
4022 | DRM DRIVERS FOR ALLWINNER A10 |
4023 | M: Maxime Ripard <maxime.ripard@free-electrons.com> | |
4024 | L: dri-devel@lists.freedesktop.org | |
4025 | S: Supported | |
4026 | F: drivers/gpu/drm/sun4i/ | |
4027 | F: Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt | |
4028 | ||
398a6d4a KP |
4029 | DRM DRIVERS FOR EXYNOS |
4030 | M: Inki Dae <inki.dae@samsung.com> | |
f1501303 ID |
4031 | M: Joonyoung Shim <jy0922.shim@samsung.com> |
4032 | M: Seung-Woo Kim <sw0312.kim@samsung.com> | |
4033 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
398a6d4a | 4034 | L: dri-devel@lists.freedesktop.org |
25a58030 | 4035 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a | 4036 | S: Supported |
14430813 | 4037 | F: drivers/gpu/drm/exynos/ |
8fb9b15b EV |
4038 | F: include/uapi/drm/exynos_drm.h |
4039 | F: Documentation/devicetree/bindings/display/exynos/ | |
398a6d4a | 4040 | |
b55a1b9c | 4041 | DRM DRIVERS FOR FREESCALE DCU |
bc66757a | 4042 | M: Stefan Agner <stefan@agner.ch> |
b55a1b9c JW |
4043 | M: Alison Wang <alison.wang@freescale.com> |
4044 | L: dri-devel@lists.freedesktop.org | |
4045 | S: Supported | |
4046 | F: drivers/gpu/drm/fsl-dcu/ | |
2d799dde | 4047 | F: Documentation/devicetree/bindings/display/fsl,dcu.txt |
fb127b79 | 4048 | F: Documentation/devicetree/bindings/display/fsl,tcon.txt |
2d799dde | 4049 | F: Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt |
b55a1b9c | 4050 | |
0a3d775f PZ |
4051 | DRM DRIVERS FOR FREESCALE IMX |
4052 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
4053 | L: dri-devel@lists.freedesktop.org | |
4054 | S: Maintained | |
4055 | F: drivers/gpu/drm/imx/ | |
ef739aa4 | 4056 | F: drivers/gpu/ipu-v3/ |
2d799dde | 4057 | F: Documentation/devicetree/bindings/display/imx/ |
0a3d775f | 4058 | |
ba2199a6 PJ |
4059 | DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets) |
4060 | M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com> | |
4061 | L: dri-devel@lists.freedesktop.org | |
4062 | T: git git://github.com/patjak/drm-gma500 | |
4063 | S: Maintained | |
5ff18e42 | 4064 | F: drivers/gpu/drm/gma500/ |
ba2199a6 | 4065 | |
c84ffde9 XL |
4066 | DRM DRIVERS FOR HISILICON |
4067 | M: Xinliang Liu <z.liuxinliang@hisilicon.com> | |
4068 | R: Xinwei Kong <kong.kongxinwei@hisilicon.com> | |
4069 | R: Chen Feng <puck.chen@hisilicon.com> | |
4070 | L: dri-devel@lists.freedesktop.org | |
4071 | T: git git://github.com/xin3liang/linux.git | |
4072 | S: Maintained | |
4073 | F: drivers/gpu/drm/hisilicon/ | |
4074 | F: Documentation/devicetree/bindings/display/hisilicon/ | |
4075 | ||
399516ab EV |
4076 | DRM DRIVER FOR INTEL I810 VIDEO CARDS |
4077 | S: Orphan / Obsolete | |
4078 | F: drivers/gpu/drm/i810/ | |
4079 | F: include/uapi/drm/i810_drm.h | |
4080 | ||
06346451 EV |
4081 | DRM DRIVER FOR MSM ADRENO GPU |
4082 | M: Rob Clark <robdclark@gmail.com> | |
4083 | L: linux-arm-msm@vger.kernel.org | |
4084 | L: dri-devel@lists.freedesktop.org | |
4085 | L: freedreno@lists.freedesktop.org | |
4086 | T: git git://people.freedesktop.org/~robclark/linux | |
4087 | S: Maintained | |
4088 | F: drivers/gpu/drm/msm/ | |
4089 | F: include/uapi/drm/msm_drm.h | |
4090 | F: Documentation/devicetree/bindings/display/msm/ | |
4091 | ||
fad89bb3 EV |
4092 | DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS |
4093 | M: Ben Skeggs <bskeggs@redhat.com> | |
4094 | L: dri-devel@lists.freedesktop.org | |
4095 | L: nouveau@lists.freedesktop.org | |
4096 | T: git git://github.com/skeggsb/linux | |
4097 | S: Supported | |
4098 | F: drivers/gpu/drm/nouveau/ | |
4099 | F: include/uapi/drm/nouveau_drm.h | |
ba2199a6 | 4100 | |
bd3b49f2 | 4101 | DRM DRIVERS FOR NVIDIA TEGRA |
a5ad7a63 | 4102 | M: Thierry Reding <thierry.reding@gmail.com> |
bd3b49f2 TR |
4103 | L: dri-devel@lists.freedesktop.org |
4104 | L: linux-tegra@vger.kernel.org | |
a5ad7a63 | 4105 | T: git git://anongit.freedesktop.org/tegra/linux.git |
adabdb0c | 4106 | S: Supported |
dee8268f | 4107 | F: drivers/gpu/drm/tegra/ |
a5ad7a63 | 4108 | F: drivers/gpu/host1x/ |
e1e90644 | 4109 | F: include/linux/host1x.h |
a5ad7a63 | 4110 | F: include/uapi/drm/tegra_drm.h |
2d799dde | 4111 | F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt |
bd3b49f2 | 4112 | |
399516ab EV |
4113 | DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS |
4114 | S: Orphan / Obsolete | |
4115 | F: drivers/gpu/drm/mga/ | |
4116 | F: include/uapi/drm/mga_drm.h | |
4117 | ||
c842b693 EV |
4118 | DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS |
4119 | M: Dave Airlie <airlied@redhat.com> | |
4120 | S: Odd Fixes | |
4121 | F: drivers/gpu/drm/mgag200/ | |
4122 | ||
399516ab EV |
4123 | DRM DRIVER FOR RAGE 128 VIDEO CARDS |
4124 | S: Orphan / Obsolete | |
4125 | F: drivers/gpu/drm/r128/ | |
4126 | F: include/uapi/drm/r128_drm.h | |
4127 | ||
a284e9d1 LP |
4128 | DRM DRIVERS FOR RENESAS |
4129 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
4130 | L: dri-devel@lists.freedesktop.org | |
4a121096 | 4131 | L: linux-renesas-soc@vger.kernel.org |
2392ccd4 | 4132 | T: git git://linuxtv.org/pinchartl/fbdev |
a284e9d1 LP |
4133 | S: Supported |
4134 | F: drivers/gpu/drm/rcar-du/ | |
4135 | F: drivers/gpu/drm/shmobile/ | |
a284e9d1 | 4136 | F: include/linux/platform_data/shmob_drm.h |
33be436d | 4137 | F: Documentation/devicetree/bindings/display/renesas,du.txt |
a284e9d1 | 4138 | |
c842b693 EV |
4139 | DRM DRIVER FOR QXL VIRTUAL GPU |
4140 | M: Dave Airlie <airlied@redhat.com> | |
4141 | S: Odd Fixes | |
4142 | F: drivers/gpu/drm/qxl/ | |
4143 | F: include/uapi/drm/qxl_drm.h | |
a284e9d1 | 4144 | |
625e0346 HS |
4145 | DRM DRIVERS FOR ROCKCHIP |
4146 | M: Mark Yao <mark.yao@rock-chips.com> | |
4147 | L: dri-devel@lists.freedesktop.org | |
4148 | S: Maintained | |
4149 | F: drivers/gpu/drm/rockchip/ | |
f253f7eb | 4150 | F: Documentation/devicetree/bindings/display/rockchip/ |
625e0346 | 4151 | |
399516ab EV |
4152 | DRM DRIVER FOR SAVAGE VIDEO CARDS |
4153 | S: Orphan / Obsolete | |
4154 | F: drivers/gpu/drm/savage/ | |
4155 | F: include/uapi/drm/savage_drm.h | |
4156 | ||
4157 | DRM DRIVER FOR SIS VIDEO CARDS | |
4158 | S: Orphan / Obsolete | |
4159 | F: drivers/gpu/drm/sis/ | |
4160 | F: include/uapi/drm/sis_drm.h | |
625e0346 | 4161 | |
7f11c476 BG |
4162 | DRM DRIVERS FOR STI |
4163 | M: Benjamin Gaignard <benjamin.gaignard@linaro.org> | |
4164 | M: Vincent Abriou <vincent.abriou@st.com> | |
4165 | L: dri-devel@lists.freedesktop.org | |
4166 | T: git http://git.linaro.org/people/benjamin.gaignard/kernel.git | |
4167 | S: Maintained | |
4168 | F: drivers/gpu/drm/sti | |
2d799dde | 4169 | F: Documentation/devicetree/bindings/display/st,stih4xx.txt |
7f11c476 | 4170 | |
399516ab EV |
4171 | DRM DRIVER FOR TDFX VIDEO CARDS |
4172 | S: Orphan / Obsolete | |
4173 | F: drivers/gpu/drm/tdfx/ | |
4174 | ||
c842b693 EV |
4175 | DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS |
4176 | M: Dave Airlie <airlied@redhat.com> | |
4177 | S: Odd Fixes | |
4178 | F: drivers/gpu/drm/udl/ | |
4179 | ||
8bb0bce9 LS |
4180 | DRM DRIVERS FOR VIVANTE GPU IP |
4181 | M: Lucas Stach <l.stach@pengutronix.de> | |
54176cc6 | 4182 | R: Russell King <linux+etnaviv@armlinux.org.uk> |
8bb0bce9 LS |
4183 | R: Christian Gmeiner <christian.gmeiner@gmail.com> |
4184 | L: dri-devel@lists.freedesktop.org | |
4185 | S: Maintained | |
8a9257a0 EV |
4186 | F: drivers/gpu/drm/etnaviv/ |
4187 | F: include/uapi/drm/etnaviv_drm.h | |
4188 | F: Documentation/devicetree/bindings/display/etnaviv/ | |
8bb0bce9 | 4189 | |
c4291702 EV |
4190 | DRM DRIVER FOR VMWARE VIRTUAL GPU |
4191 | M: "VMware Graphics" <linux-graphics-maintainer@vmware.com> | |
4192 | M: Sinclair Yeh <syeh@vmware.com> | |
4193 | M: Thomas Hellstrom <thellstrom@vmware.com> | |
4194 | L: dri-devel@lists.freedesktop.org | |
4195 | T: git git://people.freedesktop.org/~syeh/repos_linux | |
4196 | T: git git://people.freedesktop.org/~thomash/linux | |
4197 | S: Supported | |
4198 | F: drivers/gpu/drm/vmwgfx/ | |
4199 | F: include/uapi/drm/vmwgfx_drm.h | |
4200 | ||
8636d452 EA |
4201 | DRM DRIVERS FOR VC4 |
4202 | M: Eric Anholt <eric@anholt.net> | |
4203 | T: git git://github.com/anholt/linux | |
4204 | S: Supported | |
4205 | F: drivers/gpu/drm/vc4/ | |
4206 | F: include/uapi/drm/vc4_drm.h | |
4207 | F: Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt | |
8bb0bce9 | 4208 | |
5ef330a7 TV |
4209 | DRM DRIVERS FOR TI OMAP |
4210 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
4211 | L: dri-devel@lists.freedesktop.org | |
4212 | S: Maintained | |
4213 | F: drivers/gpu/drm/omapdrm/ | |
4214 | F: Documentation/devicetree/bindings/display/ti/ | |
4215 | ||
adb314ed TV |
4216 | DRM DRIVERS FOR TI LCDC |
4217 | M: Jyri Sarha <jsarha@ti.com> | |
4218 | R: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
4219 | L: dri-devel@lists.freedesktop.org | |
4220 | S: Maintained | |
4221 | F: drivers/gpu/drm/tilcdc/ | |
4222 | F: Documentation/devicetree/bindings/display/tilcdc/ | |
4223 | ||
598df1ac AK |
4224 | DSBR100 USB FM RADIO DRIVER |
4225 | M: Alexey Klimov <klimov.linux@gmail.com> | |
4226 | L: linux-media@vger.kernel.org | |
4227 | T: git git://linuxtv.org/media_tree.git | |
4228 | S: Maintained | |
4229 | F: drivers/media/radio/dsbr100.c | |
4230 | ||
1da177e4 | 4231 | DSCC4 DRIVER |
8b58be88 | 4232 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 | 4233 | L: netdev@vger.kernel.org |
1da177e4 | 4234 | S: Maintained |
679655da | 4235 | F: drivers/net/wan/dscc4.c |
1da177e4 | 4236 | |
cc11b140 HV |
4237 | DT3155 MEDIA DRIVER |
4238 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
4239 | L: linux-media@vger.kernel.org | |
4240 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 4241 | W: https://linuxtv.org |
cc11b140 HV |
4242 | S: Odd Fixes |
4243 | F: drivers/media/pci/dt3155/ | |
4244 | ||
91952bc0 AP |
4245 | DVB_USB_AF9015 MEDIA DRIVER |
4246 | M: Antti Palosaari <crope@iki.fi> | |
4247 | L: linux-media@vger.kernel.org | |
a825eaec | 4248 | W: https://linuxtv.org |
91952bc0 AP |
4249 | W: http://palosaari.fi/linux/ |
4250 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4251 | T: git git://linuxtv.org/anttip/media_tree.git | |
4252 | S: Maintained | |
4253 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
4254 | ||
4255 | DVB_USB_AF9035 MEDIA DRIVER | |
4256 | M: Antti Palosaari <crope@iki.fi> | |
4257 | L: linux-media@vger.kernel.org | |
a825eaec | 4258 | W: https://linuxtv.org |
91952bc0 AP |
4259 | W: http://palosaari.fi/linux/ |
4260 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4261 | T: git git://linuxtv.org/anttip/media_tree.git | |
4262 | S: Maintained | |
4263 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
4264 | ||
4265 | DVB_USB_ANYSEE MEDIA DRIVER | |
4266 | M: Antti Palosaari <crope@iki.fi> | |
4267 | L: linux-media@vger.kernel.org | |
a825eaec | 4268 | W: https://linuxtv.org |
91952bc0 AP |
4269 | W: http://palosaari.fi/linux/ |
4270 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4271 | T: git git://linuxtv.org/anttip/media_tree.git | |
4272 | S: Maintained | |
4273 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
4274 | ||
4275 | DVB_USB_AU6610 MEDIA DRIVER | |
4276 | M: Antti Palosaari <crope@iki.fi> | |
4277 | L: linux-media@vger.kernel.org | |
a825eaec | 4278 | W: https://linuxtv.org |
91952bc0 AP |
4279 | W: http://palosaari.fi/linux/ |
4280 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4281 | T: git git://linuxtv.org/anttip/media_tree.git | |
4282 | S: Maintained | |
4283 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
4284 | ||
4285 | DVB_USB_CE6230 MEDIA DRIVER | |
4286 | M: Antti Palosaari <crope@iki.fi> | |
4287 | L: linux-media@vger.kernel.org | |
a825eaec | 4288 | W: https://linuxtv.org |
91952bc0 AP |
4289 | W: http://palosaari.fi/linux/ |
4290 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4291 | T: git git://linuxtv.org/anttip/media_tree.git | |
4292 | S: Maintained | |
4293 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
4294 | ||
d099dea2 MK |
4295 | DVB_USB_CXUSB MEDIA DRIVER |
4296 | M: Michael Krufky <mkrufky@linuxtv.org> | |
4297 | L: linux-media@vger.kernel.org | |
a825eaec | 4298 | W: https://linuxtv.org |
d099dea2 MK |
4299 | W: http://github.com/mkrufky |
4300 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4301 | T: git git://linuxtv.org/media_tree.git | |
4302 | S: Maintained | |
9819da66 | 4303 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 4304 | |
91952bc0 | 4305 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
4306 | M: Antti Palosaari <crope@iki.fi> |
4307 | L: linux-media@vger.kernel.org | |
a825eaec | 4308 | W: https://linuxtv.org |
91952bc0 AP |
4309 | W: http://palosaari.fi/linux/ |
4310 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4311 | T: git git://linuxtv.org/anttip/media_tree.git | |
4312 | S: Maintained | |
91952bc0 | 4313 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 4314 | |
5560983b | 4315 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
4316 | M: Antti Palosaari <crope@iki.fi> |
4317 | L: linux-media@vger.kernel.org | |
a825eaec | 4318 | W: https://linuxtv.org |
91952bc0 AP |
4319 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
4320 | T: git git://linuxtv.org/anttip/media_tree.git | |
4321 | S: Maintained | |
5560983b | 4322 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 4323 | |
8856f5f2 MK |
4324 | DVB_USB_MXL111SF MEDIA DRIVER |
4325 | M: Michael Krufky <mkrufky@linuxtv.org> | |
4326 | L: linux-media@vger.kernel.org | |
a825eaec | 4327 | W: https://linuxtv.org |
8856f5f2 MK |
4328 | W: http://github.com/mkrufky |
4329 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4330 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
4331 | S: Maintained | |
4332 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
4333 | ||
91952bc0 AP |
4334 | DVB_USB_RTL28XXU MEDIA DRIVER |
4335 | M: Antti Palosaari <crope@iki.fi> | |
4336 | L: linux-media@vger.kernel.org | |
a825eaec | 4337 | W: https://linuxtv.org |
91952bc0 AP |
4338 | W: http://palosaari.fi/linux/ |
4339 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4340 | T: git git://linuxtv.org/anttip/media_tree.git | |
4341 | S: Maintained | |
4342 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
4343 | ||
4344 | DVB_USB_V2 MEDIA DRIVER | |
4345 | M: Antti Palosaari <crope@iki.fi> | |
4346 | L: linux-media@vger.kernel.org | |
a825eaec | 4347 | W: https://linuxtv.org |
91952bc0 AP |
4348 | W: http://palosaari.fi/linux/ |
4349 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4350 | T: git git://linuxtv.org/anttip/media_tree.git | |
4351 | S: Maintained | |
4352 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
4353 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
4354 | ||
ac0ac38f | 4355 | DYNAMIC DEBUG |
5c4a97d1 | 4356 | M: Jason Baron <jbaron@akamai.com> |
ac0ac38f JB |
4357 | S: Maintained |
4358 | F: lib/dynamic_debug.c | |
4359 | F: include/linux/dynamic_debug.h | |
4360 | ||
789c7048 | 4361 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 4362 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
789c7048 | 4363 | S: Maintained |
df621252 | 4364 | F: drivers/tty/serial/dz.* |
789c7048 | 4365 | |
f17effbe MF |
4366 | E3X0 POWER BUTTON DRIVER |
4367 | M: Moritz Fischer <moritz.fischer@ettus.com> | |
4368 | L: usrp-users@lists.ettus.com | |
4369 | W: http://www.ettus.com | |
4370 | S: Supported | |
4371 | F: drivers/input/misc/e3x0-button.c | |
4372 | F: Documentation/devicetree/bindings/input/e3x0-button.txt | |
4373 | ||
91952bc0 AP |
4374 | E4000 MEDIA DRIVER |
4375 | M: Antti Palosaari <crope@iki.fi> | |
4376 | L: linux-media@vger.kernel.org | |
a825eaec | 4377 | W: https://linuxtv.org |
91952bc0 AP |
4378 | W: http://palosaari.fi/linux/ |
4379 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4380 | T: git git://linuxtv.org/anttip/media_tree.git | |
4381 | S: Maintained | |
4382 | F: drivers/media/tuners/e4000* | |
4383 | ||
1da177e4 | 4384 | EATA ISA/EISA/PCI SCSI DRIVER |
8b58be88 | 4385 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
4386 | L: linux-scsi@vger.kernel.org |
4387 | S: Maintained | |
679655da | 4388 | F: drivers/scsi/eata.c |
1da177e4 | 4389 | |
91952bc0 AP |
4390 | EC100 MEDIA DRIVER |
4391 | M: Antti Palosaari <crope@iki.fi> | |
4392 | L: linux-media@vger.kernel.org | |
a825eaec | 4393 | W: https://linuxtv.org |
91952bc0 AP |
4394 | W: http://palosaari.fi/linux/ |
4395 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4396 | T: git git://linuxtv.org/anttip/media_tree.git | |
4397 | S: Maintained | |
4398 | F: drivers/media/dvb-frontends/ec100* | |
4399 | ||
237fead6 | 4400 | ECRYPT FILE SYSTEM |
0de9adf2 | 4401 | M: Tyler Hicks <tyhicks@canonical.com> |
a058bfbb | 4402 | L: ecryptfs@vger.kernel.org |
24a923e4 | 4403 | W: http://ecryptfs.org |
6dc7516e | 4404 | W: https://launchpad.net/ecryptfs |
9f273c24 | 4405 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git |
237fead6 | 4406 | S: Supported |
679655da JP |
4407 | F: Documentation/filesystems/ecryptfs.txt |
4408 | F: fs/ecryptfs/ | |
237fead6 | 4409 | |
da9bb1d2 | 4410 | EDAC-CORE |
8b58be88 | 4411 | M: Doug Thompson <dougthompson@xmission.com> |
aa15aa0e | 4412 | M: Borislav Petkov <bp@alien8.de> |
5dc8a864 MCC |
4413 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4414 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
91445c72 | 4415 | L: linux-edac@vger.kernel.org |
07cd6bf5 FW |
4416 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next |
4417 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next | |
8c2a6a40 | 4418 | S: Supported |
679655da | 4419 | F: Documentation/edac.txt |
91445c72 | 4420 | F: drivers/edac/ |
679655da | 4421 | F: include/linux/edac.h |
0e438e3f | 4422 | |
c476c23b | 4423 | EDAC-AMD64 |
8b58be88 | 4424 | M: Doug Thompson <dougthompson@xmission.com> |
487ba8e8 | 4425 | M: Borislav Petkov <bp@alien8.de> |
91445c72 | 4426 | L: linux-edac@vger.kernel.org |
487ba8e8 | 4427 | S: Maintained |
c476c23b BP |
4428 | F: drivers/edac/amd64_edac* |
4429 | ||
836dae5d RR |
4430 | EDAC-CALXEDA |
4431 | M: Doug Thompson <dougthompson@xmission.com> | |
4432 | M: Robert Richter <rric@kernel.org> | |
4433 | L: linux-edac@vger.kernel.org | |
836dae5d RR |
4434 | S: Maintained |
4435 | F: drivers/edac/highbank* | |
4436 | ||
f65aad41 RB |
4437 | EDAC-CAVIUM |
4438 | M: Ralf Baechle <ralf@linux-mips.org> | |
4439 | M: David Daney <david.daney@cavium.com> | |
4440 | L: linux-edac@vger.kernel.org | |
4441 | L: linux-mips@linux-mips.org | |
f65aad41 RB |
4442 | S: Supported |
4443 | F: drivers/edac/octeon_edac* | |
4444 | ||
0e438e3f | 4445 | EDAC-E752X |
8b58be88 JP |
4446 | M: Mark Gross <mark.gross@intel.com> |
4447 | M: Doug Thompson <dougthompson@xmission.com> | |
91445c72 | 4448 | L: linux-edac@vger.kernel.org |
0e438e3f | 4449 | S: Maintained |
679655da | 4450 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
4451 | |
4452 | EDAC-E7XXX | |
8b58be88 | 4453 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 4454 | L: linux-edac@vger.kernel.org |
0e438e3f | 4455 | S: Maintained |
679655da | 4456 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 4457 | |
77c5f5d2 | 4458 | EDAC-GHES |
5dc8a864 MCC |
4459 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4460 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
77c5f5d2 | 4461 | L: linux-edac@vger.kernel.org |
77c5f5d2 | 4462 | S: Maintained |
2caa67a6 | 4463 | F: drivers/edac/ghes_edac.c |
77c5f5d2 | 4464 | |
6bc78404 | 4465 | EDAC-I82443BXGX |
8b58be88 | 4466 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 4467 | L: linux-edac@vger.kernel.org |
6bc78404 | 4468 | S: Maintained |
679655da | 4469 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
4470 | |
4471 | EDAC-I3000 | |
8b58be88 | 4472 | M: Jason Uhlenkott <juhlenko@akamai.com> |
91445c72 | 4473 | L: linux-edac@vger.kernel.org |
6bc78404 | 4474 | S: Maintained |
679655da | 4475 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
4476 | |
4477 | EDAC-I5000 | |
8b58be88 | 4478 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 4479 | L: linux-edac@vger.kernel.org |
ba9a5918 | 4480 | S: Maintained |
679655da | 4481 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 4482 | |
44c12cb2 | 4483 | EDAC-I5400 |
5dc8a864 MCC |
4484 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4485 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
67c89316 | 4486 | L: linux-edac@vger.kernel.org |
44c12cb2 | 4487 | S: Maintained |
679655da | 4488 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 4489 | |
3c9c92b6 | 4490 | EDAC-I7300 |
5dc8a864 MCC |
4491 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4492 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
3c9c92b6 | 4493 | L: linux-edac@vger.kernel.org |
3c9c92b6 MCC |
4494 | S: Maintained |
4495 | F: drivers/edac/i7300_edac.c | |
4496 | ||
67c89316 | 4497 | EDAC-I7CORE |
5dc8a864 MCC |
4498 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4499 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
67c89316 | 4500 | L: linux-edac@vger.kernel.org |
67c89316 | 4501 | S: Maintained |
70aff0ce | 4502 | F: drivers/edac/i7core_edac.c |
67c89316 | 4503 | |
ba9a5918 | 4504 | EDAC-I82975X |
8b58be88 | 4505 | M: Ranganathan Desikan <ravi@jetztechnologies.com> |
25527885 | 4506 | M: "Arvind R." <arvino55@gmail.com> |
91445c72 | 4507 | L: linux-edac@vger.kernel.org |
ba9a5918 | 4508 | S: Maintained |
679655da | 4509 | F: drivers/edac/i82975x_edac.c |
ba9a5918 | 4510 | |
791b4706 JB |
4511 | EDAC-IE31200 |
4512 | M: Jason Baron <jbaron@akamai.com> | |
4513 | L: linux-edac@vger.kernel.org | |
791b4706 JB |
4514 | S: Maintained |
4515 | F: drivers/edac/ie31200_edac.c | |
4516 | ||
ccdfb979 | 4517 | EDAC-MPC85XX |
30c7469b | 4518 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
ccdfb979 | 4519 | L: linux-edac@vger.kernel.org |
ccdfb979 JT |
4520 | S: Maintained |
4521 | F: drivers/edac/mpc85xx_edac.[ch] | |
4522 | ||
ba9a5918 | 4523 | EDAC-PASEMI |
8b58be88 | 4524 | M: Egor Martovetsky <egor@pasemi.com> |
91445c72 | 4525 | L: linux-edac@vger.kernel.org |
6bc78404 | 4526 | S: Maintained |
679655da | 4527 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 4528 | |
0e438e3f | 4529 | EDAC-R82600 |
8b58be88 | 4530 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 4531 | L: linux-edac@vger.kernel.org |
0e438e3f | 4532 | S: Maintained |
679655da | 4533 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 4534 | |
4d096ca7 | 4535 | EDAC-SBRIDGE |
5dc8a864 MCC |
4536 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4537 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
4d096ca7 | 4538 | L: linux-edac@vger.kernel.org |
4d096ca7 MCC |
4539 | S: Maintained |
4540 | F: drivers/edac/sb_edac.c | |
4541 | ||
4ec656bd TL |
4542 | EDAC-SKYLAKE |
4543 | M: Tony Luck <tony.luck@intel.com> | |
4544 | L: linux-edac@vger.kernel.org | |
4545 | S: Maintained | |
4546 | F: drivers/edac/skx_edac.c | |
4547 | ||
995e1de4 LH |
4548 | EDAC-XGENE |
4549 | APPLIED MICRO (APM) X-GENE SOC EDAC | |
4550 | M: Loc Ho <lho@apm.com> | |
4551 | S: Supported | |
4552 | F: drivers/edac/xgene_edac.c | |
4553 | F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt | |
4554 | ||
af39917d CL |
4555 | EDIROL UA-101/UA-1000 DRIVER |
4556 | M: Clemens Ladisch <clemens@ladisch.de> | |
4557 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
4558 | T: git git://git.alsa-project.org/alsa-kernel.git | |
4559 | S: Maintained | |
4560 | F: sound/usb/misc/ua101.c | |
4561 | ||
1f7df953 | 4562 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
825fcfce | 4563 | M: Matt Fleming <matt@codeblueprint.co.uk> |
1f7df953 | 4564 | L: linux-efi@vger.kernel.org |
78bef24e | 4565 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
1f7df953 | 4566 | S: Maintained |
fb2efb5c | 4567 | F: Documentation/efi-stub.txt |
1f7df953 MF |
4568 | F: arch/ia64/kernel/efi.c |
4569 | F: arch/x86/boot/compressed/eboot.[ch] | |
4570 | F: arch/x86/include/asm/efi.h | |
e8dfe6d8 MF |
4571 | F: arch/x86/platform/efi/ |
4572 | F: drivers/firmware/efi/ | |
1f7df953 MF |
4573 | F: include/linux/efi*.h |
4574 | ||
d68772b7 MF |
4575 | EFI VARIABLE FILESYSTEM |
4576 | M: Matthew Garrett <matthew.garrett@nebula.com> | |
4577 | M: Jeremy Kerr <jk@ozlabs.org> | |
825fcfce | 4578 | M: Matt Fleming <matt@codeblueprint.co.uk> |
d68772b7 MF |
4579 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
4580 | L: linux-efi@vger.kernel.org | |
4581 | S: Maintained | |
4582 | F: fs/efivarfs/ | |
4583 | ||
85a00d9b PJ |
4584 | EFIFB FRAMEBUFFER DRIVER |
4585 | L: linux-fbdev@vger.kernel.org | |
4586 | M: Peter Jones <pjones@redhat.com> | |
4587 | S: Maintained | |
8a61f013 | 4588 | F: drivers/video/fbdev/efifb.c |
85a00d9b | 4589 | |
ff6301da IH |
4590 | EFI TEST DRIVER |
4591 | L: linux-efi@vger.kernel.org | |
4592 | M: Ivan Hu <ivan.hu@canonical.com> | |
4593 | M: Matt Fleming <matt@codeblueprint.co.uk> | |
4594 | S: Maintained | |
4595 | F: drivers/firmware/efi/test/ | |
4596 | ||
0bee8d28 JT |
4597 | EFS FILESYSTEM |
4598 | W: http://aeschi.ch.eu.org/efs/ | |
4599 | S: Orphan | |
679655da | 4600 | F: fs/efs/ |
0bee8d28 | 4601 | |
aa8a9e25 | 4602 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
97b04197 | 4603 | M: Douglas Miller <dougmill@linux.vnet.ibm.com> |
aa8a9e25 BL |
4604 | L: netdev@vger.kernel.org |
4605 | S: Maintained | |
9aa32835 | 4606 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 4607 | |
f0319efe | 4608 | EM28XX VIDEO4LINUX DRIVER |
5dc8a864 MCC |
4609 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4610 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
f0319efe | 4611 | L: linux-media@vger.kernel.org |
a825eaec | 4612 | W: https://linuxtv.org |
f0319efe MCC |
4613 | T: git git://linuxtv.org/media_tree.git |
4614 | S: Maintained | |
4615 | F: drivers/media/usb/em28xx/ | |
4616 | ||
3e3a7d66 | 4617 | EMBEDDED LINUX |
8b58be88 JP |
4618 | M: Paul Gortmaker <paul.gortmaker@windriver.com> |
4619 | M: Matt Mackall <mpm@selenic.com> | |
4620 | M: David Woodhouse <dwmw2@infradead.org> | |
3e3a7d66 DW |
4621 | L: linux-embedded@vger.kernel.org |
4622 | S: Maintained | |
4623 | ||
32505876 JS |
4624 | EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER |
4625 | M: James Smart <james.smart@avagotech.com> | |
4626 | M: Dick Kennedy <dick.kennedy@avagotech.com> | |
ce00f85c | 4627 | L: linux-scsi@vger.kernel.org |
32505876 | 4628 | W: http://www.avagotech.com |
ce00f85c | 4629 | S: Supported |
679655da | 4630 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 4631 | |
5f5bac82 | 4632 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 4633 | M: Michał Mirosław <mirq-linux@rere.qmqm.pl> |
5f5bac82 MM |
4634 | S: Maintained |
4635 | F: drivers/misc/cb710/ | |
4636 | F: drivers/mmc/host/cb710-mmc.* | |
4637 | F: include/linux/cb710.h | |
4638 | ||
931e39a1 ML |
4639 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
4640 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
4641 | S: Maintained | |
2a837449 | 4642 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 4643 | |
d5ca9006 | 4644 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 4645 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
d5ca9006 | 4646 | S: Maintained |
084bad91 | 4647 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
8a61f013 | 4648 | F: drivers/video/fbdev/s1d13xxxfb.c |
679655da | 4649 | F: include/video/s1d13xxxfb.h |
d5ca9006 | 4650 | |
38df6492 ME |
4651 | ET131X NETWORK DRIVER |
4652 | M: Mark Einon <mark.einon@gmail.com> | |
4653 | S: Odd Fixes | |
4654 | F: drivers/net/ethernet/agere/ | |
4655 | ||
1da177e4 | 4656 | ETHERNET BRIDGE |
adbbf69d | 4657 | M: Stephen Hemminger <stephen@networkplumber.org> |
3430284f | 4658 | L: bridge@lists.linux-foundation.org (moderated for non-subscribers) |
4c325313 | 4659 | L: netdev@vger.kernel.org |
c996d8b9 | 4660 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 4661 | S: Maintained |
679655da JP |
4662 | F: include/linux/netfilter_bridge/ |
4663 | F: net/bridge/ | |
1da177e4 | 4664 | |
22f08ad9 FF |
4665 | ETHERNET PHY LIBRARY |
4666 | M: Florian Fainelli <f.fainelli@gmail.com> | |
4667 | L: netdev@vger.kernel.org | |
4668 | S: Maintained | |
4669 | F: include/linux/phy.h | |
4670 | F: include/linux/phy_fixed.h | |
4671 | F: drivers/net/phy/ | |
4672 | F: Documentation/networking/phy.txt | |
4673 | F: drivers/of/of_mdio.c | |
4674 | F: drivers/of/of_net.c | |
4675 | ||
1da177e4 | 4676 | EXT2 FILE SYSTEM |
d8130624 | 4677 | M: Jan Kara <jack@suse.com> |
72be2ccf | 4678 | L: linux-ext4@vger.kernel.org |
1da177e4 | 4679 | S: Maintained |
679655da JP |
4680 | F: Documentation/filesystems/ext2.txt |
4681 | F: fs/ext2/ | |
4682 | F: include/linux/ext2* | |
1da177e4 | 4683 | |
72be2ccf | 4684 | EXT4 FILE SYSTEM |
8b58be88 | 4685 | M: "Theodore Ts'o" <tytso@mit.edu> |
3c373a5f | 4686 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
72be2ccf | 4687 | L: linux-ext4@vger.kernel.org |
08a225f1 | 4688 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 4689 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
9f273c24 | 4690 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git |
1da177e4 | 4691 | S: Maintained |
679655da JP |
4692 | F: Documentation/filesystems/ext4.txt |
4693 | F: fs/ext4/ | |
1da177e4 | 4694 | |
c5532b09 | 4695 | Extended Verification Module (EVM) |
74dd744f MZ |
4696 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
4697 | L: linux-ima-devel@lists.sourceforge.net | |
4698 | L: linux-security-module@vger.kernel.org | |
c5532b09 MZ |
4699 | S: Supported |
4700 | F: security/integrity/evm/ | |
4701 | ||
df6b3cfe MH |
4702 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
4703 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
4704 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
4705 | L: linux-kernel@vger.kernel.org | |
81df63a9 | 4706 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git |
df6b3cfe MH |
4707 | S: Maintained |
4708 | F: drivers/extcon/ | |
cd2c3e7f CC |
4709 | F: include/linux/extcon/ |
4710 | F: include/linux/extcon.h | |
df6b3cfe | 4711 | F: Documentation/extcon/ |
cd2c3e7f | 4712 | F: Documentation/devicetree/bindings/extcon/ |
df6b3cfe | 4713 | |
e2a75c44 | 4714 | EXYNOS DP DRIVER |
b7701755 | 4715 | M: Jingoo Han <jingoohan1@gmail.com> |
e2a75c44 JH |
4716 | L: dri-devel@lists.freedesktop.org |
4717 | S: Maintained | |
4718 | F: drivers/gpu/drm/exynos/exynos_dp* | |
4719 | ||
9b93a409 MS |
4720 | EXYNOS SYSMMU (IOMMU) driver |
4721 | M: Marek Szyprowski <m.szyprowski@samsung.com> | |
4722 | L: iommu@lists.linux-foundation.org | |
4723 | S: Maintained | |
4724 | F: drivers/iommu/exynos-iommu.c | |
4725 | ||
33ad3912 DL |
4726 | EXYNOS MIPI DISPLAY DRIVERS |
4727 | M: Inki Dae <inki.dae@samsung.com> | |
4728 | M: Donghwa Lee <dh09.lee@samsung.com> | |
4729 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
4730 | L: linux-fbdev@vger.kernel.org | |
4731 | S: Maintained | |
8a61f013 | 4732 | F: drivers/video/fbdev/exynos/exynos_mipi* |
33ad3912 DL |
4733 | F: include/video/exynos_mipi* |
4734 | ||
4a66d3fe NC |
4735 | EZchip NPS platform support |
4736 | M: Noam Camus <noamc@ezchip.com> | |
4737 | S: Supported | |
4738 | F: arch/arc/plat-eznps | |
4739 | F: arch/arc/boot/dts/eznps.dts | |
4740 | ||
e53004e2 | 4741 | F71805F HARDWARE MONITORING DRIVER |
d8130624 | 4742 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 4743 | L: linux-hwmon@vger.kernel.org |
e53004e2 | 4744 | S: Maintained |
679655da JP |
4745 | F: Documentation/hwmon/f71805f |
4746 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 4747 | |
eea977ed MB |
4748 | FC0011 TUNER DRIVER |
4749 | M: Michael Buesch <m@bues.ch> | |
4750 | L: linux-media@vger.kernel.org | |
4751 | S: Maintained | |
ccae7af2 MCC |
4752 | F: drivers/media/tuners/fc0011.h |
4753 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 4754 | |
91952bc0 AP |
4755 | FC2580 MEDIA DRIVER |
4756 | M: Antti Palosaari <crope@iki.fi> | |
4757 | L: linux-media@vger.kernel.org | |
a825eaec | 4758 | W: https://linuxtv.org |
91952bc0 AP |
4759 | W: http://palosaari.fi/linux/ |
4760 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4761 | T: git git://linuxtv.org/anttip/media_tree.git | |
4762 | S: Maintained | |
4763 | F: drivers/media/tuners/fc2580* | |
eea977ed | 4764 | |
88b2dbdb EP |
4765 | FANOTIFY |
4766 | M: Eric Paris <eparis@redhat.com> | |
4767 | S: Maintained | |
4768 | F: fs/notify/fanotify/ | |
4769 | F: include/linux/fanotify.h | |
c117ab84 | 4770 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 4771 | |
1da177e4 | 4772 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 4773 | M: Kevin Curtis <kevin.curtis@farsite.co.uk> |
1da177e4 LT |
4774 | W: http://www.farsite.co.uk/ |
4775 | S: Supported | |
679655da | 4776 | F: drivers/net/wan/farsync.* |
1da177e4 | 4777 | |
c5408b88 | 4778 | FAULT INJECTION SUPPORT |
8b58be88 | 4779 | M: Akinobu Mita <akinobu.mita@gmail.com> |
c5408b88 | 4780 | S: Supported |
679655da JP |
4781 | F: Documentation/fault-injection/ |
4782 | F: lib/fault-inject.c | |
c5408b88 | 4783 | |
053e514f NT |
4784 | FBTFT Framebuffer drivers |
4785 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
4786 | M: Noralf Trønnes <noralf@tronnes.org> | |
4787 | S: Maintained | |
4788 | F: drivers/staging/fbtft/ | |
4789 | ||
cae727db | 4790 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
49a75815 | 4791 | M: Johannes Thumshirn <jth@kernel.org> |
f4aaea6d | 4792 | L: fcoe-devel@open-fcoe.org |
cae727db RL |
4793 | W: www.Open-FCoE.org |
4794 | S: Supported | |
4795 | F: drivers/scsi/libfc/ | |
4796 | F: drivers/scsi/fcoe/ | |
4797 | F: include/scsi/fc/ | |
4798 | F: include/scsi/libfc.h | |
4799 | F: include/scsi/libfcoe.h | |
c117ab84 | 4800 | F: include/uapi/scsi/fc/ |
cae727db | 4801 | |
e2d1d6c0 | 4802 | FILE LOCKING (flock() and fcntl()/lockf()) |
8c836fa8 | 4803 | M: Jeff Layton <jlayton@poochiereds.net> |
9c3646d1 | 4804 | M: "J. Bruce Fields" <bfields@fieldses.org> |
e2d1d6c0 | 4805 | L: linux-fsdevel@vger.kernel.org |
1da177e4 | 4806 | S: Maintained |
679655da JP |
4807 | F: include/linux/fcntl.h |
4808 | F: include/linux/fs.h | |
c117ab84 CEB |
4809 | F: include/uapi/linux/fcntl.h |
4810 | F: include/uapi/linux/fs.h | |
679655da JP |
4811 | F: fs/fcntl.c |
4812 | F: fs/locks.c | |
1da177e4 | 4813 | |
e2d1d6c0 | 4814 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 4815 | M: Alexander Viro <viro@zeniv.linux.org.uk> |
e2d1d6c0 | 4816 | L: linux-fsdevel@vger.kernel.org |
173acc7c | 4817 | S: Maintained |
679655da | 4818 | F: fs/* |
173acc7c | 4819 | |
b26e0ed4 | 4820 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 4821 | M: Riku Voipio <riku.voipio@iki.fi> |
968ce1b1 | 4822 | L: linux-hwmon@vger.kernel.org |
b26e0ed4 | 4823 | S: Maintained |
d5ca6918 JP |
4824 | F: drivers/hwmon/f75375s.c |
4825 | F: include/linux/f75375s.h | |
b26e0ed4 | 4826 | |
a331b0c3 CL |
4827 | FIREWIRE AUDIO DRIVERS |
4828 | M: Clemens Ladisch <clemens@ladisch.de> | |
4829 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
4830 | T: git git://git.alsa-project.org/alsa-kernel.git | |
4831 | S: Maintained | |
4832 | F: sound/firewire/ | |
4833 | ||
eb86ec51 SR |
4834 | FIREWIRE MEDIA DRIVERS (firedtv) |
4835 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> | |
4836 | L: linux-media@vger.kernel.org | |
4837 | L: linux1394-devel@lists.sourceforge.net | |
4838 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
4839 | S: Maintained | |
4840 | F: drivers/media/firewire/ | |
4841 | ||
a511ce33 CB |
4842 | FIREWIRE SBP-2 TARGET |
4843 | M: Chris Boot <bootc@bootc.net> | |
4844 | L: linux-scsi@vger.kernel.org | |
4845 | L: target-devel@vger.kernel.org | |
4846 | L: linux1394-devel@lists.sourceforge.net | |
4847 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
4848 | S: Maintained | |
4849 | F: drivers/target/sbp/ | |
4850 | ||
7d2c86b5 | 4851 | FIREWIRE SUBSYSTEM |
8b58be88 | 4852 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
e2d1d6c0 | 4853 | L: linux1394-devel@lists.sourceforge.net |
958a29cb | 4854 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 4855 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 4856 | S: Maintained |
679655da | 4857 | F: drivers/firewire/ |
8f06ce3b SR |
4858 | F: include/linux/firewire.h |
4859 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 4860 | F: tools/firewire/ |
e2d1d6c0 RD |
4861 | |
4862 | FIRMWARE LOADER (request_firmware) | |
39e68089 | 4863 | M: Ming Lei <ming.lei@canonical.com> |
e7604239 | 4864 | M: Luis R. Rodriguez <mcgrof@kernel.org> |
39e68089 ML |
4865 | L: linux-kernel@vger.kernel.org |
4866 | S: Maintained | |
679655da JP |
4867 | F: Documentation/firmware_class/ |
4868 | F: drivers/base/firmware*.c | |
4869 | F: include/linux/firmware.h | |
e2d1d6c0 | 4870 | |
f730e3dc | 4871 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
9bb3c446 PK |
4872 | M: Joshua Morris <josh.h.morris@us.ibm.com> |
4873 | M: Philip Kelleher <pjk1939@linux.vnet.ibm.com> | |
4874 | S: Maintained | |
4875 | F: drivers/block/rsxx/ | |
4876 | ||
8206f664 | 4877 | FLOPPY DRIVER |
e5f6450c | 4878 | M: Jiri Kosina <jikos@kernel.org> |
8206f664 JK |
4879 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git |
4880 | S: Odd fixes | |
4881 | F: drivers/block/floppy.c | |
4882 | ||
9c9f32ed AR |
4883 | FMC SUBSYSTEM |
4884 | M: Alessandro Rubini <rubini@gnudd.com> | |
4885 | W: http://www.ohwr.org/projects/fmc-bus | |
4886 | S: Supported | |
4887 | F: drivers/fmc/ | |
4888 | F: include/linux/fmc*.h | |
4889 | F: include/linux/ipmi-fru.h | |
4890 | K: fmc_d.*register | |
4891 | ||
3c0ed7d5 AT |
4892 | FPGA MANAGER FRAMEWORK |
4893 | M: Alan Tull <atull@opensource.altera.com> | |
dd7d664a | 4894 | R: Moritz Fischer <moritz.fischer@ettus.com> |
3c0ed7d5 AT |
4895 | S: Maintained |
4896 | F: drivers/fpga/ | |
4897 | F: include/linux/fpga/fpga-mgr.h | |
4898 | W: http://www.rocketboards.org | |
4899 | ||
e2d1d6c0 | 4900 | FPU EMULATOR |
8b58be88 | 4901 | M: Bill Metzenthen <billm@melbpc.org.au> |
e769980f | 4902 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 4903 | S: Maintained |
679655da | 4904 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
4905 | |
4906 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 4907 | L: netdev@vger.kernel.org |
c173bfac | 4908 | S: Orphan |
679655da JP |
4909 | F: drivers/net/wan/dlci.c |
4910 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
4911 | |
4912 | FRAMEBUFFER LAYER | |
5489e948 JCPV |
4913 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
4914 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
c69f677c | 4915 | L: linux-fbdev@vger.kernel.org |
e2d1d6c0 | 4916 | W: http://linux-fbdev.sourceforge.net/ |
b22fe37b | 4917 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
5489e948 | 4918 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git |
56be1416 | 4919 | S: Maintained |
679655da | 4920 | F: Documentation/fb/ |
b22fe37b PM |
4921 | F: drivers/video/ |
4922 | F: include/video/ | |
679655da | 4923 | F: include/linux/fb.h |
c117ab84 CEB |
4924 | F: include/uapi/video/ |
4925 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 4926 | |
a57c188e | 4927 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 4928 | M: Timur Tabi <timur@tabi.org> |
a57c188e | 4929 | L: linux-fbdev@vger.kernel.org |
c4ef9bc4 | 4930 | S: Maintained |
8a61f013 | 4931 | F: drivers/video/fbdev/fsl-diu-fb.* |
a57c188e | 4932 | |
e2d1d6c0 | 4933 | FREESCALE DMA DRIVER |
8b58be88 JP |
4934 | M: Li Yang <leoli@freescale.com> |
4935 | M: Zhang Wei <zw@zh-kernel.org> | |
a4724ed6 | 4936 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 | 4937 | S: Maintained |
679655da | 4938 | F: drivers/dma/fsldma.* |
e2d1d6c0 | 4939 | |
44248aff HX |
4940 | FREESCALE GPMI NAND DRIVER |
4941 | M: Han Xu <han.xu@nxp.com> | |
4942 | L: linux-mtd@lists.infradead.org | |
4943 | S: Maintained | |
4944 | F: drivers/mtd/nand/gpmi-nand/* | |
4945 | ||
e2d1d6c0 | 4946 | FREESCALE I2C CPM DRIVER |
8b58be88 | 4947 | M: Jochen Friedrich <jochen@scram.de> |
a4724ed6 | 4948 | L: linuxppc-dev@lists.ozlabs.org |
846557d3 | 4949 | L: linux-i2c@vger.kernel.org |
0d2b405a | 4950 | S: Maintained |
679655da | 4951 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 4952 | |
60e8c5ab | 4953 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 4954 | M: Sascha Hauer <kernel@pengutronix.de> |
c69f677c | 4955 | L: linux-fbdev@vger.kernel.org |
efc03ecb | 4956 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
60e8c5ab | 4957 | S: Maintained |
bad985a1 | 4958 | F: include/linux/platform_data/video-imxfb.h |
8a61f013 | 4959 | F: drivers/video/fbdev/imxfb.c |
60e8c5ab | 4960 | |
4d8e2cef | 4961 | FREESCALE QUAD SPI DRIVER |
38714fbd | 4962 | M: Han Xu <han.xu@nxp.com> |
4d8e2cef HX |
4963 | L: linux-mtd@lists.infradead.org |
4964 | S: Maintained | |
4965 | F: drivers/mtd/spi-nor/fsl-quadspi.c | |
4966 | ||
4689a6b1 | 4967 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
4968 | M: Pantelis Antoniou <pantelis.antoniou@gmail.com> |
4969 | M: Vitaly Bordug <vbordug@ru.mvista.com> | |
a4724ed6 | 4970 | L: linuxppc-dev@lists.ozlabs.org |
4689a6b1 PA |
4971 | L: netdev@vger.kernel.org |
4972 | S: Maintained | |
ec21e2ec | 4973 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 4974 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 4975 | |
63a0a00b NA |
4976 | FREESCALE IMX / MXC FEC DRIVER |
4977 | M: Fugang Duan <fugang.duan@nxp.com> | |
4978 | L: netdev@vger.kernel.org | |
4979 | S: Maintained | |
4980 | F: drivers/net/ethernet/freescale/fec_main.c | |
4981 | F: drivers/net/ethernet/freescale/fec_ptp.c | |
4982 | F: drivers/net/ethernet/freescale/fec.h | |
4983 | F: Documentation/devicetree/bindings/net/fsl-fec.txt | |
4984 | ||
d9e9d82c | 4985 | FREESCALE QUICC ENGINE LIBRARY |
a4724ed6 | 4986 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 4987 | S: Orphan |
7aa1aa6e ZQ |
4988 | F: drivers/soc/fsl/qe/ |
4989 | F: include/soc/fsl/*qe*.h | |
4990 | F: include/soc/fsl/*ucc*.h | |
d9e9d82c | 4991 | |
b55ef929 | 4992 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 4993 | M: Li Yang <leoli@freescale.com> |
6372594a | 4994 | L: linux-usb@vger.kernel.org |
a4724ed6 | 4995 | L: linuxppc-dev@lists.ozlabs.org |
a7205b30 | 4996 | S: Maintained |
faf2e1db | 4997 | F: drivers/usb/gadget/udc/fsl* |
a7205b30 | 4998 | |
beaf53bf | 4999 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 5000 | M: Li Yang <leoli@freescale.com> |
beaf53bf | 5001 | L: netdev@vger.kernel.org |
a4724ed6 | 5002 | L: linuxppc-dev@lists.ozlabs.org |
beaf53bf | 5003 | S: Maintained |
ec21e2ec | 5004 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 5005 | |
abb1ed7b CM |
5006 | FREESCALE eTSEC ETHERNET DRIVER (GIANFAR) |
5007 | M: Claudiu Manoil <claudiu.manoil@freescale.com> | |
5008 | L: netdev@vger.kernel.org | |
5009 | S: Maintained | |
5010 | F: drivers/net/ethernet/freescale/gianfar* | |
5011 | X: drivers/net/ethernet/freescale/gianfar_ptp.c | |
5012 | F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt | |
5013 | ||
c19b6d24 ZQ |
5014 | FREESCALE QUICC ENGINE UCC HDLC DRIVER |
5015 | M: Zhao Qiang <qiang.zhao@nxp.com> | |
5016 | L: netdev@vger.kernel.org | |
5017 | L: linuxppc-dev@lists.ozlabs.org | |
5018 | S: Maintained | |
5019 | F: drivers/net/wan/fsl_ucc_hdlc* | |
5020 | ||
d9e9d82c | 5021 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 5022 | M: Timur Tabi <timur@tabi.org> |
a4724ed6 | 5023 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 5024 | S: Maintained |
df621252 | 5025 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
5026 | |
5027 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 5028 | M: Timur Tabi <timur@tabi.org> |
dc85950a | 5029 | M: Nicolin Chen <nicoleotsuka@gmail.com> |
b4b98297 | 5030 | M: Xiubo Li <Xiubo.Lee@gmail.com> |
aeea2fdd | 5031 | R: Fabio Estevam <fabio.estevam@nxp.com> |
93711660 | 5032 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a4724ed6 | 5033 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 5034 | S: Maintained |
69aefcea | 5035 | F: sound/soc/fsl/fsl* |
dc85950a | 5036 | F: sound/soc/fsl/imx* |
69aefcea | 5037 | F: sound/soc/fsl/mpc8610_hpcd.c |
d9e9d82c | 5038 | |
31c88965 | 5039 | FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER |
9c3646d1 | 5040 | M: "J. German Rivera" <German.Rivera@freescale.com> |
cb18d3a2 | 5041 | M: Stuart Yoder <stuart.yoder@nxp.com> |
31c88965 GR |
5042 | L: linux-kernel@vger.kernel.org |
5043 | S: Maintained | |
5044 | F: drivers/staging/fsl-mc/ | |
5045 | ||
1da177e4 | 5046 | FREEVXFS FILESYSTEM |
8b58be88 | 5047 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 LT |
5048 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
5049 | S: Maintained | |
679655da | 5050 | F: fs/freevxfs/ |
1da177e4 | 5051 | |
71038f52 | 5052 | FREEZER |
49db1903 | 5053 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 5054 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 5055 | L: linux-pm@vger.kernel.org |
71038f52 | 5056 | S: Supported |
679655da JP |
5057 | F: Documentation/power/freezing-of-tasks.txt |
5058 | F: include/linux/freezer.h | |
5059 | F: kernel/freezer.c | |
71038f52 | 5060 | |
839a1f79 KRW |
5061 | FRONTSWAP API |
5062 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
5063 | L: linux-kernel@vger.kernel.org | |
5064 | S: Maintained | |
5065 | F: mm/frontswap.c | |
5066 | F: include/linux/frontswap.h | |
5067 | ||
a5432f5a | 5068 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 5069 | M: David Howells <dhowells@redhat.com> |
e62d6e24 | 5070 | L: linux-cachefs@redhat.com (moderated for non-subscribers) |
a5432f5a DH |
5071 | S: Supported |
5072 | F: Documentation/filesystems/caching/ | |
5073 | F: fs/fscache/ | |
5074 | F: include/linux/fscache*.h | |
5075 | ||
598c7d7a TT |
5076 | FS-CRYPTO: FILE SYSTEM LEVEL ENCRYPTION SUPPORT |
5077 | M: Theodore Y. Ts'o <tytso@mit.edu> | |
5078 | M: Jaegeuk Kim <jaegeuk@kernel.org> | |
5079 | S: Supported | |
5080 | F: fs/crypto/ | |
5081 | F: include/linux/fscrypto.h | |
5082 | ||
f58ad8f5 | 5083 | F2FS FILE SYSTEM |
9b29d481 | 5084 | M: Jaegeuk Kim <jaegeuk@kernel.org> |
f6238a72 | 5085 | M: Changman Lee <cm224.lee@samsung.com> |
ae9b9a9d | 5086 | R: Chao Yu <yuchao0@huawei.com> |
f58ad8f5 JK |
5087 | L: linux-f2fs-devel@lists.sourceforge.net |
5088 | W: http://en.wikipedia.org/wiki/F2FS | |
5089 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git | |
5090 | S: Maintained | |
5091 | F: Documentation/filesystems/f2fs.txt | |
3bac380c | 5092 | F: Documentation/ABI/testing/sysfs-fs-f2fs |
f58ad8f5 JK |
5093 | F: fs/f2fs/ |
5094 | F: include/linux/f2fs_fs.h | |
62d43eeb | 5095 | F: include/trace/events/f2fs.h |
f58ad8f5 | 5096 | |
5ab7ffea | 5097 | FUJITSU FR-V (FRV) PORT |
0cf0305f | 5098 | S: Orphan |
679655da | 5099 | F: arch/frv/ |
1da177e4 | 5100 | |
20b93734 | 5101 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 5102 | M: Jonathan Woithe <jwoithe@just42.net> |
d0944853 | 5103 | L: platform-driver-x86@vger.kernel.org |
20b93734 | 5104 | S: Maintained |
679655da | 5105 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 5106 | |
4da621b6 HK |
5107 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
5108 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
5109 | M: Heungjun Kim <riverful.kim@samsung.com> | |
5110 | L: linux-media@vger.kernel.org | |
5111 | S: Maintained | |
90d72ac6 | 5112 | F: drivers/media/i2c/m5mols/ |
b5dcee22 | 5113 | F: include/media/i2c/m5mols.h |
4da621b6 | 5114 | |
2d24c490 RG |
5115 | FUJITSU TABLET EXTRAS |
5116 | M: Robert Gerlach <khnz@gmx.de> | |
5117 | L: platform-driver-x86@vger.kernel.org | |
5118 | S: Maintained | |
5119 | F: drivers/platform/x86/fujitsu-tablet.c | |
5120 | ||
04578f17 | 5121 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 5122 | M: Miklos Szeredi <miklos@szeredi.hu> |
4441f63a | 5123 | L: linux-fsdevel@vger.kernel.org |
04578f17 | 5124 | W: http://fuse.sourceforge.net/ |
0a30f612 | 5125 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git |
04578f17 | 5126 | S: Maintained |
679655da | 5127 | F: fs/fuse/ |
c117ab84 | 5128 | F: include/uapi/linux/fuse.h |
0a30f612 | 5129 | F: Documentation/filesystems/fuse.txt |
04578f17 | 5130 | |
1da177e4 | 5131 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 5132 | M: Rik Faith <faith@cs.unc.edu> |
1da177e4 | 5133 | L: linux-scsi@vger.kernel.org |
baaea1dc | 5134 | S: Odd Fixes (e.g., new signatures) |
679655da | 5135 | F: drivers/scsi/fdomain.* |
1da177e4 | 5136 | |
6b90bd4b ER |
5137 | GCC PLUGINS |
5138 | M: Kees Cook <keescook@chromium.org> | |
5139 | R: Emese Revfy <re.emese@gmail.com> | |
5140 | L: kernel-hardening@lists.openwall.com | |
5141 | S: Maintained | |
5142 | F: scripts/gcc-plugins/ | |
5143 | F: scripts/gcc-plugin.sh | |
5144 | F: Documentation/gcc-plugins.txt | |
5145 | ||
d8e2162c PO |
5146 | GCOV BASED KERNEL PROFILING |
5147 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
5148 | S: Maintained | |
5149 | F: kernel/gcov/ | |
5150 | F: Documentation/gcov.txt | |
5151 | ||
1da177e4 | 5152 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
8b58be88 | 5153 | M: Achim Leubner <achim_leubner@adaptec.com> |
1da177e4 LT |
5154 | L: linux-scsi@vger.kernel.org |
5155 | W: http://www.icp-vortex.com/ | |
5156 | S: Supported | |
679655da | 5157 | F: drivers/scsi/gdt* |
1da177e4 | 5158 | |
158daf16 JK |
5159 | GDB KERNEL DEBUGGING HELPER SCRIPTS |
5160 | M: Jan Kiszka <jan.kiszka@siemens.com> | |
e10af132 | 5161 | M: Kieran Bingham <kieran@bingham.xyz> |
158daf16 JK |
5162 | S: Supported |
5163 | F: scripts/gdb/ | |
5164 | ||
3169a1c7 HV |
5165 | GEMTEK FM RADIO RECEIVER DRIVER |
5166 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5167 | L: linux-media@vger.kernel.org | |
5168 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 5169 | W: https://linuxtv.org |
3169a1c7 HV |
5170 | S: Maintained |
5171 | F: drivers/media/radio/radio-gemtek* | |
5172 | ||
1c23af90 | 5173 | GENERIC GPIO I2C DRIVER |
880b0e26 | 5174 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1c23af90 | 5175 | S: Supported |
679655da JP |
5176 | F: drivers/i2c/busses/i2c-gpio.c |
5177 | F: include/linux/i2c-gpio.h | |
1c23af90 | 5178 | |
92ed1a76 PK |
5179 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
5180 | M: Peter Korsgaard <peter.korsgaard@barco.com> | |
5181 | L: linux-i2c@vger.kernel.org | |
5182 | S: Supported | |
e7065e20 JD |
5183 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
5184 | F: include/linux/i2c-mux-gpio.h | |
5185 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 5186 | |
9251ce95 | 5187 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 5188 | M: Krzysztof Halasa <khc@pm.waw.pl> |
1da177e4 LT |
5189 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
5190 | S: Maintained | |
679655da JP |
5191 | F: drivers/net/wan/c101.c |
5192 | F: drivers/net/wan/hd6457* | |
5193 | F: drivers/net/wan/hdlc* | |
5194 | F: drivers/net/wan/n2.c | |
5195 | F: drivers/net/wan/pc300too.c | |
5196 | F: drivers/net/wan/pci200syn.c | |
5197 | F: drivers/net/wan/wanxl* | |
1da177e4 | 5198 | |
1527aab6 | 5199 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 5200 | M: Arnd Bergmann <arnd@arndb.de> |
1527aab6 AB |
5201 | L: linux-arch@vger.kernel.org |
5202 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
5203 | S: Maintained | |
14430813 JP |
5204 | F: include/asm-generic/ |
5205 | F: include/uapi/asm-generic/ | |
1527aab6 | 5206 | |
ff764963 KVA |
5207 | GENERIC PHY FRAMEWORK |
5208 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
5209 | L: linux-kernel@vger.kernel.org | |
5210 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git | |
5211 | S: Supported | |
5212 | F: drivers/phy/ | |
5213 | F: include/linux/phy/ | |
5214 | ||
eea97aed KH |
5215 | GENERIC PM DOMAINS |
5216 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> | |
5217 | M: Kevin Hilman <khilman@kernel.org> | |
5218 | M: Ulf Hansson <ulf.hansson@linaro.org> | |
5219 | L: linux-pm@vger.kernel.org | |
5220 | S: Supported | |
5221 | F: drivers/base/power/domain*.c | |
5222 | F: include/linux/pm_domain.h | |
5223 | ||
ccb86a69 | 5224 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 5225 | M: "Michael S. Tsirkin" <mst@redhat.com> |
ccb86a69 | 5226 | L: kvm@vger.kernel.org |
ccb86a69 MT |
5227 | S: Supported |
5228 | F: drivers/uio/uio_pci_generic.c | |
5229 | ||
f8f1ec73 JP |
5230 | GET_MAINTAINER SCRIPT |
5231 | M: Joe Perches <joe@perches.com> | |
5232 | S: Maintained | |
5233 | F: scripts/get_maintainer.pl | |
5234 | ||
5be7b50f | 5235 | GFS2 FILE SYSTEM |
8b58be88 | 5236 | M: Steven Whitehouse <swhiteho@redhat.com> |
28666d6d | 5237 | M: Bob Peterson <rpeterso@redhat.com> |
a4644184 | 5238 | L: cluster-devel@redhat.com |
5be7b50f | 5239 | W: http://sources.redhat.com/cluster/ |
28666d6d | 5240 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git |
5be7b50f | 5241 | S: Supported |
679655da JP |
5242 | F: Documentation/filesystems/gfs2*.txt |
5243 | F: fs/gfs2/ | |
c117ab84 | 5244 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 5245 | |
0a34eb8f | 5246 | GIGASET ISDN DRIVERS |
6b096fde | 5247 | M: Paul Bolle <pebolle@tiscali.nl> |
0a34eb8f HL |
5248 | L: gigaset307x-common@lists.sourceforge.net |
5249 | W: http://gigaset307x.sourceforge.net/ | |
6b096fde | 5250 | S: Odd Fixes |
679655da JP |
5251 | F: Documentation/isdn/README.gigaset |
5252 | F: drivers/isdn/gigaset/ | |
c117ab84 | 5253 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 5254 | |
7eea35fe JP |
5255 | GO7007 MPEG CODEC |
5256 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
5257 | L: linux-media@vger.kernel.org | |
5258 | S: Maintained | |
5259 | F: drivers/media/usb/go7007/ | |
5260 | ||
ca96ea86 BN |
5261 | GOODIX TOUCHSCREEN |
5262 | M: Bastien Nocera <hadess@hadess.net> | |
5263 | L: linux-input@vger.kernel.org | |
5264 | S: Maintained | |
5265 | F: drivers/input/touchscreen/goodix.c | |
5266 | ||
a0dc00b4 | 5267 | GPIO SUBSYSTEM |
e4651a9f | 5268 | M: Linus Walleij <linus.walleij@linaro.org> |
f2fa75cd | 5269 | M: Alexandre Courbot <gnurou@gmail.com> |
d15b7179 | 5270 | L: linux-gpio@vger.kernel.org |
f2fa75cd LW |
5271 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git |
5272 | S: Maintained | |
cd97a449 | 5273 | F: Documentation/devicetree/bindings/gpio/ |
f2fa75cd | 5274 | F: Documentation/gpio/ |
40c159b7 | 5275 | F: Documentation/ABI/testing/gpio-cdev |
fe95046e | 5276 | F: Documentation/ABI/obsolete/sysfs-gpio |
a0dc00b4 | 5277 | F: drivers/gpio/ |
bdc6e95e AC |
5278 | F: include/linux/gpio/ |
5279 | F: include/linux/gpio.h | |
9b692346 | 5280 | F: include/asm-generic/gpio.h |
3c702e99 | 5281 | F: include/uapi/linux/gpio.h |
6d591c46 | 5282 | F: tools/gpio/ |
a0dc00b4 | 5283 | |
71a6d0af HW |
5284 | GRE DEMULTIPLEXER DRIVER |
5285 | M: Dmitry Kozlov <xeb@mail.ru> | |
5286 | L: netdev@vger.kernel.org | |
5287 | S: Maintained | |
11c26770 JP |
5288 | F: net/ipv4/gre_demux.c |
5289 | F: net/ipv4/gre_offload.c | |
71a6d0af HW |
5290 | F: include/net/gre.h |
5291 | ||
d4c41139 | 5292 | GRETH 10/100/1G Ethernet MAC device driver |
bbdd09eb | 5293 | M: Andreas Larsson <andreas@gaisler.com> |
d4c41139 KG |
5294 | L: netdev@vger.kernel.org |
5295 | S: Maintained | |
a31a96ad | 5296 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 5297 | |
e8deeae2 | 5298 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 5299 | M: Frank Zago <frank@zago.net> |
661263b5 | 5300 | L: linux-media@vger.kernel.org |
275ffde4 | 5301 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 5302 | S: Maintained |
0c0d06ca | 5303 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 5304 | |
4b3fa3c4 OL |
5305 | GSPCA GL860 SUBDRIVER |
5306 | M: Olivier Lorin <o.lorin@laposte.net> | |
5307 | L: linux-media@vger.kernel.org | |
275ffde4 | 5308 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 5309 | S: Maintained |
0c0d06ca | 5310 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 5311 | |
e8deeae2 | 5312 | GSPCA M5602 SUBDRIVER |
8b58be88 | 5313 | M: Erik Andren <erik.andren@gmail.com> |
661263b5 | 5314 | L: linux-media@vger.kernel.org |
275ffde4 | 5315 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 5316 | S: Maintained |
0c0d06ca | 5317 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
5318 | |
5319 | GSPCA PAC207 SONIXB SUBDRIVER | |
c0936df4 | 5320 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 5321 | L: linux-media@vger.kernel.org |
275ffde4 | 5322 | T: git git://linuxtv.org/media_tree.git |
c0936df4 | 5323 | S: Odd Fixes |
0c0d06ca | 5324 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 5325 | |
261982f1 | 5326 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 5327 | M: Brian Johnson <brijohn@gmail.com> |
261982f1 | 5328 | L: linux-media@vger.kernel.org |
275ffde4 | 5329 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 5330 | S: Maintained |
0c0d06ca | 5331 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 5332 | |
e8deeae2 | 5333 | GSPCA T613 SUBDRIVER |
8b58be88 | 5334 | M: Leandro Costantino <lcostantino@gmail.com> |
661263b5 | 5335 | L: linux-media@vger.kernel.org |
275ffde4 | 5336 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 5337 | S: Maintained |
0c0d06ca | 5338 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
5339 | |
5340 | GSPCA USB WEBCAM DRIVER | |
c0936df4 | 5341 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 5342 | L: linux-media@vger.kernel.org |
275ffde4 | 5343 | T: git git://linuxtv.org/media_tree.git |
c0936df4 | 5344 | S: Odd Fixes |
0c0d06ca | 5345 | F: drivers/media/usb/gspca/ |
e8deeae2 | 5346 | |
584ec979 | 5347 | GUID PARTITION TABLE (GPT) |
4f973c63 | 5348 | M: Davidlohr Bueso <dave@stgolabs.net> |
584ec979 DB |
5349 | L: linux-efi@vger.kernel.org |
5350 | S: Maintained | |
5351 | F: block/partitions/efi.* | |
5352 | ||
aa3c598b | 5353 | STK1160 USB VIDEO CAPTURE DRIVER |
3259aa57 | 5354 | M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> |
aa3c598b | 5355 | L: linux-media@vger.kernel.org |
275ffde4 | 5356 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
5357 | S: Maintained |
5358 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 5359 | |
4e456b86 YS |
5360 | H8/300 ARCHITECTURE |
5361 | M: Yoshinori Sato <ysato@users.sourceforge.jp> | |
b992c768 | 5362 | L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers) |
4e456b86 YS |
5363 | W: http://uclinux-h8.sourceforge.jp |
5364 | T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git | |
5365 | S: Maintained | |
5366 | F: arch/h8300/ | |
5367 | F: drivers/clocksource/h8300_*.c | |
5368 | F: drivers/clk/h8300/ | |
5369 | F: drivers/irqchip/irq-renesas-h8*.c | |
5370 | ||
71a6d0af HW |
5371 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
5372 | M: Frank Seidel <frank@f-seidel.de> | |
5373 | L: platform-driver-x86@vger.kernel.org | |
5374 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
5375 | S: Maintained | |
5376 | F: drivers/platform/x86/hdaps.c | |
5377 | ||
48fc9e26 HV |
5378 | HDPVR USB VIDEO ENCODER DRIVER |
5379 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5380 | L: linux-media@vger.kernel.org | |
5381 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 5382 | W: https://linuxtv.org |
48fc9e26 | 5383 | S: Odd Fixes |
14430813 | 5384 | F: drivers/media/usb/hdpvr/ |
48fc9e26 | 5385 | |
71a6d0af | 5386 | HWPOISON MEMORY FAILURE HANDLING |
f9625c48 | 5387 | M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> |
71a6d0af | 5388 | L: linux-mm@kvack.org |
71a6d0af HW |
5389 | S: Maintained |
5390 | F: mm/memory-failure.c | |
5391 | F: mm/hwpoison-inject.c | |
5392 | ||
5393 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
5394 | L: linuxppc-dev@lists.ozlabs.org | |
5395 | S: Odd Fixes | |
5396 | F: drivers/tty/hvc/ | |
5397 | ||
e5ab1477 AP |
5398 | HACKRF MEDIA DRIVER |
5399 | M: Antti Palosaari <crope@iki.fi> | |
5400 | L: linux-media@vger.kernel.org | |
a825eaec | 5401 | W: https://linuxtv.org |
e5ab1477 AP |
5402 | W: http://palosaari.fi/linux/ |
5403 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5404 | T: git git://linuxtv.org/anttip/media_tree.git | |
5405 | S: Maintained | |
5406 | F: drivers/media/usb/hackrf/ | |
5407 | ||
5b543965 | 5408 | HARDWARE MONITORING |
d8130624 | 5409 | M: Jean Delvare <jdelvare@suse.com> |
ca462085 | 5410 | M: Guenter Roeck <linux@roeck-us.net> |
968ce1b1 GR |
5411 | L: linux-hwmon@vger.kernel.org |
5412 | W: http://hwmon.wiki.kernel.org/ | |
a94ef4ed | 5413 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/ |
885374e3 | 5414 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 5415 | S: Maintained |
047f4ec2 | 5416 | F: Documentation/hwmon/ |
679655da | 5417 | F: drivers/hwmon/ |
047f4ec2 | 5418 | F: include/linux/hwmon*.h |
5b543965 | 5419 | |
844dd05f | 5420 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
5421 | M: Matt Mackall <mpm@selenic.com> |
5422 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
3eda7167 | 5423 | L: linux-crypto@vger.kernel.org |
c0d0787b | 5424 | S: Odd fixes |
f6c60b15 | 5425 | F: Documentation/devicetree/bindings/rng/ |
679655da JP |
5426 | F: Documentation/hw_random.txt |
5427 | F: drivers/char/hw_random/ | |
5428 | F: include/linux/hw_random.h | |
844dd05f | 5429 | |
8b37fcfc OBC |
5430 | HARDWARE SPINLOCK CORE |
5431 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
69ae9895 | 5432 | M: Bjorn Andersson <bjorn.andersson@linaro.org> |
d7586849 | 5433 | L: linux-remoteproc@vger.kernel.org |
8b37fcfc | 5434 | S: Maintained |
9f273c24 | 5435 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git |
2dbd8585 | 5436 | F: Documentation/devicetree/bindings/hwlock/ |
8b37fcfc | 5437 | F: Documentation/hwspinlock.txt |
2dbd8585 | 5438 | F: drivers/hwspinlock/ |
8b37fcfc OBC |
5439 | F: include/linux/hwspinlock.h |
5440 | ||
1da177e4 | 5441 | HARMONY SOUND DRIVER |
ac6aecbf | 5442 | L: linux-parisc@vger.kernel.org |
1da177e4 | 5443 | S: Maintained |
679655da | 5444 | F: sound/parisc/harmony.* |
1da177e4 | 5445 | |
91952bc0 AP |
5446 | HD29L2 MEDIA DRIVER |
5447 | M: Antti Palosaari <crope@iki.fi> | |
5448 | L: linux-media@vger.kernel.org | |
a825eaec | 5449 | W: https://linuxtv.org |
91952bc0 AP |
5450 | W: http://palosaari.fi/linux/ |
5451 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5452 | T: git git://linuxtv.org/anttip/media_tree.git | |
5453 | S: Maintained | |
5454 | F: drivers/media/dvb-frontends/hd29l2* | |
5455 | ||
214de83e BB |
5456 | HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER |
5457 | M: Brian Boylston <brian.boylston@hpe.com> | |
5458 | S: Supported | |
5459 | F: Documentation/watchdog/hpwdt.txt | |
5460 | F: drivers/watchdog/hpwdt.c | |
5461 | ||
9257aa49 | 5462 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
a0a268ad | 5463 | M: Don Brace <don.brace@microsemi.com> |
9257aa49 | 5464 | L: iss_storagedev@hp.com |
a0a268ad | 5465 | L: esc.storagedev@microsemi.com |
693373db | 5466 | L: linux-scsi@vger.kernel.org |
9257aa49 SC |
5467 | S: Supported |
5468 | F: Documentation/scsi/hpsa.txt | |
5469 | F: drivers/scsi/hpsa*.[ch] | |
5470 | F: include/linux/cciss*.h | |
c117ab84 | 5471 | F: include/uapi/linux/cciss*.h |
9257aa49 | 5472 | |
e2d1d6c0 | 5473 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
516fdcea | 5474 | M: Don Brace <don.brace@microsemi.com> |
e2d1d6c0 | 5475 | L: iss_storagedev@hp.com |
516fdcea | 5476 | L: esc.storagedev@microsemi.com |
693373db | 5477 | L: linux-scsi@vger.kernel.org |
e2d1d6c0 | 5478 | S: Supported |
679655da JP |
5479 | F: Documentation/blockdev/cciss.txt |
5480 | F: drivers/block/cciss* | |
5481 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 5482 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 5483 | |
f48ad614 DD |
5484 | HFI1 DRIVER |
5485 | M: Mike Marciniszyn <mike.marciniszyn@intel.com> | |
5486 | M: Dennis Dalessandro <dennis.dalessandro@intel.com> | |
5487 | L: linux-rdma@vger.kernel.org | |
5488 | S: Supported | |
5489 | F: drivers/infiniband/hw/hfi1 | |
5490 | ||
1da177e4 | 5491 | HFS FILESYSTEM |
6cf515e1 GU |
5492 | L: linux-fsdevel@vger.kernel.org |
5493 | S: Orphan | |
679655da JP |
5494 | F: Documentation/filesystems/hfs.txt |
5495 | F: fs/hfs/ | |
1da177e4 | 5496 | |
ef575f47 GU |
5497 | HFSPLUS FILESYSTEM |
5498 | L: linux-fsdevel@vger.kernel.org | |
5499 | S: Orphan | |
5500 | F: Documentation/filesystems/hfsplus.txt | |
5501 | F: fs/hfsplus/ | |
5502 | ||
1da177e4 | 5503 | HGA FRAMEBUFFER DRIVER |
8b58be88 | 5504 | M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> |
1da177e4 LT |
5505 | L: linux-nvidia@lists.surfsouth.com |
5506 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
5507 | S: Maintained | |
8a61f013 | 5508 | F: drivers/video/fbdev/hgafb.c |
1da177e4 | 5509 | |
4480f15b | 5510 | HIBERNATION (aka Software Suspend, aka swsusp) |
49db1903 | 5511 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 5512 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 5513 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 5514 | S: Supported |
679655da JP |
5515 | F: arch/x86/power/ |
5516 | F: drivers/base/power/ | |
5517 | F: kernel/power/ | |
5518 | F: include/linux/suspend.h | |
5519 | F: include/linux/freezer.h | |
5520 | F: include/linux/pm.h | |
679655da | 5521 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 5522 | |
4ef4caad | 5523 | HID CORE LAYER |
e5f6450c | 5524 | M: Jiri Kosina <jikos@kernel.org> |
406df153 | 5525 | R: Benjamin Tissoires <benjamin.tissoires@redhat.com> |
eb76c5c0 | 5526 | L: linux-input@vger.kernel.org |
54e5881d | 5527 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 5528 | S: Maintained |
679655da JP |
5529 | F: drivers/hid/ |
5530 | F: include/linux/hid* | |
c117ab84 | 5531 | F: include/uapi/linux/hid* |
4ef4caad | 5532 | |
30ee72f0 | 5533 | HID SENSOR HUB DRIVERS |
e5f6450c | 5534 | M: Jiri Kosina <jikos@kernel.org> |
30ee72f0 SP |
5535 | M: Jonathan Cameron <jic23@kernel.org> |
5536 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> | |
5537 | L: linux-input@vger.kernel.org | |
5538 | L: linux-iio@vger.kernel.org | |
5539 | S: Maintained | |
5540 | F: Documentation/hid/hid-sensor* | |
5541 | F: drivers/hid/hid-sensor-* | |
5542 | F: drivers/iio/*/hid-* | |
5543 | F: include/linux/hid-sensor-* | |
5544 | ||
38bed542 | 5545 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 5546 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 5547 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 5548 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 5549 | S: Maintained |
679655da | 5550 | F: Documentation/timers/ |
5cee9645 | 5551 | F: kernel/time/hrtimer.c |
88606e80 TG |
5552 | F: kernel/time/clockevents.c |
5553 | F: kernel/time/tick*.* | |
5554 | F: kernel/time/timer_*.c | |
05ed8490 | 5555 | F: include/linux/clockchips.h |
679655da | 5556 | F: include/linux/hrtimer.h |
38bed542 | 5557 | |
1da177e4 | 5558 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 5559 | L: linux-hams@vger.kernel.org |
8b64f2a0 | 5560 | S: Orphan |
679655da JP |
5561 | F: drivers/net/hamradio/dmascc.c |
5562 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 5563 | |
ede1e6f8 | 5564 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 5565 | M: HighPoint Linux Team <linux@highpoint-tech.com> |
ede1e6f8 HLT |
5566 | W: http://www.highpoint-tech.com |
5567 | S: Supported | |
679655da JP |
5568 | F: Documentation/scsi/hptiop.txt |
5569 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 5570 | |
1da177e4 | 5571 | HIPPI |
8b58be88 | 5572 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
5573 | L: linux-hippi@sunsite.dk |
5574 | S: Maintained | |
679655da | 5575 | F: include/linux/hippidevice.h |
c117ab84 | 5576 | F: include/uapi/linux/if_hippi.h |
679655da | 5577 | F: net/802/hippi.c |
ff5a3b50 | 5578 | F: drivers/net/hippi/ |
1da177e4 | 5579 | |
b30d74e4 DH |
5580 | HISILICON NETWORK SUBSYSTEM DRIVER |
5581 | M: Yisen Zhuang <yisen.zhuang@huawei.com> | |
5582 | M: Salil Mehta <salil.mehta@huawei.com> | |
5583 | L: netdev@vger.kernel.org | |
5584 | W: http://www.hisilicon.com | |
5585 | S: Maintained | |
5586 | F: drivers/net/ethernet/hisilicon/ | |
5587 | F: Documentation/devicetree/bindings/net/hisilicon*.txt | |
5588 | ||
16c6c252 JG |
5589 | HISILICON SAS Controller |
5590 | M: John Garry <john.garry@huawei.com> | |
5591 | W: http://www.hisilicon.com | |
5592 | S: Supported | |
5593 | F: drivers/scsi/hisi_sas/ | |
5594 | F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt | |
5595 | ||
ff1d2767 | 5596 | HOST AP DRIVER |
8b58be88 | 5597 | M: Jouni Malinen <j@w1.fi> |
85d32e7b | 5598 | L: hostap@shmoo.com (subscribers-only) |
724c6b35 | 5599 | L: linux-wireless@vger.kernel.org |
ff1d2767 JM |
5600 | W: http://hostap.epitest.fi/ |
5601 | S: Maintained | |
eb4f98d5 | 5602 | F: drivers/net/wireless/intersil/hostap/ |
ff1d2767 | 5603 | |
dd8cd779 | 5604 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 5605 | L: platform-driver-x86@vger.kernel.org |
95c70215 | 5606 | S: Orphan |
679655da | 5607 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 5608 | |
e2d1d6c0 | 5609 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 5610 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 5611 | S: Maintained |
7e25d724 | 5612 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 5613 | |
7d2c86b5 | 5614 | HPET: High Precision Event Timers driver |
8b58be88 | 5615 | M: Clemens Ladisch <clemens@ladisch.de> |
b9b0332f | 5616 | S: Maintained |
679655da JP |
5617 | F: Documentation/timers/hpet.txt |
5618 | F: drivers/char/hpet.c | |
5619 | F: include/linux/hpet.h | |
c117ab84 | 5620 | F: include/uapi/linux/hpet.h |
b9b0332f | 5621 | |
e07b5d79 | 5622 | HPET: x86 |
9e06f631 | 5623 | S: Orphan |
679655da JP |
5624 | F: arch/x86/kernel/hpet.c |
5625 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 5626 | |
1da177e4 | 5627 | HPFS FILESYSTEM |
8b58be88 | 5628 | M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> |
1da177e4 LT |
5629 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
5630 | S: Maintained | |
679655da | 5631 | F: fs/hpfs/ |
1da177e4 | 5632 | |
3441cded | 5633 | HSI SUBSYSTEM |
56459ea9 SR |
5634 | M: Sebastian Reichel <sre@kernel.org> |
5635 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git | |
3441cded SR |
5636 | S: Maintained |
5637 | F: Documentation/ABI/testing/sysfs-bus-hsi | |
56459ea9 | 5638 | F: Documentation/hsi.txt |
3441cded SR |
5639 | F: drivers/hsi/ |
5640 | F: include/linux/hsi/ | |
5641 | F: include/uapi/linux/hsi/ | |
5642 | ||
7d2c86b5 | 5643 | HSO 3G MODEM DRIVER |
8b58be88 | 5644 | M: Jan Dumon <j.dumon@option.com> |
11cd29b0 DJB |
5645 | W: http://www.pharscape.org |
5646 | S: Maintained | |
679655da | 5647 | F: drivers/net/usb/hso.c |
11cd29b0 | 5648 | |
19990e29 AB |
5649 | HSR NETWORK PROTOCOL |
5650 | M: Arvid Brodin <arvid.brodin@alten.se> | |
5651 | L: netdev@vger.kernel.org | |
5652 | S: Maintained | |
5653 | F: net/hsr/ | |
5654 | ||
5a18c343 | 5655 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 5656 | M: Pau Oliva Fora <pof@eslack.org> |
5a18c343 POF |
5657 | L: linux-input@vger.kernel.org |
5658 | S: Maintained | |
679655da | 5659 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 5660 | |
1da177e4 | 5661 | HUGETLB FILESYSTEM |
6d49e352 | 5662 | M: Nadia Yvette Chambers <nyc@holomorphy.com> |
1da177e4 | 5663 | S: Maintained |
679655da | 5664 | F: fs/hugetlbfs/ |
1da177e4 | 5665 | |
05183189 | 5666 | Hyper-V CORE AND DRIVERS |
9c3646d1 | 5667 | M: "K. Y. Srinivasan" <kys@microsoft.com> |
05183189 S |
5668 | M: Haiyang Zhang <haiyangz@microsoft.com> |
5669 | L: devel@linuxdriverproject.org | |
5670 | S: Maintained | |
a4162747 HZ |
5671 | F: arch/x86/include/asm/mshyperv.h |
5672 | F: arch/x86/include/uapi/asm/hyperv.h | |
5673 | F: arch/x86/kernel/cpu/mshyperv.c | |
05183189 | 5674 | F: drivers/hid/hid-hyperv.c |
a4162747 | 5675 | F: drivers/hv/ |
f92ca80b | 5676 | F: drivers/input/serio/hyperv-keyboard.c |
4daace0d | 5677 | F: drivers/pci/host/pci-hyperv.c |
05183189 | 5678 | F: drivers/net/hyperv/ |
a4162747 | 5679 | F: drivers/scsi/storvsc_drv.c |
8a61f013 | 5680 | F: drivers/video/fbdev/hyperv_fb.c |
a4162747 HZ |
5681 | F: include/linux/hyperv.h |
5682 | F: tools/hv/ | |
54bf725e | 5683 | F: Documentation/ABI/stable/sysfs-bus-vmbus |
05183189 | 5684 | |
7724fd04 PR |
5685 | I2C MUXES |
5686 | M: Peter Rosin <peda@axentia.se> | |
5687 | L: linux-i2c@vger.kernel.org | |
5688 | S: Maintained | |
2254d24a | 5689 | F: Documentation/i2c/i2c-topology |
7724fd04 PR |
5690 | F: Documentation/i2c/muxes/ |
5691 | F: Documentation/devicetree/bindings/i2c/i2c-mux* | |
5692 | F: drivers/i2c/i2c-mux.c | |
5693 | F: drivers/i2c/muxes/ | |
5694 | F: include/linux/i2c-mux.h | |
5695 | ||
d85c8a6a | 5696 | I2C OVER PARALLEL PORT |
d8130624 | 5697 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
5698 | L: linux-i2c@vger.kernel.org |
5699 | S: Maintained | |
5700 | F: Documentation/i2c/busses/i2c-parport | |
5701 | F: Documentation/i2c/busses/i2c-parport-light | |
5702 | F: drivers/i2c/busses/i2c-parport.c | |
5703 | F: drivers/i2c/busses/i2c-parport-light.c | |
5704 | ||
5705 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
d8130624 | 5706 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
5707 | L: linux-i2c@vger.kernel.org |
5708 | S: Maintained | |
5709 | F: Documentation/i2c/busses/i2c-ali1535 | |
5710 | F: Documentation/i2c/busses/i2c-ali1563 | |
5711 | F: Documentation/i2c/busses/i2c-ali15x3 | |
5712 | F: Documentation/i2c/busses/i2c-amd756 | |
5713 | F: Documentation/i2c/busses/i2c-amd8111 | |
5714 | F: Documentation/i2c/busses/i2c-i801 | |
5715 | F: Documentation/i2c/busses/i2c-nforce2 | |
5716 | F: Documentation/i2c/busses/i2c-piix4 | |
5717 | F: Documentation/i2c/busses/i2c-sis5595 | |
5718 | F: Documentation/i2c/busses/i2c-sis630 | |
5719 | F: Documentation/i2c/busses/i2c-sis96x | |
5720 | F: Documentation/i2c/busses/i2c-via | |
5721 | F: Documentation/i2c/busses/i2c-viapro | |
5722 | F: drivers/i2c/busses/i2c-ali1535.c | |
5723 | F: drivers/i2c/busses/i2c-ali1563.c | |
5724 | F: drivers/i2c/busses/i2c-ali15x3.c | |
5725 | F: drivers/i2c/busses/i2c-amd756.c | |
5726 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
5727 | F: drivers/i2c/busses/i2c-amd8111.c | |
5728 | F: drivers/i2c/busses/i2c-i801.c | |
5729 | F: drivers/i2c/busses/i2c-isch.c | |
5730 | F: drivers/i2c/busses/i2c-nforce2.c | |
5731 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
5732 | F: drivers/i2c/busses/i2c-piix4.c | |
5733 | F: drivers/i2c/busses/i2c-sis5595.c | |
5734 | F: drivers/i2c/busses/i2c-sis630.c | |
5735 | F: drivers/i2c/busses/i2c-sis96x.c | |
5736 | F: drivers/i2c/busses/i2c-via.c | |
5737 | F: drivers/i2c/busses/i2c-viapro.c | |
5738 | ||
cb7f07a4 NH |
5739 | I2C/SMBUS ISMT DRIVER |
5740 | M: Seth Heasley <seth.heasley@intel.com> | |
5741 | M: Neil Horman <nhorman@tuxdriver.com> | |
5742 | L: linux-i2c@vger.kernel.org | |
5743 | F: drivers/i2c/busses/i2c-ismt.c | |
5744 | F: Documentation/i2c/busses/i2c-ismt | |
5745 | ||
6ea884db | 5746 | I2C/SMBUS STUB DRIVER |
d8130624 | 5747 | M: Jean Delvare <jdelvare@suse.com> |
846557d3 | 5748 | L: linux-i2c@vger.kernel.org |
6ea884db | 5749 | S: Maintained |
8547a5bc | 5750 | F: drivers/i2c/i2c-stub.c |
6ea884db | 5751 | |
5b543965 | 5752 | I2C SUBSYSTEM |
14d77c4d | 5753 | M: Wolfram Sang <wsa@the-dreams.de> |
846557d3 | 5754 | L: linux-i2c@vger.kernel.org |
9d4ea27a WS |
5755 | W: https://i2c.wiki.kernel.org/ |
5756 | Q: https://patchwork.ozlabs.org/project/linux-i2c/list/ | |
14d77c4d | 5757 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
1da177e4 | 5758 | S: Maintained |
40ed1b4c | 5759 | F: Documentation/devicetree/bindings/i2c/ |
679655da JP |
5760 | F: Documentation/i2c/ |
5761 | F: drivers/i2c/ | |
630bc46e | 5762 | F: drivers/i2c/*/ |
679655da | 5763 | F: include/linux/i2c.h |
03b70d62 | 5764 | F: include/linux/i2c-*.h |
c117ab84 CEB |
5765 | F: include/uapi/linux/i2c.h |
5766 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 5767 | |
4560d677 WS |
5768 | I2C ACPI SUPPORT |
5769 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
5770 | L: linux-i2c@vger.kernel.org | |
5771 | L: linux-acpi@vger.kernel.org | |
5772 | S: Maintained | |
4560d677 | 5773 | |
d85c8a6a | 5774 | I2C-TAOS-EVM DRIVER |
d8130624 | 5775 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
5776 | L: linux-i2c@vger.kernel.org |
5777 | S: Maintained | |
5778 | F: Documentation/i2c/busses/i2c-taos-evm | |
5779 | F: drivers/i2c/busses/i2c-taos-evm.c | |
5780 | ||
e8c76eed | 5781 | I2C-TINY-USB DRIVER |
8b58be88 | 5782 | M: Till Harbaum <till@harbaum.org> |
846557d3 | 5783 | L: linux-i2c@vger.kernel.org |
932d1872 | 5784 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 5785 | S: Maintained |
679655da | 5786 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 5787 | |
1da177e4 | 5788 | i386 BOOT CODE |
8b58be88 | 5789 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 5790 | S: Maintained |
679655da | 5791 | F: arch/x86/boot/ |
1da177e4 LT |
5792 | |
5793 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 5794 | M: "H. Peter Anvin" <hpa@zytor.com> |
54e5881d | 5795 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
5796 | S: Maintained |
5797 | ||
1da177e4 | 5798 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
5799 | M: Tony Luck <tony.luck@intel.com> |
5800 | M: Fenghua Yu <fenghua.yu@intel.com> | |
1da177e4 | 5801 | L: linux-ia64@vger.kernel.org |
6b1c70b1 | 5802 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 5803 | S: Maintained |
679655da | 5804 | F: arch/ia64/ |
1da177e4 | 5805 | |
4cd38750 LDSB |
5806 | IBM Power VMX Cryptographic instructions |
5807 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> | |
5cd01fe1 | 5808 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> |
4cd38750 LDSB |
5809 | L: linux-crypto@vger.kernel.org |
5810 | S: Supported | |
5811 | F: drivers/crypto/vmx/Makefile | |
5812 | F: drivers/crypto/vmx/Kconfig | |
5813 | F: drivers/crypto/vmx/vmx.c | |
5814 | F: drivers/crypto/vmx/aes* | |
5815 | F: drivers/crypto/vmx/ghash* | |
5816 | F: drivers/crypto/vmx/ppc-xlate.pl | |
5817 | ||
956c203c | 5818 | IBM Power in-Nest Crypto Acceleration |
4cd38750 | 5819 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> |
5cd01fe1 | 5820 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> |
956c203c KY |
5821 | L: linux-crypto@vger.kernel.org |
5822 | S: Supported | |
28bceeaa DS |
5823 | F: drivers/crypto/nx/Makefile |
5824 | F: drivers/crypto/nx/Kconfig | |
5825 | F: drivers/crypto/nx/nx-aes* | |
5826 | F: drivers/crypto/nx/nx-sha* | |
5827 | F: drivers/crypto/nx/nx.* | |
5828 | F: drivers/crypto/nx/nx_csbcpb.h | |
5829 | F: drivers/crypto/nx/nx_debugfs.h | |
956c203c | 5830 | |
0e16aafb | 5831 | IBM Power 842 compression accelerator |
41656aa7 | 5832 | M: Dan Streetman <ddstreet@ieee.org> |
0e16aafb | 5833 | S: Supported |
28bceeaa DS |
5834 | F: drivers/crypto/nx/Makefile |
5835 | F: drivers/crypto/nx/Kconfig | |
7011a122 | 5836 | F: drivers/crypto/nx/nx-842* |
2da572c9 | 5837 | F: include/linux/sw842.h |
2062c5b6 | 5838 | F: crypto/842.c |
2da572c9 | 5839 | F: lib/842/ |
0e16aafb | 5840 | |
1da177e4 | 5841 | IBM Power Linux RAID adapter |
8b58be88 | 5842 | M: Brian King <brking@us.ibm.com> |
1da177e4 | 5843 | S: Supported |
679655da | 5844 | F: drivers/scsi/ipr.* |
1da177e4 | 5845 | |
9d348af4 | 5846 | IBM Power Virtual Ethernet Device Driver |
eddd63a6 | 5847 | M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> |
9d348af4 SL |
5848 | L: netdev@vger.kernel.org |
5849 | S: Supported | |
9aa32835 | 5850 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 5851 | |
032c5e82 TF |
5852 | IBM Power SRIOV Virtual NIC Device Driver |
5853 | M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> | |
5854 | M: John Allen <jallen@linux.vnet.ibm.com> | |
5855 | L: netdev@vger.kernel.org | |
5856 | S: Supported | |
5857 | F: drivers/net/ethernet/ibm/ibmvnic.* | |
5858 | ||
e6babec6 | 5859 | IBM Power Virtual SCSI Device Drivers |
bcbde52b | 5860 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
4b7652cc RJ |
5861 | L: linux-scsi@vger.kernel.org |
5862 | S: Supported | |
e6babec6 | 5863 | F: drivers/scsi/ibmvscsi/ibmvscsi* |
88a678bb BL |
5864 | F: include/scsi/viosrp.h |
5865 | ||
5866 | IBM Power Virtual SCSI Device Target Driver | |
5867 | M: Bryant G. Ly <bryantly@linux.vnet.ibm.com> | |
5868 | M: Michael Cyr <mikecyr@linux.vnet.ibm.com> | |
5869 | L: linux-scsi@vger.kernel.org | |
5870 | L: target-devel@vger.kernel.org | |
5871 | S: Supported | |
5872 | F: drivers/scsi/ibmvscsi_tgt/ | |
e6babec6 NF |
5873 | |
5874 | IBM Power Virtual FC Device Drivers | |
44b4dad9 | 5875 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
e6babec6 NF |
5876 | L: linux-scsi@vger.kernel.org |
5877 | S: Supported | |
5878 | F: drivers/scsi/ibmvscsi/ibmvfc* | |
4b7652cc | 5879 | |
1da177e4 | 5880 | IBM ServeRAID RAID DRIVER |
f9213e78 | 5881 | S: Orphan |
679655da | 5882 | F: drivers/scsi/ips.* |
1da177e4 | 5883 | |
6ed9f9c4 PT |
5884 | ICH LPC AND GPIO DRIVER |
5885 | M: Peter Tyser <ptyser@xes-inc.com> | |
5886 | S: Maintained | |
5887 | F: drivers/mfd/lpc_ich.c | |
5888 | F: drivers/gpio/gpio-ich.c | |
5889 | ||
1e7106fc | 5890 | IDE SUBSYSTEM |
8b58be88 | 5891 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 5892 | L: linux-ide@vger.kernel.org |
8a6e2535 | 5893 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 5894 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 5895 | S: Maintained |
679655da JP |
5896 | F: Documentation/ide/ |
5897 | F: drivers/ide/ | |
5898 | F: include/linux/ide.h | |
1da177e4 | 5899 | |
6cb8c13d IP |
5900 | IDEAPAD LAPTOP EXTRAS DRIVER |
5901 | M: Ike Panhc <ike.pan@canonical.com> | |
5902 | L: platform-driver-x86@vger.kernel.org | |
5903 | W: http://launchpad.net/ideapad-laptop | |
5904 | S: Maintained | |
5905 | F: drivers/platform/x86/ideapad-laptop.c | |
5906 | ||
1ea4c161 AM |
5907 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
5908 | M: Andrey Moiseev <o2g.org.ru@gmail.com> | |
5909 | L: linux-input@vger.kernel.org | |
5910 | W: https://github.com/o2genum/ideapad-slidebar | |
5911 | S: Maintained | |
5912 | F: drivers/input/misc/ideapad_slidebar.c | |
5913 | ||
0f861e8c | 5914 | IDE/ATAPI DRIVERS |
487ba8e8 | 5915 | M: Borislav Petkov <bp@alien8.de> |
9c5b0ce4 | 5916 | L: linux-ide@vger.kernel.org |
c404c199 | 5917 | S: Maintained |
679655da JP |
5918 | F: Documentation/cdrom/ide-cd |
5919 | F: drivers/ide/ide-cd* | |
1da177e4 | 5920 | |
27471fdb | 5921 | IDLE-I7300 |
8b58be88 | 5922 | M: Andy Henroid <andrew.d.henroid@intel.com> |
bf1c138e | 5923 | L: linux-pm@vger.kernel.org |
27471fdb | 5924 | S: Supported |
679655da | 5925 | F: drivers/idle/i7300_idle.c |
27471fdb | 5926 | |
02cf2286 | 5927 | IEEE 802.15.4 SUBSYSTEM |
aff3eaa0 | 5928 | M: Alexander Aring <aar@pengutronix.de> |
ebef9c12 | 5929 | L: linux-wpan@vger.kernel.org |
aff3eaa0 AA |
5930 | W: http://wpan.cakelab.org/ |
5931 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git | |
5932 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
02cf2286 SL |
5933 | S: Maintained |
5934 | F: net/ieee802154/ | |
68653359 | 5935 | F: net/mac802154/ |
251741b1 | 5936 | F: drivers/net/ieee802154/ |
580947d3 AA |
5937 | F: include/linux/nl802154.h |
5938 | F: include/linux/ieee802154.h | |
5939 | F: include/net/nl802154.h | |
5940 | F: include/net/mac802154.h | |
5941 | F: include/net/af_ieee802154.h | |
5942 | F: include/net/cfg802154.h | |
5943 | F: include/net/ieee802154_netdev.h | |
ebef9c12 | 5944 | F: Documentation/networking/ieee802154.txt |
02cf2286 | 5945 | |
b1c97193 SY |
5946 | IGORPLUG-USB IR RECEIVER |
5947 | M: Sean Young <sean@mess.org> | |
5948 | L: linux-media@vger.kernel.org | |
5949 | S: Maintained | |
5950 | F: drivers/media/rc/igorplugusb.c | |
5951 | ||
40ad4a30 SY |
5952 | IGUANAWORKS USB IR TRANSCEIVER |
5953 | M: Sean Young <sean@mess.org> | |
5954 | L: linux-media@vger.kernel.org | |
5955 | S: Maintained | |
5956 | F: drivers/media/rc/iguanair.c | |
5957 | ||
9545f86e | 5958 | IIO SUBSYSTEM AND DRIVERS |
030a13d7 | 5959 | M: Jonathan Cameron <jic23@kernel.org> |
f0d61161 LPC |
5960 | R: Hartmut Knaack <knaack.h@gmx.de> |
5961 | R: Lars-Peter Clausen <lars@metafoo.de> | |
6fca5aa8 | 5962 | R: Peter Meerwald-Stadler <pmeerw@pmeerw.net> |
9545f86e | 5963 | L: linux-iio@vger.kernel.org |
21d41655 | 5964 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git |
9545f86e | 5965 | S: Maintained |
866b148a | 5966 | F: Documentation/devicetree/bindings/iio/ |
03e7c251 | 5967 | F: drivers/iio/ |
9545f86e | 5968 | F: drivers/staging/iio/ |
8fe671fc | 5969 | F: include/linux/iio/ |
817020cf | 5970 | F: tools/iio/ |
9545f86e | 5971 | |
65519263 SG |
5972 | IKANOS/ADI EAGLE ADSL USB DRIVER |
5973 | M: Matthieu Castet <castet.matthieu@free.fr> | |
5974 | M: Stanislaw Gruszka <stf_xl@wp.pl> | |
5975 | S: Maintained | |
5976 | F: drivers/usb/atm/ueagle-atm.c | |
5977 | ||
e89ab51f GR |
5978 | INA209 HARDWARE MONITOR DRIVER |
5979 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 5980 | L: linux-hwmon@vger.kernel.org |
e89ab51f GR |
5981 | S: Maintained |
5982 | F: Documentation/hwmon/ina209 | |
5983 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
5984 | F: drivers/hwmon/ina209.c | |
5985 | ||
5986 | INA2XX HARDWARE MONITOR DRIVER | |
5987 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 5988 | L: linux-hwmon@vger.kernel.org |
e89ab51f GR |
5989 | S: Maintained |
5990 | F: Documentation/hwmon/ina2xx | |
5991 | F: drivers/hwmon/ina2xx.c | |
5992 | F: include/linux/platform_data/ina2xx.h | |
5993 | ||
14dc124f SIG |
5994 | INDUSTRY PACK SUBSYSTEM (IPACK) |
5995 | M: Samuel Iglesias Gonsalvez <siglesias@igalia.com> | |
5996 | M: Jens Taprogge <jens.taprogge@taprogge.org> | |
5997 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
5998 | L: industrypack-devel@lists.sourceforge.net | |
5999 | W: http://industrypack.sourceforge.net | |
6000 | S: Maintained | |
6001 | F: drivers/ipack/ | |
6002 | ||
8adc53fd ZLK |
6003 | INGENIC JZ4780 DMA Driver |
6004 | M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> | |
6005 | S: Maintained | |
6006 | F: drivers/dma/dma-jz4780.c | |
6007 | ||
aa7168f4 | 6008 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
74dd744f | 6009 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
bfd33c4b | 6010 | M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com> |
74dd744f MZ |
6011 | L: linux-ima-devel@lists.sourceforge.net |
6012 | L: linux-ima-user@lists.sourceforge.net | |
6013 | L: linux-security-module@vger.kernel.org | |
9f273c24 | 6014 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git |
aa7168f4 | 6015 | S: Supported |
679655da | 6016 | F: security/integrity/ima/ |
aa7168f4 | 6017 | |
9a4ea5a9 JH |
6018 | IMGTEC IR DECODER DRIVER |
6019 | M: James Hogan <james.hogan@imgtec.com> | |
6020 | S: Maintained | |
6021 | F: drivers/media/rc/img-ir/ | |
6022 | ||
1da177e4 | 6023 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 6024 | L: linux-fbdev@vger.kernel.org |
843393d3 | 6025 | S: Orphan |
8a61f013 | 6026 | F: drivers/video/fbdev/imsttfb.c |
1da177e4 LT |
6027 | |
6028 | INFINIBAND SUBSYSTEM | |
b6b2bbe6 | 6029 | M: Doug Ledford <dledford@redhat.com> |
8b58be88 JP |
6030 | M: Sean Hefty <sean.hefty@intel.com> |
6031 | M: Hal Rosenstock <hal.rosenstock@gmail.com> | |
e6cc0fd1 | 6032 | L: linux-rdma@vger.kernel.org |
605841f5 | 6033 | W: http://www.openfabrics.org/ |
8a6e2535 | 6034 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
2936ae04 | 6035 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git |
1da177e4 | 6036 | S: Supported |
679655da JP |
6037 | F: Documentation/infiniband/ |
6038 | F: drivers/infiniband/ | |
c117ab84 | 6039 | F: include/uapi/linux/if_infiniband.h |
954138dc YD |
6040 | F: include/uapi/rdma/ |
6041 | F: include/rdma/ | |
1da177e4 | 6042 | |
c9f04f58 | 6043 | INOTIFY |
8b58be88 JP |
6044 | M: John McCutchan <john@johnmccutchan.com> |
6045 | M: Robert Love <rlove@rlove.org> | |
6046 | M: Eric Paris <eparis@parisplace.org> | |
c9f04f58 | 6047 | S: Maintained |
679655da JP |
6048 | F: Documentation/filesystems/inotify.txt |
6049 | F: fs/notify/inotify/ | |
6050 | F: include/linux/inotify.h | |
c117ab84 | 6051 | F: include/uapi/linux/inotify.h |
c9f04f58 | 6052 | |
e2d1d6c0 | 6053 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 | 6054 | M: Dmitry Torokhov <dmitry.torokhov@gmail.com> |
e2d1d6c0 | 6055 | L: linux-input@vger.kernel.org |
8a6e2535 | 6056 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 6057 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 6058 | S: Maintained |
679655da | 6059 | F: drivers/input/ |
f4eea7e2 | 6060 | F: include/linux/input.h |
c117ab84 | 6061 | F: include/uapi/linux/input.h |
f4eea7e2 | 6062 | F: include/linux/input/ |
e52d8398 | 6063 | F: Documentation/devicetree/bindings/input/ |
e2d1d6c0 | 6064 | |
3267a87f | 6065 | INPUT MULTITOUCH (MT) PROTOCOL |
75dd112a | 6066 | M: Henrik Rydberg <rydberg@bitmath.org> |
3267a87f | 6067 | L: linux-input@vger.kernel.org |
75dd112a | 6068 | S: Odd fixes |
3267a87f | 6069 | F: Documentation/input/multi-touch-protocol.txt |
7f9c2454 | 6070 | F: drivers/input/input-mt.c |
3267a87f HR |
6071 | K: \b(ABS|SYN)_MT_ |
6072 | ||
97fa99a3 JY |
6073 | INTEL ASoC BDW/HSW DRIVERS |
6074 | M: Jie Yang <yang.jie@linux.intel.com> | |
e5747e40 | 6075 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
97fa99a3 | 6076 | S: Supported |
e8e1225d JP |
6077 | F: sound/soc/intel/common/sst-dsp* |
6078 | F: sound/soc/intel/common/sst-firmware.c | |
6079 | F: sound/soc/intel/boards/broadwell.c | |
6080 | F: sound/soc/intel/haswell/ | |
97fa99a3 | 6081 | |
4ac13e17 DJ |
6082 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
6083 | M: Intel SCU Linux support <intel-linux-scu@intel.com> | |
fdc5813f | 6084 | M: Artur Paszkiewicz <artur.paszkiewicz@intel.com> |
4ac13e17 | 6085 | L: linux-scsi@vger.kernel.org |
7106891a DJ |
6086 | T: git git://git.code.sf.net/p/intel-sas/isci |
6087 | S: Supported | |
4ac13e17 | 6088 | F: drivers/scsi/isci/ |
4ac13e17 | 6089 | |
ecc83e52 AH |
6090 | INTEL HID EVENT DRIVER |
6091 | M: Alex Hung <alex.hung@canonical.com> | |
6092 | L: platform-driver-x86@vger.kernel.org | |
6093 | S: Maintained | |
6094 | F: drivers/platform/x86/intel-hid.c | |
6095 | ||
332e0812 AK |
6096 | INTEL VIRTUAL BUTTON DRIVER |
6097 | M: AceLan Kao <acelan.kao@canonical.com> | |
6098 | L: platform-driver-x86@vger.kernel.org | |
6099 | S: Maintained | |
6100 | F: drivers/platform/x86/intel-vbtn.c | |
6101 | ||
26717172 LB |
6102 | INTEL IDLE DRIVER |
6103 | M: Len Brown <lenb@kernel.org> | |
bf1c138e | 6104 | L: linux-pm@vger.kernel.org |
08deed1e | 6105 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
26717172 LB |
6106 | S: Supported |
6107 | F: drivers/idle/intel_idle.c | |
6108 | ||
7c1ac18d | 6109 | INTEL PSTATE DRIVER |
58ac1f62 SP |
6110 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> |
6111 | M: Len Brown <lenb@kernel.org> | |
7c1ac18d KCA |
6112 | L: linux-pm@vger.kernel.org |
6113 | S: Supported | |
6114 | F: drivers/cpufreq/intel_pstate.c | |
6115 | ||
9eb8ef74 | 6116 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
d8e38754 | 6117 | M: Maik Broemme <mbroemme@libmpq.org> |
c69f677c | 6118 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 6119 | S: Maintained |
679655da | 6120 | F: Documentation/fb/intelfb.txt |
8a61f013 | 6121 | F: drivers/video/fbdev/intelfb/ |
9eb8ef74 | 6122 | |
1da177e4 | 6123 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 6124 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 6125 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 6126 | S: Maintained |
8a61f013 | 6127 | F: drivers/video/fbdev/i810/ |
1da177e4 | 6128 | |
f4a9bc4c | 6129 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 6130 | M: Sujith Thomas <sujith.thomas@intel.com> |
d0944853 | 6131 | L: platform-driver-x86@vger.kernel.org |
5ca92bd9 | 6132 | W: https://01.org/linux-acpi |
f4a9bc4c | 6133 | S: Supported |
679655da | 6134 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 6135 | |
248a9dc3 | 6136 | INTEL I/OAT DMA DRIVER |
18ebd564 | 6137 | M: Dave Jiang <dave.jiang@intel.com> |
08223d80 | 6138 | R: Dan Williams <dan.j.williams@intel.com> |
18ebd564 DJ |
6139 | L: dmaengine@vger.kernel.org |
6140 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
6141 | S: Supported | |
679655da | 6142 | F: drivers/dma/ioat* |
248a9dc3 | 6143 | |
6c8909b4 | 6144 | INTEL IOMMU (VT-d) |
8b58be88 | 6145 | M: David Woodhouse <dwmw2@infradead.org> |
6c8909b4 | 6146 | L: iommu@lists.linux-foundation.org |
54e5881d | 6147 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 6148 | S: Supported |
3fb39615 | 6149 | F: drivers/iommu/intel-iommu.c |
679655da | 6150 | F: include/linux/intel-iommu.h |
6c8909b4 | 6151 | |
b3e5f263 | 6152 | INTEL IOP-ADMA DMA DRIVER |
08223d80 | 6153 | R: Dan Williams <dan.j.williams@intel.com> |
1dd8372d | 6154 | S: Odd fixes |
679655da | 6155 | F: drivers/dma/iop-adma.c |
b3e5f263 | 6156 | |
9251ce95 | 6157 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
5529c2cd | 6158 | M: Krzysztof Halasa <khalasa@piap.pl> |
9251ce95 | 6159 | S: Maintained |
679655da JP |
6160 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
6161 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
6162 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
6163 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 6164 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 6165 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 6166 | |
844dd05f | 6167 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 6168 | M: Deepak Saxena <dsaxena@plexity.net> |
844dd05f | 6169 | S: Maintained |
679655da | 6170 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 6171 | |
2f302324 | 6172 | INTEL ETHERNET DRIVERS |
8b58be88 | 6173 | M: Jeff Kirsher <jeffrey.t.kirsher@intel.com> |
eff471b1 | 6174 | L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers) |
f6fde11a | 6175 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 6176 | W: http://e1000.sourceforge.net/ |
2f302324 JK |
6177 | Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/ |
6178 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git | |
6179 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git | |
1da177e4 | 6180 | S: Supported |
0d164401 JK |
6181 | F: Documentation/networking/e100.txt |
6182 | F: Documentation/networking/e1000.txt | |
6183 | F: Documentation/networking/e1000e.txt | |
6184 | F: Documentation/networking/igb.txt | |
6185 | F: Documentation/networking/igbvf.txt | |
6186 | F: Documentation/networking/ixgb.txt | |
6187 | F: Documentation/networking/ixgbe.txt | |
6188 | F: Documentation/networking/ixgbevf.txt | |
1bff6529 | 6189 | F: Documentation/networking/i40e.txt |
105bf2fe | 6190 | F: Documentation/networking/i40evf.txt |
dee1ad47 | 6191 | F: drivers/net/ethernet/intel/ |
bc90d291 | 6192 | F: drivers/net/ethernet/intel/*/ |
1da177e4 | 6193 | |
6e4de866 FL |
6194 | INTEL RDMA RNIC DRIVER |
6195 | M: Faisal Latif <faisal.latif@intel.com> | |
6196 | R: Chien Tin Tung <chien.tin.tung@intel.com> | |
6197 | R: Mustafa Ismail <mustafa.ismail@intel.com> | |
6198 | R: Shiraz Saleem <shiraz.saleem@intel.com> | |
6199 | R: Tatyana Nikolova <tatyana.e.nikolova@intel.com> | |
6200 | L: linux-rdma@vger.kernel.org | |
6201 | S: Supported | |
6202 | F: drivers/infiniband/hw/i40iw/ | |
6203 | ||
224f9e6d AS |
6204 | INTEL MERRIFIELD GPIO DRIVER |
6205 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> | |
6206 | L: linux-gpio@vger.kernel.org | |
6207 | S: Maintained | |
6208 | F: drivers/gpio/gpio-merrifield.c | |
6209 | ||
0963d59b LW |
6210 | INTEL-MID GPIO DRIVER |
6211 | M: David Cohen <david.a.cohen@linux.intel.com> | |
6212 | L: linux-gpio@vger.kernel.org | |
6213 | S: Maintained | |
6214 | F: drivers/gpio/gpio-intel-mid.c | |
6215 | ||
ca907a90 SY |
6216 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
6217 | M: Stanislav Yakovlev <stas.yakovlev@gmail.com> | |
724c6b35 | 6218 | L: linux-wireless@vger.kernel.org |
ca907a90 | 6219 | S: Maintained |
679655da | 6220 | F: Documentation/networking/README.ipw2100 |
679655da | 6221 | F: Documentation/networking/README.ipw2200 |
367a1092 | 6222 | F: drivers/net/wireless/intel/ipw2x00/ |
826d2abe | 6223 | |
5760b0a5 AS |
6224 | INTEL(R) TRACE HUB |
6225 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> | |
6226 | S: Supported | |
6227 | F: Documentation/trace/intel_th.txt | |
6228 | F: drivers/hwtracing/intel_th/ | |
6229 | ||
4bd96a7a | 6230 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
74b18e17 | 6231 | M: Ning Sun <ning.sun@intel.com> |
4bd96a7a SW |
6232 | L: tboot-devel@lists.sourceforge.net |
6233 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 6234 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
6235 | S: Supported |
6236 | F: Documentation/intel_txt.txt | |
6237 | F: include/linux/tboot.h | |
6238 | F: arch/x86/kernel/tboot.c | |
6239 | ||
8a70da82 | 6240 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 6241 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 6242 | M: linux-wimax@intel.com |
49e7d9df | 6243 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
6244 | S: Supported |
6245 | W: http://linuxwimax.org | |
679655da JP |
6246 | F: Documentation/wimax/README.i2400m |
6247 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 6248 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 6249 | |
1c0ce89c SG |
6250 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
6251 | M: Stanislaw Gruszka <sgruszka@redhat.com> | |
efa3144e | 6252 | L: linux-wireless@vger.kernel.org |
1c0ce89c | 6253 | S: Supported |
7ac9a364 | 6254 | F: drivers/net/wireless/intel/iwlegacy/ |
efa3144e | 6255 | |
b481de9c | 6256 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 6257 | M: Johannes Berg <johannes.berg@intel.com> |
6161b02b | 6258 | M: Emmanuel Grumbach <emmanuel.grumbach@intel.com> |
af5e964f | 6259 | M: Luca Coelho <luciano.coelho@intel.com> |
7b9aebf0 | 6260 | M: Intel Linux Wireless <linuxwifi@intel.com> |
b481de9c | 6261 | L: linux-wireless@vger.kernel.org |
b481de9c | 6262 | W: http://intellinuxwireless.org |
b62ff718 | 6263 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 6264 | S: Supported |
e705c121 | 6265 | F: drivers/net/wireless/intel/iwlwifi/ |
b481de9c | 6266 | |
de8fe023 TW |
6267 | INTEL MANAGEMENT ENGINE (mei) |
6268 | M: Tomas Winkler <tomas.winkler@intel.com> | |
6269 | L: linux-kernel@vger.kernel.org | |
6270 | S: Supported | |
c117ab84 | 6271 | F: include/uapi/linux/mei.h |
5069288b | 6272 | F: include/linux/mei_cl_bus.h |
de8fe023 | 6273 | F: drivers/misc/mei/* |
222818c3 | 6274 | F: drivers/watchdog/mei_wdt.c |
e07950a1 | 6275 | F: Documentation/misc-devices/mei/* |
de8fe023 | 6276 | |
50ceb98b SD |
6277 | INTEL MIC DRIVERS (mic) |
6278 | M: Sudeep Dutt <sudeep.dutt@intel.com> | |
6279 | M: Ashutosh Dixit <ashutosh.dixit@intel.com> | |
6280 | S: Supported | |
6281 | W: https://github.com/sudeepdutt/mic | |
6282 | W: http://software.intel.com/en-us/mic-developer | |
6283 | F: include/linux/mic_bus.h | |
6284 | F: include/linux/scif.h | |
6285 | F: include/uapi/linux/mic_common.h | |
6286 | F: include/uapi/linux/mic_ioctl.h | |
9f273c24 | 6287 | F: include/uapi/linux/scif_ioctl.h |
50ceb98b SD |
6288 | F: drivers/misc/mic/ |
6289 | F: drivers/dma/mic_x100_dma.c | |
6290 | F: drivers/dma/mic_x100_dma.h | |
9f273c24 | 6291 | F: Documentation/mic/ |
50ceb98b | 6292 | |
fdca4f16 | 6293 | INTEL PMC/P-Unit IPC DRIVER |
0a8b8353 | 6294 | M: Zha Qipeng<qipeng.zha@intel.com> |
6295 | L: platform-driver-x86@vger.kernel.org | |
6296 | S: Maintained | |
6297 | F: drivers/platform/x86/intel_pmc_ipc.c | |
fdca4f16 | 6298 | F: drivers/platform/x86/intel_punit_ipc.c |
0a8b8353 | 6299 | F: arch/x86/include/asm/intel_pmc_ipc.h |
fdca4f16 | 6300 | F: arch/x86/include/asm/intel_punit_ipc.h |
0a8b8353 | 6301 | |
378f956e SKC |
6302 | INTEL TELEMETRY DRIVER |
6303 | M: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com> | |
6304 | L: platform-driver-x86@vger.kernel.org | |
6305 | S: Maintained | |
378f956e | 6306 | F: arch/x86/include/asm/intel_telemetry.h |
f1fc3cd8 | 6307 | F: drivers/platform/x86/intel_telemetry* |
0a8b8353 | 6308 | |
b740d2e9 RB |
6309 | INTEL PMC CORE DRIVER |
6310 | M: Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com> | |
6311 | M: Vishwanath Somayaji <vishwanath.somayaji@intel.com> | |
6312 | L: platform-driver-x86@vger.kernel.org | |
6313 | S: Maintained | |
6314 | F: arch/x86/include/asm/pmc_core.h | |
6315 | F: drivers/platform/x86/intel_pmc_core* | |
6316 | ||
cb109a0e | 6317 | IOC3 ETHERNET DRIVER |
8b58be88 | 6318 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 LT |
6319 | L: linux-mips@linux-mips.org |
6320 | S: Maintained | |
8862bf1e | 6321 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 6322 | |
cb109a0e | 6323 | IOC3 SERIAL DRIVER |
8b58be88 | 6324 | M: Pat Gefre <pfg@sgi.com> |
d39e0721 | 6325 | L: linux-serial@vger.kernel.org |
cb109a0e | 6326 | S: Maintained |
df621252 | 6327 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 6328 | |
0b6e8569 SW |
6329 | IOMMU DRIVERS |
6330 | M: Joerg Roedel <joro@8bytes.org> | |
6331 | L: iommu@lists.linux-foundation.org | |
6332 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git | |
6333 | S: Maintained | |
efcd94c0 | 6334 | F: Documentation/devicetree/bindings/iommu/ |
0b6e8569 SW |
6335 | F: drivers/iommu/ |
6336 | ||
4480f15b | 6337 | IP MASQUERADING |
8b58be88 | 6338 | M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar> |
1da177e4 | 6339 | S: Maintained |
679655da | 6340 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 6341 | |
4409ebe9 | 6342 | IPMI SUBSYSTEM |
8b58be88 | 6343 | M: Corey Minyard <minyard@acm.org> |
b0c90653 | 6344 | L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers) |
4409ebe9 CM |
6345 | W: http://openipmi.sourceforge.net/ |
6346 | S: Supported | |
679655da JP |
6347 | F: Documentation/IPMI.txt |
6348 | F: drivers/char/ipmi/ | |
6349 | F: include/linux/ipmi* | |
c117ab84 | 6350 | F: include/uapi/linux/ipmi* |
4409ebe9 | 6351 | |
2d800897 KW |
6352 | QCOM AUDIO (ASoC) DRIVERS |
6353 | M: Patrick Lai <plai@codeaurora.org> | |
6354 | M: Banajit Goswami <bgoswami@codeaurora.org> | |
6355 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
6356 | S: Supported | |
6357 | F: sound/soc/qcom/ | |
6358 | ||
e2d1d6c0 | 6359 | IPS SCSI RAID DRIVER |
8b58be88 | 6360 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
6361 | L: linux-scsi@vger.kernel.org |
6362 | W: http://www.adaptec.com/ | |
6363 | S: Maintained | |
679655da | 6364 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
6365 | |
6366 | IPVS | |
8b58be88 JP |
6367 | M: Wensong Zhang <wensong@linux-vs.org> |
6368 | M: Simon Horman <horms@verge.net.au> | |
6369 | M: Julian Anastasov <ja@ssi.bg> | |
979b6c13 | 6370 | L: netdev@vger.kernel.org |
e2d1d6c0 | 6371 | L: lvs-devel@vger.kernel.org |
1da177e4 | 6372 | S: Maintained |
9f273c24 FW |
6373 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git |
6374 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git | |
679655da | 6375 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 6376 | F: include/net/ip_vs.h |
c117ab84 | 6377 | F: include/uapi/linux/ip_vs.h |
679655da | 6378 | F: net/netfilter/ipvs/ |
1da177e4 | 6379 | |
e7839f25 | 6380 | IPWIRELESS DRIVER |
e5f6450c | 6381 | M: Jiri Kosina <jikos@kernel.org> |
d8130624 | 6382 | M: David Sterba <dsterba@suse.com> |
92094aa0 | 6383 | S: Odd Fixes |
282361a0 | 6384 | F: drivers/tty/ipwireless/ |
099dc4fb | 6385 | |
e2d1d6c0 | 6386 | IPX NETWORK LAYER |
8b58be88 | 6387 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 RD |
6388 | L: netdev@vger.kernel.org |
6389 | S: Maintained | |
679655da | 6390 | F: include/net/ipx.h |
c117ab84 | 6391 | F: include/uapi/linux/ipx.h |
679655da | 6392 | F: net/ipx/ |
e2d1d6c0 | 6393 | |
1da177e4 | 6394 | IRDA SUBSYSTEM |
8b58be88 | 6395 | M: Samuel Ortiz <samuel@sortiz.org> |
a2ac953d | 6396 | L: irda-users@lists.sourceforge.net (subscribers-only) |
ced649ea | 6397 | L: netdev@vger.kernel.org |
1da177e4 | 6398 | W: http://irda.sourceforge.net/ |
f353976d | 6399 | S: Maintained |
e0057975 | 6400 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
6401 | F: Documentation/networking/irda.txt |
6402 | F: drivers/net/irda/ | |
6403 | F: include/net/irda/ | |
6404 | F: net/irda/ | |
1da177e4 | 6405 | |
a800c7cc TG |
6406 | IRQ SUBSYSTEM |
6407 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 6408 | L: linux-kernel@vger.kernel.org |
a800c7cc | 6409 | S: Maintained |
75fc2d37 | 6410 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc | 6411 | F: kernel/irq/ |
2ed9fd28 JC |
6412 | |
6413 | IRQCHIP DRIVERS | |
6414 | M: Thomas Gleixner <tglx@linutronix.de> | |
6415 | M: Jason Cooper <jason@lakedaemon.net> | |
54d9ffc4 | 6416 | M: Marc Zyngier <marc.zyngier@arm.com> |
2ed9fd28 JC |
6417 | L: linux-kernel@vger.kernel.org |
6418 | S: Maintained | |
6419 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core | |
6420 | T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core | |
5b5a9069 | 6421 | F: Documentation/devicetree/bindings/interrupt-controller/ |
edd96900 | 6422 | F: drivers/irqchip/ |
a800c7cc | 6423 | |
7ab3a837 | 6424 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
b09dec2c | 6425 | M: Marc Zyngier <marc.zyngier@arm.com> |
7ab3a837 | 6426 | S: Maintained |
b09dec2c | 6427 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
7ab3a837 GL |
6428 | F: Documentation/IRQ-domain.txt |
6429 | F: include/linux/irqdomain.h | |
6430 | F: kernel/irq/irqdomain.c | |
b09dec2c | 6431 | F: kernel/irq/msi.c |
7ab3a837 | 6432 | |
ad7afc38 WBG |
6433 | ISA |
6434 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
6435 | S: Maintained | |
6436 | F: Documentation/isa.txt | |
6437 | F: drivers/base/isa.c | |
6438 | F: include/linux/isa.h | |
6439 | ||
e2d1d6c0 | 6440 | ISAPNP |
8b58be88 | 6441 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 6442 | S: Maintained |
679655da JP |
6443 | F: Documentation/isapnp.txt |
6444 | F: drivers/pnp/isapnp/ | |
6445 | F: include/linux/isapnp.h | |
e2d1d6c0 | 6446 | |
d39b8420 HV |
6447 | ISA RADIO MODULE |
6448 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
6449 | L: linux-media@vger.kernel.org | |
6450 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 6451 | W: https://linuxtv.org |
d39b8420 HV |
6452 | S: Maintained |
6453 | F: drivers/media/radio/radio-isa* | |
6454 | ||
71a6d0af HW |
6455 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
6456 | M: Peter Jones <pjones@redhat.com> | |
6457 | M: Konrad Rzeszutek Wilk <konrad@kernel.org> | |
6458 | S: Maintained | |
6459 | F: drivers/firmware/iscsi_ibft* | |
6460 | ||
14816b1e | 6461 | ISCSI |
8b58be88 | 6462 | M: Mike Christie <michaelc@cs.wisc.edu> |
14816b1e MC |
6463 | L: open-iscsi@googlegroups.com |
6464 | W: www.open-iscsi.org | |
54e5881d | 6465 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
14816b1e | 6466 | S: Maintained |
679655da JP |
6467 | F: drivers/scsi/*iscsi* |
6468 | F: include/scsi/*iscsi* | |
14816b1e | 6469 | |
1e65eb42 OG |
6470 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
6471 | M: Or Gerlitz <ogerlitz@mellanox.com> | |
e7d2c25d | 6472 | M: Sagi Grimberg <sagi@grimberg.me> |
1e65eb42 OG |
6473 | M: Roi Dayan <roid@mellanox.com> |
6474 | L: linux-rdma@vger.kernel.org | |
6475 | S: Supported | |
6476 | W: http://www.openfabrics.org | |
6477 | W: www.open-iscsi.org | |
6478 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
14430813 | 6479 | F: drivers/infiniband/ulp/iser/ |
1e65eb42 | 6480 | |
2b70e5fd | 6481 | ISCSI EXTENSIONS FOR RDMA (ISER) TARGET |
e7d2c25d | 6482 | M: Sagi Grimberg <sagi@grimberg.me> |
2b70e5fd SG |
6483 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
6484 | L: linux-rdma@vger.kernel.org | |
6485 | L: target-devel@vger.kernel.org | |
6486 | S: Supported | |
6487 | W: http://www.linux-iscsi.org | |
6488 | F: drivers/infiniband/ulp/isert | |
6489 | ||
1da177e4 | 6490 | ISDN SUBSYSTEM |
8b58be88 | 6491 | M: Karsten Keil <isdn@linux-pingi.de> |
d5d52273 | 6492 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
3da0ae62 | 6493 | L: netdev@vger.kernel.org |
1da177e4 | 6494 | W: http://www.isdn4linux.de |
54e5881d | 6495 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 6496 | S: Maintained |
679655da JP |
6497 | F: Documentation/isdn/ |
6498 | F: drivers/isdn/ | |
6499 | F: include/linux/isdn.h | |
6500 | F: include/linux/isdn/ | |
c117ab84 CEB |
6501 | F: include/uapi/linux/isdn.h |
6502 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
6503 | |
6504 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 6505 | M: Armin Schindler <mac@melware.de> |
d5d52273 | 6506 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
1da177e4 LT |
6507 | W: http://www.melware.de |
6508 | S: Maintained | |
679655da | 6509 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 6510 | |
d624870f | 6511 | IT87 HARDWARE MONITORING DRIVER |
d8130624 | 6512 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 6513 | L: linux-hwmon@vger.kernel.org |
d624870f JD |
6514 | S: Maintained |
6515 | F: Documentation/hwmon/it87 | |
6516 | F: drivers/hwmon/it87.c | |
6517 | ||
d7104bff AP |
6518 | IT913X MEDIA DRIVER |
6519 | M: Antti Palosaari <crope@iki.fi> | |
6520 | L: linux-media@vger.kernel.org | |
a825eaec | 6521 | W: https://linuxtv.org |
d7104bff AP |
6522 | W: http://palosaari.fi/linux/ |
6523 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6524 | T: git git://linuxtv.org/anttip/media_tree.git | |
6525 | S: Maintained | |
249c697e | 6526 | F: drivers/media/tuners/it913x* |
d7104bff | 6527 | |
91821ff3 | 6528 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 6529 | M: Andy Walls <awalls@md.metrocast.net> |
7b212edf | 6530 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
661263b5 | 6531 | L: linux-media@vger.kernel.org |
275ffde4 | 6532 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
6533 | W: http://www.ivtvdriver.org |
6534 | S: Maintained | |
679655da | 6535 | F: Documentation/video4linux/*.ivtv |
90d72ac6 | 6536 | F: drivers/media/pci/ivtv/ |
c117ab84 | 6537 | F: include/uapi/linux/ivtv* |
91821ff3 | 6538 | |
68620bdd MP |
6539 | IX2505V MEDIA DRIVER |
6540 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
6541 | L: linux-media@vger.kernel.org | |
a825eaec | 6542 | W: https://linuxtv.org |
68620bdd MP |
6543 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
6544 | S: Maintained | |
6545 | F: drivers/media/dvb-frontends/ix2505v* | |
6546 | ||
4453d736 GR |
6547 | JC42.4 TEMPERATURE SENSOR DRIVER |
6548 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 6549 | L: linux-hwmon@vger.kernel.org |
4453d736 GR |
6550 | S: Maintained |
6551 | F: drivers/hwmon/jc42.c | |
6552 | F: Documentation/hwmon/jc42 | |
6553 | ||
e2d1d6c0 | 6554 | JFS FILESYSTEM |
3256f80f | 6555 | M: Dave Kleikamp <shaggy@kernel.org> |
e2d1d6c0 RD |
6556 | L: jfs-discussion@lists.sourceforge.net |
6557 | W: http://jfs.sourceforge.net/ | |
54e5881d | 6558 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 6559 | S: Maintained |
679655da JP |
6560 | F: Documentation/filesystems/jfs.txt |
6561 | F: fs/jfs/ | |
e2d1d6c0 | 6562 | |
95252236 | 6563 | JME NETWORK DRIVER |
8b58be88 | 6564 | M: Guo-Fu Tseng <cooldavid@cooldavid.org> |
95252236 GFT |
6565 | L: netdev@vger.kernel.org |
6566 | S: Maintained | |
63d24a0e | 6567 | F: drivers/net/ethernet/jme.* |
95252236 | 6568 | |
1da177e4 | 6569 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 6570 | M: David Woodhouse <dwmw2@infradead.org> |
6d85d066 DW |
6571 | L: linux-mtd@lists.infradead.org |
6572 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 6573 | S: Maintained |
679655da | 6574 | F: fs/jffs2/ |
c117ab84 | 6575 | F: include/uapi/linux/jffs2.h |
1da177e4 | 6576 | |
d183e11a TT |
6577 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) |
6578 | M: "Theodore Ts'o" <tytso@mit.edu> | |
c290ea01 | 6579 | M: Jan Kara <jack@suse.com> |
d183e11a TT |
6580 | L: linux-ext4@vger.kernel.org |
6581 | S: Maintained | |
6582 | F: fs/jbd2/ | |
6583 | F: include/linux/jbd2.h | |
ae0718f8 | 6584 | |
207dab5f MU |
6585 | JPU V4L2 MEM2MEM DRIVER FOR RENESAS |
6586 | M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com> | |
6587 | L: linux-media@vger.kernel.org | |
6588 | S: Maintained | |
6589 | F: drivers/media/platform/rcar_jpu.c | |
6590 | ||
fd8b6cb4 | 6591 | JSM Neo PCI based serial card |
df247081 | 6592 | M: Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com> |
fd8b6cb4 BL |
6593 | L: linux-serial@vger.kernel.org |
6594 | S: Maintained | |
df621252 | 6595 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 6596 | |
af39917d CL |
6597 | K10TEMP HARDWARE MONITORING DRIVER |
6598 | M: Clemens Ladisch <clemens@ladisch.de> | |
968ce1b1 | 6599 | L: linux-hwmon@vger.kernel.org |
af39917d CL |
6600 | S: Maintained |
6601 | F: Documentation/hwmon/k10temp | |
6602 | F: drivers/hwmon/k10temp.c | |
6603 | ||
4660cb35 | 6604 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 6605 | M: Rudolf Marek <r.marek@assembler.cz> |
968ce1b1 | 6606 | L: linux-hwmon@vger.kernel.org |
ae0718f8 | 6607 | S: Maintained |
679655da JP |
6608 | F: Documentation/hwmon/k8temp |
6609 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 6610 | |
0ba1d91d AR |
6611 | KASAN |
6612 | M: Andrey Ryabinin <aryabinin@virtuozzo.com> | |
6613 | R: Alexander Potapenko <glider@google.com> | |
6614 | R: Dmitry Vyukov <dvyukov@google.com> | |
6615 | L: kasan-dev@googlegroups.com | |
6616 | S: Maintained | |
6617 | F: arch/*/include/asm/kasan.h | |
6618 | F: arch/*/mm/kasan_init* | |
6619 | F: Documentation/kasan.txt | |
64f8ebaf | 6620 | F: include/linux/kasan*.h |
0ba1d91d AR |
6621 | F: lib/test_kasan.c |
6622 | F: mm/kasan/ | |
6623 | F: scripts/Makefile.kasan | |
6624 | ||
1da177e4 | 6625 | KCONFIG |
5eb1f99e | 6626 | M: "Yann E. MORIN" <yann.morin.1998@free.fr> |
347d12d7 | 6627 | L: linux-kbuild@vger.kernel.org |
cea8321c | 6628 | T: git git://gitorious.org/linux-kconfig/linux-kconfig |
5eb1f99e | 6629 | S: Maintained |
679655da JP |
6630 | F: Documentation/kbuild/kconfig-language.txt |
6631 | F: scripts/kconfig/ | |
1da177e4 | 6632 | |
ea6c2089 | 6633 | KDUMP |
f871f191 VG |
6634 | M: Dave Young <dyoung@redhat.com> |
6635 | M: Baoquan He <bhe@redhat.com> | |
6636 | R: Vivek Goyal <vgoyal@redhat.com> | |
34633993 | 6637 | L: kexec@lists.infradead.org |
ea6c2089 VG |
6638 | W: http://lse.sourceforge.net/kdump/ |
6639 | S: Maintained | |
80811493 | 6640 | F: Documentation/kdump/ |
ea6c2089 | 6641 | |
f41bf02f HV |
6642 | KEENE FM RADIO TRANSMITTER DRIVER |
6643 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
6644 | L: linux-media@vger.kernel.org | |
6645 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 6646 | W: https://linuxtv.org |
f41bf02f HV |
6647 | S: Maintained |
6648 | F: drivers/media/radio/radio-keene* | |
6649 | ||
1da177e4 | 6650 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 6651 | M: Ian Kent <raven@themaw.net> |
f694fc97 | 6652 | L: autofs@vger.kernel.org |
1da177e4 | 6653 | S: Maintained |
679655da | 6654 | F: fs/autofs4/ |
1da177e4 | 6655 | |
70fb7ba6 | 6656 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
d8130624 | 6657 | M: Michal Marek <mmarek@suse.com> |
08deed1e JP |
6658 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
6659 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 6660 | L: linux-kbuild@vger.kernel.org |
5ce45962 | 6661 | S: Maintained |
679655da JP |
6662 | F: Documentation/kbuild/ |
6663 | F: Makefile | |
6664 | F: scripts/Makefile.* | |
70fb7ba6 MM |
6665 | F: scripts/basic/ |
6666 | F: scripts/mk* | |
6667 | F: scripts/package/ | |
1da177e4 LT |
6668 | |
6669 | KERNEL JANITORS | |
c3000e03 | 6670 | L: kernel-janitors@vger.kernel.org |
10466f5a | 6671 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 6672 | S: Odd Fixes |
1da177e4 | 6673 | |
e8b43555 | 6674 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 6675 | M: "J. Bruce Fields" <bfields@fieldses.org> |
883985f6 | 6676 | M: Jeff Layton <jlayton@poochiereds.net> |
16141c02 | 6677 | L: linux-nfs@vger.kernel.org |
1da177e4 | 6678 | W: http://nfs.sourceforge.net/ |
9f273c24 | 6679 | T: git git://linux-nfs.org/~bfields/linux.git |
98fac23f | 6680 | S: Supported |
679655da | 6681 | F: fs/nfsd/ |
c117ab84 | 6682 | F: include/uapi/linux/nfsd/ |
679655da JP |
6683 | F: fs/lockd/ |
6684 | F: fs/nfs_common/ | |
6685 | F: net/sunrpc/ | |
6686 | F: include/linux/lockd/ | |
6687 | F: include/linux/sunrpc/ | |
c117ab84 | 6688 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 6689 | |
13b122b3 SK |
6690 | KERNEL SELFTEST FRAMEWORK |
6691 | M: Shuah Khan <shuahkh@osg.samsung.com> | |
90effdcd | 6692 | M: Shuah Khan <shuah@kernel.org> |
64f00850 | 6693 | L: linux-kselftest@vger.kernel.org |
13b122b3 SK |
6694 | T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest |
6695 | S: Maintained | |
6696 | F: tools/testing/selftests | |
6697 | ||
426d62e2 | 6698 | KERNEL VIRTUAL MACHINE (KVM) |
c93a64fe | 6699 | M: Paolo Bonzini <pbonzini@redhat.com> |
3d8e15dd | 6700 | M: Radim Krčmář <rkrcmar@redhat.com> |
1fc9d2bf | 6701 | L: kvm@vger.kernel.org |
e3e58478 | 6702 | W: http://www.linux-kvm.org |
a94b40a6 | 6703 | T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git |
426d62e2 | 6704 | S: Supported |
c93a64fe PB |
6705 | F: Documentation/*/kvm*.txt |
6706 | F: Documentation/virtual/kvm/ | |
679655da | 6707 | F: arch/*/kvm/ |
1662e862 CB |
6708 | F: arch/x86/kernel/kvm.c |
6709 | F: arch/x86/kernel/kvmclock.c | |
679655da JP |
6710 | F: arch/*/include/asm/kvm* |
6711 | F: include/linux/kvm* | |
c117ab84 | 6712 | F: include/uapi/linux/kvm* |
679655da | 6713 | F: virt/kvm/ |
6d0a1a61 | 6714 | F: tools/kvm/ |
426d62e2 | 6715 | |
ad8003d3 | 6716 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 6717 | M: Joerg Roedel <joro@8bytes.org> |
1fc9d2bf | 6718 | L: kvm@vger.kernel.org |
038161de | 6719 | W: http://www.linux-kvm.org/ |
7de609c8 | 6720 | S: Maintained |
679655da | 6721 | F: arch/x86/include/asm/svm.h |
679655da | 6722 | F: arch/x86/kvm/svm.c |
426d62e2 | 6723 | |
513014b7 | 6724 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
d8130624 | 6725 | M: Alexander Graf <agraf@suse.com> |
1fc9d2bf | 6726 | L: kvm-ppc@vger.kernel.org |
038161de | 6727 | W: http://www.linux-kvm.org/ |
6a7f972d | 6728 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 6729 | S: Supported |
679655da JP |
6730 | F: arch/powerpc/include/asm/kvm* |
6731 | F: arch/powerpc/kvm/ | |
513014b7 | 6732 | |
85f8fffe | 6733 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 6734 | M: Christian Borntraeger <borntraeger@de.ibm.com> |
4ae57b6c | 6735 | M: Cornelia Huck <cornelia.huck@de.ibm.com> |
85f8fffe CB |
6736 | L: linux-s390@vger.kernel.org |
6737 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
9f273c24 | 6738 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git |
85f8fffe | 6739 | S: Supported |
679655da JP |
6740 | F: Documentation/s390/kvm.txt |
6741 | F: arch/s390/include/asm/kvm* | |
80811493 | 6742 | F: arch/s390/kvm/ |
85f8fffe | 6743 | |
a749474d | 6744 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
0f4ca79e | 6745 | M: Christoffer Dall <christoffer.dall@linaro.org> |
5c8818b4 MZ |
6746 | M: Marc Zyngier <marc.zyngier@arm.com> |
6747 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
a749474d CD |
6748 | L: kvmarm@lists.cs.columbia.edu |
6749 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
1b1ebe82 | 6750 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git |
0f4ca79e | 6751 | S: Supported |
a749474d CD |
6752 | F: arch/arm/include/uapi/asm/kvm* |
6753 | F: arch/arm/include/asm/kvm* | |
6754 | F: arch/arm/kvm/ | |
5c8818b4 MZ |
6755 | F: virt/kvm/arm/ |
6756 | F: include/kvm/arm_* | |
a749474d | 6757 | |
6394a3ec | 6758 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
5c8818b4 | 6759 | M: Christoffer Dall <christoffer.dall@linaro.org> |
6394a3ec MZ |
6760 | M: Marc Zyngier <marc.zyngier@arm.com> |
6761 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6762 | L: kvmarm@lists.cs.columbia.edu | |
6763 | S: Maintained | |
6764 | F: arch/arm64/include/uapi/asm/kvm* | |
6765 | F: arch/arm64/include/asm/kvm* | |
6766 | F: arch/arm64/kvm/ | |
6767 | ||
bfd3d532 JH |
6768 | KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips) |
6769 | M: James Hogan <james.hogan@imgtec.com> | |
6770 | L: linux-mips@linux-mips.org | |
6771 | S: Supported | |
6772 | F: arch/mips/include/uapi/asm/kvm* | |
6773 | F: arch/mips/include/asm/kvm* | |
6774 | F: arch/mips/kvm/ | |
6775 | ||
dc009d92 | 6776 | KEXEC |
8b58be88 | 6777 | M: Eric Biederman <ebiederm@xmission.com> |
2f327dad | 6778 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 6779 | L: kexec@lists.infradead.org |
dc009d92 | 6780 | S: Maintained |
679655da | 6781 | F: include/linux/kexec.h |
c117ab84 | 6782 | F: include/uapi/linux/kexec.h |
10540a69 | 6783 | F: kernel/kexec* |
dc009d92 | 6784 | |
e971461f DH |
6785 | KEYS/KEYRINGS: |
6786 | M: David Howells <dhowells@redhat.com> | |
aa62efff | 6787 | L: keyrings@vger.kernel.org |
e971461f | 6788 | S: Maintained |
d410fa4e | 6789 | F: Documentation/security/keys.txt |
e971461f DH |
6790 | F: include/linux/key.h |
6791 | F: include/linux/key-type.h | |
75aeddd1 DH |
6792 | F: include/linux/keyctl.h |
6793 | F: include/uapi/linux/keyctl.h | |
e971461f DH |
6794 | F: include/keys/ |
6795 | F: security/keys/ | |
6796 | ||
7f3c68be | 6797 | KEYS-TRUSTED |
74dd744f MZ |
6798 | M: David Safford <safford@us.ibm.com> |
6799 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> | |
7f3c68be | 6800 | L: linux-security-module@vger.kernel.org |
aa62efff | 6801 | L: keyrings@vger.kernel.org |
7f3c68be | 6802 | S: Supported |
d410fa4e | 6803 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
6804 | F: include/keys/trusted-type.h |
6805 | F: security/keys/trusted.c | |
6806 | F: security/keys/trusted.h | |
6807 | ||
6808 | KEYS-ENCRYPTED | |
74dd744f MZ |
6809 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
6810 | M: David Safford <safford@us.ibm.com> | |
7f3c68be | 6811 | L: linux-security-module@vger.kernel.org |
aa62efff | 6812 | L: keyrings@vger.kernel.org |
7f3c68be | 6813 | S: Supported |
d410fa4e | 6814 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 6815 | F: include/keys/encrypted-type.h |
19c90aa6 | 6816 | F: security/keys/encrypted-keys/ |
7f3c68be | 6817 | |
5b778dad | 6818 | KGDB / KDB /debug_core |
8b58be88 | 6819 | M: Jason Wessel <jason.wessel@windriver.com> |
4063eb5f | 6820 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 | 6821 | L: kgdb-bugreport@lists.sourceforge.net |
9f273c24 | 6822 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git |
e3e2aaf7 | 6823 | S: Maintained |
679655da JP |
6824 | F: Documentation/DocBook/kgdb.tmpl |
6825 | F: drivers/misc/kgdbts.c | |
df621252 | 6826 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 6827 | F: include/linux/kdb.h |
679655da | 6828 | F: include/linux/kgdb.h |
4063eb5f | 6829 | F: kernel/debug/ |
e3e2aaf7 | 6830 | |
456db8cc | 6831 | KMEMCHECK |
8b58be88 | 6832 | M: Vegard Nossum <vegardno@ifi.uio.no> |
2ed1c525 | 6833 | M: Pekka Enberg <penberg@kernel.org> |
b9ce08c0 | 6834 | S: Maintained |
410d7a97 JP |
6835 | F: Documentation/kmemcheck.txt |
6836 | F: arch/x86/include/asm/kmemcheck.h | |
6837 | F: arch/x86/mm/kmemcheck/ | |
6838 | F: include/linux/kmemcheck.h | |
6839 | F: mm/kmemcheck.c | |
b9ce08c0 | 6840 | |
c3bb4d24 | 6841 | KMEMLEAK |
8b58be88 | 6842 | M: Catalin Marinas <catalin.marinas@arm.com> |
c3bb4d24 CM |
6843 | S: Maintained |
6844 | F: Documentation/kmemleak.txt | |
6845 | F: include/linux/kmemleak.h | |
6846 | F: mm/kmemleak.c | |
6847 | F: mm/kmemleak-test.c | |
6848 | ||
89559a61 | 6849 | KPROBES |
a320817c | 6850 | M: Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com> |
8b58be88 JP |
6851 | M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> |
6852 | M: "David S. Miller" <davem@davemloft.net> | |
353def94 | 6853 | M: Masami Hiramatsu <mhiramat@kernel.org> |
89559a61 | 6854 | S: Maintained |
679655da JP |
6855 | F: Documentation/kprobes.txt |
6856 | F: include/linux/kprobes.h | |
6857 | F: kernel/kprobes.c | |
89559a61 | 6858 | |
70e84049 | 6859 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 6860 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
6861 | W: http://miguelojeda.es/auxdisplay.htm |
6862 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 6863 | S: Maintained |
679655da JP |
6864 | F: Documentation/auxdisplay/ks0108 |
6865 | F: drivers/auxdisplay/ks0108.c | |
6866 | F: include/linux/ks0108.h | |
70e84049 | 6867 | |
1b69c6d0 DA |
6868 | L3MDEV |
6869 | M: David Ahern <dsa@cumulusnetworks.com> | |
6870 | L: netdev@vger.kernel.org | |
6871 | S: Maintained | |
6872 | F: net/l3mdev | |
6873 | F: include/net/l3mdev.h | |
6874 | ||
9ca44355 | 6875 | LANTIQ MIPS ARCHITECTURE |
bdb40e8e | 6876 | M: John Crispin <john@phrozen.org> |
9ca44355 JC |
6877 | L: linux-mips@linux-mips.org |
6878 | S: Maintained | |
6879 | F: arch/mips/lantiq | |
6880 | ||
1da177e4 | 6881 | LAPB module |
1da177e4 | 6882 | L: linux-x25@vger.kernel.org |
bf9915cc | 6883 | S: Orphan |
679655da JP |
6884 | F: Documentation/networking/lapb-module.txt |
6885 | F: include/*/lapb.h | |
6886 | F: net/lapb/ | |
1da177e4 LT |
6887 | |
6888 | LASI 53c700 driver for PARISC | |
8b58be88 | 6889 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
6890 | L: linux-scsi@vger.kernel.org |
6891 | S: Maintained | |
679655da JP |
6892 | F: Documentation/scsi/53c700.txt |
6893 | F: drivers/scsi/53c700* | |
1da177e4 | 6894 | |
263de9b5 | 6895 | LED SUBSYSTEM |
8b58be88 | 6896 | M: Richard Purdie <rpurdie@rpsys.net> |
48b945a1 | 6897 | M: Jacek Anaszewski <j.anaszewski@samsung.com> |
aa69cb8c | 6898 | L: linux-leds@vger.kernel.org |
b8926ba0 | 6899 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git |
263de9b5 | 6900 | S: Maintained |
85c90368 | 6901 | F: Documentation/devicetree/bindings/leds/ |
679655da JP |
6902 | F: drivers/leds/ |
6903 | F: include/linux/leds.h | |
263de9b5 | 6904 | |
b0461a44 | 6905 | LEGACY EEPROM DRIVER |
d8130624 | 6906 | M: Jean Delvare <jdelvare@suse.com> |
b0461a44 JD |
6907 | S: Maintained |
6908 | F: Documentation/misc-devices/eeprom | |
6909 | F: drivers/misc/eeprom/eeprom.c | |
6910 | ||
1da177e4 | 6911 | LEGO USB Tower driver |
8b58be88 | 6912 | M: Juergen Stuber <starblue@users.sourceforge.net> |
1da177e4 LT |
6913 | L: legousb-devel@lists.sourceforge.net |
6914 | W: http://legousb.sourceforge.net/ | |
6915 | S: Maintained | |
679655da | 6916 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 6917 | |
055616a8 MK |
6918 | LG2160 MEDIA DRIVER |
6919 | M: Michael Krufky <mkrufky@linuxtv.org> | |
6920 | L: linux-media@vger.kernel.org | |
a825eaec | 6921 | W: https://linuxtv.org |
055616a8 MK |
6922 | W: http://github.com/mkrufky |
6923 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6924 | T: git git://linuxtv.org/mkrufky/tuners.git | |
6925 | S: Maintained | |
6926 | F: drivers/media/dvb-frontends/lg2160.* | |
6927 | ||
6f0e7725 MK |
6928 | LGDT3305 MEDIA DRIVER |
6929 | M: Michael Krufky <mkrufky@linuxtv.org> | |
6930 | L: linux-media@vger.kernel.org | |
a825eaec | 6931 | W: https://linuxtv.org |
6f0e7725 MK |
6932 | W: http://github.com/mkrufky |
6933 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6934 | T: git git://linuxtv.org/mkrufky/tuners.git | |
6935 | S: Maintained | |
6936 | F: drivers/media/dvb-frontends/lgdt3305.* | |
6937 | ||
568a17ff | 6938 | LGUEST |
8b58be88 | 6939 | M: Rusty Russell <rusty@rustcorp.com.au> |
a4724ed6 | 6940 | L: lguest@lists.ozlabs.org |
568a17ff | 6941 | W: http://lguest.ozlabs.org/ |
72e91863 | 6942 | S: Odd Fixes |
070f420b | 6943 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
6944 | F: arch/x86/lguest/ |
6945 | F: drivers/lguest/ | |
6946 | F: include/linux/lguest*.h | |
070f420b | 6947 | F: tools/lguest/ |
568a17ff | 6948 | |
32ac7cb2 TH |
6949 | LIBATA SUBSYSTEM (Serial and Parallel ATA drivers) |
6950 | M: Tejun Heo <tj@kernel.org> | |
6951 | L: linux-ide@vger.kernel.org | |
6952 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6953 | S: Maintained | |
6954 | F: drivers/ata/ | |
6955 | F: include/linux/ata.h | |
6956 | F: include/linux/libata.h | |
d2abf98e | 6957 | F: Documentation/devicetree/bindings/ata/ |
32ac7cb2 TH |
6958 | |
6959 | LIBATA PATA ARASAN COMPACT FLASH CONTROLLER | |
da89947b | 6960 | M: Viresh Kumar <vireshk@kernel.org> |
32ac7cb2 TH |
6961 | L: linux-ide@vger.kernel.org |
6962 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6963 | S: Maintained | |
6964 | F: include/linux/pata_arasan_cf_data.h | |
6965 | F: drivers/ata/pata_arasan_cf.c | |
6966 | ||
c7fa056c BZ |
6967 | LIBATA PATA DRIVERS |
6968 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
6969 | M: Tejun Heo <tj@kernel.org> | |
6970 | L: linux-ide@vger.kernel.org | |
6971 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6972 | S: Maintained | |
6973 | F: drivers/ata/pata_*.c | |
6974 | F: drivers/ata/ata_generic.c | |
6975 | ||
32ac7cb2 TH |
6976 | LIBATA SATA AHCI PLATFORM devices support |
6977 | M: Hans de Goede <hdegoede@redhat.com> | |
6978 | M: Tejun Heo <tj@kernel.org> | |
6979 | L: linux-ide@vger.kernel.org | |
6980 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6981 | S: Maintained | |
6982 | F: drivers/ata/ahci_platform.c | |
6983 | F: drivers/ata/libahci_platform.c | |
6984 | F: include/linux/ahci_platform.h | |
6985 | ||
6986 | LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER | |
6987 | M: Mikael Pettersson <mikpelinux@gmail.com> | |
6988 | L: linux-ide@vger.kernel.org | |
6989 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6990 | S: Maintained | |
6991 | F: drivers/ata/sata_promise.* | |
6992 | ||
1acd437c SL |
6993 | LIBLOCKDEP |
6994 | M: Sasha Levin <sasha.levin@oracle.com> | |
6995 | S: Maintained | |
6996 | F: tools/lib/lockdep/ | |
6997 | ||
bc30196f DW |
6998 | LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM |
6999 | M: Dan Williams <dan.j.williams@intel.com> | |
7000 | L: linux-nvdimm@lists.01.org | |
7001 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
9f273c24 | 7002 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git |
bc30196f DW |
7003 | S: Supported |
7004 | F: drivers/nvdimm/* | |
7005 | F: include/linux/nd.h | |
7006 | F: include/linux/libnvdimm.h | |
7007 | F: include/uapi/linux/ndctl.h | |
7008 | ||
7009 | LIBNVDIMM BLK: MMIO-APERTURE DRIVER | |
7010 | M: Ross Zwisler <ross.zwisler@linux.intel.com> | |
7011 | L: linux-nvdimm@lists.01.org | |
7012 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
7013 | S: Supported | |
7014 | F: drivers/nvdimm/blk.c | |
7015 | F: drivers/nvdimm/region_devs.c | |
7016 | F: drivers/acpi/nfit* | |
7017 | ||
7018 | LIBNVDIMM BTT: BLOCK TRANSLATION TABLE | |
7019 | M: Vishal Verma <vishal.l.verma@intel.com> | |
7020 | L: linux-nvdimm@lists.01.org | |
7021 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
7022 | S: Supported | |
7023 | F: drivers/nvdimm/btt* | |
7024 | ||
7025 | LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER | |
7026 | M: Ross Zwisler <ross.zwisler@linux.intel.com> | |
7027 | L: linux-nvdimm@lists.01.org | |
7028 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
7029 | S: Supported | |
7030 | F: drivers/nvdimm/pmem.c | |
b864bc17 | 7031 | F: include/linux/pmem.h |
40603526 | 7032 | F: arch/*/include/asm/pmem.h |
bc30196f | 7033 | |
cd9e9808 MB |
7034 | LIGHTNVM PLATFORM SUPPORT |
7035 | M: Matias Bjorling <mb@lightnvm.io> | |
7036 | W: http://github/OpenChannelSSD | |
4ead1a25 | 7037 | L: linux-block@vger.kernel.org |
cd9e9808 MB |
7038 | S: Maintained |
7039 | F: drivers/lightnvm/ | |
7040 | F: include/linux/lightnvm.h | |
7041 | F: include/uapi/linux/lightnvm.h | |
7042 | ||
1da177e4 | 7043 | LINUX FOR IBM pSERIES (RS/6000) |
8b58be88 | 7044 | M: Paul Mackerras <paulus@au.ibm.com> |
1da177e4 LT |
7045 | W: http://www.ibm.com/linux/ltc/projects/ppc |
7046 | S: Supported | |
11c34c7d | 7047 | F: arch/powerpc/boot/rs6000.h |
1da177e4 | 7048 | |
852bb9f5 | 7049 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
7050 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
7051 | M: Paul Mackerras <paulus@samba.org> | |
ea668936 | 7052 | M: Michael Ellerman <mpe@ellerman.id.au> |
1da177e4 | 7053 | W: http://www.penguinppc.org/ |
a4724ed6 | 7054 | L: linuxppc-dev@lists.ozlabs.org |
8a6e2535 | 7055 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
9958084a | 7056 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git |
1da177e4 | 7057 | S: Supported |
11c34c7d JP |
7058 | F: Documentation/powerpc/ |
7059 | F: arch/powerpc/ | |
ef69b03d ME |
7060 | F: drivers/char/tpm/tpm_ibmvtpm* |
7061 | F: drivers/crypto/nx/ | |
7062 | F: drivers/crypto/vmx/ | |
7063 | F: drivers/net/ethernet/ibm/ibmveth.* | |
7064 | F: drivers/net/ethernet/ibm/ibmvnic.* | |
66725152 | 7065 | F: drivers/pci/hotplug/pnv_php.c |
ef69b03d ME |
7066 | F: drivers/pci/hotplug/rpa* |
7067 | F: drivers/scsi/ibmvscsi/ | |
7068 | N: opal | |
7069 | N: /pmac | |
7070 | N: powermac | |
7071 | N: powernv | |
7072 | N: [^a-z0-9]ps3 | |
7073 | N: pseries | |
1da177e4 LT |
7074 | |
7075 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 7076 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
1da177e4 | 7077 | W: http://www.penguinppc.org/ |
a4724ed6 | 7078 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 7079 | S: Maintained |
11c34c7d JP |
7080 | F: arch/powerpc/platforms/powermac/ |
7081 | F: drivers/macintosh/ | |
1da177e4 | 7082 | |
77a76369 | 7083 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 7084 | M: Anatolij Gustschin <agust@denx.de> |
a4724ed6 | 7085 | L: linuxppc-dev@lists.ozlabs.org |
cba5b1c6 | 7086 | T: git git://git.denx.de/linux-denx-agust.git |
1da177e4 | 7087 | S: Maintained |
11c34c7d JP |
7088 | F: arch/powerpc/platforms/512x/ |
7089 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
7090 | |
7091 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
49e7d9df | 7092 | M: Alistair Popple <alistair@popple.id.au> |
8b58be88 | 7093 | M: Matt Porter <mporter@kernel.crashing.org> |
1da177e4 | 7094 | W: http://www.penguinppc.org/ |
a4724ed6 | 7095 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 7096 | S: Maintained |
11c34c7d JP |
7097 | F: arch/powerpc/platforms/40x/ |
7098 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 7099 | |
260c02a9 | 7100 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
a4724ed6 | 7101 | L: linuxppc-dev@lists.ozlabs.org |
cdeb8994 | 7102 | S: Orphan |
11c34c7d JP |
7103 | F: arch/powerpc/*/*virtex* |
7104 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 7105 | |
e93adf1e | 7106 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 | 7107 | M: Vitaly Bordug <vitb@kernel.crashing.org> |
e93adf1e | 7108 | W: http://www.penguinppc.org/ |
a4724ed6 | 7109 | L: linuxppc-dev@lists.ozlabs.org |
e93adf1e | 7110 | S: Maintained |
a2b1f7c8 | 7111 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 7112 | |
1da177e4 | 7113 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
44451d4d | 7114 | M: Scott Wood <oss@buserror.net> |
8b58be88 | 7115 | M: Kumar Gala <galak@kernel.crashing.org> |
ce00f85c | 7116 | W: http://www.penguinppc.org/ |
a4724ed6 | 7117 | L: linuxppc-dev@lists.ozlabs.org |
a1e0fb42 | 7118 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git |
ce00f85c | 7119 | S: Maintained |
11c34c7d | 7120 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 7121 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 7122 | |
ab06ff3a | 7123 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
8b58be88 | 7124 | M: Olof Johansson <olof@lixom.net> |
a4724ed6 | 7125 | L: linuxppc-dev@lists.ozlabs.org |
92e19709 | 7126 | S: Maintained |
11c34c7d JP |
7127 | F: arch/powerpc/platforms/pasemi/ |
7128 | F: drivers/*/*pasemi* | |
7129 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 7130 | |
1da177e4 | 7131 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 7132 | M: Chris Wright <chrisw@sous-sol.org> |
1a4520be | 7133 | L: linux-security-module@vger.kernel.org |
1da177e4 LT |
7134 | S: Supported |
7135 | ||
a23ce6da HW |
7136 | LIS3LV02D ACCELEROMETER DRIVER |
7137 | M: Eric Piel <eric.piel@tremplin-utc.net> | |
7138 | S: Maintained | |
ff606677 JD |
7139 | F: Documentation/misc-devices/lis3lv02d |
7140 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 7141 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 7142 | |
b700e7f0 SJ |
7143 | LIVE PATCHING |
7144 | M: Josh Poimboeuf <jpoimboe@redhat.com> | |
06e1c170 | 7145 | M: Jessica Yu <jeyu@redhat.com> |
e5f6450c | 7146 | M: Jiri Kosina <jikos@kernel.org> |
06e1c170 JP |
7147 | M: Miroslav Benes <mbenes@suse.cz> |
7148 | R: Petr Mladek <pmladek@suse.com> | |
b700e7f0 SJ |
7149 | S: Maintained |
7150 | F: kernel/livepatch/ | |
7151 | F: include/linux/livepatch.h | |
7152 | F: arch/x86/include/asm/livepatch.h | |
7153 | F: arch/x86/kernel/livepatch.c | |
5e4e3844 | 7154 | F: Documentation/livepatch/ |
b700e7f0 | 7155 | F: Documentation/ABI/testing/sysfs-kernel-livepatch |
13d1cf7e | 7156 | F: samples/livepatch/ |
b700e7f0 | 7157 | L: live-patching@vger.kernel.org |
74d50da3 | 7158 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git |
b700e7f0 | 7159 | |
ea861d73 KC |
7160 | LINUX KERNEL DUMP TEST MODULE (LKDTM) |
7161 | M: Kees Cook <keescook@chromium.org> | |
7162 | S: Maintained | |
426f3a53 | 7163 | F: drivers/misc/lkdtm* |
ea861d73 | 7164 | |
e2d1d6c0 | 7165 | LLC (802.2) |
8b58be88 | 7166 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 | 7167 | S: Maintained |
679655da | 7168 | F: include/linux/llc.h |
c117ab84 | 7169 | F: include/uapi/linux/llc.h |
679655da JP |
7170 | F: include/net/llc* |
7171 | F: net/llc/ | |
e2d1d6c0 | 7172 | |
4e233cbe AD |
7173 | LM73 HARDWARE MONITOR DRIVER |
7174 | M: Guillaume Ligneul <guillaume.ligneul@gmail.com> | |
968ce1b1 | 7175 | L: linux-hwmon@vger.kernel.org |
4e233cbe AD |
7176 | S: Maintained |
7177 | F: drivers/hwmon/lm73.c | |
7178 | ||
156e2d1a | 7179 | LM78 HARDWARE MONITOR DRIVER |
d8130624 | 7180 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 7181 | L: linux-hwmon@vger.kernel.org |
156e2d1a JD |
7182 | S: Maintained |
7183 | F: Documentation/hwmon/lm78 | |
7184 | F: drivers/hwmon/lm78.c | |
7185 | ||
1da177e4 | 7186 | LM83 HARDWARE MONITOR DRIVER |
d8130624 | 7187 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 7188 | L: linux-hwmon@vger.kernel.org |
1da177e4 | 7189 | S: Maintained |
679655da JP |
7190 | F: Documentation/hwmon/lm83 |
7191 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
7192 | |
7193 | LM90 HARDWARE MONITOR DRIVER | |
d8130624 | 7194 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 7195 | L: linux-hwmon@vger.kernel.org |
1da177e4 | 7196 | S: Maintained |
679655da | 7197 | F: Documentation/hwmon/lm90 |
aae7bce4 | 7198 | F: Documentation/devicetree/bindings/hwmon/lm90.txt |
679655da | 7199 | F: drivers/hwmon/lm90.c |
1da177e4 | 7200 | |
917cc4e6 GR |
7201 | LM95234 HARDWARE MONITOR DRIVER |
7202 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7203 | L: linux-hwmon@vger.kernel.org |
917cc4e6 GR |
7204 | S: Maintained |
7205 | F: Documentation/hwmon/lm95234 | |
7206 | F: drivers/hwmon/lm95234.c | |
7207 | ||
68620bdd MP |
7208 | LME2510 MEDIA DRIVER |
7209 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
7210 | L: linux-media@vger.kernel.org | |
a825eaec | 7211 | W: https://linuxtv.org |
68620bdd MP |
7212 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
7213 | S: Maintained | |
7214 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
7215 | ||
d4c3be70 | 7216 | LOCKING PRIMITIVES |
8b58be88 JP |
7217 | M: Peter Zijlstra <peterz@infradead.org> |
7218 | M: Ingo Molnar <mingo@redhat.com> | |
981c3a4f | 7219 | L: linux-kernel@vger.kernel.org |
d4c3be70 | 7220 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core |
512e67f9 | 7221 | S: Maintained |
d4c3be70 | 7222 | F: Documentation/locking/ |
679655da | 7223 | F: include/linux/lockdep.h |
d4c3be70 IM |
7224 | F: include/linux/spinlock*.h |
7225 | F: arch/*/include/asm/spinlock*.h | |
7226 | F: include/linux/rwlock*.h | |
7227 | F: include/linux/mutex*.h | |
7228 | F: arch/*/include/asm/mutex*.h | |
7229 | F: include/linux/rwsem*.h | |
7230 | F: arch/*/include/asm/rwsem.h | |
7231 | F: include/linux/seqlock.h | |
7232 | F: lib/locking*.[ch] | |
7486d6da | 7233 | F: kernel/locking/ |
512e67f9 | 7234 | |
dde33348 | 7235 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 7236 | M: "Richard Russon (FlatCap)" <ldm@flatcap.org> |
dde33348 AA |
7237 | L: linux-ntfs-dev@lists.sourceforge.net |
7238 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 7239 | S: Maintained |
679655da | 7240 | F: Documentation/ldm.txt |
20d16fef | 7241 | F: block/partitions/ldm.* |
1da177e4 | 7242 | |
ef6ada3d JE |
7243 | LogFS |
7244 | M: Joern Engel <joern@logfs.org> | |
756ccb3c | 7245 | M: Prasad Joshi <prasadjoshi.linux@gmail.com> |
ef6ada3d JE |
7246 | L: logfs@logfs.org |
7247 | W: logfs.org | |
7248 | S: Maintained | |
7249 | F: fs/logfs/ | |
7250 | ||
c87e34ef | 7251 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
9495e835 SS |
7252 | M: Sathya Prakash <sathya.prakash@broadcom.com> |
7253 | M: Chaitra P B <chaitra.basappa@broadcom.com> | |
7254 | M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com> | |
7255 | L: MPT-FusionLinux.pdl@broadcom.com | |
c87e34ef | 7256 | L: linux-scsi@vger.kernel.org |
9495e835 | 7257 | W: http://www.avagotech.com/support/ |
c87e34ef | 7258 | S: Supported |
679655da | 7259 | F: drivers/message/fusion/ |
500c152a | 7260 | F: drivers/scsi/mpt2sas/ |
7261 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 7262 | |
1da177e4 | 7263 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 7264 | M: Matthew Wilcox <matthew@wil.cx> |
1da177e4 LT |
7265 | L: linux-scsi@vger.kernel.org |
7266 | S: Maintained | |
679655da | 7267 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 7268 | |
e5f5c99a GR |
7269 | LTC4261 HARDWARE MONITOR DRIVER |
7270 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7271 | L: linux-hwmon@vger.kernel.org |
e5f5c99a GR |
7272 | S: Maintained |
7273 | F: Documentation/hwmon/ltc4261 | |
7274 | F: drivers/hwmon/ltc4261.c | |
7275 | ||
81365c31 | 7276 | LTP (Linux Test Project) |
28b8e8d4 | 7277 | M: Mike Frysinger <vapier@gentoo.org> |
7d1ae8a8 | 7278 | M: Cyril Hrubis <chrubis@suse.cz> |
0526109a | 7279 | M: Wanlong Gao <wanlong.gao@gmail.com> |
f2eb7f6f CH |
7280 | M: Jan Stancek <jstancek@redhat.com> |
7281 | M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com> | |
7282 | M: Alexey Kodanev <alexey.kodanev@oracle.com> | |
0526109a | 7283 | L: ltp@lists.linux.it (subscribers-only) |
f2eb7f6f | 7284 | W: http://linux-test-project.github.io/ |
7d1ae8a8 | 7285 | T: git git://github.com/linux-test-project/ltp.git |
81365c31 MF |
7286 | S: Maintained |
7287 | ||
c12a54b3 | 7288 | M32R ARCHITECTURE |
c12a54b3 | 7289 | W: http://www.linux-m32r.org/ |
b4174867 | 7290 | S: Orphan |
679655da | 7291 | F: arch/m32r/ |
c12a54b3 | 7292 | |
1da177e4 | 7293 | M68K ARCHITECTURE |
8b58be88 | 7294 | M: Geert Uytterhoeven <geert@linux-m68k.org> |
1da177e4 LT |
7295 | L: linux-m68k@lists.linux-m68k.org |
7296 | W: http://www.linux-m68k.org/ | |
54e5881d | 7297 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 7298 | S: Maintained |
679655da | 7299 | F: arch/m68k/ |
9db35182 | 7300 | F: drivers/zorro/ |
1da177e4 LT |
7301 | |
7302 | M68K ON APPLE MACINTOSH | |
8b58be88 | 7303 | M: Joshua Thompson <funaho@jurai.org> |
1da177e4 | 7304 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 7305 | L: linux-m68k@lists.linux-m68k.org |
1da177e4 | 7306 | S: Maintained |
9db35182 | 7307 | F: arch/m68k/mac/ |
1da177e4 LT |
7308 | |
7309 | M68K ON HP9000/300 | |
8b58be88 | 7310 | M: Philip Blundell <philb@gnu.org> |
1da177e4 LT |
7311 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
7312 | S: Maintained | |
679655da | 7313 | F: arch/m68k/hp300/ |
1da177e4 | 7314 | |
74425546 AP |
7315 | M88DS3103 MEDIA DRIVER |
7316 | M: Antti Palosaari <crope@iki.fi> | |
7317 | L: linux-media@vger.kernel.org | |
a825eaec | 7318 | W: https://linuxtv.org |
74425546 AP |
7319 | W: http://palosaari.fi/linux/ |
7320 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7321 | T: git git://linuxtv.org/anttip/media_tree.git | |
7322 | S: Maintained | |
7323 | F: drivers/media/dvb-frontends/m88ds3103* | |
7324 | ||
68620bdd MP |
7325 | M88RS2000 MEDIA DRIVER |
7326 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
7327 | L: linux-media@vger.kernel.org | |
a825eaec | 7328 | W: https://linuxtv.org |
68620bdd MP |
7329 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
7330 | S: Maintained | |
7331 | F: drivers/media/dvb-frontends/m88rs2000* | |
7332 | ||
07a092fa | 7333 | MA901 MASTERKIT USB FM RADIO DRIVER |
b75f0050 JP |
7334 | M: Alexey Klimov <klimov.linux@gmail.com> |
7335 | L: linux-media@vger.kernel.org | |
7336 | T: git git://linuxtv.org/media_tree.git | |
7337 | S: Maintained | |
7338 | F: drivers/media/radio/radio-ma901.c | |
07a092fa | 7339 | |
64a327a7 | 7340 | MAC80211 |
8b58be88 | 7341 | M: Johannes Berg <johannes@sipsolutions.net> |
64a327a7 | 7342 | L: linux-wireless@vger.kernel.org |
491b26b4 | 7343 | W: http://wireless.kernel.org/ |
ce466579 JB |
7344 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
7345 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 7346 | S: Maintained |
679655da JP |
7347 | F: Documentation/networking/mac80211-injection.txt |
7348 | F: include/net/mac80211.h | |
7349 | F: net/mac80211/ | |
2af8c4dc | 7350 | F: drivers/net/wireless/mac80211_hwsim.[ch] |
64a327a7 | 7351 | |
b863ceb7 | 7352 | MACVLAN DRIVER |
8b58be88 | 7353 | M: Patrick McHardy <kaber@trash.net> |
b863ceb7 PM |
7354 | L: netdev@vger.kernel.org |
7355 | S: Maintained | |
679655da JP |
7356 | F: drivers/net/macvlan.c |
7357 | F: include/linux/if_macvlan.h | |
b863ceb7 | 7358 | |
2b6d83e2 JB |
7359 | MAILBOX API |
7360 | M: Jassi Brar <jassisinghbrar@gmail.com> | |
7361 | L: linux-kernel@vger.kernel.org | |
7362 | S: Maintained | |
7363 | F: drivers/mailbox/ | |
7364 | F: include/linux/mailbox_client.h | |
7365 | F: include/linux/mailbox_controller.h | |
7366 | ||
faf1668c | 7367 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 7368 | M: Michael Kerrisk <mtk.manpages@gmail.com> |
795fb7e7 | 7369 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 7370 | L: linux-man@vger.kernel.org |
1b53dc74 | 7371 | S: Maintained |
faf1668c | 7372 | |
0d3cd4b6 VD |
7373 | MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER |
7374 | M: Andrew Lunn <andrew@lunn.ch> | |
7375 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> | |
7376 | S: Maintained | |
7377 | F: drivers/net/dsa/mv88e6xxx/ | |
7378 | ||
8427defd | 7379 | MARVELL ARMADA DRM SUPPORT |
54176cc6 | 7380 | M: Russell King <rmk+kernel@armlinux.org.uk> |
8427defd RK |
7381 | S: Maintained |
7382 | F: drivers/gpu/drm/armada/ | |
4418833e EV |
7383 | F: include/uapi/drm/armada_drm.h |
7384 | F: Documentation/devicetree/bindings/display/armada/ | |
8427defd | 7385 | |
c4d007bc TP |
7386 | MARVELL CRYPTO DRIVER |
7387 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
7388 | M: Arnaud Ebalard <arno@natisbad.org> | |
7389 | F: drivers/crypto/marvell/ | |
7390 | S: Maintained | |
7391 | L: linux-crypto@vger.kernel.org | |
7392 | ||
44c14c1d | 7393 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
7394 | M: Mirko Lindner <mlindner@marvell.com> | |
adbbf69d | 7395 | M: Stephen Hemminger <stephen@networkplumber.org> |
44c14c1d | 7396 | L: netdev@vger.kernel.org |
7397 | S: Maintained | |
7398 | F: drivers/net/ethernet/marvell/sk* | |
7399 | ||
74cda169 | 7400 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 7401 | L: libertas-dev@lists.infradead.org |
8ac3e99e | 7402 | S: Orphan |
f988d640 | 7403 | F: drivers/net/wireless/marvell/libertas/ |
74cda169 | 7404 | |
b60d6975 | 7405 | MARVELL MV643XX ETHERNET DRIVER |
4e3faf88 | 7406 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
979b6c13 | 7407 | L: netdev@vger.kernel.org |
f5ca8502 | 7408 | S: Maintained |
527a6266 | 7409 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 7410 | F: include/linux/mv643xx.h |
1da177e4 | 7411 | |
370b8ed9 TP |
7412 | MARVELL MVNETA ETHERNET DRIVER |
7413 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
7414 | L: netdev@vger.kernel.org | |
7415 | S: Maintained | |
7416 | F: drivers/net/ethernet/marvell/mvneta.* | |
7417 | ||
fcad584d | 7418 | MARVELL MWIFIEX WIRELESS DRIVER |
b9d31704 | 7419 | M: Amitkumar Karwar <akarwar@marvell.com> |
550795fc | 7420 | M: Nishant Sarmukadam <nishants@marvell.com> |
fcad584d BZ |
7421 | L: linux-wireless@vger.kernel.org |
7422 | S: Maintained | |
277b024e | 7423 | F: drivers/net/wireless/marvell/mwifiex/ |
fcad584d | 7424 | |
a2c3f656 | 7425 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 7426 | M: Lennert Buytenhek <buytenh@wantstofly.org> |
a2c3f656 | 7427 | L: linux-wireless@vger.kernel.org |
16345910 | 7428 | S: Odd Fixes |
de60f1dc | 7429 | F: drivers/net/wireless/marvell/mwl8k.c |
a2c3f656 | 7430 | |
2a69567b | 7431 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 7432 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 7433 | S: Odd Fixes |
1fa7e547 | 7434 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 7435 | |
1da177e4 | 7436 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 7437 | L: linux-fbdev@vger.kernel.org |
52653199 | 7438 | S: Orphan |
8a61f013 | 7439 | F: drivers/video/fbdev/matrox/matroxfb_* |
c117ab84 | 7440 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 7441 | |
ca462085 GR |
7442 | MAX16065 HARDWARE MONITOR DRIVER |
7443 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7444 | L: linux-hwmon@vger.kernel.org |
ca462085 GR |
7445 | S: Maintained |
7446 | F: Documentation/hwmon/max16065 | |
7447 | F: drivers/hwmon/max16065.c | |
7448 | ||
1f61cab8 GR |
7449 | MAX20751 HARDWARE MONITOR DRIVER |
7450 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7451 | L: linux-hwmon@vger.kernel.org |
1f61cab8 GR |
7452 | S: Maintained |
7453 | F: Documentation/hwmon/max20751 | |
7454 | F: drivers/hwmon/max20751.c | |
7455 | ||
d20620de | 7456 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
968ce1b1 | 7457 | L: linux-hwmon@vger.kernel.org |
34924b23 | 7458 | S: Orphan |
679655da JP |
7459 | F: Documentation/hwmon/max6650 |
7460 | F: drivers/hwmon/max6650.c | |
d20620de | 7461 | |
e89ab51f GR |
7462 | MAX6697 HARDWARE MONITOR DRIVER |
7463 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7464 | L: linux-hwmon@vger.kernel.org |
e89ab51f GR |
7465 | S: Maintained |
7466 | F: Documentation/hwmon/max6697 | |
7467 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
7468 | F: drivers/hwmon/max6697.c | |
7469 | F: include/linux/platform_data/max6697.h | |
7470 | ||
3b2af7f7 PR |
7471 | MAX9860 MONO AUDIO VOICE CODEC DRIVER |
7472 | M: Peter Rosin <peda@axentia.se> | |
7473 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
7474 | S: Maintained | |
7475 | F: Documentation/devicetree/bindings/sound/max9860.txt | |
7476 | F: sound/soc/codecs/max9860.* | |
7477 | ||
f8f847b5 | 7478 | MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS |
326dce07 KK |
7479 | M: Krzysztof Kozlowski <krzk@kernel.org> |
7480 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
f8f847b5 KK |
7481 | L: linux-pm@vger.kernel.org |
7482 | S: Supported | |
7483 | F: drivers/power/max14577_charger.c | |
7484 | F: drivers/power/max77693_charger.c | |
7485 | ||
3811405e JMC |
7486 | MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS |
7487 | M: Javier Martinez Canillas <javier@osg.samsung.com> | |
7488 | L: linux-kernel@vger.kernel.org | |
7489 | S: Supported | |
96173cc6 | 7490 | F: drivers/*/*max77802*.c |
3811405e JMC |
7491 | F: Documentation/devicetree/bindings/*/*max77802.txt |
7492 | F: include/dt-bindings/*/*max77802.h | |
7493 | ||
befeb596 KK |
7494 | MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS |
7495 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
326dce07 KK |
7496 | M: Krzysztof Kozlowski <krzk@kernel.org> |
7497 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
befeb596 KK |
7498 | L: linux-kernel@vger.kernel.org |
7499 | S: Supported | |
86cf635a | 7500 | F: drivers/*/max14577*.c |
0998a436 | 7501 | F: drivers/*/max77686*.c |
86cf635a | 7502 | F: drivers/*/max77693*.c |
befeb596 KK |
7503 | F: drivers/extcon/extcon-max14577.c |
7504 | F: drivers/extcon/extcon-max77693.c | |
7505 | F: drivers/rtc/rtc-max77686.c | |
7506 | F: drivers/clk/clk-max77686.c | |
7507 | F: Documentation/devicetree/bindings/mfd/max14577.txt | |
377452f4 | 7508 | F: Documentation/devicetree/bindings/*/max77686.txt |
befeb596 KK |
7509 | F: Documentation/devicetree/bindings/mfd/max77693.txt |
7510 | F: Documentation/devicetree/bindings/clock/maxim,max77686.txt | |
7511 | F: include/linux/mfd/max14577*.h | |
7512 | F: include/linux/mfd/max77686*.h | |
7513 | F: include/linux/mfd/max77693*.h | |
7514 | ||
9be3c9a5 HV |
7515 | MAXIRADIO FM RADIO RECEIVER DRIVER |
7516 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7517 | L: linux-media@vger.kernel.org | |
7518 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 7519 | W: https://linuxtv.org |
9be3c9a5 HV |
7520 | S: Maintained |
7521 | F: drivers/media/radio/radio-maxiradio* | |
7522 | ||
c05dc2cc PR |
7523 | MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER |
7524 | M: Peter Rosin <peda@axentia.se> | |
7525 | L: linux-iio@vger.kernel.org | |
7526 | S: Maintained | |
7527 | F: drivers/iio/potentiometer/mcp4531.c | |
7528 | ||
7b49235e LP |
7529 | MEDIA DRIVERS FOR RENESAS - FCP |
7530 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
7531 | L: linux-media@vger.kernel.org | |
7532 | L: linux-renesas-soc@vger.kernel.org | |
7533 | T: git git://linuxtv.org/media_tree.git | |
7534 | S: Supported | |
7535 | F: Documentation/devicetree/bindings/media/renesas,fcp.txt | |
7536 | F: drivers/media/platform/rcar-fcp.c | |
7537 | F: include/media/rcar-fcp.h | |
7538 | ||
6f32a8c9 LP |
7539 | MEDIA DRIVERS FOR RENESAS - VSP1 |
7540 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
7541 | L: linux-media@vger.kernel.org | |
4a121096 | 7542 | L: linux-renesas-soc@vger.kernel.org |
6f32a8c9 LP |
7543 | T: git git://linuxtv.org/media_tree.git |
7544 | S: Supported | |
7545 | F: Documentation/devicetree/bindings/media/renesas,vsp1.txt | |
7546 | F: drivers/media/platform/vsp1/ | |
7547 | ||
fae2080a AO |
7548 | MEDIA DRIVERS FOR HELENE |
7549 | M: Abylay Ospan <aospan@netup.ru> | |
7550 | L: linux-media@vger.kernel.org | |
7551 | W: https://linuxtv.org | |
7552 | W: http://netup.tv/ | |
7553 | T: git git://linuxtv.org/media_tree.git | |
7554 | S: Supported | |
7555 | F: drivers/media/dvb-frontends/helene* | |
7556 | ||
dacf9ce8 KS |
7557 | MEDIA DRIVERS FOR ASCOT2E |
7558 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 7559 | M: Abylay Ospan <aospan@netup.ru> |
dacf9ce8 | 7560 | L: linux-media@vger.kernel.org |
a825eaec | 7561 | W: https://linuxtv.org |
dacf9ce8 KS |
7562 | W: http://netup.tv/ |
7563 | T: git git://linuxtv.org/media_tree.git | |
7564 | S: Supported | |
7565 | F: drivers/media/dvb-frontends/ascot2e* | |
7566 | ||
a6dc60ff KS |
7567 | MEDIA DRIVERS FOR CXD2841ER |
7568 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 7569 | M: Abylay Ospan <aospan@netup.ru> |
a6dc60ff | 7570 | L: linux-media@vger.kernel.org |
a825eaec | 7571 | W: https://linuxtv.org |
a6dc60ff KS |
7572 | W: http://netup.tv/ |
7573 | T: git git://linuxtv.org/media_tree.git | |
7574 | S: Supported | |
7575 | F: drivers/media/dvb-frontends/cxd2841er* | |
7576 | ||
a5d32b35 KS |
7577 | MEDIA DRIVERS FOR HORUS3A |
7578 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 7579 | M: Abylay Ospan <aospan@netup.ru> |
a5d32b35 | 7580 | L: linux-media@vger.kernel.org |
a825eaec | 7581 | W: https://linuxtv.org |
a5d32b35 KS |
7582 | W: http://netup.tv/ |
7583 | T: git git://linuxtv.org/media_tree.git | |
7584 | S: Supported | |
7585 | F: drivers/media/dvb-frontends/horus3a* | |
7586 | ||
e025273b KS |
7587 | MEDIA DRIVERS FOR LNBH25 |
7588 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 7589 | M: Abylay Ospan <aospan@netup.ru> |
e025273b | 7590 | L: linux-media@vger.kernel.org |
a825eaec | 7591 | W: https://linuxtv.org |
e025273b KS |
7592 | W: http://netup.tv/ |
7593 | T: git git://linuxtv.org/media_tree.git | |
7594 | S: Supported | |
7595 | F: drivers/media/dvb-frontends/lnbh25* | |
7596 | ||
52b1eaf4 KS |
7597 | MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices |
7598 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 7599 | M: Abylay Ospan <aospan@netup.ru> |
52b1eaf4 | 7600 | L: linux-media@vger.kernel.org |
a825eaec | 7601 | W: https://linuxtv.org |
52b1eaf4 KS |
7602 | W: http://netup.tv/ |
7603 | T: git git://linuxtv.org/media_tree.git | |
7604 | S: Supported | |
7605 | F: drivers/media/pci/netup_unidvb/* | |
7606 | ||
127c49ae | 7607 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
5dc8a864 MCC |
7608 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
7609 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
127c49ae JP |
7610 | P: LinuxTV.org Project |
7611 | L: linux-media@vger.kernel.org | |
a825eaec | 7612 | W: https://linuxtv.org |
8a6e2535 | 7613 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 7614 | T: git git://linuxtv.org/media_tree.git |
127c49ae JP |
7615 | S: Maintained |
7616 | F: Documentation/dvb/ | |
7617 | F: Documentation/video4linux/ | |
ffe06198 | 7618 | F: Documentation/DocBook/media/ |
127c49ae | 7619 | F: drivers/media/ |
ffe06198 | 7620 | F: drivers/staging/media/ |
eb4b0ec7 | 7621 | F: include/linux/platform_data/media/ |
127c49ae | 7622 | F: include/media/ |
6c0f0359 MCC |
7623 | F: include/uapi/linux/dvb/ |
7624 | F: include/uapi/linux/videodev2.h | |
7625 | F: include/uapi/linux/media.h | |
7626 | F: include/uapi/linux/v4l2-* | |
7627 | F: include/uapi/linux/meye.h | |
7628 | F: include/uapi/linux/ivtv* | |
7629 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 7630 | |
0c272fc9 JC |
7631 | MEDIATEK ETHERNET DRIVER |
7632 | M: Felix Fietkau <nbd@openwrt.org> | |
7633 | M: John Crispin <blogic@openwrt.org> | |
7634 | L: netdev@vger.kernel.org | |
7635 | S: Maintained | |
7636 | F: drivers/net/ethernet/mediatek/ | |
7637 | ||
c869f77d JK |
7638 | MEDIATEK MT7601U WIRELESS LAN DRIVER |
7639 | M: Jakub Kicinski <kubakici@wp.pl> | |
7640 | L: linux-wireless@vger.kernel.org | |
7641 | S: Maintained | |
7642 | F: drivers/net/wireless/mediatek/mt7601u/ | |
7643 | ||
e399065b SS |
7644 | MEGARAID SCSI/SAS DRIVERS |
7645 | M: Kashyap Desai <kashyap.desai@avagotech.com> | |
7646 | M: Sumit Saxena <sumit.saxena@avagotech.com> | |
7647 | M: Uday Lingala <uday.lingala@avagotech.com> | |
7648 | L: megaraidlinux.pdl@avagotech.com | |
baaea1dc | 7649 | L: linux-scsi@vger.kernel.org |
e399065b | 7650 | W: http://www.lsi.com |
ce00f85c | 7651 | S: Maintained |
679655da JP |
7652 | F: Documentation/scsi/megaraid.txt |
7653 | F: drivers/scsi/megaraid.* | |
7654 | F: drivers/scsi/megaraid/ | |
757e0108 | 7655 | |
2c46c9d5 | 7656 | MELLANOX ETHERNET DRIVER (mlx4_en) |
c40e4096 | 7657 | M: Tariq Toukan <tariqt@mellanox.com> |
b75f0050 | 7658 | L: netdev@vger.kernel.org |
2c46c9d5 AV |
7659 | S: Supported |
7660 | W: http://www.mellanox.com | |
7661 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
7662 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
7663 | ||
e7523a49 OG |
7664 | MELLANOX ETHERNET DRIVER (mlx5e) |
7665 | M: Saeed Mahameed <saeedm@mellanox.com> | |
7666 | L: netdev@vger.kernel.org | |
7667 | S: Supported | |
7668 | W: http://www.mellanox.com | |
7669 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
7670 | F: drivers/net/ethernet/mellanox/mlx5/core/en_* | |
7671 | ||
93c1edb2 JP |
7672 | MELLANOX ETHERNET SWITCH DRIVERS |
7673 | M: Jiri Pirko <jiri@mellanox.com> | |
7674 | M: Ido Schimmel <idosch@mellanox.com> | |
7675 | L: netdev@vger.kernel.org | |
7676 | S: Supported | |
7677 | W: http://www.mellanox.com | |
7678 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
7679 | F: drivers/net/ethernet/mellanox/mlxsw/ | |
7680 | ||
58cbbee2 VP |
7681 | MELLANOX PLATFORM DRIVER |
7682 | M: Vadim Pasternak <vadimp@mellanox.com> | |
7683 | L: platform-driver-x86@vger.kernel.org | |
7684 | S: Supported | |
7685 | F: arch/x86/platform/mellanox/mlx-platform.c | |
7686 | ||
8700e3e7 MS |
7687 | SOFT-ROCE DRIVER (rxe) |
7688 | M: Moni Shoua <monis@mellanox.com> | |
7689 | L: linux-rdma@vger.kernel.org | |
7690 | S: Supported | |
7691 | W: https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home | |
7692 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
701b4bf6 | 7693 | F: drivers/infiniband/sw/rxe/ |
8700e3e7 MS |
7694 | F: include/uapi/rdma/rdma_user_rxe.h |
7695 | ||
5b25b13a MD |
7696 | MEMBARRIER SUPPORT |
7697 | M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
7698 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
7699 | L: linux-kernel@vger.kernel.org | |
7700 | S: Supported | |
7701 | F: kernel/membarrier.c | |
7702 | F: include/uapi/linux/membarrier.h | |
7703 | ||
70ea91f1 SR |
7704 | MEMORY MANAGEMENT |
7705 | L: linux-mm@kvack.org | |
70ea91f1 SR |
7706 | W: http://www.linux-mm.org |
7707 | S: Maintained | |
679655da | 7708 | F: include/linux/mm.h |
551450bb CS |
7709 | F: include/linux/gfp.h |
7710 | F: include/linux/mmzone.h | |
7711 | F: include/linux/memory_hotplug.h | |
7712 | F: include/linux/vmalloc.h | |
679655da | 7713 | F: mm/ |
70ea91f1 | 7714 | |
f4e9ce66 | 7715 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 7716 | M: David Woodhouse <dwmw2@infradead.org> |
242c325e | 7717 | M: Brian Norris <computersforpeace@gmail.com> |
1da177e4 | 7718 | L: linux-mtd@lists.infradead.org |
8a6e2535 JP |
7719 | W: http://www.linux-mtd.infradead.org/ |
7720 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
242c325e | 7721 | T: git git://git.infradead.org/linux-mtd.git |
ab95eac9 | 7722 | T: git git://git.infradead.org/l2-mtd.git |
1da177e4 | 7723 | S: Maintained |
becc7ae5 | 7724 | F: Documentation/devicetree/bindings/mtd/ |
679655da JP |
7725 | F: drivers/mtd/ |
7726 | F: include/linux/mtd/ | |
c117ab84 | 7727 | F: include/uapi/mtd/ |
1da177e4 | 7728 | |
26c57ef1 | 7729 | MEN A21 WATCHDOG DRIVER |
30c7469b | 7730 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
26c57ef1 | 7731 | L: linux-watchdog@vger.kernel.org |
30c7469b | 7732 | S: Maintained |
26c57ef1 JT |
7733 | F: drivers/watchdog/mena21_wdt.c |
7734 | ||
3764e82e | 7735 | MEN CHAMELEON BUS (mcb) |
30c7469b JT |
7736 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
7737 | S: Maintained | |
3764e82e JT |
7738 | F: drivers/mcb/ |
7739 | F: include/linux/mcb.h | |
b9f2f459 | 7740 | F: Documentation/men-chameleon-bus.txt |
3764e82e | 7741 | |
48b490d2 AW |
7742 | MEN F21BMC (Board Management Controller) |
7743 | M: Andreas Werner <andreas.werner@men.de> | |
7744 | S: Supported | |
7745 | F: drivers/mfd/menf21bmc.c | |
7746 | F: drivers/watchdog/menf21bmc_wdt.c | |
7747 | F: drivers/leds/leds-menf21bmc.c | |
7748 | F: drivers/hwmon/menf21bmc_hwmon.c | |
7749 | F: Documentation/hwmon/menf21bmc | |
7750 | ||
12285945 JH |
7751 | METAG ARCHITECTURE |
7752 | M: James Hogan <james.hogan@imgtec.com> | |
d668d9ed | 7753 | L: linux-metag@vger.kernel.org |
9f273c24 | 7754 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git |
f23d0e24 | 7755 | S: Odd Fixes |
12285945 JH |
7756 | F: arch/metag/ |
7757 | F: Documentation/metag/ | |
7758 | F: Documentation/devicetree/bindings/metag/ | |
2d799dde | 7759 | F: Documentation/devicetree/bindings/interrupt-controller/img,* |
a2c5d4ed | 7760 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
7761 | F: drivers/irqchip/irq-metag.c |
7762 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 | 7763 | F: drivers/tty/metag_da.c |
12285945 | 7764 | |
c6375b0a | 7765 | MICROBLAZE ARCHITECTURE |
8b58be88 | 7766 | M: Michal Simek <monstr@monstr.eu> |
c6375b0a MS |
7767 | W: http://www.monstr.eu/fdt/ |
7768 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
7769 | S: Supported | |
0a8c7914 | 7770 | F: arch/microblaze/ |
1da177e4 | 7771 | |
5615c371 NF |
7772 | MICROCHIP / ATMEL AT91 / AT32 SERIAL DRIVER |
7773 | M: Richard Genoud <richard.genoud@gmail.com> | |
7774 | S: Maintained | |
7775 | F: drivers/tty/serial/atmel_serial.c | |
7776 | F: include/linux/atmel_serial.h | |
7777 | ||
2508a45a CY |
7778 | MICROSOFT SURFACE PRO 3 BUTTON DRIVER |
7779 | M: Chen Yu <yu.c.chen@intel.com> | |
7780 | L: platform-driver-x86@vger.kernel.org | |
7781 | S: Supported | |
7782 | F: drivers/platform/x86/surfacepro3_button.c | |
7783 | ||
1da177e4 | 7784 | MICROTEK X6 SCANNER |
61eee9a7 | 7785 | M: Oliver Neukum <oliver@neukum.org> |
1da177e4 | 7786 | S: Maintained |
679655da | 7787 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
7788 | |
7789 | MIPS | |
8b58be88 | 7790 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 7791 | L: linux-mips@linux-mips.org |
6097050d | 7792 | W: http://www.linux-mips.org/ |
b05e988e | 7793 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 7794 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 7795 | S: Supported |
f46d92e8 | 7796 | F: Documentation/devicetree/bindings/mips/ |
679655da JP |
7797 | F: Documentation/mips/ |
7798 | F: arch/mips/ | |
1da177e4 | 7799 | |
413ef3f6 KC |
7800 | MIPS/LOONGSON1 ARCHITECTURE |
7801 | M: Keguang Zhang <keguang.zhang@gmail.com> | |
7802 | L: linux-mips@linux-mips.org | |
7803 | S: Maintained | |
7804 | F: arch/mips/loongson32/ | |
7805 | F: arch/mips/include/asm/mach-loongson32/ | |
7806 | F: drivers/*/*loongson1* | |
7807 | F: drivers/*/*/*loongson1* | |
7808 | ||
08b7620a HV |
7809 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
7810 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7811 | L: linux-media@vger.kernel.org | |
7812 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 7813 | W: https://linuxtv.org |
08b7620a HV |
7814 | S: Odd Fixes |
7815 | F: drivers/media/radio/radio-miropcm20* | |
7816 | ||
c09befcb OG |
7817 | MELLANOX MLX4 core VPI driver |
7818 | M: Yishai Hadas <yishaih@mellanox.com> | |
e126ba97 EC |
7819 | L: netdev@vger.kernel.org |
7820 | L: linux-rdma@vger.kernel.org | |
7821 | W: http://www.mellanox.com | |
7822 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
c09befcb OG |
7823 | S: Supported |
7824 | F: drivers/net/ethernet/mellanox/mlx4/ | |
7825 | F: include/linux/mlx4/ | |
7826 | ||
7827 | MELLANOX MLX4 IB driver | |
7828 | M: Yishai Hadas <yishaih@mellanox.com> | |
7829 | L: linux-rdma@vger.kernel.org | |
7830 | W: http://www.mellanox.com | |
e126ba97 | 7831 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
c09befcb OG |
7832 | S: Supported |
7833 | F: drivers/infiniband/hw/mlx4/ | |
7834 | F: include/linux/mlx4/ | |
7835 | ||
595a4d8f OG |
7836 | MELLANOX MLX5 core VPI driver |
7837 | M: Matan Barak <matanb@mellanox.com> | |
7838 | M: Leon Romanovsky <leonro@mellanox.com> | |
e126ba97 EC |
7839 | L: netdev@vger.kernel.org |
7840 | L: linux-rdma@vger.kernel.org | |
7841 | W: http://www.mellanox.com | |
7842 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
e126ba97 EC |
7843 | S: Supported |
7844 | F: drivers/net/ethernet/mellanox/mlx5/core/ | |
7845 | F: include/linux/mlx5/ | |
7846 | ||
595a4d8f OG |
7847 | MELLANOX MLX5 IB driver |
7848 | M: Matan Barak <matanb@mellanox.com> | |
7849 | M: Leon Romanovsky <leonro@mellanox.com> | |
b75f0050 JP |
7850 | L: linux-rdma@vger.kernel.org |
7851 | W: http://www.mellanox.com | |
7852 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
b75f0050 | 7853 | S: Supported |
b75f0050 | 7854 | F: drivers/infiniband/hw/mlx5/ |
595a4d8f | 7855 | F: include/linux/mlx5/ |
e126ba97 | 7856 | |
764589b6 CM |
7857 | MELEXIS MLX90614 DRIVER |
7858 | M: Crt Mori <cmo@melexis.com> | |
7859 | L: linux-iio@vger.kernel.org | |
7860 | W: http://www.melexis.com | |
7861 | S: Supported | |
7862 | F: drivers/iio/temperature/mlx90614.c | |
7863 | ||
0ce277e4 AP |
7864 | MN88472 MEDIA DRIVER |
7865 | M: Antti Palosaari <crope@iki.fi> | |
7866 | L: linux-media@vger.kernel.org | |
a825eaec | 7867 | W: https://linuxtv.org |
0ce277e4 AP |
7868 | W: http://palosaari.fi/linux/ |
7869 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
0ce277e4 | 7870 | S: Maintained |
94d0eaa4 | 7871 | F: drivers/media/dvb-frontends/mn88472* |
0ce277e4 | 7872 | |
4f4d238f AP |
7873 | MN88473 MEDIA DRIVER |
7874 | M: Antti Palosaari <crope@iki.fi> | |
7875 | L: linux-media@vger.kernel.org | |
a825eaec | 7876 | W: https://linuxtv.org |
4f4d238f AP |
7877 | W: http://palosaari.fi/linux/ |
7878 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4f4d238f | 7879 | S: Maintained |
877ba50b | 7880 | F: drivers/media/dvb-frontends/mn88473* |
4f4d238f | 7881 | |
1da177e4 | 7882 | MODULE SUPPORT |
8b58be88 | 7883 | M: Rusty Russell <rusty@rustcorp.com.au> |
1da177e4 | 7884 | S: Maintained |
679655da JP |
7885 | F: include/linux/module.h |
7886 | F: kernel/module.c | |
1da177e4 LT |
7887 | |
7888 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 7889 | W: http://popies.net/meye/ |
b7788e13 | 7890 | S: Orphan |
679655da | 7891 | F: Documentation/video4linux/meye.txt |
90d72ac6 | 7892 | F: drivers/media/pci/meye/ |
6c0f0359 | 7893 | F: include/uapi/linux/meye.h |
1da177e4 | 7894 | |
b9705b60 | 7895 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 7896 | M: Jiri Slaby <jirislaby@gmail.com> |
d735410a | 7897 | S: Maintained |
679655da | 7898 | F: Documentation/serial/moxa-smartio |
c897401b | 7899 | F: drivers/tty/mxser.* |
d735410a | 7900 | |
889b2f87 AK |
7901 | MR800 AVERMEDIA USB FM RADIO DRIVER |
7902 | M: Alexey Klimov <klimov.linux@gmail.com> | |
7903 | L: linux-media@vger.kernel.org | |
7904 | T: git git://linuxtv.org/media_tree.git | |
7905 | S: Maintained | |
7906 | F: drivers/media/radio/radio-mr800.c | |
7907 | ||
d7155691 AO |
7908 | MRF24J40 IEEE 802.15.4 RADIO DRIVER |
7909 | M: Alan Ott <alan@signal11.us> | |
7910 | L: linux-wpan@vger.kernel.org | |
7911 | S: Maintained | |
7912 | F: drivers/net/ieee802154/mrf24j40.c | |
2e6fd648 | 7913 | F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt |
d7155691 | 7914 | |
8c4c731a | 7915 | MSI LAPTOP SUPPORT |
182ae55c | 7916 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 7917 | L: platform-driver-x86@vger.kernel.org |
8c4c731a | 7918 | S: Maintained |
679655da | 7919 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 7920 | |
0f1006b1 | 7921 | MSI WMI SUPPORT |
d0944853 | 7922 | L: platform-driver-x86@vger.kernel.org |
5ee7041e | 7923 | S: Orphan |
0f1006b1 AA |
7924 | F: drivers/platform/x86/msi-wmi.c |
7925 | ||
19a628a0 AP |
7926 | MSI001 MEDIA DRIVER |
7927 | M: Antti Palosaari <crope@iki.fi> | |
7928 | L: linux-media@vger.kernel.org | |
a825eaec | 7929 | W: https://linuxtv.org |
19a628a0 AP |
7930 | W: http://palosaari.fi/linux/ |
7931 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7932 | T: git git://linuxtv.org/anttip/media_tree.git | |
7933 | S: Maintained | |
0185e197 | 7934 | F: drivers/media/tuners/msi001* |
19a628a0 | 7935 | |
7570589d | 7936 | MSI2500 MEDIA DRIVER |
2c57213f AP |
7937 | M: Antti Palosaari <crope@iki.fi> |
7938 | L: linux-media@vger.kernel.org | |
a825eaec | 7939 | W: https://linuxtv.org |
2c57213f AP |
7940 | W: http://palosaari.fi/linux/ |
7941 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7942 | T: git git://linuxtv.org/anttip/media_tree.git | |
7943 | S: Maintained | |
7570589d | 7944 | F: drivers/media/usb/msi2500/ |
2c57213f | 7945 | |
159eeea4 RJ |
7946 | MSYSTEMS DISKONCHIP G3 MTD DRIVER |
7947 | M: Robert Jarzmik <robert.jarzmik@free.fr> | |
7948 | L: linux-mtd@lists.infradead.org | |
7949 | S: Maintained | |
7950 | F: drivers/mtd/devices/docg3* | |
7951 | ||
62a37dc7 | 7952 | MT9M032 APTINA SENSOR DRIVER |
0e837fb9 LP |
7953 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7954 | L: linux-media@vger.kernel.org | |
7955 | T: git git://linuxtv.org/media_tree.git | |
7956 | S: Maintained | |
7957 | F: drivers/media/i2c/mt9m032.c | |
b5dcee22 | 7958 | F: include/media/i2c/mt9m032.h |
0e837fb9 | 7959 | |
62a37dc7 | 7960 | MT9P031 APTINA CAMERA SENSOR |
0e837fb9 LP |
7961 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7962 | L: linux-media@vger.kernel.org | |
7963 | T: git git://linuxtv.org/media_tree.git | |
7964 | S: Maintained | |
7965 | F: drivers/media/i2c/mt9p031.c | |
b5dcee22 | 7966 | F: include/media/i2c/mt9p031.h |
0e837fb9 | 7967 | |
62a37dc7 | 7968 | MT9T001 APTINA CAMERA SENSOR |
0e837fb9 LP |
7969 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7970 | L: linux-media@vger.kernel.org | |
7971 | T: git git://linuxtv.org/media_tree.git | |
7972 | S: Maintained | |
7973 | F: drivers/media/i2c/mt9t001.c | |
b5dcee22 | 7974 | F: include/media/i2c/mt9t001.h |
0e837fb9 | 7975 | |
62a37dc7 | 7976 | MT9V032 APTINA CAMERA SENSOR |
0e837fb9 LP |
7977 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7978 | L: linux-media@vger.kernel.org | |
7979 | T: git git://linuxtv.org/media_tree.git | |
7980 | S: Maintained | |
f2272e13 | 7981 | F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt |
0e837fb9 | 7982 | F: drivers/media/i2c/mt9v032.c |
b5dcee22 | 7983 | F: include/media/i2c/mt9v032.h |
0e837fb9 | 7984 | |
4e0d13cb | 7985 | MULTIFUNCTION DEVICES (MFD) |
f7d3210e | 7986 | M: Lee Jones <lee.jones@linaro.org> |
7caa7991 | 7987 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git |
4e0d13cb | 7988 | S: Supported |
679655da | 7989 | F: drivers/mfd/ |
55b5940d | 7990 | F: include/linux/mfd/ |
4e0d13cb | 7991 | |
5c4e6f13 | 7992 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
e18eaf8f | 7993 | M: Ulf Hansson <ulf.hansson@linaro.org> |
b2503a94 | 7994 | L: linux-mmc@vger.kernel.org |
708dce3f | 7995 | T: git git://git.linaro.org/people/ulf.hansson/mmc.git |
245feaa6 | 7996 | S: Maintained |
2810984b | 7997 | F: Documentation/devicetree/bindings/mmc/ |
679655da JP |
7998 | F: drivers/mmc/ |
7999 | F: include/linux/mmc/ | |
c117ab84 | 8000 | F: include/uapi/linux/mmc/ |
baca2da4 | 8001 | |
15a0580c | 8002 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 8003 | S: Orphan |
679655da JP |
8004 | F: drivers/mmc/host/mmc_spi.c |
8005 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 8006 | |
1da177e4 | 8007 | MULTISOUND SOUND DRIVER |
8b58be88 | 8008 | M: Andrew Veliath <andrewtv@usa.net> |
1da177e4 | 8009 | S: Maintained |
679655da JP |
8010 | F: Documentation/sound/oss/MultiSound |
8011 | F: sound/oss/msnd* | |
1da177e4 | 8012 | |
d735410a | 8013 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 8014 | S: Orphan |
c897401b | 8015 | F: drivers/tty/isicom.c |
679655da | 8016 | F: include/linux/isicom.h |
d735410a | 8017 | |
550a7375 | 8018 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
3b243519 | 8019 | M: Bin Liu <b-liu@ti.com> |
795fb7e7 | 8020 | L: linux-usb@vger.kernel.org |
43b416e5 | 8021 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 8022 | S: Maintained |
679655da | 8023 | F: drivers/usb/musb/ |
550a7375 | 8024 | |
ea0af5f6 MK |
8025 | MXL5007T MEDIA DRIVER |
8026 | M: Michael Krufky <mkrufky@linuxtv.org> | |
8027 | L: linux-media@vger.kernel.org | |
a825eaec | 8028 | W: https://linuxtv.org |
ea0af5f6 MK |
8029 | W: http://github.com/mkrufky |
8030 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8031 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8032 | S: Maintained | |
8033 | F: drivers/media/tuners/mxl5007t.* | |
8034 | ||
2d3cf588 | 8035 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
205057ae | 8036 | M: Hyong-Youb Kim <hykim@myri.com> |
2d3cf588 | 8037 | L: netdev@vger.kernel.org |
205057ae | 8038 | W: https://www.myricom.com/support/downloads/myri10ge.html |
2d3cf588 | 8039 | S: Supported |
93f7848b | 8040 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 8041 | |
9df4f913 BB |
8042 | NAND FLASH SUBSYSTEM |
8043 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
8044 | R: Richard Weinberger <richard@nod.at> | |
8045 | L: linux-mtd@lists.infradead.org | |
8046 | W: http://www.linux-mtd.infradead.org/ | |
8047 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
8048 | T: git git://github.com/linux-nand/linux.git | |
8049 | S: Maintained | |
8050 | F: drivers/mtd/nand/ | |
8051 | F: include/linux/mtd/nand*.h | |
8052 | ||
1da177e4 | 8053 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 8054 | S: Orphan |
d9fb9f38 | 8055 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 8056 | |
23dc05a3 DM |
8057 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
8058 | M: Daniel Mack <zonque@gmail.com> | |
8059 | S: Maintained | |
e5747e40 | 8060 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
23dc05a3 DM |
8061 | W: http://www.native-instruments.com |
8062 | F: sound/usb/caiaq/ | |
8063 | ||
1da177e4 | 8064 | NCP FILESYSTEM |
52653199 PV |
8065 | M: Petr Vandrovec <petr@vandrovec.name> |
8066 | S: Odd Fixes | |
679655da | 8067 | F: fs/ncpfs/ |
1da177e4 | 8068 | |
a79b0322 FT |
8069 | NCR 5380 SCSI DRIVERS |
8070 | M: Finn Thain <fthain@telegraphics.com.au> | |
8071 | M: Michael Schmitz <schmitzmic@gmail.com> | |
8072 | L: linux-scsi@vger.kernel.org | |
8073 | S: Maintained | |
8074 | F: Documentation/scsi/g_NCR5380.txt | |
71d39758 | 8075 | F: Documentation/scsi/dtc3x80.txt |
a79b0322 FT |
8076 | F: drivers/scsi/NCR5380.* |
8077 | F: drivers/scsi/arm/cumana_1.c | |
8078 | F: drivers/scsi/arm/oak.c | |
a79b0322 FT |
8079 | F: drivers/scsi/atari_scsi.* |
8080 | F: drivers/scsi/dmx3191d.c | |
8081 | F: drivers/scsi/dtc.* | |
8082 | F: drivers/scsi/g_NCR5380.* | |
8083 | F: drivers/scsi/g_NCR5380_mmio.c | |
8084 | F: drivers/scsi/mac_scsi.* | |
8085 | F: drivers/scsi/pas16.* | |
a79b0322 FT |
8086 | F: drivers/scsi/sun3_scsi.* |
8087 | F: drivers/scsi/sun3_scsi_vme.c | |
8088 | F: drivers/scsi/t128.* | |
8089 | ||
1da177e4 | 8090 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
8b58be88 | 8091 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
8092 | L: linux-scsi@vger.kernel.org |
8093 | S: Maintained | |
679655da | 8094 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 8095 | |
4aa3eb4c GR |
8096 | NCT6775 HARDWARE MONITOR DRIVER |
8097 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 8098 | L: linux-hwmon@vger.kernel.org |
4aa3eb4c GR |
8099 | S: Maintained |
8100 | F: Documentation/hwmon/nct6775 | |
8101 | F: drivers/hwmon/nct6775.c | |
8102 | ||
3c2d774c | 8103 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 8104 | M: Faisal Latif <faisal.latif@intel.com> |
e6cc0fd1 | 8105 | L: linux-rdma@vger.kernel.org |
e3d33cb1 | 8106 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
8107 | S: Supported |
8108 | F: drivers/infiniband/hw/nes/ | |
8109 | ||
be2f2e84 | 8110 | NETEM NETWORK EMULATOR |
adbbf69d | 8111 | M: Stephen Hemminger <stephen@networkplumber.org> |
3430284f | 8112 | L: netem@lists.linux-foundation.org (moderated for non-subscribers) |
be2f2e84 | 8113 | S: Maintained |
679655da | 8114 | F: net/sched/sch_netem.c |
be2f2e84 | 8115 | |
b2f5a051 | 8116 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 8117 | M: Jon Mason <jdmason@kudzu.us> |
4a58448b | 8118 | L: netdev@vger.kernel.org |
4a58448b | 8119 | S: Supported |
679655da | 8120 | F: Documentation/networking/s2io.txt |
b2f5a051 | 8121 | F: Documentation/networking/vxge.txt |
86387e1a | 8122 | F: drivers/net/ethernet/neterion/ |
4a58448b | 8123 | |
db9cf3a3 | 8124 | NETFILTER ({IP,IP6,ARP,EB,NF}TABLES) |
0e05e192 | 8125 | M: Pablo Neira Ayuso <pablo@netfilter.org> |
8b58be88 | 8126 | M: Patrick McHardy <kaber@trash.net> |
42010ed0 | 8127 | M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> |
1a03b81d | 8128 | L: netfilter-devel@vger.kernel.org |
82b98543 | 8129 | L: coreteam@netfilter.org |
1da177e4 LT |
8130 | W: http://www.netfilter.org/ |
8131 | W: http://www.iptables.org/ | |
42010ed0 PNA |
8132 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
8133 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
8134 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1da177e4 | 8135 | S: Supported |
679655da JP |
8136 | F: include/linux/netfilter* |
8137 | F: include/linux/netfilter/ | |
8138 | F: include/net/netfilter/ | |
c117ab84 CEB |
8139 | F: include/uapi/linux/netfilter* |
8140 | F: include/uapi/linux/netfilter/ | |
679655da JP |
8141 | F: net/*/netfilter.c |
8142 | F: net/*/netfilter/ | |
8143 | F: net/netfilter/ | |
91c269a0 | 8144 | F: net/bridge/br_netfilter*.c |
1da177e4 | 8145 | |
4cc67735 | 8146 | NETLABEL |
87a0874c | 8147 | M: Paul Moore <paul@paul-moore.com> |
4cc67735 PM |
8148 | W: http://netlabel.sf.net |
8149 | L: netdev@vger.kernel.org | |
87a0874c | 8150 | S: Maintained |
80811493 | 8151 | F: Documentation/netlabel/ |
679655da JP |
8152 | F: include/net/netlabel.h |
8153 | F: net/netlabel/ | |
4cc67735 | 8154 | |
1da177e4 | 8155 | NETROM NETWORK LAYER |
8b58be88 | 8156 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 8157 | L: linux-hams@vger.kernel.org |
d34cb28a | 8158 | W: http://www.linux-ax25.org/ |
1da177e4 | 8159 | S: Maintained |
679655da | 8160 | F: include/net/netrom.h |
c117ab84 | 8161 | F: include/uapi/linux/netrom.h |
679655da | 8162 | F: net/netrom/ |
1da177e4 | 8163 | |
4c352362 JK |
8164 | NETRONOME ETHERNET DRIVERS |
8165 | M: Jakub Kicinski <jakub.kicinski@netronome.com> | |
4c352362 JK |
8166 | L: oss-drivers@netronome.com |
8167 | S: Maintained | |
8168 | F: drivers/net/ethernet/netronome/ | |
8169 | ||
5ddb88c0 | 8170 | NETWORK BLOCK DEVICE (NBD) |
4ca5829a | 8171 | M: Markus Pargmann <mpa@pengutronix.de> |
1da177e4 | 8172 | S: Maintained |
5e4b269b | 8173 | L: nbd-general@lists.sourceforge.net |
4ca5829a | 8174 | T: git git://git.pengutronix.de/git/mpa/linux-nbd.git |
679655da JP |
8175 | F: Documentation/blockdev/nbd.txt |
8176 | F: drivers/block/nbd.c | |
c117ab84 | 8177 | F: include/uapi/linux/nbd.h |
1da177e4 | 8178 | |
6e43650c NH |
8179 | NETWORK DROP MONITOR |
8180 | M: Neil Horman <nhorman@tuxdriver.com> | |
8181 | L: netdev@vger.kernel.org | |
8182 | S: Maintained | |
8183 | W: https://fedorahosted.org/dropwatch/ | |
8184 | F: net/core/drop_monitor.c | |
8185 | ||
3ed6e498 AL |
8186 | NETWORKING [DSA] |
8187 | M: Andrew Lunn <andrew@lunn.ch> | |
8188 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> | |
8189 | M: Florian Fainelli <f.fainelli@gmail.com> | |
8190 | S: Maintained | |
8191 | F: net/dsa/ | |
8192 | F: include/net/dsa.h | |
8193 | F: drivers/net/dsa/ | |
8194 | ||
1da177e4 | 8195 | NETWORKING [GENERAL] |
8b58be88 | 8196 | M: "David S. Miller" <davem@davemloft.net> |
979b6c13 | 8197 | L: netdev@vger.kernel.org |
b1e8fd54 | 8198 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 8199 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
8200 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
8201 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 8202 | S: Maintained |
679655da JP |
8203 | F: net/ |
8204 | F: include/net/ | |
018d21ed JP |
8205 | F: include/linux/in.h |
8206 | F: include/linux/net.h | |
8207 | F: include/linux/netdevice.h | |
c117ab84 CEB |
8208 | F: include/uapi/linux/in.h |
8209 | F: include/uapi/linux/net.h | |
8210 | F: include/uapi/linux/netdevice.h | |
0c7aecd4 | 8211 | F: include/uapi/linux/net_namespace.h |
7e814a6c | 8212 | F: tools/net/ |
f4e53f9a | 8213 | F: tools/testing/selftests/net/ |
335a67d2 | 8214 | F: lib/random32.c |
a101ccd1 | 8215 | F: lib/test_bpf.c |
1da177e4 LT |
8216 | |
8217 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
8218 | M: "David S. Miller" <davem@davemloft.net> |
8219 | M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> | |
8b58be88 JP |
8220 | M: James Morris <jmorris@namei.org> |
8221 | M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> | |
8222 | M: Patrick McHardy <kaber@trash.net> | |
979b6c13 | 8223 | L: netdev@vger.kernel.org |
08deed1e | 8224 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 8225 | S: Maintained |
679655da JP |
8226 | F: net/ipv4/ |
8227 | F: net/ipv6/ | |
8228 | F: include/net/ip* | |
0a14842f | 8229 | F: arch/x86/net/* |
1da177e4 | 8230 | |
73b7656c DM |
8231 | NETWORKING [IPSEC] |
8232 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
8233 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
8234 | M: "David S. Miller" <davem@davemloft.net> | |
8235 | L: netdev@vger.kernel.org | |
d1fc5024 SK |
8236 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git |
8237 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git | |
73b7656c | 8238 | S: Maintained |
5826bdd1 | 8239 | F: net/core/flow.c |
73b7656c DM |
8240 | F: net/xfrm/ |
8241 | F: net/key/ | |
8242 | F: net/ipv4/xfrm* | |
d1fc5024 SK |
8243 | F: net/ipv4/esp4.c |
8244 | F: net/ipv4/ah4.c | |
8245 | F: net/ipv4/ipcomp.c | |
8246 | F: net/ipv4/ip_vti.c | |
73b7656c | 8247 | F: net/ipv6/xfrm* |
d1fc5024 SK |
8248 | F: net/ipv6/esp6.c |
8249 | F: net/ipv6/ah6.c | |
8250 | F: net/ipv6/ipcomp6.c | |
8251 | F: net/ipv6/ip6_vti.c | |
73b7656c DM |
8252 | F: include/uapi/linux/xfrm.h |
8253 | F: include/net/xfrm.h | |
8254 | ||
10e2ff1c | 8255 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 8256 | M: Paul Moore <paul@paul-moore.com> |
10e2ff1c JM |
8257 | L: netdev@vger.kernel.org |
8258 | S: Maintained | |
8259 | ||
29f8f632 | 8260 | NETWORKING [WIRELESS] |
2cb4abd1 | 8261 | L: linux-wireless@vger.kernel.org |
8a6e2535 | 8262 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
29f8f632 | 8263 | |
788873ac JP |
8264 | NETWORKING DRIVERS |
8265 | L: netdev@vger.kernel.org | |
8266 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 8267 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
8268 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
8269 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac | 8270 | S: Odd Fixes |
156f4fbc | 8271 | F: Documentation/devicetree/bindings/net/ |
788873ac | 8272 | F: drivers/net/ |
018d21ed | 8273 | F: include/linux/if_* |
0b63bf1f | 8274 | F: include/linux/netdevice.h |
0b63bf1f JD |
8275 | F: include/linux/etherdevice.h |
8276 | F: include/linux/fcdevice.h | |
8277 | F: include/linux/fddidevice.h | |
8278 | F: include/linux/hippidevice.h | |
8279 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
8280 | F: include/uapi/linux/if_* |
8281 | F: include/uapi/linux/netdevice.h | |
788873ac | 8282 | |
0e324cf6 JL |
8283 | NETWORKING DRIVERS (WIRELESS) |
8284 | M: Kalle Valo <kvalo@codeaurora.org> | |
8285 | L: linux-wireless@vger.kernel.org | |
8286 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ | |
9f273c24 FW |
8287 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git |
8288 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git | |
0e324cf6 | 8289 | S: Maintained |
182fd9ee | 8290 | F: Documentation/devicetree/bindings/net/wireless/ |
0e324cf6 JL |
8291 | F: drivers/net/wireless/ |
8292 | ||
3d396eb1 | 8293 | NETXEN (1/10) GbE SUPPORT |
8622315e | 8294 | M: Manish Chopra <manish.chopra@qlogic.com> |
83c07dde AKS |
8295 | M: Sony Chacko <sony.chacko@qlogic.com> |
8296 | M: Rajesh Borundia <rajesh.borundia@qlogic.com> | |
3d396eb1 | 8297 | L: netdev@vger.kernel.org |
9c2b5bde | 8298 | W: http://www.qlogic.com |
3d396eb1 | 8299 | S: Supported |
aa43c215 | 8300 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 8301 | |
6423d30f AAJ |
8302 | NFC SUBSYSTEM |
8303 | M: Lauro Ramos Venancio <lauro.venancio@openbossa.org> | |
8304 | M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org> | |
8305 | M: Samuel Ortiz <sameo@linux.intel.com> | |
8306 | L: linux-wireless@vger.kernel.org | |
1eb3b216 | 8307 | L: linux-nfc@lists.01.org (subscribers-only) |
0293ba20 | 8308 | S: Supported |
6423d30f | 8309 | F: net/nfc/ |
55eb94f9 | 8310 | F: include/net/nfc/ |
c117ab84 | 8311 | F: include/uapi/linux/nfc.h |
6423d30f | 8312 | F: drivers/nfc/ |
397d6497 CR |
8313 | F: include/linux/platform_data/nfcmrvl.h |
8314 | F: include/linux/platform_data/nxp-nci.h | |
08eaa1e0 | 8315 | F: include/linux/platform_data/pn544.h |
397d6497 CR |
8316 | F: include/linux/platform_data/st21nfca.h |
8317 | F: include/linux/platform_data/st-nci.h | |
7ebb88e5 | 8318 | F: Documentation/devicetree/bindings/net/nfc/ |
3d396eb1 | 8319 | |
e8b43555 | 8320 | NFS, SUNRPC, AND LOCKD CLIENTS |
cd7b996a | 8321 | M: Trond Myklebust <trond.myklebust@primarydata.com> |
0e3b137f | 8322 | M: Anna Schumaker <anna.schumaker@netapp.com> |
78f58153 TM |
8323 | L: linux-nfs@vger.kernel.org |
8324 | W: http://client.linux-nfs.org | |
cd7b996a | 8325 | T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git |
1da177e4 | 8326 | S: Maintained |
679655da JP |
8327 | F: fs/lockd/ |
8328 | F: fs/nfs/ | |
8329 | F: fs/nfs_common/ | |
8330 | F: net/sunrpc/ | |
8331 | F: include/linux/lockd/ | |
8332 | F: include/linux/nfs* | |
8333 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
8334 | F: include/uapi/linux/nfs* |
8335 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 8336 | |
85ef9cea | 8337 | NILFS2 FILESYSTEM |
e2126935 | 8338 | M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> |
6aff43f8 | 8339 | L: linux-nilfs@vger.kernel.org |
f9472265 | 8340 | W: http://nilfs.sourceforge.net/ |
9e92e516 | 8341 | W: http://nilfs.osdn.jp/ |
e2126935 | 8342 | T: git git://github.com/konis/nilfs2.git |
85ef9cea | 8343 | S: Supported |
679655da JP |
8344 | F: Documentation/filesystems/nilfs2.txt |
8345 | F: fs/nilfs2/ | |
c35c7ac5 | 8346 | F: include/trace/events/nilfs2.h |
e63e88bc RK |
8347 | F: include/uapi/linux/nilfs2_api.h |
8348 | F: include/uapi/linux/nilfs2_ondisk.h | |
85ef9cea | 8349 | |
1da177e4 | 8350 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 8351 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
1da177e4 LT |
8352 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
8353 | S: Maintained | |
679655da JP |
8354 | F: Documentation/scsi/NinjaSCSI.txt |
8355 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
8356 | |
8357 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
8358 | M: GOTO Masanori <gotom@debian.or.jp> |
8359 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> | |
1da177e4 LT |
8360 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
8361 | S: Maintained | |
679655da JP |
8362 | F: Documentation/scsi/NinjaSCSI.txt |
8363 | F: drivers/scsi/nsp32* | |
1da177e4 | 8364 | |
383b8fb9 LFT |
8365 | NIOS2 ARCHITECTURE |
8366 | M: Ley Foon Tan <lftan@altera.com> | |
8367 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
0094dc40 | 8368 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git |
383b8fb9 LFT |
8369 | S: Maintained |
8370 | F: arch/nios2/ | |
8371 | ||
2a6afddb | 8372 | NOKIA N900 POWER SUPPLY DRIVERS |
e35a49b1 | 8373 | R: Pali Rohár <pali.rohar@gmail.com> |
2a6afddb | 8374 | F: include/linux/power/bq2415x_charger.h |
081bab21 | 8375 | F: include/linux/power/bq27xxx_battery.h |
2a6afddb PR |
8376 | F: include/linux/power/isp1704_charger.h |
8377 | F: drivers/power/bq2415x_charger.c | |
081bab21 | 8378 | F: drivers/power/bq27xxx_battery.c |
e35a49b1 | 8379 | F: drivers/power/bq27xxx_battery_i2c.c |
2a6afddb PR |
8380 | F: drivers/power/isp1704_charger.c |
8381 | F: drivers/power/rx51_battery.c | |
8382 | ||
a1bd3bae | 8383 | NTB DRIVER CORE |
9ef6bf6c JM |
8384 | M: Jon Mason <jdmason@kudzu.us> |
8385 | M: Dave Jiang <dave.jiang@intel.com> | |
a1bd3bae | 8386 | M: Allen Hubbe <Allen.Hubbe@emc.com> |
5e9fd733 | 8387 | L: linux-ntb@googlegroups.com |
fce8a7bb | 8388 | S: Supported |
2984411f JM |
8389 | W: https://github.com/jonmason/ntb/wiki |
8390 | T: git git://github.com/jonmason/ntb.git | |
fce8a7bb | 8391 | F: drivers/ntb/ |
548c237c | 8392 | F: drivers/net/ntb_netdev.c |
fce8a7bb | 8393 | F: include/linux/ntb.h |
a1bd3bae | 8394 | F: include/linux/ntb_transport.h |
a9c59ef7 | 8395 | F: tools/testing/selftests/ntb/ |
fce8a7bb | 8396 | |
e26a5843 AH |
8397 | NTB INTEL DRIVER |
8398 | M: Jon Mason <jdmason@kudzu.us> | |
8399 | M: Dave Jiang <dave.jiang@intel.com> | |
5e9fd733 | 8400 | L: linux-ntb@googlegroups.com |
e26a5843 AH |
8401 | S: Supported |
8402 | W: https://github.com/jonmason/ntb/wiki | |
8403 | T: git git://github.com/jonmason/ntb.git | |
8404 | F: drivers/ntb/hw/intel/ | |
fce8a7bb | 8405 | |
a1b36958 XY |
8406 | NTB AMD DRIVER |
8407 | M: Xiangliang Yu <Xiangliang.Yu@amd.com> | |
8408 | L: linux-ntb@googlegroups.com | |
8409 | S: Supported | |
8410 | F: drivers/ntb/hw/amd/ | |
8411 | ||
1da177e4 | 8412 | NTFS FILESYSTEM |
2818ef50 | 8413 | M: Anton Altaparmakov <anton@tuxera.com> |
1da177e4 | 8414 | L: linux-ntfs-dev@lists.sourceforge.net |
2818ef50 | 8415 | W: http://www.tuxera.com/ |
e6f4dee7 | 8416 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 8417 | S: Supported |
679655da JP |
8418 | F: Documentation/filesystems/ntfs.txt |
8419 | F: fs/ntfs/ | |
1da177e4 | 8420 | |
9eb8ef74 | 8421 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 8422 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 8423 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 8424 | S: Maintained |
8a61f013 JH |
8425 | F: drivers/video/fbdev/riva/ |
8426 | F: drivers/video/fbdev/nvidia/ | |
1da177e4 | 8427 | |
79461681 | 8428 | NVM EXPRESS DRIVER |
b3975e94 JF |
8429 | M: Keith Busch <keith.busch@intel.com> |
8430 | M: Jens Axboe <axboe@fb.com> | |
79461681 | 8431 | L: linux-nvme@lists.infradead.org |
b3975e94 JF |
8432 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
8433 | W: https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/ | |
79461681 | 8434 | S: Supported |
57dacad5 | 8435 | F: drivers/nvme/host/ |
79461681 MW |
8436 | F: include/linux/nvme.h |
8437 | ||
a07b4970 CH |
8438 | NVM EXPRESS TARGET DRIVER |
8439 | M: Christoph Hellwig <hch@lst.de> | |
8440 | M: Sagi Grimberg <sagi@grimberg.me> | |
8441 | L: linux-nvme@lists.infradead.org | |
8442 | S: Supported | |
8443 | F: drivers/nvme/target/ | |
8444 | ||
aee4b9bd SK |
8445 | NVMEM FRAMEWORK |
8446 | M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> | |
8447 | M: Maxime Ripard <maxime.ripard@free-electrons.com> | |
8448 | S: Maintained | |
8449 | F: drivers/nvmem/ | |
8450 | F: Documentation/devicetree/bindings/nvmem/ | |
8451 | F: include/linux/nvmem-consumer.h | |
8452 | F: include/linux/nvmem-provider.h | |
8453 | ||
dece4585 CP |
8454 | NXP-NCI NFC DRIVER |
8455 | M: Clément Perrochaud <clement.perrochaud@effinnov.com> | |
8456 | R: Charles Gorand <charles.gorand@effinnov.com> | |
8457 | L: linux-nfc@lists.01.org (moderated for non-subscribers) | |
8458 | S: Supported | |
8459 | F: drivers/nfc/nxp-nci | |
8460 | ||
f50d7146 | 8461 | NXP TDA998X DRM DRIVER |
54176cc6 | 8462 | M: Russell King <rmk+kernel@armlinux.org.uk> |
f50d7146 RK |
8463 | S: Supported |
8464 | F: drivers/gpu/drm/i2c/tda998x_drv.c | |
8465 | F: include/drm/i2c/tda998x.h | |
8466 | ||
fbace43e PR |
8467 | NXP TFA9879 DRIVER |
8468 | M: Peter Rosin <peda@axentia.se> | |
8469 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
8470 | S: Maintained | |
8471 | F: sound/soc/codecs/tfa9879* | |
8472 | ||
442f04c3 JP |
8473 | OBJTOOL |
8474 | M: Josh Poimboeuf <jpoimboe@redhat.com> | |
8475 | S: Supported | |
8476 | F: tools/objtool/ | |
8477 | ||
f5525786 | 8478 | OMAP SUPPORT |
0e24bdd4 | 8479 | M: Tony Lindgren <tony@atomide.com> |
f5525786 TL |
8480 | L: linux-omap@vger.kernel.org |
8481 | W: http://www.muru.com/linux/omap/ | |
8482 | W: http://linux.omap.com/ | |
8a6e2535 | 8483 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 8484 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 8485 | S: Maintained |
4e04d5a3 | 8486 | F: arch/arm/*omap*/ |
026da812 FB |
8487 | F: arch/arm/configs/omap1_defconfig |
8488 | F: arch/arm/configs/omap2plus_defconfig | |
046d0a37 | 8489 | F: drivers/i2c/busses/i2c-omap.c |
dc68cd11 FB |
8490 | F: drivers/irqchip/irq-omap-intc.c |
8491 | F: drivers/mfd/*omap*.c | |
8492 | F: drivers/mfd/menelaus.c | |
8493 | F: drivers/mfd/palmas.c | |
8494 | F: drivers/mfd/tps65217.c | |
8495 | F: drivers/mfd/tps65218.c | |
8496 | F: drivers/mfd/tps65910.c | |
8497 | F: drivers/mfd/twl-core.[ch] | |
8498 | F: drivers/mfd/twl4030*.c | |
8499 | F: drivers/mfd/twl6030*.c | |
8500 | F: drivers/mfd/twl6040*.c | |
8501 | F: drivers/regulator/palmas-regulator*.c | |
8502 | F: drivers/regulator/pbias-regulator.c | |
8503 | F: drivers/regulator/tps65217-regulator.c | |
8504 | F: drivers/regulator/tps65218-regulator.c | |
8505 | F: drivers/regulator/tps65910-regulator.c | |
8506 | F: drivers/regulator/twl-regulator.c | |
046d0a37 | 8507 | F: include/linux/i2c-omap.h |
f5525786 | 8508 | |
50f29fbd | 8509 | OMAP DEVICE TREE SUPPORT |
cdb55ab0 | 8510 | M: Benoît Cousson <bcousson@baylibre.com> |
50f29fbd TL |
8511 | M: Tony Lindgren <tony@atomide.com> |
8512 | L: linux-omap@vger.kernel.org | |
d0fb18c5 | 8513 | L: devicetree@vger.kernel.org |
50f29fbd TL |
8514 | S: Maintained |
8515 | F: arch/arm/boot/dts/*omap* | |
8516 | F: arch/arm/boot/dts/*am3* | |
05eb20fa NM |
8517 | F: arch/arm/boot/dts/*am4* |
8518 | F: arch/arm/boot/dts/*am5* | |
8519 | F: arch/arm/boot/dts/*dra7* | |
50f29fbd | 8520 | |
f5525786 | 8521 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 8522 | M: Paul Walmsley <paul@pwsan.com> |
f5525786 TL |
8523 | L: linux-omap@vger.kernel.org |
8524 | S: Maintained | |
8525 | F: arch/arm/*omap*/*clock* | |
8526 | ||
8527 | OMAP POWER MANAGEMENT SUPPORT | |
3cf2efd5 | 8528 | M: Kevin Hilman <khilman@kernel.org> |
f5525786 TL |
8529 | L: linux-omap@vger.kernel.org |
8530 | S: Maintained | |
8531 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 8532 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 8533 | |
d21db568 | 8534 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
ff2de822 | 8535 | M: Rajendra Nayak <rnayak@codeaurora.org> |
692ab1f3 PW |
8536 | M: Paul Walmsley <paul@pwsan.com> |
8537 | L: linux-omap@vger.kernel.org | |
8538 | S: Maintained | |
d21db568 | 8539 | F: arch/arm/mach-omap2/prm* |
692ab1f3 | 8540 | |
f5525786 | 8541 | OMAP AUDIO SUPPORT |
6c284903 | 8542 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
7ec41ee5 | 8543 | M: Jarkko Nikula <jarkko.nikula@bitmer.com> |
e5747e40 | 8544 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
f5525786 TL |
8545 | L: linux-omap@vger.kernel.org |
8546 | S: Maintained | |
8547 | F: sound/soc/omap/ | |
8548 | ||
18640193 TL |
8549 | OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT |
8550 | M: Roger Quadros <rogerq@ti.com> | |
8551 | M: Tony Lindgren <tony@atomide.com> | |
8552 | L: linux-omap@vger.kernel.org | |
8553 | S: Maintained | |
8554 | F: drivers/memory/omap-gpmc.c | |
8555 | F: arch/arm/mach-omap2/*gpmc* | |
8556 | ||
f5525786 | 8557 | OMAP FRAMEBUFFER SUPPORT |
830e6384 | 8558 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
c69f677c | 8559 | L: linux-fbdev@vger.kernel.org |
f5525786 TL |
8560 | L: linux-omap@vger.kernel.org |
8561 | S: Maintained | |
8a61f013 | 8562 | F: drivers/video/fbdev/omap/ |
f5525786 | 8563 | |
676eec0d | 8564 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 8565 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
178ff4c9 | 8566 | L: linux-omap@vger.kernel.org |
676eec0d | 8567 | L: linux-fbdev@vger.kernel.org |
178ff4c9 | 8568 | S: Maintained |
8a61f013 | 8569 | F: drivers/video/fbdev/omap2/ |
178ff4c9 TV |
8570 | F: Documentation/arm/OMAP/DSS |
8571 | ||
8b37fcfc OBC |
8572 | OMAP HARDWARE SPINLOCK SUPPORT |
8573 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
8574 | L: linux-omap@vger.kernel.org | |
8575 | S: Maintained | |
8576 | F: drivers/hwspinlock/omap_hwspinlock.c | |
8b37fcfc | 8577 | |
f5525786 | 8578 | OMAP MMC SUPPORT |
8b58be88 | 8579 | M: Jarkko Lavinen <jarkko.lavinen@nokia.com> |
f5525786 TL |
8580 | L: linux-omap@vger.kernel.org |
8581 | S: Maintained | |
653f41b5 MC |
8582 | F: drivers/mmc/host/omap.c |
8583 | ||
8584 | OMAP HS MMC SUPPORT | |
0a4585c6 | 8585 | L: linux-mmc@vger.kernel.org |
653f41b5 | 8586 | L: linux-omap@vger.kernel.org |
dfa5d196 | 8587 | S: Orphan |
653f41b5 | 8588 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
8589 | |
8590 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 8591 | M: Deepak Saxena <dsaxena@plexity.net> |
f5525786 TL |
8592 | S: Maintained |
8593 | F: drivers/char/hw_random/omap-rng.c | |
8594 | ||
f400c82e | 8595 | OMAP HWMOD SUPPORT |
cdb55ab0 | 8596 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
8597 | M: Paul Walmsley <paul@pwsan.com> |
8598 | L: linux-omap@vger.kernel.org | |
8599 | S: Maintained | |
8fc8b12b | 8600 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e | 8601 | |
8633fb30 PW |
8602 | OMAP HWMOD DATA |
8603 | M: Paul Walmsley <paul@pwsan.com> | |
8604 | L: linux-omap@vger.kernel.org | |
8605 | S: Maintained | |
8606 | F: arch/arm/mach-omap2/omap_hwmod*data* | |
8607 | ||
f400c82e | 8608 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES |
cdb55ab0 | 8609 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
8610 | L: linux-omap@vger.kernel.org |
8611 | S: Maintained | |
8612 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
8613 | ||
0db83ced | 8614 | OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS) |
7e8970e1 LP |
8615 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
8616 | L: linux-media@vger.kernel.org | |
8617 | S: Maintained | |
7eec52db | 8618 | F: Documentation/devicetree/bindings/media/ti,omap3isp.txt |
90d72ac6 | 8619 | F: drivers/media/platform/omap3isp/ |
0db83ced | 8620 | F: drivers/staging/media/omap4iss/ |
7e8970e1 | 8621 | |
f5525786 | 8622 | OMAP USB SUPPORT |
f5525786 TL |
8623 | L: linux-usb@vger.kernel.org |
8624 | L: linux-omap@vger.kernel.org | |
3b243519 | 8625 | S: Orphan |
a16fbd65 JP |
8626 | F: drivers/usb/*/*omap* |
8627 | F: arch/arm/*omap*/usb* | |
f5525786 | 8628 | |
6d994710 | 8629 | OMAP GPIO DRIVER |
fe643528 | 8630 | M: Grygorii Strashko <grygorii.strashko@ti.com> |
97215800 | 8631 | M: Santosh Shilimkar <ssantosh@kernel.org> |
3cf2efd5 | 8632 | M: Kevin Hilman <khilman@kernel.org> |
6d994710 KH |
8633 | L: linux-omap@vger.kernel.org |
8634 | S: Maintained | |
fe643528 | 8635 | F: Documentation/devicetree/bindings/gpio/gpio-omap.txt |
6d994710 KH |
8636 | F: drivers/gpio/gpio-omap.c |
8637 | ||
c351e290 MJ |
8638 | OMAP/NEWFLOW NANOBONE MACHINE SUPPORT |
8639 | M: Mark Jackson <mpfj@newflow.co.uk> | |
8640 | L: linux-omap@vger.kernel.org | |
8641 | S: Maintained | |
8642 | F: arch/arm/boot/dts/am335x-nano.dts | |
8643 | ||
0ad122d9 | 8644 | OMFS FILESYSTEM |
8b58be88 | 8645 | M: Bob Copeland <me@bobcopeland.com> |
0ad122d9 BC |
8646 | L: linux-karma-devel@lists.sourceforge.net |
8647 | S: Maintained | |
679655da JP |
8648 | F: Documentation/filesystems/omfs.txt |
8649 | F: fs/omfs/ | |
0ad122d9 | 8650 | |
c1986ee9 | 8651 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 8652 | M: Harald Welte <laforge@gnumonks.org> |
c1986ee9 | 8653 | S: Maintained |
679655da JP |
8654 | F: drivers/char/pcmcia/cm4000_cs.c |
8655 | F: include/linux/cm4000_cs.h | |
c117ab84 | 8656 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 8657 | |
77c44ab1 | 8658 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 8659 | M: Harald Welte <laforge@gnumonks.org> |
77c44ab1 | 8660 | S: Maintained |
679655da | 8661 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 8662 | |
77d5140f | 8663 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 8664 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 8665 | L: linux-media@vger.kernel.org |
275ffde4 | 8666 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 8667 | S: Maintained |
90d72ac6 | 8668 | F: drivers/media/i2c/ov7670.c |
77d5140f | 8669 | |
431bca73 | 8670 | ONENAND FLASH DRIVER |
8b58be88 | 8671 | M: Kyungmin Park <kyungmin.park@samsung.com> |
431bca73 TG |
8672 | L: linux-mtd@lists.infradead.org |
8673 | S: Maintained | |
679655da JP |
8674 | F: drivers/mtd/onenand/ |
8675 | F: include/linux/mtd/onenand*.h | |
431bca73 | 8676 | |
1da177e4 | 8677 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 8678 | M: Willem Riede <osst@riede.org> |
1da177e4 LT |
8679 | L: osst-users@lists.sourceforge.net |
8680 | L: linux-scsi@vger.kernel.org | |
8681 | S: Maintained | |
f7269cfc JD |
8682 | F: Documentation/scsi/osst.txt |
8683 | F: drivers/scsi/osst.* | |
8684 | F: drivers/scsi/osst_*.h | |
8685 | F: drivers/scsi/st.h | |
1da177e4 | 8686 | |
e2d1d6c0 | 8687 | OPENCORES I2C BUS DRIVER |
8b58be88 | 8688 | M: Peter Korsgaard <jacmet@sunsite.dk> |
846557d3 | 8689 | L: linux-i2c@vger.kernel.org |
e2d1d6c0 | 8690 | S: Maintained |
679655da JP |
8691 | F: Documentation/i2c/busses/i2c-ocores |
8692 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 8693 | |
860c44c1 | 8694 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
5d3ad8a6 | 8695 | M: Rob Herring <robh+dt@kernel.org> |
c8fb70a3 | 8696 | M: Frank Rowand <frowand.list@gmail.com> |
d0fb18c5 | 8697 | L: devicetree@vger.kernel.org |
a7fefe9f | 8698 | W: http://www.devicetree.org/ |
fcdec35e | 8699 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git |
860c44c1 | 8700 | S: Maintained |
f8828205 | 8701 | F: drivers/of/ |
860c44c1 | 8702 | F: include/linux/of*.h |
f8828205 | 8703 | F: scripts/dtc/ |
860c44c1 | 8704 | |
f8828205 | 8705 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
5d3ad8a6 | 8706 | M: Rob Herring <robh+dt@kernel.org> |
f8828205 | 8707 | M: Mark Rutland <mark.rutland@arm.com> |
f8828205 | 8708 | L: devicetree@vger.kernel.org |
9f273c24 | 8709 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git |
fcdec35e | 8710 | Q: http://patchwork.ozlabs.org/project/devicetree-bindings/list/ |
f8828205 GL |
8711 | S: Maintained |
8712 | F: Documentation/devicetree/ | |
8713 | F: arch/*/boot/dts/ | |
8714 | F: include/dt-bindings/ | |
8715 | ||
2bb65f56 PA |
8716 | OPEN FIRMWARE AND DEVICE TREE OVERLAYS |
8717 | M: Pantelis Antoniou <pantelis.antoniou@konsulko.com> | |
8718 | L: devicetree@vger.kernel.org | |
8719 | S: Maintained | |
8720 | F: Documentation/devicetree/dynamic-resolution-notes.txt | |
8721 | F: Documentation/devicetree/overlay-notes.txt | |
8722 | F: drivers/of/overlay.c | |
8723 | F: drivers/of/resolver.c | |
8724 | ||
19f9d392 JB |
8725 | OPENRISC ARCHITECTURE |
8726 | M: Jonas Bonn <jonas@southpole.se> | |
8727 | W: http://openrisc.net | |
19f9d392 JB |
8728 | S: Maintained |
8729 | T: git git://openrisc.net/~jonas/linux | |
14430813 | 8730 | F: arch/openrisc/ |
19f9d392 | 8731 | |
ccb1352e | 8732 | OPENVSWITCH |
4f337ed5 | 8733 | M: Pravin Shelar <pshelar@nicira.com> |
b422da7c | 8734 | L: netdev@vger.kernel.org |
ccb1352e JG |
8735 | L: dev@openvswitch.org |
8736 | W: http://openvswitch.org | |
ccb1352e JG |
8737 | S: Maintained |
8738 | F: net/openvswitch/ | |
b422da7c | 8739 | F: include/uapi/linux/openvswitch.h |
ccb1352e | 8740 | |
875fa6fb VK |
8741 | OPERATING PERFORMANCE POINTS (OPP) |
8742 | M: Viresh Kumar <vireshk@kernel.org> | |
8743 | M: Nishanth Menon <nm@ti.com> | |
8744 | M: Stephen Boyd <sboyd@codeaurora.org> | |
8745 | L: linux-pm@vger.kernel.org | |
8746 | S: Maintained | |
8747 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git | |
8748 | F: drivers/base/power/opp/ | |
8749 | F: include/linux/pm_opp.h | |
8750 | F: Documentation/power/opp.txt | |
8751 | F: Documentation/devicetree/bindings/opp/ | |
8752 | ||
af39917d CL |
8753 | OPL4 DRIVER |
8754 | M: Clemens Ladisch <clemens@ladisch.de> | |
8755 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
8756 | T: git git://git.alsa-project.org/alsa-kernel.git | |
8757 | S: Maintained | |
8758 | F: sound/drivers/opl4/ | |
8759 | ||
1da177e4 | 8760 | OPROFILE |
4cf7e718 | 8761 | M: Robert Richter <rric@kernel.org> |
1da177e4 LT |
8762 | L: oprofile-list@lists.sf.net |
8763 | S: Maintained | |
81c4a8a6 | 8764 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
8765 | F: arch/*/oprofile/ |
8766 | F: drivers/oprofile/ | |
8767 | F: include/linux/oprofile.h | |
1da177e4 | 8768 | |
e2d1d6c0 | 8769 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
0a966fa8 | 8770 | M: Mark Fasheh <mfasheh@versity.com> |
d6351db2 | 8771 | M: Joel Becker <jlbec@evilplan.org> |
e2d1d6c0 | 8772 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
01945fa2 | 8773 | W: http://ocfs2.wiki.kernel.org |
e2d1d6c0 | 8774 | S: Supported |
679655da JP |
8775 | F: Documentation/filesystems/ocfs2.txt |
8776 | F: Documentation/filesystems/dlmfs.txt | |
8777 | F: fs/ocfs2/ | |
e2d1d6c0 | 8778 | |
1da177e4 | 8779 | ORINOCO DRIVER |
724c6b35 | 8780 | L: linux-wireless@vger.kernel.org |
491b26b4 | 8781 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 8782 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 8783 | S: Orphan |
2be45b66 | 8784 | F: drivers/net/wireless/intersil/orinoco/ |
1da177e4 | 8785 | |
42c55aa8 | 8786 | OSD LIBRARY and FILESYSTEM |
fadc0752 | 8787 | M: Boaz Harrosh <ooo@electrozaur.com> |
f1f6630b | 8788 | M: Benny Halevy <bhalevy@primarydata.com> |
68274794 BH |
8789 | L: osd-dev@open-osd.org |
8790 | W: http://open-osd.org | |
54e5881d | 8791 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 8792 | S: Maintained |
42c55aa8 | 8793 | F: drivers/scsi/osd/ |
6b6f0b6c | 8794 | F: include/scsi/osd_* |
42c55aa8 | 8795 | F: fs/exofs/ |
68274794 | 8796 | |
ef94b186 | 8797 | OVERLAY FILESYSTEM |
7c37fbda | 8798 | M: Miklos Szeredi <miklos@szeredi.hu> |
1d113735 MS |
8799 | L: linux-unionfs@vger.kernel.org |
8800 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git | |
7c37fbda | 8801 | S: Supported |
1d113735 | 8802 | F: fs/overlayfs/ |
7c37fbda NB |
8803 | F: Documentation/filesystems/overlayfs.txt |
8804 | ||
85096169 MM |
8805 | ORANGEFS FILESYSTEM |
8806 | M: Mike Marshall <hubcap@omnibond.com> | |
b39c3cf4 | 8807 | L: pvfs2-developers@beowulf-underground.org (subscribers-only) |
85096169 MM |
8808 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git |
8809 | S: Supported | |
8810 | F: fs/orangefs/ | |
8811 | F: Documentation/filesystems/orangefs.txt | |
8812 | ||
e2d1d6c0 | 8813 | P54 WIRELESS DRIVER |
084cb0fe | 8814 | M: Christian Lamparter <chunkeey@googlemail.com> |
e2d1d6c0 | 8815 | L: linux-wireless@vger.kernel.org |
084cb0fe | 8816 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 8817 | S: Maintained |
d3466830 | 8818 | F: drivers/net/wireless/intersil/p54/ |
e2d1d6c0 | 8819 | |
f5cd7872 | 8820 | PA SEMI ETHERNET DRIVER |
8b58be88 | 8821 | M: Olof Johansson <olof@lixom.net> |
f5cd7872 OJ |
8822 | L: netdev@vger.kernel.org |
8823 | S: Maintained | |
ded19add | 8824 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 8825 | |
beb58aa3 | 8826 | PA SEMI SMBUS DRIVER |
8b58be88 | 8827 | M: Olof Johansson <olof@lixom.net> |
846557d3 | 8828 | L: linux-i2c@vger.kernel.org |
beb58aa3 | 8829 | S: Maintained |
679655da | 8830 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 8831 | |
48fc267e SK |
8832 | PADATA PARALLEL EXECUTION MECHANISM |
8833 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
48fc267e SK |
8834 | L: linux-crypto@vger.kernel.org |
8835 | S: Maintained | |
8836 | F: kernel/padata.c | |
8837 | F: include/linux/padata.h | |
8838 | F: Documentation/padata.txt | |
8839 | ||
709ee531 | 8840 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 8841 | M: Harald Welte <laforge@gnumonks.org> |
d0944853 | 8842 | L: platform-driver-x86@vger.kernel.org |
709ee531 | 8843 | S: Maintained |
679655da | 8844 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 8845 | |
368dd5ac | 8846 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 | 8847 | M: David Howells <dhowells@redhat.com> |
4fa97181 DH |
8848 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
8849 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
8850 | S: Maintained | |
679655da JP |
8851 | F: Documentation/mn10300/ |
8852 | F: arch/mn10300/ | |
4fa97181 | 8853 | |
305b37bd KS |
8854 | PARALLEL LCD/KEYPAD PANEL DRIVER |
8855 | M: Willy Tarreau <willy@haproxy.com> | |
8856 | M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com> | |
8857 | S: Odd Fixes | |
8858 | F: Documentation/misc-devices/lcd-panel-cgram.txt | |
8859 | F: drivers/misc/panel.c | |
8860 | ||
64dfff03 SM |
8861 | PARALLEL PORT SUBSYSTEM |
8862 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
8863 | M: Sudip Mukherjee <sudip@vectorindia.org> | |
3dd1a329 | 8864 | L: linux-parport@lists.infradead.org (subscribers-only) |
64dfff03 | 8865 | S: Maintained |
679655da JP |
8866 | F: drivers/parport/ |
8867 | F: include/linux/parport*.h | |
8868 | F: drivers/char/ppdev.c | |
c117ab84 | 8869 | F: include/uapi/linux/ppdev.h |
64dfff03 | 8870 | F: Documentation/parport*.txt |
1da177e4 | 8871 | |
4cdf6bc2 | 8872 | PARAVIRT_OPS INTERFACE |
d633180c | 8873 | M: Jeremy Fitzhardinge <jeremy@goop.org> |
8b58be88 JP |
8874 | M: Chris Wright <chrisw@sous-sol.org> |
8875 | M: Alok Kataria <akataria@vmware.com> | |
8876 | M: Rusty Russell <rusty@rustcorp.com.au> | |
c996d8b9 | 8877 | L: virtualization@lists.linux-foundation.org |
4cdf6bc2 | 8878 | S: Supported |
a2e19991 | 8879 | F: Documentation/virtual/paravirt_ops.txt |
679655da JP |
8880 | F: arch/*/kernel/paravirt* |
8881 | F: arch/*/include/asm/paravirt.h | |
47ae4b05 | 8882 | F: include/linux/hypervisor.h |
4cdf6bc2 | 8883 | |
e2d1d6c0 | 8884 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 8885 | M: Tim Waugh <tim@cyberelk.net> |
e2d1d6c0 | 8886 | L: linux-parport@lists.infradead.org (subscribers-only) |
e2d1d6c0 | 8887 | S: Maintained |
679655da JP |
8888 | F: Documentation/blockdev/paride.txt |
8889 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
8890 | |
8891 | PARISC ARCHITECTURE | |
b8828770 | 8892 | M: "James E.J. Bottomley" <jejb@parisc-linux.org> |
b38a03b8 | 8893 | M: Helge Deller <deller@gmx.de> |
e2d1d6c0 RD |
8894 | L: linux-parisc@vger.kernel.org |
8895 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 8896 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 8897 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 8898 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 8899 | S: Maintained |
679655da | 8900 | F: arch/parisc/ |
2b6bac9e | 8901 | F: Documentation/parisc/ |
679655da | 8902 | F: drivers/parisc/ |
2b6bac9e HD |
8903 | F: drivers/char/agp/parisc-agp.c |
8904 | F: drivers/input/serio/gscps2.c | |
8905 | F: drivers/parport/parport_gsc.* | |
8906 | F: drivers/tty/serial/8250/8250_gsc.c | |
8a61f013 | 8907 | F: drivers/video/fbdev/sti* |
2b6bac9e HD |
8908 | F: drivers/video/console/sti* |
8909 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 8910 | |
1662d32c | 8911 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 8912 | M: Jim Cromie <jim.cromie@gmail.com> |
968ce1b1 | 8913 | L: linux-hwmon@vger.kernel.org |
1662d32c | 8914 | S: Maintained |
679655da JP |
8915 | F: Documentation/hwmon/pc87360 |
8916 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
8917 | |
8918 | PC8736x GPIO DRIVER | |
8b58be88 | 8919 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 8920 | S: Maintained |
679655da | 8921 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 8922 | |
1ad107fd | 8923 | PC87427 HARDWARE MONITORING DRIVER |
d8130624 | 8924 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 8925 | L: linux-hwmon@vger.kernel.org |
1ad107fd JD |
8926 | S: Maintained |
8927 | F: Documentation/hwmon/pc87427 | |
8928 | F: drivers/hwmon/pc87427.c | |
8929 | ||
b26e0ed4 | 8930 | PCA9532 LED DRIVER |
8b58be88 | 8931 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 | 8932 | S: Maintained |
d5ca6918 JP |
8933 | F: drivers/leds/leds-pca9532.c |
8934 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 8935 | |
5ce914a8 | 8936 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 8937 | M: Guenter Roeck <linux@roeck-us.net> |
5ce914a8 GR |
8938 | L: linux-i2c@vger.kernel.org |
8939 | S: Maintained | |
b4f0b74e | 8940 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 8941 | |
3971dae5 | 8942 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 8943 | M: Khalid Aziz <khalid@gonehiking.org> |
3971dae5 KA |
8944 | S: Maintained |
8945 | F: drivers/firmware/pcdp.* | |
8946 | ||
065c6359 | 8947 | PCI ERROR RECOVERY |
6305902c | 8948 | M: Linas Vepstas <linasvepstas@gmail.com> |
c1f69db7 | 8949 | L: linux-pci@vger.kernel.org |
065c6359 | 8950 | S: Supported |
679655da | 8951 | F: Documentation/PCI/pci-error-recovery.txt |
065c6359 | 8952 | |
78c1cffd RC |
8953 | PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC |
8954 | M: Russell Currey <ruscur@russell.cc> | |
8955 | L: linuxppc-dev@lists.ozlabs.org | |
8956 | S: Supported | |
8957 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
8958 | F: arch/powerpc/kernel/eeh*.c | |
8959 | F: arch/powerpc/platforms/*/eeh*.c | |
8960 | F: arch/powerpc/include/*/eeh*.h | |
8961 | ||
1da177e4 | 8962 | PCI SUBSYSTEM |
5ac3a6d2 | 8963 | M: Bjorn Helgaas <bhelgaas@google.com> |
2905474d | 8964 | L: linux-pci@vger.kernel.org |
99662dd1 | 8965 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 8966 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 8967 | S: Supported |
92a1fe2e | 8968 | F: Documentation/devicetree/bindings/pci/ |
679655da JP |
8969 | F: Documentation/PCI/ |
8970 | F: drivers/pci/ | |
8971 | F: include/linux/pci* | |
6b49ee49 | 8972 | F: arch/x86/pci/ |
cad01f91 | 8973 | F: arch/x86/kernel/quirks.c |
1da177e4 | 8974 | |
eaa6111b LFT |
8975 | PCI DRIVER FOR ALTERA PCIE IP |
8976 | M: Ley Foon Tan <lftan@altera.com> | |
8977 | L: rfi@lists.rocketboards.org (moderated for non-subscribers) | |
8978 | L: linux-pci@vger.kernel.org | |
8979 | S: Supported | |
8980 | F: Documentation/devicetree/bindings/pci/altera-pcie.txt | |
8981 | F: drivers/pci/host/pcie-altera.c | |
8982 | ||
b7e78170 RH |
8983 | PCI DRIVER FOR ARM VERSATILE PLATFORM |
8984 | M: Rob Herring <robh@kernel.org> | |
8985 | L: linux-pci@vger.kernel.org | |
8986 | L: linux-arm-kernel@lists.infradead.org | |
8987 | S: Maintained | |
8988 | F: Documentation/devicetree/bindings/pci/versatile.txt | |
8989 | F: drivers/pci/host/pci-versatile.c | |
8990 | ||
5f6b6ccd TI |
8991 | PCI DRIVER FOR APPLIEDMICRO XGENE |
8992 | M: Tanmay Inamdar <tinamdar@apm.com> | |
8993 | L: linux-pci@vger.kernel.org | |
8994 | L: linux-arm-kernel@lists.infradead.org | |
8995 | S: Maintained | |
8996 | F: Documentation/devicetree/bindings/pci/xgene-pci.txt | |
8997 | F: drivers/pci/host/pci-xgene.c | |
8998 | ||
62d0ff83 ML |
8999 | PCI DRIVER FOR FREESCALE LAYERSCAPE |
9000 | M: Minghuan Lian <minghuan.Lian@freescale.com> | |
9001 | M: Mingkai Hu <mingkai.hu@freescale.com> | |
9002 | M: Roy Zang <tie-fei.zang@freescale.com> | |
9003 | L: linuxppc-dev@lists.ozlabs.org | |
9004 | L: linux-pci@vger.kernel.org | |
9005 | L: linux-arm-kernel@lists.infradead.org | |
9006 | S: Maintained | |
9007 | F: drivers/pci/host/*layerscape* | |
9008 | ||
f0b75693 | 9009 | PCI DRIVER FOR IMX6 |
f175aa2c | 9010 | M: Richard Zhu <Richard.Zhu@freescale.com> |
1ba55f55 | 9011 | M: Lucas Stach <l.stach@pengutronix.de> |
f0b75693 BH |
9012 | L: linux-pci@vger.kernel.org |
9013 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9014 | S: Maintained | |
9015 | F: drivers/pci/host/*imx6* | |
9016 | ||
0c4ffcfe MK |
9017 | PCI DRIVER FOR TI KEYSTONE |
9018 | M: Murali Karicheri <m-karicheri2@ti.com> | |
9019 | L: linux-pci@vger.kernel.org | |
9020 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9021 | S: Maintained | |
9022 | F: drivers/pci/host/*keystone* | |
9023 | ||
f0b75693 BH |
9024 | PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support) |
9025 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
9026 | M: Jason Cooper <jason@lakedaemon.net> | |
9027 | L: linux-pci@vger.kernel.org | |
9028 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9029 | S: Maintained | |
9030 | F: drivers/pci/host/*mvebu* | |
9031 | ||
8c39d710 TP |
9032 | PCI DRIVER FOR AARDVARK (Marvell Armada 3700) |
9033 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.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: drivers/pci/host/pci-aardvark.c | |
9038 | ||
0447cfd7 TR |
9039 | PCI DRIVER FOR NVIDIA TEGRA |
9040 | M: Thierry Reding <thierry.reding@gmail.com> | |
9041 | L: linux-tegra@vger.kernel.org | |
f0b75693 | 9042 | L: linux-pci@vger.kernel.org |
0447cfd7 TR |
9043 | S: Supported |
9044 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt | |
9045 | F: drivers/pci/host/pci-tegra.c | |
9046 | ||
47ff3de9 KVA |
9047 | PCI DRIVER FOR TI DRA7XX |
9048 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
9049 | L: linux-omap@vger.kernel.org | |
9050 | L: linux-pci@vger.kernel.org | |
9051 | S: Supported | |
9052 | F: Documentation/devicetree/bindings/pci/ti-pci.txt | |
9053 | F: drivers/pci/host/pci-dra7xx.c | |
9054 | ||
f0b75693 BH |
9055 | PCI DRIVER FOR RENESAS R-CAR |
9056 | M: Simon Horman <horms@verge.net.au> | |
9057 | L: linux-pci@vger.kernel.org | |
4a121096 | 9058 | L: linux-renesas-soc@vger.kernel.org |
f0b75693 BH |
9059 | S: Maintained |
9060 | F: drivers/pci/host/*rcar* | |
9061 | ||
4af82255 | 9062 | PCI DRIVER FOR SAMSUNG EXYNOS |
b7701755 | 9063 | M: Jingoo Han <jingoohan1@gmail.com> |
4af82255 | 9064 | L: linux-pci@vger.kernel.org |
f0b75693 BH |
9065 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9066 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
4af82255 JH |
9067 | S: Maintained |
9068 | F: drivers/pci/host/pci-exynos.c | |
9069 | ||
f0b75693 | 9070 | PCI DRIVER FOR SYNOPSIS DESIGNWARE |
b7701755 | 9071 | M: Jingoo Han <jingoohan1@gmail.com> |
110baab1 | 9072 | M: Pratyush Anand <pratyush.anand@gmail.com> |
f0b75693 BH |
9073 | L: linux-pci@vger.kernel.org |
9074 | S: Maintained | |
9075 | F: drivers/pci/host/*designware* | |
9076 | ||
5a3aa2a8 JP |
9077 | PCI DRIVER FOR SYNOPSYS PROTOTYPING DEVICE |
9078 | M: Joao Pinto <jpinto@synopsys.com> | |
9079 | L: linux-pci@vger.kernel.org | |
9080 | S: Maintained | |
9081 | F: Documentation/devicetree/bindings/pci/designware-pcie.txt | |
9082 | F: drivers/pci/host/pcie-designware-plat.c | |
9083 | ||
cf28855b WD |
9084 | PCI DRIVER FOR GENERIC OF HOSTS |
9085 | M: Will Deacon <will.deacon@arm.com> | |
9086 | L: linux-pci@vger.kernel.org | |
9087 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9088 | S: Maintained | |
9089 | F: Documentation/devicetree/bindings/pci/host-generic-pci.txt | |
4e64dbe2 | 9090 | F: drivers/pci/host/pci-host-common.c |
cf28855b WD |
9091 | F: drivers/pci/host/pci-host-generic.c |
9092 | ||
185a383a KB |
9093 | PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD) |
9094 | M: Keith Busch <keith.busch@intel.com> | |
9095 | L: linux-pci@vger.kernel.org | |
9096 | S: Supported | |
9097 | F: arch/x86/pci/vmd.c | |
9098 | ||
51b66a6c | 9099 | PCIE DRIVER FOR ST SPEAR13XX |
110baab1 | 9100 | M: Pratyush Anand <pratyush.anand@gmail.com> |
51b66a6c | 9101 | L: linux-pci@vger.kernel.org |
110baab1 | 9102 | S: Maintained |
51b66a6c PA |
9103 | F: drivers/pci/host/*spear* |
9104 | ||
af1169b4 LFT |
9105 | PCI MSI DRIVER FOR ALTERA MSI IP |
9106 | M: Ley Foon Tan <lftan@altera.com> | |
9107 | L: rfi@lists.rocketboards.org (moderated for non-subscribers) | |
9108 | L: linux-pci@vger.kernel.org | |
9109 | S: Supported | |
9110 | F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt | |
9111 | F: drivers/pci/host/pcie-altera-msi.c | |
51b66a6c | 9112 | |
dcd19de3 DD |
9113 | PCI MSI DRIVER FOR APPLIEDMICRO XGENE |
9114 | M: Duc Dang <dhdang@apm.com> | |
9115 | L: linux-pci@vger.kernel.org | |
9116 | L: linux-arm-kernel@lists.infradead.org | |
9117 | S: Maintained | |
9118 | F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt | |
9119 | F: drivers/pci/host/pci-xgene-msi.c | |
9120 | ||
a3cbfae1 NC |
9121 | PCIE DRIVER FOR AXIS ARTPEC |
9122 | M: Niklas Cassel <niklas.cassel@axis.com> | |
9123 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
9124 | L: linux-arm-kernel@axis.com | |
9125 | L: linux-pci@vger.kernel.org | |
9126 | S: Maintained | |
9127 | F: Documentation/devicetree/bindings/pci/axis,artpec* | |
9128 | F: drivers/pci/host/*artpec* | |
9129 | ||
500a1d9a ZW |
9130 | PCIE DRIVER FOR HISILICON |
9131 | M: Zhou Wang <wangzhou1@hisilicon.com> | |
5930fe4e | 9132 | M: Gabriele Paoloni <gabriele.paoloni@huawei.com> |
500a1d9a ZW |
9133 | L: linux-pci@vger.kernel.org |
9134 | S: Maintained | |
9135 | F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt | |
9136 | F: drivers/pci/host/pcie-hisi.c | |
9137 | ||
82a82383 SV |
9138 | PCIE DRIVER FOR QUALCOMM MSM |
9139 | M: Stanimir Varbanov <svarbanov@mm-sol.com> | |
9140 | L: linux-pci@vger.kernel.org | |
9141 | L: linux-arm-msm@vger.kernel.org | |
9142 | S: Maintained | |
9143 | F: drivers/pci/host/*qcom* | |
9144 | ||
f12b76e5 DD |
9145 | PCIE DRIVER FOR CAVIUM THUNDERX |
9146 | M: David Daney <david.daney@cavium.com> | |
9147 | L: linux-pci@vger.kernel.org | |
9148 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9149 | S: Supported | |
9150 | F: Documentation/devicetree/bindings/pci/pci-thunder-* | |
9151 | F: drivers/pci/host/pci-thunder-* | |
9152 | ||
1da177e4 | 9153 | PCMCIA SUBSYSTEM |
4230dfc9 | 9154 | P: Linux PCMCIA Team |
f5df5881 | 9155 | L: linux-pcmcia@lists.infradead.org |
6650e0a5 | 9156 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
9f273c24 | 9157 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git |
4230dfc9 | 9158 | S: Maintained |
679655da JP |
9159 | F: Documentation/pcmcia/ |
9160 | F: drivers/pcmcia/ | |
9161 | F: include/pcmcia/ | |
1da177e4 LT |
9162 | |
9163 | PCNET32 NETWORK DRIVER | |
227fb925 | 9164 | M: Don Fry <pcnet32@frontier.com> |
979b6c13 | 9165 | L: netdev@vger.kernel.org |
1da177e4 | 9166 | S: Maintained |
b955f6ca | 9167 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 9168 | |
48fc267e SK |
9169 | PCRYPT PARALLEL CRYPTO ENGINE |
9170 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
9171 | L: linux-crypto@vger.kernel.org | |
9172 | S: Maintained | |
9173 | F: crypto/pcrypt.c | |
9174 | F: include/crypto/pcrypt.h | |
9175 | ||
e72df0b8 TH |
9176 | PER-CPU MEMORY ALLOCATOR |
9177 | M: Tejun Heo <tj@kernel.org> | |
93e205a7 | 9178 | M: Christoph Lameter <cl@linux.com> |
e72df0b8 TH |
9179 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
9180 | S: Maintained | |
9181 | F: include/linux/percpu*.h | |
9182 | F: mm/percpu*.c | |
9183 | F: arch/*/include/asm/percpu.h | |
9184 | ||
ad4ecbcb | 9185 | PER-TASK DELAY ACCOUNTING |
185e595f | 9186 | M: Balbir Singh <bsingharora@gmail.com> |
ad4ecbcb | 9187 | S: Maintained |
679655da JP |
9188 | F: include/linux/delayacct.h |
9189 | F: kernel/delayacct.c | |
ad4ecbcb | 9190 | |
57c0c15b | 9191 | PERFORMANCE EVENTS SUBSYSTEM |
daecbd26 | 9192 | M: Peter Zijlstra <peterz@infradead.org> |
dd9b238c | 9193 | M: Ingo Molnar <mingo@redhat.com> |
f80c5393 | 9194 | M: Arnaldo Carvalho de Melo <acme@kernel.org> |
a54d690e | 9195 | R: Alexander Shishkin <alexander.shishkin@linux.intel.com> |
981c3a4f | 9196 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 9197 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 9198 | S: Supported |
d53e8365 | 9199 | F: kernel/events/* |
a003236c | 9200 | F: include/linux/perf_event.h |
c117ab84 | 9201 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
9202 | F: arch/*/kernel/perf_event*.c |
9203 | F: arch/*/kernel/*/perf_event*.c | |
9204 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 9205 | F: arch/*/include/asm/perf_event.h |
a003236c | 9206 | F: arch/*/kernel/perf_callchain.c |
b0a434fb | 9207 | F: arch/*/events/* |
a003236c | 9208 | F: tools/perf/ |
6c0b3244 | 9209 | |
dd49d0f5 | 9210 | PERSONALITY HANDLING |
8b58be88 | 9211 | M: Christoph Hellwig <hch@infradead.org> |
dd49d0f5 JC |
9212 | L: linux-abi-devel@lists.sourceforge.net |
9213 | S: Maintained | |
679655da | 9214 | F: include/linux/personality.h |
c117ab84 | 9215 | F: include/uapi/linux/personality.h |
dd49d0f5 | 9216 | |
838e7a03 | 9217 | PHONET PROTOCOL |
2a06b40f | 9218 | M: Remi Denis-Courmont <courmisch@gmail.com> |
838e7a03 RDC |
9219 | S: Supported |
9220 | F: Documentation/networking/phonet.txt | |
9221 | F: include/linux/phonet.h | |
9222 | F: include/net/phonet/ | |
c117ab84 | 9223 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
9224 | F: net/phonet/ |
9225 | ||
1da177e4 | 9226 | PHRAM MTD DRIVER |
8b58be88 | 9227 | M: Joern Engel <joern@lazybastard.org> |
1da177e4 LT |
9228 | L: linux-mtd@lists.infradead.org |
9229 | S: Maintained | |
679655da | 9230 | F: drivers/mtd/devices/phram.c |
1da177e4 | 9231 | |
efdbb10e BP |
9232 | PICOLCD HID DRIVER |
9233 | M: Bruno Prémont <bonbons@linux-vserver.org> | |
9234 | L: linux-input@vger.kernel.org | |
9235 | S: Maintained | |
9236 | F: drivers/hid/hid-picolcd* | |
9237 | ||
a53bfa07 JI |
9238 | PICOXCELL SUPPORT |
9239 | M: Jamie Iles <jamie@jamieiles.com> | |
9240 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9241 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
9242 | S: Supported | |
b8733987 | 9243 | F: arch/arm/boot/dts/picoxcell* |
14430813 | 9244 | F: arch/arm/mach-picoxcell/ |
b8733987 | 9245 | F: drivers/crypto/picoxcell* |
a53bfa07 | 9246 | |
2744e8af LW |
9247 | PIN CONTROL SUBSYSTEM |
9248 | M: Linus Walleij <linus.walleij@linaro.org> | |
c11f042b | 9249 | L: linux-gpio@vger.kernel.org |
dbe752a3 | 9250 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git |
2744e8af | 9251 | S: Maintained |
9feeed94 | 9252 | F: Documentation/devicetree/bindings/pinctrl/ |
fefb6245 | 9253 | F: Documentation/pinctrl.txt |
07f29ba6 | 9254 | F: drivers/pinctrl/ |
8e406fe4 | 9255 | F: include/linux/pinctrl/ |
2744e8af | 9256 | |
2201bbb8 JCPV |
9257 | PIN CONTROLLER - ATMEL AT91 |
9258 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> | |
9259 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9260 | S: Maintained | |
c654b6bf | 9261 | F: drivers/pinctrl/pinctrl-at91.* |
2201bbb8 | 9262 | |
33d3690c LD |
9263 | PIN CONTROLLER - ATMEL AT91 PIO4 |
9264 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
9265 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9266 | L: linux-gpio@vger.kernel.org | |
9267 | S: Supported | |
9268 | F: drivers/pinctrl/pinctrl-at91-pio4.* | |
9269 | ||
cbd1b652 MW |
9270 | PIN CONTROLLER - INTEL |
9271 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
9272 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> | |
9273 | S: Maintained | |
9274 | F: drivers/pinctrl/intel/ | |
2201bbb8 | 9275 | |
9963b536 LP |
9276 | PIN CONTROLLER - RENESAS |
9277 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
1a4ca6dd | 9278 | M: Geert Uytterhoeven <geert+renesas@glider.be> |
4a121096 | 9279 | L: linux-renesas-soc@vger.kernel.org |
9963b536 LP |
9280 | S: Maintained |
9281 | F: drivers/pinctrl/sh-pfc/ | |
9282 | ||
b75e60d6 | 9283 | PIN CONTROLLER - SAMSUNG |
fea685e9 | 9284 | M: Tomasz Figa <tomasz.figa@gmail.com> |
326dce07 | 9285 | M: Krzysztof Kozlowski <krzk@kernel.org> |
44b03c10 | 9286 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
b75e60d6 DA |
9287 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9288 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
9289 | S: Maintained | |
9b5b33f6 | 9290 | F: drivers/pinctrl/samsung/ |
b75e60d6 | 9291 | |
13cbd906 TL |
9292 | PIN CONTROLLER - SINGLE |
9293 | M: Tony Lindgren <tony@atomide.com> | |
9294 | M: Haojian Zhuang <haojian.zhuang@linaro.org> | |
9295 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9296 | L: linux-omap@vger.kernel.org | |
9297 | S: Maintained | |
9298 | F: drivers/pinctrl/pinctrl-single.c | |
9299 | ||
deda8287 | 9300 | PIN CONTROLLER - ST SPEAR |
da89947b | 9301 | M: Viresh Kumar <vireshk@kernel.org> |
deda8287 VK |
9302 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9303 | W: http://www.st.com/spear | |
9304 | S: Maintained | |
8e406fe4 | 9305 | F: drivers/pinctrl/spear/ |
deda8287 | 9306 | |
11a1cf34 JH |
9307 | PISTACHIO SOC SUPPORT |
9308 | M: James Hartley <james.hartley@imgtec.com> | |
9309 | M: Ionela Voinescu <ionela.voinescu@imgtec.com> | |
9310 | L: linux-mips@linux-mips.org | |
9311 | S: Maintained | |
9312 | F: arch/mips/pistachio/ | |
9313 | F: arch/mips/include/asm/mach-pistachio/ | |
9314 | F: arch/mips/boot/dts/pistachio/ | |
9315 | F: arch/mips/configs/pistachio*_defconfig | |
9316 | ||
249a6771 | 9317 | PKTCDVD DRIVER |
e5f6450c | 9318 | M: Jiri Kosina <jikos@kernel.org> |
249a6771 | 9319 | S: Maintained |
679655da JP |
9320 | F: drivers/block/pktcdvd.c |
9321 | F: include/linux/pktcdvd.h | |
c117ab84 | 9322 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 9323 | |
b31d8273 G |
9324 | PKUNITY SOC DRIVERS |
9325 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
9326 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
9327 | S: Maintained | |
ceebf4d5 | 9328 | T: git git://github.com/gxt/linux.git |
b31d8273 | 9329 | F: drivers/input/serio/i8042-unicore32io.h |
d10e4a66 | 9330 | F: drivers/i2c/busses/i2c-puv3.c |
8a61f013 | 9331 | F: drivers/video/fbdev/fb-puv3.c |
2809e80b | 9332 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 9333 | |
9d2ecfb7 | 9334 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 9335 | M: Guenter Roeck <linux@roeck-us.net> |
968ce1b1 GR |
9336 | L: linux-hwmon@vger.kernel.org |
9337 | W: http://hwmon.wiki.kernel.org/ | |
9d2ecfb7 GR |
9338 | W: http://www.roeck-us.net/linux/drivers/ |
9339 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
9340 | S: Maintained | |
9341 | F: Documentation/hwmon/pmbus | |
9342 | F: drivers/hwmon/pmbus/ | |
9343 | F: include/linux/i2c/pmbus.h | |
9344 | ||
89a36810 | 9345 | PMC SIERRA MaxRAID DRIVER |
89a36810 AR |
9346 | L: linux-scsi@vger.kernel.org |
9347 | W: http://www.pmc-sierra.com/ | |
3cdea4d7 | 9348 | S: Orphan |
89a36810 AR |
9349 | F: drivers/scsi/pmcraid.* |
9350 | ||
dbf9bfe6 | 9351 | PMC SIERRA PM8001 DRIVER |
d32477e2 | 9352 | M: Jack Wang <jinpu.wang@profitbricks.com> |
dbf9bfe6 | 9353 | M: lindar_liu@usish.com |
f5a7b525 | 9354 | L: pmchba@pmcs.com |
dbf9bfe6 | 9355 | L: linux-scsi@vger.kernel.org |
9356 | S: Supported | |
9357 | F: drivers/scsi/pm8001/ | |
9358 | ||
1da177e4 | 9359 | POSIX CLOCKS and TIMERS |
8b58be88 | 9360 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 9361 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 9362 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
5cee9645 | 9363 | S: Maintained |
679655da JP |
9364 | F: fs/timerfd.c |
9365 | F: include/linux/timer* | |
5cee9645 | 9366 | F: kernel/time/*timer* |
1da177e4 | 9367 | |
7b06a6d7 RW |
9368 | POWER MANAGEMENT CORE |
9369 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> | |
9370 | L: linux-pm@vger.kernel.org | |
9371 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
9372 | S: Supported | |
9373 | F: drivers/base/power/ | |
9374 | F: include/linux/pm.h | |
9375 | F: include/linux/pm_* | |
9376 | F: include/linux/powercap.h | |
9377 | F: drivers/powercap/ | |
9378 | ||
3be86148 | 9379 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
ad8464a2 | 9380 | M: Sebastian Reichel <sre@kernel.org> |
57318935 | 9381 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
8b58be88 | 9382 | M: David Woodhouse <dwmw2@infradead.org> |
ad8464a2 | 9383 | L: linux-pm@vger.kernel.org |
54e5881d | 9384 | T: git git://git.infradead.org/battery-2.6.git |
3be86148 | 9385 | S: Maintained |
3cc5c704 GU |
9386 | F: Documentation/devicetree/bindings/power/ |
9387 | F: Documentation/devicetree/bindings/power_supply/ | |
679655da | 9388 | F: include/linux/power_supply.h |
8cd725a1 | 9389 | F: drivers/power/ |
26305022 | 9390 | X: drivers/power/avs/ |
3be86148 | 9391 | |
514f161a MR |
9392 | POWER STATE COORDINATION INTERFACE (PSCI) |
9393 | M: Mark Rutland <mark.rutland@arm.com> | |
9394 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
9395 | L: linux-arm-kernel@lists.infradead.org | |
9396 | S: Maintained | |
9397 | F: drivers/firmware/psci.c | |
9398 | F: include/linux/psci.h | |
9399 | F: include/uapi/linux/psci.h | |
9400 | ||
43a1dd9b SJS |
9401 | POWERNV OPERATOR PANEL LCD DISPLAY DRIVER |
9402 | M: Suraj Jitindar Singh <sjitindarsingh@gmail.com> | |
9403 | L: linuxppc-dev@lists.ozlabs.org | |
9404 | S: Maintained | |
9405 | F: drivers/char/powernv-op-panel.c | |
9406 | ||
1da177e4 | 9407 | PNP SUPPORT |
9c3646d1 | 9408 | M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> |
1da177e4 | 9409 | S: Maintained |
679655da | 9410 | F: drivers/pnp/ |
1da177e4 LT |
9411 | |
9412 | PPP PROTOCOL DRIVERS AND COMPRESSORS | |
8b58be88 | 9413 | M: Paul Mackerras <paulus@samba.org> |
1da177e4 LT |
9414 | L: linux-ppp@vger.kernel.org |
9415 | S: Maintained | |
224cf5ad | 9416 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
9417 | |
9418 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 9419 | M: Mitchell Blank Jr <mitch@sfgoth.com> |
1da177e4 | 9420 | S: Maintained |
679655da | 9421 | F: net/atm/pppoatm.c |
c117ab84 | 9422 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
9423 | |
9424 | PPP OVER ETHERNET | |
8b58be88 | 9425 | M: Michal Ostrowski <mostrows@earthlink.net> |
1da177e4 | 9426 | S: Maintained |
224cf5ad JK |
9427 | F: drivers/net/ppp/pppoe.c |
9428 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 9429 | |
a6d2370b | 9430 | PPP OVER L2TP |
8b58be88 | 9431 | M: James Chapman <jchapman@katalix.com> |
a6d2370b | 9432 | S: Maintained |
90ca28d1 | 9433 | F: net/l2tp/l2tp_ppp.c |
679655da | 9434 | F: include/linux/if_pppol2tp.h |
c117ab84 | 9435 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 9436 | |
eae9d2ba | 9437 | PPS SUPPORT |
8b58be88 | 9438 | M: Rodolfo Giometti <giometti@enneenne.com> |
eae9d2ba RG |
9439 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
9440 | L: linuxpps@ml.enneenne.com (subscribers-only) | |
9441 | S: Maintained | |
cabaaf41 JP |
9442 | F: Documentation/pps/ |
9443 | F: drivers/pps/ | |
9444 | F: include/linux/pps*.h | |
eae9d2ba | 9445 | |
71a6d0af HW |
9446 | PPTP DRIVER |
9447 | M: Dmitry Kozlov <xeb@mail.ru> | |
9448 | L: netdev@vger.kernel.org | |
9449 | S: Maintained | |
224cf5ad | 9450 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
9451 | W: http://sourceforge.net/projects/accel-pptp |
9452 | ||
1da177e4 | 9453 | PREEMPTIBLE KERNEL |
8b58be88 | 9454 | M: Robert Love <rml@tech9.net> |
1da177e4 LT |
9455 | L: kpreempt-tech@lists.sourceforge.net |
9456 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
9457 | S: Supported | |
679655da JP |
9458 | F: Documentation/preempt-locking.txt |
9459 | F: include/linux/preempt.h | |
1da177e4 LT |
9460 | |
9461 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 9462 | M: "Luis R. Rodriguez" <mcgrof@gmail.com> |
724c6b35 | 9463 | L: linux-wireless@vger.kernel.org |
9ef80804 | 9464 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 9465 | S: Obsolete |
c12edfe2 | 9466 | F: drivers/net/wireless/intersil/prism54/ |
1da177e4 | 9467 | |
02c18891 | 9468 | PS3 NETWORK SUPPORT |
b809b9ca | 9469 | M: Geoff Levand <geoff@infradead.org> |
02c18891 | 9470 | L: netdev@vger.kernel.org |
a14ab6b6 | 9471 | L: linuxppc-dev@lists.ozlabs.org |
b809b9ca | 9472 | S: Maintained |
8df158ac | 9473 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 9474 | |
f58a9d17 | 9475 | PS3 PLATFORM SUPPORT |
b809b9ca | 9476 | M: Geoff Levand <geoff@infradead.org> |
a4724ed6 | 9477 | L: linuxppc-dev@lists.ozlabs.org |
b809b9ca | 9478 | S: Maintained |
679655da JP |
9479 | F: arch/powerpc/boot/ps3* |
9480 | F: arch/powerpc/include/asm/lv1call.h | |
9481 | F: arch/powerpc/include/asm/ps3*.h | |
9482 | F: arch/powerpc/platforms/ps3/ | |
9483 | F: drivers/*/ps3* | |
9484 | F: drivers/ps3/ | |
fec629b8 | 9485 | F: drivers/rtc/rtc-ps3.c |
679655da | 9486 | F: drivers/usb/host/*ps3.c |
fec629b8 | 9487 | F: sound/ppc/snd_ps3* |
f58a9d17 | 9488 | |
cffb4add | 9489 | PS3VRAM DRIVER |
8b58be88 | 9490 | M: Jim Paris <jim@jtan.com> |
3715a5d0 | 9491 | M: Geoff Levand <geoff@infradead.org> |
a14ab6b6 | 9492 | L: linuxppc-dev@lists.ozlabs.org |
cffb4add | 9493 | S: Maintained |
8a3977cb | 9494 | F: drivers/block/ps3vram.c |
cffb4add | 9495 | |
8defe599 | 9496 | PSTORE FILESYSTEM |
9d5e2a02 | 9497 | M: Anton Vorontsov <anton@enomsg.org> |
8defe599 AV |
9498 | M: Colin Cross <ccross@android.com> |
9499 | M: Kees Cook <keescook@chromium.org> | |
9500 | M: Tony Luck <tony.luck@intel.com> | |
9501 | S: Maintained | |
9f273c24 | 9502 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
8defe599 AV |
9503 | F: fs/pstore/ |
9504 | F: include/linux/pstore* | |
04851772 | 9505 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 AV |
9506 | F: drivers/acpi/apei/erst.c |
9507 | ||
7fbc415d RC |
9508 | PTP HARDWARE CLOCK SUPPORT |
9509 | M: Richard Cochran <richardcochran@gmail.com> | |
e7333e3c | 9510 | L: netdev@vger.kernel.org |
7fbc415d RC |
9511 | S: Maintained |
9512 | W: http://linuxptp.sourceforge.net/ | |
9513 | F: Documentation/ABI/testing/sysfs-ptp | |
9514 | F: Documentation/ptp/* | |
0ecb3cdd | 9515 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
9516 | F: drivers/net/phy/dp83640* |
9517 | F: drivers/ptp/* | |
9518 | F: include/linux/ptp_cl* | |
9519 | ||
cf94a4d1 | 9520 | PTRACE SUPPORT |
e846ee5f | 9521 | M: Roland McGrath <roland@hack.frob.com> |
8b58be88 | 9522 | M: Oleg Nesterov <oleg@redhat.com> |
cf94a4d1 CH |
9523 | S: Maintained |
9524 | F: include/asm-generic/syscall.h | |
9525 | F: include/linux/ptrace.h | |
9526 | F: include/linux/regset.h | |
9527 | F: include/linux/tracehook.h | |
c117ab84 | 9528 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
9529 | F: kernel/ptrace.c |
9530 | ||
3e9d7ba7 HV |
9531 | PULSE8-CEC DRIVER |
9532 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9533 | L: linux-media@vger.kernel.org | |
9534 | T: git git://linuxtv.org/media_tree.git | |
9535 | S: Maintained | |
9536 | F: drivers/staging/media/pulse8-cec | |
9537 | ||
8320204a | 9538 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 9539 | M: Mike Isely <isely@pobox.com> |
16e9495d | 9540 | L: pvrusb2@isely.net (subscribers-only) |
661263b5 | 9541 | L: linux-media@vger.kernel.org |
8320204a | 9542 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 9543 | T: git git://linuxtv.org/media_tree.git |
8320204a | 9544 | S: Maintained |
679655da | 9545 | F: Documentation/video4linux/README.pvrusb2 |
0c0d06ca | 9546 | F: drivers/media/usb/pvrusb2/ |
8320204a | 9547 | |
39532e6c | 9548 | PWC WEBCAM DRIVER |
c0936df4 | 9549 | M: Hans Verkuil <hverkuil@xs4all.nl> |
39532e6c HG |
9550 | L: linux-media@vger.kernel.org |
9551 | T: git git://linuxtv.org/media_tree.git | |
c0936df4 | 9552 | S: Odd Fixes |
39532e6c HG |
9553 | F: drivers/media/usb/pwc/* |
9554 | ||
93c090b3 | 9555 | PWM FAN DRIVER |
774e0362 KD |
9556 | M: Kamil Debski <kamil@wypas.org> |
9557 | M: Lukasz Majewski <l.majewski@samsung.com> | |
968ce1b1 | 9558 | L: linux-hwmon@vger.kernel.org |
93c090b3 KD |
9559 | S: Supported |
9560 | F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt | |
9561 | F: Documentation/hwmon/pwm-fan | |
9562 | F: drivers/hwmon/pwm-fan.c | |
9563 | ||
200efedd | 9564 | PWM SUBSYSTEM |
aa3495f7 TR |
9565 | M: Thierry Reding <thierry.reding@gmail.com> |
9566 | L: linux-pwm@vger.kernel.org | |
0c2498f1 | 9567 | S: Maintained |
006e854f | 9568 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git |
200efedd TR |
9569 | F: Documentation/pwm.txt |
9570 | F: Documentation/devicetree/bindings/pwm/ | |
9571 | F: include/linux/pwm.h | |
0c2498f1 | 9572 | F: drivers/pwm/ |
a140b98d TR |
9573 | F: drivers/video/backlight/pwm_bl.c |
9574 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 9575 | |
30ec261e | 9576 | PXA2xx/PXA3xx SUPPORT |
8da5e302 | 9577 | M: Daniel Mack <daniel@zonque.org> |
a323f664 | 9578 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
8da5e302 | 9579 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 9580 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 | 9581 | T: git git://github.com/hzhuang1/linux.git |
8da5e302 | 9582 | T: git git://github.com/rjarzmik/linux.git |
1da177e4 | 9583 | S: Maintained |
e68d7c14 | 9584 | F: arch/arm/boot/dts/pxa* |
679655da | 9585 | F: arch/arm/mach-pxa/ |
820439f1 | 9586 | F: drivers/dma/pxa* |
679655da | 9587 | F: drivers/pcmcia/pxa2xx* |
1403ead9 | 9588 | F: drivers/pinctrl/pxa/ |
9df92e6c | 9589 | F: drivers/spi/spi-pxa2xx* |
faf2e1db | 9590 | F: drivers/usb/gadget/udc/pxa2* |
679655da | 9591 | F: include/sound/pxa2xx-lib.h |
bec4c99e | 9592 | F: sound/arm/pxa* |
14430813 | 9593 | F: sound/soc/pxa/ |
1da177e4 | 9594 | |
f3154a46 RJ |
9595 | PXA GPIO DRIVER |
9596 | M: Robert Jarzmik <robert.jarzmik@free.fr> | |
9597 | L: linux-gpio@vger.kernel.org | |
9598 | S: Maintained | |
9599 | F: drivers/gpio/gpio-pxa.c | |
9600 | ||
ec64d3bf EG |
9601 | PXA3xx NAND FLASH DRIVER |
9602 | M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> | |
9603 | L: linux-mtd@lists.infradead.org | |
9604 | S: Maintained | |
9a67f099 | 9605 | F: drivers/mtd/nand/pxa3xx_nand.c |
ec64d3bf | 9606 | |
3f640c61 | 9607 | MMP SUPPORT |
8b58be88 | 9608 | M: Eric Miao <eric.y.miao@gmail.com> |
a323f664 | 9609 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
e8e6cb32 | 9610 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 HZ |
9611 | T: git git://github.com/hzhuang1/linux.git |
9612 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 9613 | S: Maintained |
e68d7c14 | 9614 | F: arch/arm/boot/dts/mmp* |
3f640c61 | 9615 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 9616 | |
272f133a PO |
9617 | PXA MMCI DRIVER |
9618 | S: Orphan | |
9619 | ||
57f63bc8 | 9620 | PXA RTC DRIVER |
8b58be88 | 9621 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
57f63bc8 RJ |
9622 | L: rtc-linux@googlegroups.com |
9623 | S: Maintained | |
9624 | ||
cea4001a | 9625 | QAT DRIVER |
90ab5a81 TS |
9626 | M: Giovanni Cabiddu <giovanni.cabiddu@intel.com> |
9627 | M: Salvatore Benedetto <salvatore.benedetto@intel.com> | |
49e7d9df JP |
9628 | L: qat-linux@intel.com |
9629 | S: Supported | |
9630 | F: drivers/crypto/qat/ | |
cea4001a | 9631 | |
52a09a04 | 9632 | QIB DRIVER |
8473c603 | 9633 | M: Mike Marciniszyn <infinipath@intel.com> |
52a09a04 MM |
9634 | L: linux-rdma@vger.kernel.org |
9635 | S: Supported | |
9636 | F: drivers/infiniband/hw/qib/ | |
9637 | ||
5e9772b9 JS |
9638 | QLOGIC QLA1280 SCSI DRIVER |
9639 | M: Michael Reed <mdr@sgi.com> | |
9640 | L: linux-scsi@vger.kernel.org | |
9641 | S: Maintained | |
9642 | F: drivers/scsi/qla1280.[ch] | |
9643 | ||
1da177e4 | 9644 | QLOGIC QLA2XXX FC-SCSI DRIVER |
2c804eb0 | 9645 | M: qla2xxx-upstream@qlogic.com |
1da177e4 LT |
9646 | L: linux-scsi@vger.kernel.org |
9647 | S: Supported | |
679655da JP |
9648 | F: Documentation/scsi/LICENSE.qla2xxx |
9649 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 9650 | |
883c98fe | 9651 | QLOGIC QLA4XXX iSCSI DRIVER |
1018b8b9 | 9652 | M: QLogic-Storage-Upstream@qlogic.com |
883c98fe RA |
9653 | L: linux-scsi@vger.kernel.org |
9654 | S: Supported | |
bacfb81b | 9655 | F: Documentation/scsi/LICENSE.qla4xxx |
883c98fe RA |
9656 | F: drivers/scsi/qla4xxx/ |
9657 | ||
5a4faa87 | 9658 | QLOGIC QLA3XXX NETWORK DRIVER |
0a955c3a | 9659 | M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> |
8b58be88 | 9660 | M: Ron Mercer <ron.mercer@qlogic.com> |
5a4faa87 RM |
9661 | M: linux-driver@qlogic.com |
9662 | L: netdev@vger.kernel.org | |
9663 | S: Supported | |
679655da | 9664 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 9665 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 9666 | |
0ec00f03 | 9667 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
9f35a3cc | 9668 | M: Dept-GELinuxNICDev@qlogic.com |
0ec00f03 AKS |
9669 | L: netdev@vger.kernel.org |
9670 | S: Supported | |
aa43c215 | 9671 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 9672 | |
c4e84bde | 9673 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
c9b1a5b5 HP |
9674 | M: Harish Patil <harish.patil@qlogic.com> |
9675 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> | |
9676 | M: Dept-GELinuxNICDev@qlogic.com | |
4cbfbe25 | 9677 | M: linux-driver@qlogic.com |
c4e84bde RM |
9678 | L: netdev@vger.kernel.org |
9679 | S: Supported | |
aa43c215 | 9680 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 9681 | |
fe56b9e6 YM |
9682 | QLOGIC QL4xxx ETHERNET DRIVER |
9683 | M: Yuval Mintz <Yuval.Mintz@qlogic.com> | |
9684 | M: Ariel Elior <Ariel.Elior@qlogic.com> | |
9685 | M: everest-linux-l2@qlogic.com | |
9686 | L: netdev@vger.kernel.org | |
9687 | S: Supported | |
9688 | F: drivers/net/ethernet/qlogic/qed/ | |
9689 | F: include/linux/qed/ | |
9690 | F: drivers/net/ethernet/qlogic/qede/ | |
9691 | ||
1da177e4 | 9692 | QNX4 FILESYSTEM |
8b58be88 | 9693 | M: Anders Larsen <al@alarsen.net> |
1da177e4 LT |
9694 | W: http://www.alarsen.net/linux/qnx4fs/ |
9695 | S: Maintained | |
80811493 | 9696 | F: fs/qnx4/ |
c117ab84 CEB |
9697 | F: include/uapi/linux/qnx4_fs.h |
9698 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 9699 | |
91952bc0 AP |
9700 | QT1010 MEDIA DRIVER |
9701 | M: Antti Palosaari <crope@iki.fi> | |
9702 | L: linux-media@vger.kernel.org | |
a825eaec | 9703 | W: https://linuxtv.org |
91952bc0 AP |
9704 | W: http://palosaari.fi/linux/ |
9705 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9706 | T: git git://linuxtv.org/anttip/media_tree.git | |
9707 | S: Maintained | |
9708 | F: drivers/media/tuners/qt1010* | |
9709 | ||
966fb5ec SM |
9710 | QUALCOMM ATHEROS ATH9K WIRELESS DRIVER |
9711 | M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com> | |
9712 | L: linux-wireless@vger.kernel.org | |
9713 | L: ath9k-devel@lists.ath9k.org | |
9714 | W: http://wireless.kernel.org/en/users/Drivers/ath9k | |
9715 | S: Supported | |
9716 | F: drivers/net/wireless/ath/ath9k/ | |
9717 | ||
2ea0ffcb KV |
9718 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
9719 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
9720 | L: ath10k@lists.infradead.org | |
9721 | W: http://wireless.kernel.org/en/users/Drivers/ath10k | |
9f273c24 | 9722 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git |
2ea0ffcb KV |
9723 | S: Supported |
9724 | F: drivers/net/wireless/ath/ath10k/ | |
9725 | ||
4f4567cf RK |
9726 | QUALCOMM HEXAGON ARCHITECTURE |
9727 | M: Richard Kuo <rkuo@codeaurora.org> | |
9728 | L: linux-hexagon@vger.kernel.org | |
9f273c24 | 9729 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git |
4f4567cf RK |
9730 | S: Supported |
9731 | F: arch/hexagon/ | |
9732 | ||
8e84c258 EK |
9733 | QUALCOMM WCN36XX WIRELESS DRIVER |
9734 | M: Eugene Krasnikov <k.eugene.e@gmail.com> | |
9735 | L: wcn36xx@lists.infradead.org | |
9736 | W: http://wireless.kernel.org/en/users/Drivers/wcn36xx | |
9737 | T: git git://github.com/KrasnikovEugene/wcn36xx.git | |
9738 | S: Supported | |
9739 | F: drivers/net/wireless/ath/wcn36xx/ | |
9740 | ||
eeca9a67 MT |
9741 | QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT |
9742 | M: Gabriel Somlo <somlo@cmu.edu> | |
9743 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
9744 | L: qemu-devel@nongnu.org | |
9745 | S: Maintained | |
9746 | F: drivers/firmware/qemu_fw_cfg.c | |
9747 | ||
602adf40 | 9748 | RADOS BLOCK DEVICE (RBD) |
0f5417ce SW |
9749 | M: Ilya Dryomov <idryomov@gmail.com> |
9750 | M: Sage Weil <sage@redhat.com> | |
527a88b9 | 9751 | M: Alex Elder <elder@kernel.org> |
398ecff5 | 9752 | L: ceph-devel@vger.kernel.org |
09d90327 SW |
9753 | W: http://ceph.com/ |
9754 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
6e67b7ae | 9755 | T: git git://github.com/ceph/ceph-client.git |
602adf40 | 9756 | S: Supported |
398ecff5 | 9757 | F: Documentation/ABI/testing/sysfs-bus-rbd |
602adf40 YS |
9758 | F: drivers/block/rbd.c |
9759 | F: drivers/block/rbd_types.h | |
9760 | ||
1da177e4 | 9761 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 9762 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
c69f677c | 9763 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 9764 | S: Maintained |
8a61f013 | 9765 | F: drivers/video/fbdev/aty/radeon* |
c117ab84 | 9766 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 9767 | |
c6c9b34c | 9768 | RADIOSHARK RADIO DRIVER |
c0936df4 | 9769 | M: Hans Verkuil <hverkuil@xs4all.nl> |
c6c9b34c HG |
9770 | L: linux-media@vger.kernel.org |
9771 | T: git git://linuxtv.org/media_tree.git | |
9772 | S: Maintained | |
9773 | F: drivers/media/radio/radio-shark.c | |
9774 | ||
9775 | RADIOSHARK2 RADIO DRIVER | |
c0936df4 | 9776 | M: Hans Verkuil <hverkuil@xs4all.nl> |
c6c9b34c HG |
9777 | L: linux-media@vger.kernel.org |
9778 | T: git git://linuxtv.org/media_tree.git | |
9779 | S: Maintained | |
9780 | F: drivers/media/radio/radio-shark2.c | |
9781 | F: drivers/media/radio/radio-tea5777.c | |
9782 | ||
1da177e4 | 9783 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 9784 | M: Paul Mackerras <paulus@samba.org> |
c69f677c | 9785 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 9786 | S: Maintained |
8a61f013 | 9787 | F: drivers/video/fbdev/aty/aty128fb.c |
1da177e4 | 9788 | |
a0fd81a9 | 9789 | RALINK MIPS ARCHITECTURE |
bdb40e8e | 9790 | M: John Crispin <john@phrozen.org> |
a0fd81a9 JC |
9791 | L: linux-mips@linux-mips.org |
9792 | S: Maintained | |
9793 | F: arch/mips/ralink | |
9794 | ||
e7839f25 | 9795 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 9796 | P: rt2x00 project |
b182427e | 9797 | M: Stanislaw Gruszka <sgruszka@redhat.com> |
f198f98e | 9798 | M: Helmut Schaa <helmut.schaa@googlemail.com> |
95ea3627 | 9799 | L: linux-wireless@vger.kernel.org |
95ea3627 | 9800 | S: Maintained |
33aca94d | 9801 | F: drivers/net/wireless/ralink/rt2x00/ |
95ea3627 | 9802 | |
9db5579b | 9803 | RAMDISK RAM BLOCK DEVICE DRIVER |
ea7618ec | 9804 | M: Jens Axboe <axboe@kernel.dk> |
9db5579b | 9805 | S: Maintained |
679655da JP |
9806 | F: Documentation/blockdev/ramdisk.txt |
9807 | F: drivers/block/brd.c | |
9db5579b | 9808 | |
9e95ce27 | 9809 | RANDOM NUMBER DRIVER |
0624bcaa | 9810 | M: "Theodore Ts'o" <tytso@mit.edu> |
9e95ce27 | 9811 | S: Maintained |
679655da | 9812 | F: drivers/char/random.c |
9e95ce27 | 9813 | |
394b701c | 9814 | RAPIDIO SUBSYSTEM |
8b58be88 | 9815 | M: Matt Porter <mporter@kernel.crashing.org> |
b8bc1dd3 | 9816 | M: Alexandre Bounine <alexandre.bounine@idt.com> |
394b701c | 9817 | S: Maintained |
679655da | 9818 | F: drivers/rapidio/ |
394b701c | 9819 | |
e2d1d6c0 | 9820 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 9821 | L: linux-wireless@vger.kernel.org |
f52a5490 | 9822 | S: Orphan |
679655da | 9823 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
9824 | |
9825 | RCUTORTURE MODULE | |
e0198b29 | 9826 | M: Josh Triplett <josh@joshtriplett.org> |
8b58be88 | 9827 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
981c3a4f | 9828 | L: linux-kernel@vger.kernel.org |
f9094d8e | 9829 | S: Supported |
08deed1e | 9830 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da | 9831 | F: Documentation/RCU/torture.txt |
34e2d560 | 9832 | F: kernel/rcu/rcutorture.c |
e2d1d6c0 | 9833 | |
c87b9c60 PM |
9834 | RCUTORTURE TEST FRAMEWORK |
9835 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
ab0afd6c | 9836 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
9837 | R: Steven Rostedt <rostedt@goodmis.org> |
9838 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
96a39bc4 | 9839 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
981c3a4f | 9840 | L: linux-kernel@vger.kernel.org |
c87b9c60 PM |
9841 | S: Supported |
9842 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
9843 | F: tools/testing/selftests/rcutorture | |
9844 | ||
c1f766b5 | 9845 | RDC R-321X SoC |
8b58be88 | 9846 | M: Florian Fainelli <florian@openwrt.org> |
c1f766b5 FF |
9847 | S: Maintained |
9848 | ||
db17f395 | 9849 | RDC R6040 FAST ETHERNET DRIVER |
35566e96 | 9850 | M: Florian Fainelli <f.fainelli@gmail.com> |
db17f395 FF |
9851 | L: netdev@vger.kernel.org |
9852 | S: Maintained | |
58565a35 | 9853 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 9854 | |
a09ed661 | 9855 | RDS - RELIABLE DATAGRAM SOCKETS |
72f26eee | 9856 | M: Santosh Shilimkar <santosh.shilimkar@oracle.com> |
9857 | L: netdev@vger.kernel.org | |
9858 | L: linux-rdma@vger.kernel.org | |
fbb5a558 | 9859 | L: rds-devel@oss.oracle.com (moderated for non-subscribers) |
72f26eee | 9860 | W: https://oss.oracle.com/projects/rds/ |
a09ed661 | 9861 | S: Supported |
679655da | 9862 | F: net/rds/ |
72f26eee | 9863 | F: Documentation/networking/rds.txt |
a09ed661 | 9864 | |
0194621b DD |
9865 | RDMAVT - RDMA verbs software |
9866 | M: Dennis Dalessandro <dennis.dalessandro@intel.com> | |
9867 | L: linux-rdma@vger.kernel.org | |
9868 | S: Supported | |
9869 | F: drivers/infiniband/sw/rdmavt | |
9870 | ||
595182bc | 9871 | READ-COPY UPDATE (RCU) |
8b58be88 | 9872 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
ab0afd6c | 9873 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
9874 | R: Steven Rostedt <rostedt@goodmis.org> |
9875 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
96a39bc4 | 9876 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
981c3a4f | 9877 | L: linux-kernel@vger.kernel.org |
9fab9787 | 9878 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 9879 | S: Supported |
08deed1e | 9880 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 9881 | F: Documentation/RCU/ |
9fab9787 | 9882 | X: Documentation/RCU/torture.txt |
f9094d8e | 9883 | F: include/linux/rcu* |
4102adab PM |
9884 | X: include/linux/srcu.h |
9885 | F: kernel/rcu/ | |
34e2d560 | 9886 | X: kernel/torture.c |
595182bc | 9887 | |
0c86edc0 | 9888 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 9889 | M: Alessandro Zummo <a.zummo@towertech.it> |
7c6f84f8 | 9890 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
76465493 | 9891 | L: rtc-linux@googlegroups.com |
8a6e2535 | 9892 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
4733f397 | 9893 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git |
0c86edc0 | 9894 | S: Maintained |
7af6a2e1 | 9895 | F: Documentation/devicetree/bindings/rtc/ |
679655da JP |
9896 | F: Documentation/rtc.txt |
9897 | F: drivers/rtc/ | |
9898 | F: include/linux/rtc.h | |
c117ab84 | 9899 | F: include/uapi/linux/rtc.h |
fe23c336 AB |
9900 | F: include/linux/rtc/ |
9901 | F: include/linux/platform_data/rtc-* | |
9902 | F: tools/testing/selftests/timers/rtctest.c | |
0c86edc0 | 9903 | |
0e400c53 MB |
9904 | REALTEK AUDIO CODECS |
9905 | M: Bard Liao <bardliao@realtek.com> | |
9906 | M: Oder Chiou <oder_chiou@realtek.com> | |
9907 | S: Maintained | |
9908 | F: sound/soc/codecs/rt* | |
9909 | F: include/sound/rt*.h | |
9910 | ||
1da177e4 | 9911 | REISERFS FILE SYSTEM |
76c4e5ea | 9912 | L: reiserfs-devel@vger.kernel.org |
1da177e4 | 9913 | S: Supported |
679655da | 9914 | F: fs/reiserfs/ |
1da177e4 | 9915 | |
b83a313b | 9916 | REGISTER MAP ABSTRACTION |
b02e48f2 | 9917 | M: Mark Brown <broonie@kernel.org> |
dd060bc9 | 9918 | L: linux-kernel@vger.kernel.org |
b83a313b MB |
9919 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
9920 | S: Supported | |
9398a639 | 9921 | F: Documentation/devicetree/bindings/regmap/ |
b83a313b MB |
9922 | F: drivers/base/regmap/ |
9923 | F: include/linux/regmap.h | |
9924 | ||
400e64df OBC |
9925 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
9926 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
69ae9895 | 9927 | M: Bjorn Andersson <bjorn.andersson@linaro.org> |
d7586849 | 9928 | L: linux-remoteproc@vger.kernel.org |
6bb697b6 | 9929 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df | 9930 | S: Maintained |
15ebc72d | 9931 | F: Documentation/devicetree/bindings/remoteproc/ |
400e64df | 9932 | F: Documentation/remoteproc.txt |
15ebc72d | 9933 | F: drivers/remoteproc/ |
6fc26488 | 9934 | F: include/linux/remoteproc.h |
400e64df | 9935 | |
d8115db5 OBC |
9936 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
9937 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
69ae9895 | 9938 | M: Bjorn Andersson <bjorn.andersson@linaro.org> |
d7586849 | 9939 | L: linux-remoteproc@vger.kernel.org |
d8115db5 OBC |
9940 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git |
9941 | S: Maintained | |
9942 | F: drivers/rpmsg/ | |
9943 | F: Documentation/rpmsg.txt | |
9944 | F: include/linux/rpmsg.h | |
9945 | ||
8e6569af SS |
9946 | RENESAS ETHERNET DRIVERS |
9947 | R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> | |
9948 | L: netdev@vger.kernel.org | |
4a121096 | 9949 | L: linux-renesas-soc@vger.kernel.org |
8e6569af SS |
9950 | F: drivers/net/ethernet/renesas/ |
9951 | F: include/linux/sh_eth.h | |
9952 | ||
3e46c397 YS |
9953 | RENESAS USB2 PHY DRIVER |
9954 | M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> | |
4a121096 | 9955 | L: linux-renesas-soc@vger.kernel.org |
3e46c397 YS |
9956 | S: Maintained |
9957 | F: drivers/phy/phy-rcar-gen3-usb2.c | |
9958 | ||
1b0fe6be PZ |
9959 | RESET CONTROLLER FRAMEWORK |
9960 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
9f273c24 | 9961 | T: git git://git.pengutronix.de/git/pza/linux |
1b0fe6be PZ |
9962 | S: Maintained |
9963 | F: drivers/reset/ | |
9964 | F: Documentation/devicetree/bindings/reset/ | |
b2f6dd7b | 9965 | F: include/dt-bindings/reset/ |
1b0fe6be PZ |
9966 | F: include/linux/reset.h |
9967 | F: include/linux/reset-controller.h | |
9968 | ||
e0897645 | 9969 | RFKILL |
8b58be88 | 9970 | M: Johannes Berg <johannes@sipsolutions.net> |
19d337df | 9971 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
9972 | W: http://wireless.kernel.org/ |
9973 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
9974 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 9975 | S: Maintained |
505c9247 | 9976 | F: Documentation/rfkill.txt |
80811493 | 9977 | F: net/rfkill/ |
e0897645 | 9978 | |
933685ca TG |
9979 | RHASHTABLE |
9980 | M: Thomas Graf <tgraf@suug.ch> | |
9981 | L: netdev@vger.kernel.org | |
9982 | S: Maintained | |
9983 | F: lib/rhashtable.c | |
9984 | F: include/linux/rhashtable.h | |
9985 | ||
67e054e9 ML |
9986 | RICOH SMARTMEDIA/XD DRIVER |
9987 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
9988 | S: Maintained | |
21c26f50 JP |
9989 | F: drivers/mtd/nand/r852.c |
9990 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 9991 | |
92634125 ML |
9992 | RICOH R5C592 MEMORYSTICK DRIVER |
9993 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
9994 | S: Maintained | |
9995 | F: drivers/memstick/host/r592.* | |
9996 | ||
27f1d2f9 SA |
9997 | ROCCAT DRIVERS |
9998 | M: Stefan Achatz <erazor_de@users.sourceforge.net> | |
9999 | W: http://sourceforge.net/projects/roccat/ | |
10000 | S: Maintained | |
10001 | F: drivers/hid/hid-roccat* | |
10002 | F: include/linux/hid-roccat* | |
10003 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* | |
10004 | ||
4b8ac966 JP |
10005 | ROCKER DRIVER |
10006 | M: Jiri Pirko <jiri@resnulli.us> | |
4b8ac966 JP |
10007 | L: netdev@vger.kernel.org |
10008 | S: Supported | |
10009 | F: drivers/net/ethernet/rocker/ | |
10010 | ||
1da177e4 LT |
10011 | ROCKETPORT DRIVER |
10012 | P: Comtrol Corp. | |
1da177e4 LT |
10013 | W: http://www.comtrol.com |
10014 | S: Maintained | |
679655da | 10015 | F: Documentation/serial/rocket.txt |
c897401b | 10016 | F: drivers/tty/rocket* |
1da177e4 | 10017 | |
7645c2f4 KC |
10018 | ROCKETPORT EXPRESS/INFINITY DRIVER |
10019 | M: Kevin Cernekee <cernekee@gmail.com> | |
10020 | L: linux-serial@vger.kernel.org | |
10021 | S: Odd Fixes | |
10022 | F: drivers/tty/serial/rp2.* | |
10023 | ||
1da177e4 | 10024 | ROSE NETWORK LAYER |
8b58be88 | 10025 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 10026 | L: linux-hams@vger.kernel.org |
d34cb28a | 10027 | W: http://www.linux-ax25.org/ |
1da177e4 | 10028 | S: Maintained |
679655da | 10029 | F: include/net/rose.h |
c117ab84 | 10030 | F: include/uapi/linux/rose.h |
679655da | 10031 | F: net/rose/ |
1da177e4 | 10032 | |
91952bc0 AP |
10033 | RTL2830 MEDIA DRIVER |
10034 | M: Antti Palosaari <crope@iki.fi> | |
10035 | L: linux-media@vger.kernel.org | |
a825eaec | 10036 | W: https://linuxtv.org |
91952bc0 AP |
10037 | W: http://palosaari.fi/linux/ |
10038 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10039 | T: git git://linuxtv.org/anttip/media_tree.git | |
10040 | S: Maintained | |
10041 | F: drivers/media/dvb-frontends/rtl2830* | |
10042 | ||
27a0aacf AP |
10043 | RTL2832 MEDIA DRIVER |
10044 | M: Antti Palosaari <crope@iki.fi> | |
10045 | L: linux-media@vger.kernel.org | |
a825eaec | 10046 | W: https://linuxtv.org |
27a0aacf AP |
10047 | W: http://palosaari.fi/linux/ |
10048 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10049 | T: git git://linuxtv.org/anttip/media_tree.git | |
10050 | S: Maintained | |
10051 | F: drivers/media/dvb-frontends/rtl2832* | |
10052 | ||
ba6e6f6e AP |
10053 | RTL2832_SDR MEDIA DRIVER |
10054 | M: Antti Palosaari <crope@iki.fi> | |
10055 | L: linux-media@vger.kernel.org | |
a825eaec | 10056 | W: https://linuxtv.org |
ba6e6f6e AP |
10057 | W: http://palosaari.fi/linux/ |
10058 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10059 | T: git git://linuxtv.org/anttip/media_tree.git | |
10060 | S: Maintained | |
b4bb1c28 | 10061 | F: drivers/media/dvb-frontends/rtl2832_sdr* |
ba6e6f6e | 10062 | |
59840488 | 10063 | RTL8180 WIRELESS DRIVER |
605bebe2 | 10064 | L: linux-wireless@vger.kernel.org |
491b26b4 | 10065 | W: http://wireless.kernel.org/ |
54e5881d | 10066 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7be6ff65 | 10067 | S: Orphan |
62141726 | 10068 | F: drivers/net/wireless/realtek/rtl818x/rtl8180/ |
605bebe2 | 10069 | |
59840488 | 10070 | RTL8187 WIRELESS DRIVER |
9f0939bf | 10071 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
8b58be88 JP |
10072 | M: Hin-Tak Leung <htl10@users.sourceforge.net> |
10073 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
7d2c86b5 | 10074 | L: linux-wireless@vger.kernel.org |
491b26b4 | 10075 | W: http://wireless.kernel.org/ |
54e5881d | 10076 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 10077 | S: Maintained |
62141726 | 10078 | F: drivers/net/wireless/realtek/rtl818x/rtl8187/ |
59840488 | 10079 | |
3cf0c8ad LF |
10080 | RTL8192CE WIRELESS DRIVER |
10081 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
10082 | M: Chaoming Li <chaoming_li@realsil.com.cn> | |
10083 | L: linux-wireless@vger.kernel.org | |
491b26b4 | 10084 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
10085 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
10086 | S: Maintained | |
62141726 KV |
10087 | F: drivers/net/wireless/realtek/rtlwifi/ |
10088 | F: drivers/net/wireless/realtek/rtlwifi/rtl8192ce/ | |
59840488 | 10089 | |
26f1fad2 JS |
10090 | RTL8XXXU WIRELESS DRIVER (rtl8xxxu) |
10091 | M: Jes Sorensen <Jes.Sorensen@redhat.com> | |
10092 | L: linux-wireless@vger.kernel.org | |
171a900c | 10093 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel |
26f1fad2 JS |
10094 | S: Maintained |
10095 | F: drivers/net/wireless/realtek/rtl8xxxu/ | |
10096 | ||
9eb8ef74 | 10097 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 10098 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 10099 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 10100 | S: Maintained |
8a61f013 | 10101 | F: drivers/video/fbdev/savage/ |
9eb8ef74 | 10102 | |
1da177e4 | 10103 | S390 |
8b58be88 JP |
10104 | M: Martin Schwidefsky <schwidefsky@de.ibm.com> |
10105 | M: Heiko Carstens <heiko.carstens@de.ibm.com> | |
d58140cc | 10106 | L: linux-s390@vger.kernel.org |
5238da45 | 10107 | W: http://www.ibm.com/developerworks/linux/linux390/ |
9f273c24 | 10108 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git |
5238da45 | 10109 | S: Supported |
679655da | 10110 | F: arch/s390/ |
a968cd3e | 10111 | F: drivers/s390/ |
3bfe6858 JN |
10112 | F: Documentation/s390/ |
10113 | F: Documentation/DocBook/s390* | |
5238da45 | 10114 | |
322986ca SO |
10115 | S390 COMMON I/O LAYER |
10116 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
10117 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
10118 | L: linux-s390@vger.kernel.org | |
10119 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10120 | S: Supported | |
10121 | F: drivers/s390/cio/ | |
10122 | ||
10123 | S390 DASD DRIVER | |
10124 | M: Stefan Weinhuber <wein@de.ibm.com> | |
10125 | M: Stefan Haberland <stefan.haberland@de.ibm.com> | |
10126 | L: linux-s390@vger.kernel.org | |
10127 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10128 | S: Supported | |
10129 | F: drivers/s390/block/dasd* | |
10130 | F: block/partitions/ibm.c | |
10131 | ||
5238da45 | 10132 | S390 NETWORK DRIVERS |
f0c59aff | 10133 | M: Ursula Braun <ubraun@linux.vnet.ibm.com> |
d58140cc | 10134 | L: linux-s390@vger.kernel.org |
5238da45 HC |
10135 | W: http://www.ibm.com/developerworks/linux/linux390/ |
10136 | S: Supported | |
679655da | 10137 | F: drivers/s390/net/ |
5238da45 | 10138 | |
322986ca SO |
10139 | S390 PCI SUBSYSTEM |
10140 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
10141 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> | |
10142 | L: linux-s390@vger.kernel.org | |
10143 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10144 | S: Supported | |
10145 | F: arch/s390/pci/ | |
10146 | F: drivers/pci/hotplug/s390_pci_hpc.c | |
10147 | ||
feed9b62 | 10148 | S390 ZCRYPT DRIVER |
5c8d0983 | 10149 | M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com> |
feed9b62 | 10150 | L: linux-s390@vger.kernel.org |
a968cd3e | 10151 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 10152 | S: Supported |
d5ca6918 | 10153 | F: drivers/s390/crypto/ |
feed9b62 | 10154 | |
5238da45 | 10155 | S390 ZFCP DRIVER |
d38e19d0 | 10156 | M: Steffen Maier <maier@linux.vnet.ibm.com> |
d58140cc | 10157 | L: linux-s390@vger.kernel.org |
5238da45 | 10158 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 10159 | S: Supported |
679655da | 10160 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 10161 | |
dd96df2c | 10162 | S390 IUCV NETWORK LAYER |
f0c59aff | 10163 | M: Ursula Braun <ubraun@linux.vnet.ibm.com> |
dd96df2c UB |
10164 | L: linux-s390@vger.kernel.org |
10165 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10166 | S: Supported | |
679655da JP |
10167 | F: drivers/s390/net/*iucv* |
10168 | F: include/net/iucv/ | |
10169 | F: net/iucv/ | |
dd96df2c | 10170 | |
8128f23c GS |
10171 | S390 IOMMU (PCI) |
10172 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> | |
10173 | L: linux-s390@vger.kernel.org | |
10174 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10175 | S: Supported | |
10176 | F: drivers/iommu/s390-iommu.c | |
10177 | ||
4dde7f75 | 10178 | S3C24XX SD/MMC Driver |
8b58be88 | 10179 | M: Ben Dooks <ben-linux@fluff.org> |
efc03ecb | 10180 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4dde7f75 | 10181 | S: Supported |
679655da | 10182 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 10183 | |
1f15a229 HV |
10184 | SAA6588 RDS RECEIVER DRIVER |
10185 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10186 | L: linux-media@vger.kernel.org | |
10187 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10188 | W: https://linuxtv.org |
1f15a229 HV |
10189 | S: Odd Fixes |
10190 | F: drivers/media/i2c/saa6588* | |
10191 | ||
98ed12e6 | 10192 | SAA7134 VIDEO4LINUX DRIVER |
5dc8a864 MCC |
10193 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
10194 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
98ed12e6 | 10195 | L: linux-media@vger.kernel.org |
a825eaec | 10196 | W: https://linuxtv.org |
98ed12e6 MCC |
10197 | T: git git://linuxtv.org/media_tree.git |
10198 | S: Odd fixes | |
e42bf501 | 10199 | F: Documentation/video4linux/*.saa7134 |
98ed12e6 MCC |
10200 | F: drivers/media/pci/saa7134/ |
10201 | ||
1da177e4 | 10202 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 10203 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 10204 | L: linux-media@vger.kernel.org |
275ffde4 | 10205 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 10206 | S: Maintained |
90d72ac6 MCC |
10207 | F: drivers/media/common/saa7146/ |
10208 | F: drivers/media/pci/saa7146/ | |
10209 | F: include/media/saa7146* | |
1da177e4 | 10210 | |
92304a40 | 10211 | SAMSUNG LAPTOP DRIVER |
5909c654 | 10212 | M: Corentin Chary <corentin.chary@gmail.com> |
92304a40 CC |
10213 | L: platform-driver-x86@vger.kernel.org |
10214 | S: Maintained | |
10215 | F: drivers/platform/x86/samsung-laptop.c | |
10216 | ||
4a109cc0 | 10217 | SAMSUNG AUDIO (ASoC) DRIVERS |
326dce07 | 10218 | M: Krzysztof Kozlowski <krzk@kernel.org> |
250b6851 | 10219 | M: Sangbeom Kim <sbkim73@samsung.com> |
09a01028 | 10220 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
4a109cc0 MB |
10221 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
10222 | S: Supported | |
14430813 | 10223 | F: sound/soc/samsung/ |
4a109cc0 | 10224 | |
0d89a28b | 10225 | SAMSUNG FRAMEBUFFER DRIVER |
b7701755 | 10226 | M: Jingoo Han <jingoohan1@gmail.com> |
0d89a28b JH |
10227 | L: linux-fbdev@vger.kernel.org |
10228 | S: Maintained | |
8a61f013 | 10229 | F: drivers/video/fbdev/s3c-fb.c |
0d89a28b | 10230 | |
b40f0632 | 10231 | SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS |
f69d3a17 | 10232 | M: Sangbeom Kim <sbkim73@samsung.com> |
326dce07 KK |
10233 | M: Krzysztof Kozlowski <krzk@kernel.org> |
10234 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
f69d3a17 | 10235 | L: linux-kernel@vger.kernel.org |
b40f0632 | 10236 | L: linux-samsung-soc@vger.kernel.org |
f69d3a17 SK |
10237 | S: Supported |
10238 | F: drivers/mfd/sec*.c | |
10239 | F: drivers/regulator/s2m*.c | |
10240 | F: drivers/regulator/s5m*.c | |
b40f0632 KK |
10241 | F: drivers/clk/clk-s2mps11.c |
10242 | F: drivers/rtc/rtc-s5m.c | |
f69d3a17 | 10243 | F: include/linux/mfd/samsung/ |
a13c7c51 KK |
10244 | F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt |
10245 | F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt | |
27383ca9 | 10246 | F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt |
a13c7c51 | 10247 | F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt |
f69d3a17 | 10248 | |
038f5c4b SN |
10249 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
10250 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
10251 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> | |
10252 | L: linux-media@vger.kernel.org | |
10253 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
10254 | S: Supported | |
10255 | F: drivers/media/platform/exynos4-is/ | |
038f5c4b | 10256 | |
6fd86ab2 SN |
10257 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
10258 | M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com> | |
10259 | L: linux-media@vger.kernel.org | |
10260 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
10261 | S: Maintained | |
10262 | F: drivers/media/platform/s3c-camif/ | |
d647f0b7 | 10263 | F: include/media/drv-intf/s3c_camif.h |
6fd86ab2 | 10264 | |
b84ef24e AH |
10265 | SAMSUNG S5C73M3 CAMERA DRIVER |
10266 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
10267 | M: Andrzej Hajda <a.hajda@samsung.com> | |
10268 | L: linux-media@vger.kernel.org | |
10269 | S: Supported | |
10270 | F: drivers/media/i2c/s5c73m3/* | |
10271 | ||
7d459937 AH |
10272 | SAMSUNG S5K5BAF CAMERA DRIVER |
10273 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
10274 | M: Andrzej Hajda <a.hajda@samsung.com> | |
10275 | L: linux-media@vger.kernel.org | |
10276 | S: Supported | |
10277 | F: drivers/media/i2c/s5k5baf.c | |
10278 | ||
c04c674f RB |
10279 | SAMSUNG S3FWRN5 NFC DRIVER |
10280 | M: Robert Baldyga <r.baldyga@samsung.com> | |
079c2652 | 10281 | M: Krzysztof Opasiak <k.opasiak@samsung.com> |
c04c674f RB |
10282 | L: linux-nfc@lists.01.org (moderated for non-subscribers) |
10283 | S: Supported | |
10284 | F: drivers/nfc/s3fwrn5 | |
10285 | ||
310e39c9 | 10286 | SAMSUNG SOC CLOCK DRIVERS |
fea685e9 TF |
10287 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
10288 | M: Tomasz Figa <tomasz.figa@gmail.com> | |
310e39c9 TF |
10289 | S: Supported |
10290 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
10291 | F: drivers/clk/samsung/ | |
10292 | ||
2e365a70 AS |
10293 | SAMSUNG SPI DRIVERS |
10294 | M: Kukjin Kim <kgene@kernel.org> | |
10295 | M: Krzysztof Kozlowski <krzk@kernel.org> | |
10296 | M: Andi Shyti <andi.shyti@samsung.com> | |
10297 | L: linux-spi@vger.kernel.org | |
10298 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
10299 | S: Maintained | |
10300 | F: Documentation/devicetree/bindings/spi/spi-samsung.txt | |
10301 | F: drivers/spi/spi-s3c* | |
10302 | F: include/linux/platform_data/spi-s3c64xx.h | |
10303 | ||
66890ed6 BA |
10304 | SAMSUNG SXGBE DRIVERS |
10305 | M: Byungho An <bh74.an@samsung.com> | |
10306 | M: Girish K S <ks.giri@samsung.com> | |
66890ed6 BA |
10307 | M: Vipul Pandya <vipul.pandya@samsung.com> |
10308 | S: Supported | |
10309 | L: netdev@vger.kernel.org | |
10310 | F: drivers/net/ethernet/samsung/sxgbe/ | |
10311 | ||
93c537af LM |
10312 | SAMSUNG THERMAL DRIVER |
10313 | M: Lukasz Majewski <l.majewski@samsung.com> | |
10314 | L: linux-pm@vger.kernel.org | |
10315 | L: linux-samsung-soc@vger.kernel.org | |
10316 | S: Supported | |
9f273c24 | 10317 | T: git https://github.com/lmajewski/linux-samsung-thermal.git |
93c537af LM |
10318 | F: drivers/thermal/samsung/ |
10319 | ||
e296cd32 | 10320 | SAMSUNG USB2 PHY DRIVER |
774e0362 KD |
10321 | M: Kamil Debski <kamil@wypas.org> |
10322 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> | |
e296cd32 KD |
10323 | L: linux-kernel@vger.kernel.org |
10324 | S: Supported | |
10325 | F: Documentation/devicetree/bindings/phy/samsung-phy.txt | |
10326 | F: Documentation/phy/samsung-usb2.txt | |
10327 | F: drivers/phy/phy-exynos4210-usb2.c | |
10328 | F: drivers/phy/phy-exynos4x12-usb2.c | |
10329 | F: drivers/phy/phy-exynos5250-usb2.c | |
10330 | F: drivers/phy/phy-s5pv210-usb2.c | |
10331 | F: drivers/phy/phy-samsung-usb2.c | |
10332 | F: drivers/phy/phy-samsung-usb2.h | |
10333 | ||
ca749e2a | 10334 | SERIAL DRIVERS |
5e30bbb7 | 10335 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
ca749e2a | 10336 | L: linux-serial@vger.kernel.org |
5e30bbb7 | 10337 | S: Maintained |
30743257 | 10338 | F: Documentation/devicetree/bindings/serial/ |
14430813 | 10339 | F: drivers/tty/serial/ |
ca749e2a | 10340 | |
aecb7b64 | 10341 | SYNOPSYS DESIGNWARE DMAC DRIVER |
da89947b | 10342 | M: Viresh Kumar <vireshk@kernel.org> |
337ae47c | 10343 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
aecb7b64 | 10344 | S: Maintained |
1fb200d6 | 10345 | F: include/linux/dma/dw.h |
3d598f47 | 10346 | F: include/linux/platform_data/dma-dw.h |
61a76496 | 10347 | F: drivers/dma/dw/ |
aecb7b64 | 10348 | |
058999cc LP |
10349 | SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver |
10350 | M: Lars Persson <lars.persson@axis.com> | |
10351 | L: netdev@vger.kernel.org | |
10352 | S: Supported | |
10353 | F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt | |
10354 | F: drivers/net/ethernet/synopsys/dwc_eth_qos.c | |
10355 | ||
fc531d98 | 10356 | SYNOPSYS DESIGNWARE I2C DRIVER |
fc531d98 | 10357 | M: Jarkko Nikula <jarkko.nikula@linux.intel.com> |
d0781b98 AS |
10358 | R: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
10359 | R: Mika Westerberg <mika.westerberg@linux.intel.com> | |
fc531d98 WS |
10360 | L: linux-i2c@vger.kernel.org |
10361 | S: Maintained | |
10362 | F: drivers/i2c/busses/i2c-designware-* | |
10363 | F: include/linux/platform_data/i2c-designware.h | |
10364 | ||
f9e37137 | 10365 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
f9e37137 SJ |
10366 | M: Jaehoon Chung <jh80.chung@samsung.com> |
10367 | L: linux-mmc@vger.kernel.org | |
10368 | S: Maintained | |
10369 | F: include/linux/mmc/dw_mmc.h | |
10370 | F: drivers/mmc/host/dw_mmc* | |
10371 | ||
a961e698 AS |
10372 | SYSTEM TRACE MODULE CLASS |
10373 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> | |
10374 | S: Maintained | |
e787bc46 | 10375 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git |
a961e698 AS |
10376 | F: Documentation/trace/stm.txt |
10377 | F: drivers/hwtracing/stm/ | |
10378 | F: include/linux/stm.h | |
10379 | F: include/uapi/linux/stm.h | |
10380 | ||
1db121d6 AN |
10381 | THUNDERBOLT DRIVER |
10382 | M: Andreas Noever <andreas.noever@gmail.com> | |
10383 | S: Maintained | |
10384 | F: drivers/thunderbolt/ | |
10385 | ||
e35a49b1 SR |
10386 | TI BQ27XXX POWER SUPPLY DRIVER |
10387 | R: Andrew F. Davis <afd@ti.com> | |
10388 | F: include/linux/power/bq27xxx_battery.h | |
10389 | F: drivers/power/bq27xxx_battery.c | |
10390 | F: drivers/power/bq27xxx_battery_i2c.c | |
10391 | ||
34db37c6 | 10392 | TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER |
50363737 | 10393 | M: John Stultz <john.stultz@linaro.org> |
88606e80 | 10394 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 10395 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 10396 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
10397 | S: Supported |
10398 | F: include/linux/clocksource.h | |
10399 | F: include/linux/time.h | |
10400 | F: include/linux/timex.h | |
c117ab84 CEB |
10401 | F: include/uapi/linux/time.h |
10402 | F: include/uapi/linux/timex.h | |
88606e80 TG |
10403 | F: kernel/time/clocksource.c |
10404 | F: kernel/time/time*.c | |
34db37c6 | 10405 | F: kernel/time/alarmtimer.c |
88606e80 | 10406 | F: kernel/time/ntp.c |
7fe5f1c1 | 10407 | F: tools/testing/selftests/timers/ |
88606e80 | 10408 | |
1da177e4 | 10409 | SC1200 WDT DRIVER |
b300645a | 10410 | M: Zwane Mwaikambo <zwanem@gmail.com> |
1da177e4 | 10411 | S: Maintained |
679655da | 10412 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
10413 | |
10414 | SCHEDULER | |
dd9b238c | 10415 | M: Ingo Molnar <mingo@redhat.com> |
8b58be88 | 10416 | M: Peter Zijlstra <peterz@infradead.org> |
981c3a4f | 10417 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 10418 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 10419 | S: Maintained |
95c0d71d | 10420 | F: kernel/sched/ |
679655da | 10421 | F: include/linux/sched.h |
c117ab84 | 10422 | F: include/uapi/linux/sched.h |
c2eb505b | 10423 | F: include/linux/wait.h |
1da177e4 | 10424 | |
6bcf6737 | 10425 | SCORE ARCHITECTURE |
ed38665e | 10426 | M: Chen Liqin <liqin.linux@gmail.com> |
a2681a75 | 10427 | M: Lennox Wu <lennox.wu@gmail.com> |
ed38665e | 10428 | W: http://www.sunplus.com |
6bcf6737 | 10429 | S: Supported |
a2681a75 | 10430 | F: arch/score/ |
6bcf6737 | 10431 | |
80f390ea SH |
10432 | SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers |
10433 | M: Sudeep Holla <sudeep.holla@arm.com> | |
10434 | L: linux-arm-kernel@lists.infradead.org | |
10435 | S: Maintained | |
10436 | F: Documentation/devicetree/bindings/arm/arm,scpi.txt | |
cd52c2a4 | 10437 | F: drivers/clk/clk-scpi.c |
8def3103 | 10438 | F: drivers/cpufreq/scpi-cpufreq.c |
8cb7cf56 SH |
10439 | F: drivers/firmware/arm_scpi.c |
10440 | F: include/linux/scpi_protocol.h | |
80f390ea | 10441 | |
1da177e4 | 10442 | SCSI CDROM DRIVER |
8b58be88 | 10443 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
10444 | L: linux-scsi@vger.kernel.org |
10445 | W: http://www.kernel.dk | |
10446 | S: Maintained | |
679655da | 10447 | F: drivers/scsi/sr* |
1da177e4 | 10448 | |
fb50a83d | 10449 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
3453bddb | 10450 | M: Bart Van Assche <bart.vanassche@sandisk.com> |
fb50a83d RD |
10451 | L: linux-rdma@vger.kernel.org |
10452 | S: Supported | |
10453 | W: http://www.openfabrics.org | |
10454 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
10455 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
10456 | F: drivers/infiniband/ulp/srp/ | |
10457 | F: include/scsi/srp.h | |
10458 | ||
1da177e4 | 10459 | SCSI SG DRIVER |
8b58be88 | 10460 | M: Doug Gilbert <dgilbert@interlog.com> |
1da177e4 | 10461 | L: linux-scsi@vger.kernel.org |
59ab3c93 | 10462 | W: http://sg.danny.cz/sg |
1da177e4 | 10463 | S: Maintained |
59ab3c93 | 10464 | F: Documentation/scsi/scsi-generic.txt |
679655da JP |
10465 | F: drivers/scsi/sg.c |
10466 | F: include/scsi/sg.h | |
1da177e4 LT |
10467 | |
10468 | SCSI SUBSYSTEM | |
7ee7895c | 10469 | M: "James E.J. Bottomley" <jejb@linux.vnet.ibm.com> |
0351b8f8 | 10470 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git |
f4ab421b MP |
10471 | M: "Martin K. Petersen" <martin.petersen@oracle.com> |
10472 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git | |
10473 | L: linux-scsi@vger.kernel.org | |
1da177e4 | 10474 | S: Maintained |
2c99a314 | 10475 | F: Documentation/devicetree/bindings/scsi/ |
679655da JP |
10476 | F: drivers/scsi/ |
10477 | F: include/scsi/ | |
1da177e4 LT |
10478 | |
10479 | SCSI TAPE DRIVER | |
8b58be88 | 10480 | M: Kai Mäkisara <Kai.Makisara@kolumbus.fi> |
1da177e4 LT |
10481 | L: linux-scsi@vger.kernel.org |
10482 | S: Maintained | |
679655da | 10483 | F: Documentation/scsi/st.txt |
f7269cfc JD |
10484 | F: drivers/scsi/st.* |
10485 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
10486 | |
10487 | SCTP PROTOCOL | |
8b6efb75 | 10488 | M: Vlad Yasevich <vyasevich@gmail.com> |
02c38d0a | 10489 | M: Neil Horman <nhorman@tuxdriver.com> |
1a418796 | 10490 | L: linux-sctp@vger.kernel.org |
5f85813c | 10491 | W: http://lksctp.sourceforge.net |
8b6efb75 | 10492 | S: Maintained |
679655da JP |
10493 | F: Documentation/networking/sctp.txt |
10494 | F: include/linux/sctp.h | |
4d58c025 | 10495 | F: include/uapi/linux/sctp.h |
679655da JP |
10496 | F: include/net/sctp/ |
10497 | F: net/sctp/ | |
1da177e4 LT |
10498 | |
10499 | SCx200 CPU SUPPORT | |
8b58be88 | 10500 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 10501 | S: Odd Fixes |
679655da | 10502 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 10503 | F: arch/x86/platform/scx200/ |
679655da JP |
10504 | F: drivers/watchdog/scx200_wdt.c |
10505 | F: drivers/i2c/busses/scx200* | |
10506 | F: drivers/mtd/maps/scx200_docflash.c | |
10507 | F: include/linux/scx200.h | |
1662d32c JC |
10508 | |
10509 | SCx200 GPIO DRIVER | |
8b58be88 | 10510 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 10511 | S: Maintained |
679655da JP |
10512 | F: drivers/char/scx200_gpio.c |
10513 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
10514 | |
10515 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 10516 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 10517 | S: Maintained |
679655da | 10518 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 10519 | |
6a36913a | 10520 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 10521 | M: Sascha Sommer <saschasommer@freenet.de> |
6a36913a SS |
10522 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
10523 | S: Maintained | |
679655da | 10524 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 10525 | |
e7839f25 | 10526 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
ddfe954d | 10527 | M: Adrian Hunter <adrian.hunter@intel.com> |
7a241d6e | 10528 | L: linux-mmc@vger.kernel.org |
ddfe954d UH |
10529 | T: git git://git.infradead.org/users/ahunter/linux-sdhci.git |
10530 | S: Maintained | |
10531 | F: drivers/mmc/host/sdhci* | |
10532 | F: include/linux/mmc/sdhci* | |
e2d1d6c0 | 10533 | |
c04f9d61 KC |
10534 | SECURE COMPUTING |
10535 | M: Kees Cook <keescook@chromium.org> | |
a0cfd75f KC |
10536 | R: Andy Lutomirski <luto@amacapital.net> |
10537 | R: Will Drewry <wad@chromium.org> | |
c04f9d61 KC |
10538 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp |
10539 | S: Supported | |
10540 | F: kernel/seccomp.c | |
10541 | F: include/uapi/linux/seccomp.h | |
10542 | F: include/linux/seccomp.h | |
c99ee51a | 10543 | F: tools/testing/selftests/seccomp/* |
c04f9d61 KC |
10544 | K: \bsecure_computing |
10545 | K: \bTIF_SECCOMP\b | |
10546 | ||
476bf3d6 AC |
10547 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER |
10548 | M: Al Cooper <alcooperx@gmail.com> | |
10549 | L: linux-mmc@vger.kernel.org | |
10550 | L: bcm-kernel-feedback-list@broadcom.com | |
10551 | S: Maintained | |
10552 | F: drivers/mmc/host/sdhci-brcmstb* | |
10553 | ||
0d1bb41a | 10554 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 10555 | M: Ben Dooks <ben-linux@fluff.org> |
dc524882 | 10556 | M: Jaehoon Chung <jh80.chung@samsung.com> |
7a241d6e | 10557 | L: linux-mmc@vger.kernel.org |
0d1bb41a | 10558 | S: Maintained |
dc524882 | 10559 | F: drivers/mmc/host/sdhci-s3c* |
0d1bb41a | 10560 | |
c63b3cba | 10561 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
da89947b | 10562 | M: Viresh Kumar <vireshk@kernel.org> |
c63b3cba VK |
10563 | L: linux-mmc@vger.kernel.org |
10564 | S: Maintained | |
10565 | F: drivers/mmc/host/sdhci-spear.c | |
10566 | ||
8711cca2 | 10567 | SECURITY SUBSYSTEM |
9b45c0d2 | 10568 | M: James Morris <james.l.morris@oracle.com> |
9c3646d1 | 10569 | M: "Serge E. Hallyn" <serge@hallyn.com> |
8711cca2 | 10570 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
89879a7e | 10571 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 10572 | W: http://kernsec.org/ |
8711cca2 | 10573 | S: Supported |
7d2c86b5 | 10574 | F: security/ |
8711cca2 | 10575 | |
1da177e4 | 10576 | SECURITY CONTACT |
8b58be88 | 10577 | M: Security Officers <security@kernel.org> |
1da177e4 LT |
10578 | S: Supported |
10579 | ||
10580 | SELINUX SECURITY MODULE | |
e0238b4c | 10581 | M: Paul Moore <paul@paul-moore.com> |
8b58be88 | 10582 | M: Stephen Smalley <sds@tycho.nsa.gov> |
8b58be88 | 10583 | M: Eric Paris <eparis@parisplace.org> |
e0238b4c | 10584 | L: selinux@tycho.nsa.gov (moderated for non-subscribers) |
f058925b | 10585 | W: http://selinuxproject.org |
5a5f2acf | 10586 | T: git git://git.infradead.org/users/pcmoore/selinux |
1da177e4 | 10587 | S: Supported |
679655da JP |
10588 | F: include/linux/selinux* |
10589 | F: security/selinux/ | |
6bde95ce | 10590 | F: scripts/selinux/ |
1da177e4 | 10591 | |
c1c124e9 JJ |
10592 | APPARMOR SECURITY MODULE |
10593 | M: John Johansen <john.johansen@canonical.com> | |
10594 | L: apparmor@lists.ubuntu.com (subscribers-only, general discussion) | |
10595 | W: apparmor.wiki.kernel.org | |
10596 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
10597 | S: Supported | |
10598 | F: security/apparmor/ | |
10599 | ||
9b091556 KC |
10600 | LOADPIN SECURITY MODULE |
10601 | M: Kees Cook <keescook@chromium.org> | |
10602 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin | |
10603 | S: Supported | |
10604 | F: security/loadpin/ | |
10605 | ||
730daa16 KC |
10606 | YAMA SECURITY MODULE |
10607 | M: Kees Cook <keescook@chromium.org> | |
10608 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip | |
10609 | S: Supported | |
10610 | F: security/yama/ | |
10611 | ||
cef2cf07 | 10612 | SENSABLE PHANTOM |
8b58be88 | 10613 | M: Jiri Slaby <jirislaby@gmail.com> |
cef2cf07 | 10614 | S: Maintained |
679655da | 10615 | F: drivers/misc/phantom.c |
c117ab84 | 10616 | F: include/uapi/linux/phantom.h |
cef2cf07 | 10617 | |
6733b39a | 10618 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
4627de93 | 10619 | M: Jayamohan Kallickal <jayamohan.kallickal@avagotech.com> |
9d27e216 KM |
10620 | M: Ketan Mukadam <ketan.mukadam@avagotech.com> |
10621 | M: John Soni Jose <sony.john@avagotech.com> | |
3387f656 | 10622 | L: linux-scsi@vger.kernel.org |
4627de93 | 10623 | W: http://www.avagotech.com |
3387f656 JP |
10624 | S: Supported |
10625 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 10626 | |
d2ee76fa | 10627 | Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net) |
aa7b4537 SP |
10628 | M: Sathya Perla <sathya.perla@broadcom.com> |
10629 | M: Ajit Khaparde <ajit.khaparde@broadcom.com> | |
aa7b4537 SP |
10630 | M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com> |
10631 | M: Somnath Kotur <somnath.kotur@broadcom.com> | |
7d2c86b5 | 10632 | L: netdev@vger.kernel.org |
fea3af67 | 10633 | W: http://www.emulex.com |
7d2c86b5 | 10634 | S: Supported |
9aebddd1 | 10635 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 10636 | |
d2928a8c | 10637 | EMULEX ONECONNECT ROCE DRIVER |
2b8e7333 LN |
10638 | M: Selvin Xavier <selvin.xavier@avagotech.com> |
10639 | M: Devesh Sharma <devesh.sharma@avagotech.com> | |
10640 | M: Mitesh Ahuja <mitesh.ahuja@avagotech.com> | |
d2928a8c SX |
10641 | L: linux-rdma@vger.kernel.org |
10642 | W: http://www.emulex.com | |
10643 | S: Supported | |
10644 | F: drivers/infiniband/hw/ocrdma/ | |
10645 | ||
8ceee660 | 10646 | SFC NETWORK DRIVER |
c06f51ea | 10647 | M: Solarflare linux maintainers <linux-net-drivers@solarflare.com> |
e00f8017 BK |
10648 | M: Edward Cree <ecree@solarflare.com> |
10649 | M: Bert Kenward <bkenward@solarflare.com> | |
c06f51ea | 10650 | L: netdev@vger.kernel.org |
8ceee660 | 10651 | S: Supported |
874aeea5 | 10652 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 10653 | |
e2d1d6c0 | 10654 | SGI GRU DRIVER |
cc883afc | 10655 | M: Dimitri Sivanich <sivanich@sgi.com> |
e2d1d6c0 | 10656 | S: Maintained |
679655da | 10657 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
10658 | |
10659 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 10660 | M: Pat Gefre <pfg@sgi.com> |
e2d1d6c0 RD |
10661 | L: linux-ia64@vger.kernel.org |
10662 | S: Supported | |
679655da | 10663 | F: Documentation/ia64/serial.txt |
df621252 | 10664 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 10665 | F: include/linux/ioc?.h |
e2d1d6c0 | 10666 | |
75312619 | 10667 | SGI XP/XPC/XPNET DRIVER |
e180383f RH |
10668 | M: Cliff Whickman <cpw@sgi.com> |
10669 | M: Robin Holt <robinmholt@gmail.com> | |
75312619 | 10670 | S: Maintained |
679655da | 10671 | F: drivers/misc/sgi-xp/ |
75312619 | 10672 | |
46eacf3b AP |
10673 | SI2157 MEDIA DRIVER |
10674 | M: Antti Palosaari <crope@iki.fi> | |
10675 | L: linux-media@vger.kernel.org | |
a825eaec | 10676 | W: https://linuxtv.org |
46eacf3b AP |
10677 | W: http://palosaari.fi/linux/ |
10678 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10679 | T: git git://linuxtv.org/anttip/media_tree.git | |
10680 | S: Maintained | |
10681 | F: drivers/media/tuners/si2157* | |
10682 | ||
75e2d5ba AP |
10683 | SI2168 MEDIA DRIVER |
10684 | M: Antti Palosaari <crope@iki.fi> | |
10685 | L: linux-media@vger.kernel.org | |
a825eaec | 10686 | W: https://linuxtv.org |
75e2d5ba AP |
10687 | W: http://palosaari.fi/linux/ |
10688 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10689 | T: git git://linuxtv.org/anttip/media_tree.git | |
10690 | S: Maintained | |
10691 | F: drivers/media/dvb-frontends/si2168* | |
10692 | ||
49cc629d HV |
10693 | SI470X FM RADIO RECEIVER I2C DRIVER |
10694 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10695 | L: linux-media@vger.kernel.org | |
10696 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10697 | W: https://linuxtv.org |
49cc629d HV |
10698 | S: Odd Fixes |
10699 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
10700 | ||
10701 | SI470X FM RADIO RECEIVER USB DRIVER | |
10702 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10703 | L: linux-media@vger.kernel.org | |
10704 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10705 | W: https://linuxtv.org |
49cc629d HV |
10706 | S: Maintained |
10707 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
10708 | F: drivers/media/radio/si470x/radio-si470x.h | |
10709 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
10710 | ||
c937ca03 EV |
10711 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
10712 | M: Eduardo Valentin <edubezval@gmail.com> | |
10713 | L: linux-media@vger.kernel.org | |
10714 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10715 | W: https://linuxtv.org |
c937ca03 | 10716 | S: Odd Fixes |
99995ded | 10717 | F: drivers/media/radio/si4713/si4713.? |
c937ca03 EV |
10718 | |
10719 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
10720 | M: Eduardo Valentin <edubezval@gmail.com> | |
10721 | L: linux-media@vger.kernel.org | |
10722 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10723 | W: https://linuxtv.org |
c937ca03 | 10724 | S: Odd Fixes |
99995ded DR |
10725 | F: drivers/media/radio/si4713/radio-platform-si4713.c |
10726 | ||
10727 | SI4713 FM RADIO TRANSMITTER USB DRIVER | |
10728 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10729 | L: linux-media@vger.kernel.org | |
10730 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10731 | W: https://linuxtv.org |
99995ded DR |
10732 | S: Maintained |
10733 | F: drivers/media/radio/si4713/radio-usb-si4713.c | |
c937ca03 | 10734 | |
beb91d46 | 10735 | SIANO DVB DRIVER |
5dc8a864 MCC |
10736 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
10737 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
beb91d46 | 10738 | L: linux-media@vger.kernel.org |
a825eaec | 10739 | W: https://linuxtv.org |
beb91d46 MCC |
10740 | T: git git://linuxtv.org/media_tree.git |
10741 | S: Odd fixes | |
10742 | F: drivers/media/common/siano/ | |
beb91d46 | 10743 | F: drivers/media/usb/siano/ |
beb91d46 | 10744 | F: drivers/media/usb/siano/ |
14430813 | 10745 | F: drivers/media/mmc/siano/ |
beb91d46 | 10746 | |
6f15b602 HG |
10747 | SIMPLEFB FB DRIVER |
10748 | M: Hans de Goede <hdegoede@redhat.com> | |
10749 | L: linux-fbdev@vger.kernel.org | |
10750 | S: Maintained | |
2d799dde | 10751 | F: Documentation/devicetree/bindings/display/simple-framebuffer.txt |
6f15b602 HG |
10752 | F: drivers/video/fbdev/simplefb.c |
10753 | F: include/linux/platform_data/simplefb.h | |
10754 | ||
b618b69c | 10755 | SH_VEU V4L2 MEM2MEM DRIVER |
b618b69c | 10756 | L: linux-media@vger.kernel.org |
bb60fcb2 | 10757 | S: Orphan |
b618b69c | 10758 | F: drivers/media/platform/sh_veu.c |
b618b69c GL |
10759 | |
10760 | SH_VOU V4L2 OUTPUT DRIVER | |
b618b69c | 10761 | L: linux-media@vger.kernel.org |
bb60fcb2 | 10762 | S: Orphan |
b618b69c | 10763 | F: drivers/media/platform/sh_vou.c |
d647f0b7 | 10764 | F: include/media/drv-intf/sh_vou.h |
b618b69c | 10765 | |
6349d997 | 10766 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 10767 | M: Len Brown <lenb@kernel.org> |
6349d997 LB |
10768 | L: sfi-devel@simplefirmware.org |
10769 | W: http://simplefirmware.org/ | |
10770 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 10771 | S: Supported |
943fc810 | 10772 | F: arch/x86/platform/sfi/ |
6349d997 LB |
10773 | F: drivers/sfi/ |
10774 | F: include/linux/sfi*.h | |
e2d1d6c0 | 10775 | |
1da177e4 LT |
10776 | SIMTEC EB110ATX (Chalice CATS) |
10777 | P: Ben Dooks | |
b16957c6 BD |
10778 | P: Vincent Sanders <vince@simtec.co.uk> |
10779 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
10780 | W: http://www.simtec.co.uk/products/EB110ATX/ |
10781 | S: Supported | |
10782 | ||
10783 | SIMTEC EB2410ITX (BAST) | |
10784 | P: Ben Dooks | |
b16957c6 BD |
10785 | P: Vincent Sanders <vince@simtec.co.uk> |
10786 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
10787 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
10788 | S: Supported | |
15dba387 JP |
10789 | F: arch/arm/mach-s3c24xx/mach-bast.c |
10790 | F: arch/arm/mach-s3c24xx/bast-ide.c | |
10791 | F: arch/arm/mach-s3c24xx/bast-irq.c | |
1da177e4 | 10792 | |
4c5adde7 | 10793 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 | 10794 | M: Sekhar Nori <nsekhar@ti.com> |
3cf2efd5 | 10795 | M: Kevin Hilman <khilman@kernel.org> |
42c031df SN |
10796 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
10797 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git | |
4c5adde7 | 10798 | S: Supported |
14430813 | 10799 | F: arch/arm/mach-davinci/ |
046d0a37 | 10800 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 10801 | |
8d4b3f08 | 10802 | TI DAVINCI SERIES MEDIA DRIVER |
e43cdb56 | 10803 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
8d4b3f08 | 10804 | L: linux-media@vger.kernel.org |
a825eaec | 10805 | W: https://linuxtv.org |
8d4b3f08 LP |
10806 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
10807 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9ce5eca7 | 10808 | S: Maintained |
8d4b3f08 LP |
10809 | F: drivers/media/platform/davinci/ |
10810 | F: include/media/davinci/ | |
10811 | ||
417d2e50 | 10812 | TI AM437X VPFE DRIVER |
e43cdb56 | 10813 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
417d2e50 | 10814 | L: linux-media@vger.kernel.org |
a825eaec | 10815 | W: https://linuxtv.org |
417d2e50 BP |
10816 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
10817 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
10818 | S: Maintained | |
10819 | F: drivers/media/platform/am437x/ | |
10820 | ||
c4c0283a | 10821 | OV2659 OMNIVISION SENSOR DRIVER |
e43cdb56 | 10822 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
c4c0283a | 10823 | L: linux-media@vger.kernel.org |
a825eaec | 10824 | W: https://linuxtv.org |
c4c0283a BP |
10825 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
10826 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
10827 | S: Maintained | |
10828 | F: drivers/media/i2c/ov2659.c | |
b5dcee22 | 10829 | F: include/media/i2c/ov2659.h |
c4c0283a | 10830 | |
3a6779f5 SM |
10831 | SILICON MOTION SM712 FRAME BUFFER DRIVER |
10832 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
10833 | M: Teddy Wang <teddy.wang@siliconmotion.com> | |
10834 | M: Sudip Mukherjee <sudip@vectorindia.org> | |
10835 | L: linux-fbdev@vger.kernel.org | |
10836 | S: Maintained | |
10837 | F: drivers/video/fbdev/sm712* | |
10838 | F: Documentation/fb/sm712fb.txt | |
10839 | ||
92aab3c0 | 10840 | SIS 190 ETHERNET DRIVER |
8b58be88 | 10841 | M: Francois Romieu <romieu@fr.zoreil.com> |
92aab3c0 FR |
10842 | L: netdev@vger.kernel.org |
10843 | S: Maintained | |
8c7de408 | 10844 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 10845 | |
1da177e4 | 10846 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 10847 | M: Daniele Venzano <venza@brownhat.org> |
1da177e4 | 10848 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 10849 | L: netdev@vger.kernel.org |
1da177e4 | 10850 | S: Maintained |
8c7de408 | 10851 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
10852 | |
10853 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 10854 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 | 10855 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 10856 | S: Maintained |
679655da | 10857 | F: Documentation/fb/sisfb.txt |
8a61f013 | 10858 | F: drivers/video/fbdev/sis/ |
679655da | 10859 | F: include/video/sisfb.h |
1da177e4 LT |
10860 | |
10861 | SIS USB2VGA DRIVER | |
8b58be88 | 10862 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 LT |
10863 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
10864 | S: Maintained | |
679655da | 10865 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 10866 | |
415ad26d | 10867 | SLAB ALLOCATOR |
16e943bf | 10868 | M: Christoph Lameter <cl@linux.com> |
2ed1c525 | 10869 | M: Pekka Enberg <penberg@kernel.org> |
16e943bf CL |
10870 | M: David Rientjes <rientjes@google.com> |
10871 | M: Joonsoo Kim <iamjoonsoo.kim@lge.com> | |
10872 | M: Andrew Morton <akpm@linux-foundation.org> | |
415ad26d CL |
10873 | L: linux-mm@kvack.org |
10874 | S: Maintained | |
679655da | 10875 | F: include/linux/sl?b*.h |
16e943bf | 10876 | F: mm/sl?b* |
415ad26d | 10877 | |
9fab9787 | 10878 | SLEEPABLE READ-COPY UPDATE (SRCU) |
96a39bc4 | 10879 | M: Lai Jiangshan <jiangshanlai@gmail.com> |
9fab9787 | 10880 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
ab0afd6c | 10881 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
10882 | R: Steven Rostedt <rostedt@goodmis.org> |
10883 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
981c3a4f | 10884 | L: linux-kernel@vger.kernel.org |
9fab9787 PM |
10885 | W: http://www.rdrop.com/users/paulmck/RCU/ |
10886 | S: Supported | |
10887 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
4102adab PM |
10888 | F: include/linux/srcu.h |
10889 | F: kernel/rcu/srcu.c | |
9fab9787 | 10890 | |
66372841 CS |
10891 | SMACK SECURITY MODULE |
10892 | M: Casey Schaufler <casey@schaufler-ca.com> | |
10893 | L: linux-security-module@vger.kernel.org | |
10894 | W: http://schaufler-ca.com | |
ece38248 | 10895 | T: git git://github.com/cschaufler/smack-next |
66372841 CS |
10896 | S: Maintained |
10897 | F: Documentation/security/Smack.txt | |
10898 | F: security/smack/ | |
10899 | ||
20651e0b | 10900 | DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
68ace3e1 KH |
10901 | M: Kevin Hilman <khilman@kernel.org> |
10902 | M: Nishanth Menon <nm@ti.com> | |
10903 | S: Maintained | |
20651e0b | 10904 | F: drivers/power/avs/ |
68ace3e1 KH |
10905 | F: include/linux/power/smartreflex.h |
10906 | L: linux-pm@vger.kernel.org | |
10907 | ||
1da177e4 | 10908 | SMC91x ETHERNET DRIVER |
2f82af08 | 10909 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 10910 | S: Odd Fixes |
ae150435 | 10911 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 10912 | |
e8e31622 SA |
10913 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
10914 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
10915 | L: linux-media@vger.kernel.org | |
10916 | S: Maintained | |
14430813 | 10917 | F: drivers/media/i2c/smiapp/ |
b5dcee22 | 10918 | F: include/media/i2c/smiapp.h |
e8e31622 SA |
10919 | F: drivers/media/i2c/smiapp-pll.c |
10920 | F: drivers/media/i2c/smiapp-pll.h | |
fd2bfdc8 | 10921 | F: include/uapi/linux/smiapp.h |
a2cec3c0 | 10922 | F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt |
e8e31622 | 10923 | |
920fa1ff GR |
10924 | SMM665 HARDWARE MONITOR DRIVER |
10925 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 10926 | L: linux-hwmon@vger.kernel.org |
920fa1ff GR |
10927 | S: Maintained |
10928 | F: Documentation/hwmon/smm665 | |
10929 | F: drivers/hwmon/smm665.c | |
10930 | ||
9df7305b | 10931 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 10932 | M: Steve Glendinning <steve.glendinning@shawell.net> |
968ce1b1 | 10933 | L: linux-hwmon@vger.kernel.org |
90b24cfb | 10934 | S: Maintained |
9df7305b SG |
10935 | F: Documentation/hwmon/emc2103 |
10936 | F: drivers/hwmon/emc2103.c | |
10937 | ||
a98d506c HG |
10938 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
10939 | M: Hans de Goede <hdegoede@redhat.com> | |
968ce1b1 | 10940 | L: linux-hwmon@vger.kernel.org |
a98d506c HG |
10941 | S: Supported |
10942 | F: Documentation/hwmon/sch5627 | |
10943 | F: drivers/hwmon/sch5627.c | |
10944 | ||
6ea884db | 10945 | SMSC47B397 HARDWARE MONITOR DRIVER |
d8130624 | 10946 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 10947 | L: linux-hwmon@vger.kernel.org |
6ea884db | 10948 | S: Maintained |
679655da JP |
10949 | F: Documentation/hwmon/smsc47b397 |
10950 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 10951 | |
fd9abb3d | 10952 | SMSC911x ETHERNET DRIVER |
90b24cfb | 10953 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2cb37728 | 10954 | L: netdev@vger.kernel.org |
90b24cfb | 10955 | S: Maintained |
679655da | 10956 | F: include/linux/smsc911x.h |
ae150435 | 10957 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
10958 | |
10959 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 10960 | M: Steve Glendinning <steve.glendinning@shawell.net> |
fd9abb3d | 10961 | L: netdev@vger.kernel.org |
90b24cfb | 10962 | S: Maintained |
ae150435 | 10963 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 10964 | |
3c8a63e2 | 10965 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 10966 | M: Steve Glendinning <steve.glendinning@shawell.net> |
3c8a63e2 | 10967 | L: linux-fbdev@vger.kernel.org |
90b24cfb | 10968 | S: Maintained |
8a61f013 | 10969 | F: drivers/video/fbdev/smscufx.c |
3c8a63e2 | 10970 | |
668acf32 | 10971 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 10972 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
661263b5 | 10973 | L: linux-media@vger.kernel.org |
275ffde4 | 10974 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 10975 | S: Maintained |
90d72ac6 MCC |
10976 | F: include/media/soc* |
10977 | F: drivers/media/i2c/soc_camera/ | |
10978 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 10979 | |
e2d1d6c0 | 10980 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 10981 | M: Chris Boot <bootc@bootc.net> |
e2d1d6c0 | 10982 | S: Maintained |
679655da | 10983 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 10984 | |
e3994db1 | 10985 | SOFTLOGIC 6x10 MPEG CODEC |
9661975d AU |
10986 | M: Bluecherry Maintainers <maintainers@bluecherrydvr.com> |
10987 | M: Andrey Utkin <andrey.utkin@corp.bluecherry.net> | |
10988 | M: Andrey Utkin <andrey.krieger.utkin@gmail.com> | |
1f141f6b | 10989 | M: Ismael Luceno <ismael@iodev.co.uk> |
e3994db1 JP |
10990 | L: linux-media@vger.kernel.org |
10991 | S: Supported | |
10992 | F: drivers/media/pci/solo6x10/ | |
10993 | ||
1da177e4 | 10994 | SOFTWARE RAID (Multiple Disks) SUPPORT |
c2f662eb | 10995 | M: Shaohua Li <shli@kernel.org> |
1da177e4 | 10996 | L: linux-raid@vger.kernel.org |
0f9ce866 | 10997 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git |
524418bb | 10998 | S: Supported |
679655da JP |
10999 | F: drivers/md/ |
11000 | F: include/linux/raid/ | |
c117ab84 | 11001 | F: include/uapi/linux/raid/ |
1da177e4 | 11002 | |
1da177e4 | 11003 | SONIC NETWORK DRIVER |
8b58be88 | 11004 | M: Thomas Bogendoerfer <tsbogend@alpha.franken.de> |
979b6c13 | 11005 | L: netdev@vger.kernel.org |
1da177e4 | 11006 | S: Maintained |
d9fb9f38 | 11007 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 11008 | |
61e115a5 | 11009 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 11010 | M: Michael Buesch <m@bues.ch> |
e7828b28 | 11011 | L: linux-wireless@vger.kernel.org |
61e115a5 | 11012 | S: Maintained |
679655da JP |
11013 | F: drivers/ssb/ |
11014 | F: include/linux/ssb/ | |
61e115a5 | 11015 | |
1da177e4 | 11016 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 11017 | M: Mattia Dongili <malattia@linux.it> |
d0944853 | 11018 | L: platform-driver-x86@vger.kernel.org |
5b18167d | 11019 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 11020 | S: Maintained |
679655da JP |
11021 | F: Documentation/laptops/sony-laptop.txt |
11022 | F: drivers/char/sonypi.c | |
11023 | F: drivers/platform/x86/sony-laptop.c | |
11024 | F: include/linux/sony-laptop.h | |
1da177e4 | 11025 | |
baf8532a | 11026 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 11027 | M: Alex Dubov <oakad@yahoo.com> |
baf8532a AD |
11028 | W: http://tifmxx.berlios.de/ |
11029 | S: Maintained | |
679655da | 11030 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 11031 | |
0ab30494 ML |
11032 | SONY MEMORYSTICK STANDARD SUPPORT |
11033 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
11034 | S: Maintained | |
11035 | F: drivers/memstick/core/ms_block.* | |
11036 | ||
1da177e4 | 11037 | SOUND |
8b58be88 | 11038 | M: Jaroslav Kysela <perex@perex.cz> |
d8130624 | 11039 | M: Takashi Iwai <tiwai@suse.com> |
93711660 | 11040 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
3126a179 | 11041 | W: http://www.alsa-project.org/ |
dde7ad8d | 11042 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 11043 | T: git git://git.alsa-project.org/alsa-kernel.git |
ff4a8f32 | 11044 | Q: http://patchwork.kernel.org/project/alsa-devel/list/ |
1da177e4 | 11045 | S: Maintained |
3126a179 JP |
11046 | F: Documentation/sound/ |
11047 | F: include/sound/ | |
c117ab84 | 11048 | F: include/uapi/sound/ |
679655da | 11049 | F: sound/ |
1da177e4 | 11050 | |
33bbe149 MB |
11051 | SOUND - COMPRESSED AUDIO |
11052 | M: Vinod Koul <vinod.koul@intel.com> | |
11053 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
11054 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git | |
11055 | S: Supported | |
f672f31a | 11056 | F: Documentation/sound/alsa/compress_offload.txt |
33bbe149 | 11057 | F: include/sound/compress_driver.h |
f672f31a | 11058 | F: include/uapi/sound/compress_* |
33bbe149 MB |
11059 | F: sound/core/compress_offload.c |
11060 | F: sound/soc/soc-compress.c | |
11061 | ||
bd903bde | 11062 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 11063 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 11064 | M: Mark Brown <broonie@kernel.org> |
86f14df8 | 11065 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 11066 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
b0b8daf7 | 11067 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 11068 | S: Supported |
181ad2a5 | 11069 | F: Documentation/devicetree/bindings/sound/ |
2820f615 | 11070 | F: Documentation/sound/alsa/soc/ |
679655da | 11071 | F: sound/soc/ |
e6e55122 | 11072 | F: include/sound/soc* |
eb1a6af3 | 11073 | |
d7f8761b MB |
11074 | SOUND - DMAENGINE HELPERS |
11075 | M: Lars-Peter Clausen <lars@metafoo.de> | |
11076 | S: Supported | |
11077 | F: include/sound/dmaengine_pcm.h | |
11078 | F: sound/core/pcm_dmaengine.c | |
11079 | F: sound/soc/soc-generic-dmaengine-pcm.c | |
11080 | ||
990a6a99 OS |
11081 | SP2 MEDIA DRIVER |
11082 | M: Olli Salonen <olli.salonen@iki.fi> | |
11083 | L: linux-media@vger.kernel.org | |
a825eaec | 11084 | W: https://linuxtv.org |
990a6a99 OS |
11085 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
11086 | S: Maintained | |
11087 | F: drivers/media/dvb-frontends/sp2* | |
11088 | ||
473321fc | 11089 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 11090 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 11091 | L: sparclinux@vger.kernel.org |
8a6e2535 | 11092 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
11093 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
11094 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 11095 | S: Maintained |
679655da | 11096 | F: arch/sparc/ |
7765b8bb | 11097 | F: drivers/sbus/ |
1da177e4 | 11098 | |
6404fcca DM |
11099 | SPARC SERIAL DRIVERS |
11100 | M: "David S. Miller" <davem@davemloft.net> | |
11101 | L: sparclinux@vger.kernel.org | |
08deed1e JP |
11102 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
11103 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 11104 | S: Maintained |
6816383a | 11105 | F: include/linux/sunserialcore.h |
df621252 | 11106 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
11107 | F: drivers/tty/serial/sunhv.c |
11108 | F: drivers/tty/serial/sunsab.c | |
11109 | F: drivers/tty/serial/sunsab.h | |
11110 | F: drivers/tty/serial/sunsu.c | |
11111 | F: drivers/tty/serial/sunzilog.c | |
11112 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 11113 | |
389325b4 CL |
11114 | SPARSE CHECKER |
11115 | M: "Christopher Li" <sparse@chrisli.org> | |
11116 | L: linux-sparse@vger.kernel.org | |
11117 | W: https://sparse.wiki.kernel.org/ | |
11118 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
11119 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
11120 | S: Maintained | |
11121 | F: include/linux/compiler.h | |
11122 | ||
fc0c195a | 11123 | SPEAR PLATFORM SUPPORT |
da89947b | 11124 | M: Viresh Kumar <vireshk@kernel.org> |
9cc23682 | 11125 | M: Shiraz Hashim <shiraz.linux.kernel@gmail.com> |
fbfa0748 | 11126 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
fc0c195a VK |
11127 | W: http://www.st.com/spear |
11128 | S: Maintained | |
e68d7c14 | 11129 | F: arch/arm/boot/dts/spear* |
281e192f | 11130 | F: arch/arm/mach-spear/ |
fc0c195a VK |
11131 | |
11132 | SPEAR CLOCK FRAMEWORK SUPPORT | |
da89947b | 11133 | M: Viresh Kumar <vireshk@kernel.org> |
fbfa0748 | 11134 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
fc0c195a VK |
11135 | W: http://www.st.com/spear |
11136 | S: Maintained | |
5df33a62 | 11137 | F: drivers/clk/spear/ |
fc0c195a | 11138 | |
e2d1d6c0 | 11139 | SPI SUBSYSTEM |
b02e48f2 | 11140 | M: Mark Brown <broonie@kernel.org> |
dfbe403c | 11141 | L: linux-spi@vger.kernel.org |
e7e4e13c | 11142 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 11143 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 11144 | S: Maintained |
87306eb7 | 11145 | F: Documentation/devicetree/bindings/spi/ |
679655da JP |
11146 | F: Documentation/spi/ |
11147 | F: drivers/spi/ | |
11148 | F: include/linux/spi/ | |
c117ab84 | 11149 | F: include/uapi/linux/spi/ |
e2d1d6c0 | 11150 | |
2752e401 | 11151 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 | 11152 | M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp> |
2752e401 JL |
11153 | L: netdev@vger.kernel.org |
11154 | S: Supported | |
679655da | 11155 | F: Documentation/networking/spider_net.txt |
8df158ac | 11156 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 11157 | |
e2d1d6c0 | 11158 | SPU FILE SYSTEM |
8b58be88 | 11159 | M: Jeremy Kerr <jk@ozlabs.org> |
a4724ed6 | 11160 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 RD |
11161 | W: http://www.ibm.com/developerworks/power/cell/ |
11162 | S: Supported | |
679655da JP |
11163 | F: Documentation/filesystems/spufs.txt |
11164 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 11165 | |
fc555841 | 11166 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 11167 | M: Phillip Lougher <phillip@squashfs.org.uk> |
fc555841 PL |
11168 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
11169 | W: http://squashfs.org.uk | |
9f273c24 | 11170 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git |
fc555841 | 11171 | S: Maintained |
679655da JP |
11172 | F: Documentation/filesystems/squashfs.txt |
11173 | F: fs/squashfs/ | |
fc555841 | 11174 | |
1da177e4 | 11175 | SRM (Alpha) environment access |
8b58be88 | 11176 | M: Jan-Benedict Glaw <jbglaw@lug-owl.de> |
1da177e4 | 11177 | S: Maintained |
679655da | 11178 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 11179 | |
26e9a397 | 11180 | STABLE BRANCH |
879a5a00 | 11181 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
bc7a2f3a | 11182 | L: stable@vger.kernel.org |
879a5a00 | 11183 | S: Supported |
7b175c46 | 11184 | F: Documentation/stable_kernel_rules.txt |
e2d1d6c0 | 11185 | |
26e9a397 | 11186 | STAGING SUBSYSTEM |
879a5a00 | 11187 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
630081fd | 11188 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 11189 | L: devel@driverdev.osuosl.org |
879a5a00 | 11190 | S: Supported |
679655da | 11191 | F: drivers/staging/ |
dbc6c2cc | 11192 | |
ebd3d010 JP |
11193 | STAGING - COMEDI |
11194 | M: Ian Abbott <abbotti@mev.co.uk> | |
81b884c9 | 11195 | M: H Hartley Sweeten <hsweeten@visionengravers.com> |
ebd3d010 JP |
11196 | S: Odd Fixes |
11197 | F: drivers/staging/comedi/ | |
11198 | ||
a0138163 JP |
11199 | STAGING - FLARION FT1000 DRIVERS |
11200 | M: Marek Belisko <marek.belisko@gmail.com> | |
11201 | S: Odd Fixes | |
11202 | F: drivers/staging/ft1000/ | |
11203 | ||
6c1bb424 | 11204 | STAGING - INDUSTRIAL IO |
030a13d7 | 11205 | M: Jonathan Cameron <jic23@kernel.org> |
a0138163 | 11206 | L: linux-iio@vger.kernel.org |
6c1bb424 | 11207 | S: Odd Fixes |
5291582d | 11208 | F: Documentation/devicetree/bindings/staging/iio/ |
6c1bb424 JP |
11209 | F: drivers/staging/iio/ |
11210 | ||
a0138163 JP |
11211 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
11212 | M: Jarod Wilson <jarod@wilsonet.com> | |
11213 | W: http://www.lirc.org/ | |
11214 | S: Odd Fixes | |
b2b0186d | 11215 | F: drivers/staging/media/lirc/ |
a0138163 | 11216 | |
f5e5de1e OD |
11217 | STAGING - LUSTRE PARALLEL FILESYSTEM |
11218 | M: Oleg Drokin <oleg.drokin@intel.com> | |
11219 | M: Andreas Dilger <andreas.dilger@intel.com> | |
d98229f0 AD |
11220 | L: lustre-devel@lists.lustre.org (moderated for non-subscribers) |
11221 | W: http://wiki.lustre.org/ | |
f5e5de1e OD |
11222 | S: Maintained |
11223 | F: drivers/staging/lustre | |
11224 | ||
7c6b6c71 MD |
11225 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
11226 | M: Marc Dietrich <marvin24@gmx.de> | |
11227 | L: ac100@lists.launchpad.net (moderated for non-subscribers) | |
5d96bf4d | 11228 | L: linux-tegra@vger.kernel.org |
7c6b6c71 MD |
11229 | S: Maintained |
11230 | F: drivers/staging/nvec/ | |
11231 | ||
53c43c5c GKH |
11232 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
11233 | M: Jens Frederich <jfrederich@gmail.com> | |
11234 | M: Daniel Drake <dsd@laptop.org> | |
11235 | M: Jon Nettleton <jon.nettleton@gmail.com> | |
11236 | W: http://wiki.laptop.org/go/DCON | |
11237 | S: Maintained | |
11238 | F: drivers/staging/olpc_dcon/ | |
11239 | ||
a0138163 JP |
11240 | STAGING - REALTEK RTL8712U DRIVERS |
11241 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
11242 | M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>. | |
11243 | S: Odd Fixes | |
11244 | F: drivers/staging/rtl8712/ | |
11245 | ||
7591ba8b JS |
11246 | STAGING - REALTEK RTL8723U WIRELESS DRIVER |
11247 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
11248 | M: Jes Sorensen <Jes.Sorensen@redhat.com> | |
11249 | L: linux-wireless@vger.kernel.org | |
11250 | S: Maintained | |
11251 | F: drivers/staging/rtl8723au/ | |
11252 | ||
980ac4d7 SM |
11253 | STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER |
11254 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
11255 | M: Teddy Wang <teddy.wang@siliconmotion.com> | |
11256 | M: Sudip Mukherjee <sudip@vectorindia.org> | |
11257 | L: linux-fbdev@vger.kernel.org | |
11258 | S: Maintained | |
11259 | F: drivers/staging/sm750fb/ | |
11260 | ||
510fa408 JP |
11261 | STAGING - SLICOSS |
11262 | M: Lior Dotan <liodot@gmail.com> | |
11263 | M: Christopher Harrer <charrer@alacritech.com> | |
11264 | S: Odd Fixes | |
11265 | F: drivers/staging/slicoss/ | |
11266 | ||
a0138163 JP |
11267 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER |
11268 | M: William Hubbs <w.d.hubbs@gmail.com> | |
11269 | M: Chris Brannon <chris@the-brannons.com> | |
d33bce31 | 11270 | M: Kirk Reiser <kirk@reisers.ca> |
a0138163 | 11271 | M: Samuel Thibault <samuel.thibault@ens-lyon.org> |
e6a152ef | 11272 | L: speakup@linux-speakup.org |
a0138163 JP |
11273 | W: http://www.linux-speakup.org/ |
11274 | S: Odd Fixes | |
11275 | F: drivers/staging/speakup/ | |
11276 | ||
b3e871ce JP |
11277 | STAGING - VIA VT665X DRIVERS |
11278 | M: Forest Bond <forest@alittletooquiet.net> | |
11279 | S: Odd Fixes | |
11280 | F: drivers/staging/vt665?/ | |
11281 | ||
a30baec1 | 11282 | STAGING - WILC1000 WIFI DRIVER |
d9a85940 AS |
11283 | M: Aditya Shankar <aditya.shankar@microchip.com> |
11284 | M: Ganesh Krishna <ganesh.krishna@microchip.com> | |
a30baec1 JK |
11285 | L: linux-wireless@vger.kernel.org |
11286 | S: Supported | |
11287 | F: drivers/staging/wilc1000/ | |
11288 | ||
709bcb07 | 11289 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 11290 | M: Arnaud Patard <arnaud.patard@rtp-net.org> |
709bcb07 JP |
11291 | S: Odd Fixes |
11292 | F: drivers/staging/xgifb/ | |
11293 | ||
1da177e4 | 11294 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 11295 | M: Ion Badulescu <ionut@badula.org> |
b4f90189 | 11296 | S: Odd Fixes |
9bba23b0 | 11297 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 11298 | |
e2d1d6c0 | 11299 | SUN3/3X |
8b58be88 | 11300 | M: Sam Creasey <sammy@sammy.net> |
e2d1d6c0 RD |
11301 | W: http://sammy.net/sun3/ |
11302 | S: Maintained | |
679655da JP |
11303 | F: arch/m68k/kernel/*sun3* |
11304 | F: arch/m68k/sun3*/ | |
11305 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 11306 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 11307 | |
af6a5af8 HG |
11308 | SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER |
11309 | M: Hans de Goede <hdegoede@redhat.com> | |
11310 | L: linux-input@vger.kernel.org | |
11311 | S: Maintained | |
11312 | F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt | |
11313 | F: drivers/input/keyboard/sun4i-lradc-keys.c | |
11314 | ||
2bc9ff01 DK |
11315 | SUNDANCE NETWORK DRIVER |
11316 | M: Denis Kirjanov <kda@linux-powerpc.org> | |
11317 | L: netdev@vger.kernel.org | |
11318 | S: Maintained | |
11319 | F: drivers/net/ethernet/dlink/sundance.c | |
11320 | ||
2cbb12a4 | 11321 | SUPERH |
114bf37e RF |
11322 | M: Yoshinori Sato <ysato@users.sourceforge.jp> |
11323 | M: Rich Felker <dalias@libc.org> | |
2cbb12a4 | 11324 | L: linux-sh@vger.kernel.org |
8a6e2535 | 11325 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
114bf37e | 11326 | S: Maintained |
066069e1 | 11327 | F: Documentation/sh/ |
679655da | 11328 | F: arch/sh/ |
066069e1 | 11329 | F: drivers/sh/ |
1da177e4 | 11330 | |
4480f15b | 11331 | SUSPEND TO RAM |
7fb06082 | 11332 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
8b58be88 JP |
11333 | M: Len Brown <len.brown@intel.com> |
11334 | M: Pavel Machek <pavel@ucw.cz> | |
bf1c138e | 11335 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 11336 | S: Supported |
679655da JP |
11337 | F: Documentation/power/ |
11338 | F: arch/x86/kernel/acpi/ | |
11339 | F: drivers/base/power/ | |
11340 | F: kernel/power/ | |
11341 | F: include/linux/suspend.h | |
11342 | F: include/linux/freezer.h | |
11343 | F: include/linux/pm.h | |
1da177e4 LT |
11344 | |
11345 | SVGA HANDLING | |
8b58be88 | 11346 | M: Martin Mares <mj@ucw.cz> |
1da177e4 LT |
11347 | L: linux-video@atrey.karlin.mff.cuni.cz |
11348 | S: Maintained | |
679655da JP |
11349 | F: Documentation/svga.txt |
11350 | F: arch/x86/boot/video* | |
1da177e4 | 11351 | |
6e28b761 KRW |
11352 | SWIOTLB SUBSYSTEM |
11353 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11354 | L: linux-kernel@vger.kernel.org | |
9f273c24 | 11355 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git |
6e28b761 KRW |
11356 | S: Supported |
11357 | F: lib/swiotlb.c | |
11358 | F: arch/*/kernel/pci-swiotlb.c | |
11359 | F: include/linux/swiotlb.h | |
11360 | ||
007f790c JP |
11361 | SWITCHDEV |
11362 | M: Jiri Pirko <jiri@resnulli.us> | |
11363 | L: netdev@vger.kernel.org | |
11364 | S: Supported | |
11365 | F: net/switchdev/ | |
11366 | F: include/net/switchdev.h | |
11367 | ||
db8e35d5 VG |
11368 | SYNOPSYS ARC ARCHITECTURE |
11369 | M: Vineet Gupta <vgupta@synopsys.com> | |
30b9dbee | 11370 | L: linux-snps-arc@lists.infradead.org |
db8e35d5 VG |
11371 | S: Supported |
11372 | F: arch/arc/ | |
9b28829d | 11373 | F: Documentation/devicetree/bindings/arc/* |
2d799dde | 11374 | F: Documentation/devicetree/bindings/interrupt-controller/snps,arc* |
c6a0fe4a | 11375 | F: drivers/tty/serial/arc_uart.c |
b7182d1a | 11376 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git |
db8e35d5 | 11377 | |
556cc1c5 AB |
11378 | SYNOPSYS ARC SDP platform support |
11379 | M: Alexey Brodkin <abrodkin@synopsys.com> | |
11380 | S: Supported | |
11381 | F: arch/arc/plat-axs10x | |
11382 | F: arch/arc/boot/dts/ax* | |
11383 | F: Documentation/devicetree/bindings/arc/axs10* | |
11384 | ||
6c284c9a LJ |
11385 | SYSTEM CONFIGURATION (SYSCON) |
11386 | M: Lee Jones <lee.jones@linaro.org> | |
11387 | M: Arnd Bergmann <arnd@arndb.de> | |
11388 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git | |
11389 | S: Supported | |
11390 | F: drivers/mfd/syscon.c | |
11391 | ||
1da177e4 | 11392 | SYSV FILESYSTEM |
8b58be88 | 11393 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 | 11394 | S: Maintained |
679655da JP |
11395 | F: Documentation/filesystems/sysv-fs.txt |
11396 | F: fs/sysv/ | |
11397 | F: include/linux/sysv_fs.h | |
1da177e4 | 11398 | |
86cfa7fc | 11399 | TARGET SUBSYSTEM |
9c3646d1 | 11400 | M: "Nicholas A. Bellinger" <nab@linux-iscsi.org> |
86cfa7fc | 11401 | L: linux-scsi@vger.kernel.org |
b9f5edc2 | 11402 | L: target-devel@vger.kernel.org |
86cfa7fc | 11403 | W: http://www.linux-iscsi.org |
cf015e9f | 11404 | W: http://groups.google.com/group/linux-iscsi-target-dev |
452cf324 | 11405 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
11406 | S: Supported |
11407 | F: drivers/target/ | |
11408 | F: include/target/ | |
11409 | F: Documentation/target/ | |
11410 | ||
4e68852d | 11411 | TASKSTATS STATISTICS INTERFACE |
185e595f | 11412 | M: Balbir Singh <bsingharora@gmail.com> |
4e68852d | 11413 | S: Maintained |
679655da JP |
11414 | F: Documentation/accounting/taskstats* |
11415 | F: include/linux/taskstats* | |
11416 | F: kernel/taskstats.c | |
4e68852d | 11417 | |
781b456a | 11418 | TC CLASSIFIER |
f935f3f8 | 11419 | M: Jamal Hadi Salim <jhs@mojatatu.com> |
781b456a SH |
11420 | L: netdev@vger.kernel.org |
11421 | S: Maintained | |
679655da | 11422 | F: include/net/pkt_cls.h |
c117ab84 | 11423 | F: include/uapi/linux/pkt_cls.h |
679655da | 11424 | F: net/sched/ |
781b456a | 11425 | |
5067f08a | 11426 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
11427 | M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com> |
11428 | M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com> | |
5067f08a WHSE |
11429 | W: http://tcp-lp-mod.sourceforge.net/ |
11430 | S: Maintained | |
679655da | 11431 | F: net/ipv4/tcp_lp.c |
5067f08a | 11432 | |
91952bc0 AP |
11433 | TDA10071 MEDIA DRIVER |
11434 | M: Antti Palosaari <crope@iki.fi> | |
11435 | L: linux-media@vger.kernel.org | |
a825eaec | 11436 | W: https://linuxtv.org |
91952bc0 AP |
11437 | W: http://palosaari.fi/linux/ |
11438 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11439 | T: git git://linuxtv.org/anttip/media_tree.git | |
11440 | S: Maintained | |
11441 | F: drivers/media/dvb-frontends/tda10071* | |
11442 | ||
11443 | TDA18212 MEDIA DRIVER | |
11444 | M: Antti Palosaari <crope@iki.fi> | |
11445 | L: linux-media@vger.kernel.org | |
a825eaec | 11446 | W: https://linuxtv.org |
91952bc0 AP |
11447 | W: http://palosaari.fi/linux/ |
11448 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11449 | T: git git://linuxtv.org/anttip/media_tree.git | |
11450 | S: Maintained | |
11451 | F: drivers/media/tuners/tda18212* | |
11452 | ||
11453 | TDA18218 MEDIA DRIVER | |
11454 | M: Antti Palosaari <crope@iki.fi> | |
11455 | L: linux-media@vger.kernel.org | |
a825eaec | 11456 | W: https://linuxtv.org |
91952bc0 AP |
11457 | W: http://palosaari.fi/linux/ |
11458 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11459 | T: git git://linuxtv.org/anttip/media_tree.git | |
11460 | S: Maintained | |
11461 | F: drivers/media/tuners/tda18218* | |
11462 | ||
3b2f6aba MK |
11463 | TDA18271 MEDIA DRIVER |
11464 | M: Michael Krufky <mkrufky@linuxtv.org> | |
11465 | L: linux-media@vger.kernel.org | |
a825eaec | 11466 | W: https://linuxtv.org |
3b2f6aba MK |
11467 | W: http://github.com/mkrufky |
11468 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11469 | T: git git://linuxtv.org/mkrufky/tuners.git | |
11470 | S: Maintained | |
11471 | F: drivers/media/tuners/tda18271* | |
11472 | ||
e48307a9 MK |
11473 | TDA827x MEDIA DRIVER |
11474 | M: Michael Krufky <mkrufky@linuxtv.org> | |
11475 | L: linux-media@vger.kernel.org | |
a825eaec | 11476 | W: https://linuxtv.org |
e48307a9 MK |
11477 | W: http://github.com/mkrufky |
11478 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11479 | T: git git://linuxtv.org/mkrufky/tuners.git | |
11480 | S: Maintained | |
11481 | F: drivers/media/tuners/tda8290.* | |
11482 | ||
66cf9212 MK |
11483 | TDA8290 MEDIA DRIVER |
11484 | M: Michael Krufky <mkrufky@linuxtv.org> | |
11485 | L: linux-media@vger.kernel.org | |
a825eaec | 11486 | W: https://linuxtv.org |
66cf9212 MK |
11487 | W: http://github.com/mkrufky |
11488 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11489 | T: git git://linuxtv.org/mkrufky/tuners.git | |
11490 | S: Maintained | |
11491 | F: drivers/media/tuners/tda8290.* | |
11492 | ||
4b9fba30 HV |
11493 | TDA9840 MEDIA DRIVER |
11494 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11495 | L: linux-media@vger.kernel.org | |
11496 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11497 | W: https://linuxtv.org |
4b9fba30 HV |
11498 | S: Maintained |
11499 | F: drivers/media/i2c/tda9840* | |
11500 | ||
2cb654fd | 11501 | TEA5761 TUNER DRIVER |
5dc8a864 MCC |
11502 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
11503 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
2cb654fd | 11504 | L: linux-media@vger.kernel.org |
a825eaec | 11505 | W: https://linuxtv.org |
2cb654fd MCC |
11506 | T: git git://linuxtv.org/media_tree.git |
11507 | S: Odd fixes | |
11508 | F: drivers/media/tuners/tea5761.* | |
11509 | ||
11510 | TEA5767 TUNER DRIVER | |
5dc8a864 MCC |
11511 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
11512 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
2cb654fd | 11513 | L: linux-media@vger.kernel.org |
a825eaec | 11514 | W: https://linuxtv.org |
2cb654fd MCC |
11515 | T: git git://linuxtv.org/media_tree.git |
11516 | S: Maintained | |
11517 | F: drivers/media/tuners/tea5767.* | |
11518 | ||
4b9fba30 HV |
11519 | TEA6415C MEDIA DRIVER |
11520 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11521 | L: linux-media@vger.kernel.org | |
11522 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11523 | W: https://linuxtv.org |
4b9fba30 HV |
11524 | S: Maintained |
11525 | F: drivers/media/i2c/tea6415c* | |
11526 | ||
11527 | TEA6420 MEDIA DRIVER | |
11528 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11529 | L: linux-media@vger.kernel.org | |
11530 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11531 | W: https://linuxtv.org |
4b9fba30 HV |
11532 | S: Maintained |
11533 | F: drivers/media/i2c/tea6420* | |
11534 | ||
3d249d4c | 11535 | TEAM DRIVER |
dca9ab92 | 11536 | M: Jiri Pirko <jiri@resnulli.us> |
3d249d4c JP |
11537 | L: netdev@vger.kernel.org |
11538 | S: Supported | |
11539 | F: drivers/net/team/ | |
11540 | F: include/linux/if_team.h | |
c117ab84 | 11541 | F: include/uapi/linux/if_team.h |
3d249d4c | 11542 | |
7d029125 | 11543 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
9c3646d1 | 11544 | M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com> |
7d029125 VD |
11545 | S: Maintained |
11546 | F: arch/x86/platform/ts5500/ | |
11547 | ||
40ad4a30 SY |
11548 | TECHNOTREND USB IR RECEIVER |
11549 | M: Sean Young <sean@mess.org> | |
11550 | L: linux-media@vger.kernel.org | |
11551 | S: Maintained | |
11552 | F: drivers/media/rc/ttusbir.c | |
11553 | ||
adabdb0c | 11554 | TEGRA ARCHITECTURE SUPPORT |
243d58ec | 11555 | M: Stephen Warren <swarren@wwwdotorg.org> |
adabdb0c | 11556 | M: Thierry Reding <thierry.reding@gmail.com> |
554077c5 | 11557 | M: Alexandre Courbot <gnurou@gmail.com> |
84b9414b | 11558 | L: linux-tegra@vger.kernel.org |
fd117cd1 | 11559 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
b779b88d | 11560 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git |
84b9414b | 11561 | S: Supported |
bbbe96ed | 11562 | N: [^a-z]tegra |
84b9414b | 11563 | |
adabdb0c SW |
11564 | TEGRA CLOCK DRIVER |
11565 | M: Peter De Schrijver <pdeschrijver@nvidia.com> | |
11566 | M: Prashant Gaikwad <pgaikwad@nvidia.com> | |
11567 | S: Supported | |
11568 | F: drivers/clk/tegra/ | |
11569 | ||
86e486a0 | 11570 | TEGRA DMA DRIVERS |
adabdb0c | 11571 | M: Laxman Dewangan <ldewangan@nvidia.com> |
86e486a0 | 11572 | M: Jon Hunter <jonathanh@nvidia.com> |
adabdb0c | 11573 | S: Supported |
86e486a0 | 11574 | F: drivers/dma/tegra* |
adabdb0c | 11575 | |
adabdb0c SW |
11576 | TEGRA I2C DRIVER |
11577 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
11578 | S: Supported | |
11579 | F: drivers/i2c/busses/i2c-tegra.c | |
11580 | ||
11581 | TEGRA IOMMU DRIVERS | |
11582 | M: Hiroshi Doyu <hdoyu@nvidia.com> | |
11583 | S: Supported | |
11584 | F: drivers/iommu/tegra* | |
11585 | ||
11586 | TEGRA KBC DRIVER | |
11587 | M: Rakesh Iyer <riyer@nvidia.com> | |
11588 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
11589 | S: Supported | |
11590 | F: drivers/input/keyboard/tegra-kbc.c | |
11591 | ||
adabdb0c SW |
11592 | TEGRA PWM DRIVER |
11593 | M: Thierry Reding <thierry.reding@gmail.com> | |
11594 | S: Supported | |
11595 | F: drivers/pwm/pwm-tegra.c | |
11596 | ||
11597 | TEGRA SERIAL DRIVER | |
11598 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
11599 | S: Supported | |
11600 | F: drivers/tty/serial/serial-tegra.c | |
11601 | ||
11602 | TEGRA SPI DRIVER | |
11603 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
11604 | S: Supported | |
11605 | F: drivers/spi/spi-tegra* | |
11606 | ||
1a348ccc | 11607 | TEHUTI ETHERNET DRIVER |
8b58be88 | 11608 | M: Andy Gospodarek <andy@greyhouse.net> |
1a348ccc AG |
11609 | L: netdev@vger.kernel.org |
11610 | S: Supported | |
ef7f5429 | 11611 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 11612 | |
4e68852d | 11613 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 11614 | M: Mark Gross <mark.gross@intel.com> |
4e68852d | 11615 | S: Supported |
679655da | 11616 | F: drivers/char/tlclk.c |
4e68852d | 11617 | |
4480f15b | 11618 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 11619 | M: Chris Zankel <chris@zankel.net> |
f959ed2f CZ |
11620 | M: Max Filippov <jcmvbkbc@gmail.com> |
11621 | L: linux-xtensa@linux-xtensa.org | |
9f273c24 | 11622 | T: git git://github.com/czankel/xtensa-linux.git |
4e68852d | 11623 | S: Maintained |
679655da | 11624 | F: arch/xtensa/ |
3dc99857 | 11625 | F: drivers/irqchip/irq-xtensa-* |
4e68852d | 11626 | |
5313ba66 HV |
11627 | THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER |
11628 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11629 | L: linux-media@vger.kernel.org | |
11630 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11631 | W: https://linuxtv.org |
5313ba66 HV |
11632 | S: Maintained |
11633 | F: drivers/media/radio/radio-raremono.c | |
11634 | ||
d3fb6955 | 11635 | THERMAL |
b75f0050 | 11636 | M: Zhang Rui <rui.zhang@intel.com> |
f14d1c24 | 11637 | M: Eduardo Valentin <edubezval@gmail.com> |
b75f0050 JP |
11638 | L: linux-pm@vger.kernel.org |
11639 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
11640 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git | |
11641 | Q: https://patchwork.kernel.org/project/linux-pm/list/ | |
11642 | S: Supported | |
11643 | F: drivers/thermal/ | |
11644 | F: include/linux/thermal.h | |
af6c9f16 | 11645 | F: include/uapi/linux/thermal.h |
b75f0050 JP |
11646 | F: include/linux/cpu_cooling.h |
11647 | F: Documentation/devicetree/bindings/thermal/ | |
d3fb6955 | 11648 | |
64e05d8b VK |
11649 | THERMAL/CPU_COOLING |
11650 | M: Amit Daniel Kachhap <amit.kachhap@gmail.com> | |
11651 | M: Viresh Kumar <viresh.kumar@linaro.org> | |
9a2172a8 | 11652 | M: Javi Merino <javi.merino@kernel.org> |
64e05d8b VK |
11653 | L: linux-pm@vger.kernel.org |
11654 | S: Supported | |
11655 | F: Documentation/thermal/cpu-cooling-api.txt | |
11656 | F: drivers/thermal/cpu_cooling.c | |
11657 | F: include/linux/cpu_cooling.h | |
11658 | ||
4e68852d | 11659 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 11660 | M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br> |
4e68852d | 11661 | L: ibm-acpi-devel@lists.sourceforge.net |
d0944853 | 11662 | L: platform-driver-x86@vger.kernel.org |
4e68852d AC |
11663 | W: http://ibm-acpi.sourceforge.net |
11664 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 11665 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 11666 | S: Maintained |
679655da | 11667 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 11668 | |
1b46f2a2 | 11669 | TI BANDGAP AND THERMAL DRIVER |
f14d1c24 | 11670 | M: Eduardo Valentin <edubezval@gmail.com> |
ef41be81 | 11671 | M: Keerthy <j-keerthy@ti.com> |
1b46f2a2 | 11672 | L: linux-pm@vger.kernel.org |
531ff13e | 11673 | L: linux-omap@vger.kernel.org |
5a723e81 | 11674 | S: Maintained |
794b2e25 | 11675 | F: drivers/thermal/ti-soc-thermal/ |
1b46f2a2 | 11676 | |
ccf963d3 BP |
11677 | TI VPE/CAL DRIVERS |
11678 | M: Benoit Parrot <bparrot@ti.com> | |
11679 | L: linux-media@vger.kernel.org | |
11680 | W: http://linuxtv.org/ | |
11681 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11682 | S: Maintained | |
11683 | F: drivers/media/platform/ti-vpe/ | |
11684 | ||
0c7665c3 MF |
11685 | TI CDCE706 CLOCK DRIVER |
11686 | M: Max Filippov <jcmvbkbc@gmail.com> | |
11687 | S: Maintained | |
11688 | F: drivers/clk/clk-cdce706.c | |
11689 | ||
49b6a5e3 TK |
11690 | TI CLOCK DRIVER |
11691 | M: Tero Kristo <t-kristo@ti.com> | |
11692 | L: linux-omap@vger.kernel.org | |
11693 | S: Maintained | |
11694 | F: drivers/clk/ti/ | |
11695 | F: include/linux/clk/ti.h | |
11696 | ||
f75cfbad GS |
11697 | TI ETHERNET SWITCH DRIVER (CPSW) |
11698 | M: Mugunthan V N <mugunthanvnm@ti.com> | |
11699 | R: Grygorii Strashko <grygorii.strashko@ti.com> | |
11700 | L: linux-omap@vger.kernel.org | |
11701 | L: netdev@vger.kernel.org | |
11702 | S: Maintained | |
11703 | F: drivers/net/ethernet/ti/cpsw* | |
11704 | F: drivers/net/ethernet/ti/davinci* | |
11705 | ||
4020f2d7 | 11706 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 11707 | M: Alex Dubov <oakad@yahoo.com> |
795fb7e7 | 11708 | S: Maintained |
679655da JP |
11709 | F: drivers/misc/tifm* |
11710 | F: drivers/mmc/host/tifm_sd.c | |
11711 | F: include/linux/tifm.h | |
4020f2d7 | 11712 | |
e0c52404 | 11713 | TI KEYSTONE MULTICORE NAVIGATOR DRIVERS |
97215800 | 11714 | M: Santosh Shilimkar <ssantosh@kernel.org> |
e0c52404 SS |
11715 | L: linux-kernel@vger.kernel.org |
11716 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
11717 | S: Maintained | |
11718 | F: drivers/soc/ti/* | |
11719 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git | |
11720 | ||
11721 | ||
152ad442 SR |
11722 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
11723 | M: M R Swami Reddy <mr.swami.reddy@ti.com> | |
d392dead | 11724 | M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com> |
152ad442 SR |
11725 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
11726 | S: Maintained | |
11727 | F: sound/soc/codecs/lm49453* | |
d392dead | 11728 | F: sound/soc/codecs/isabelle* |
152ad442 | 11729 | |
0edd807d KM |
11730 | TI LP855x BACKLIGHT DRIVER |
11731 | M: Milo Kim <milo.kim@ti.com> | |
11732 | S: Maintained | |
11733 | F: Documentation/backlight/lp855x-driver.txt | |
11734 | F: drivers/video/backlight/lp855x_bl.c | |
11735 | F: include/linux/platform_data/lp855x.h | |
11736 | ||
faf13f6d KM |
11737 | TI LP8727 CHARGER DRIVER |
11738 | M: Milo Kim <milo.kim@ti.com> | |
11739 | S: Maintained | |
11740 | F: drivers/power/lp8727_charger.c | |
11741 | F: include/linux/platform_data/lp8727.h | |
11742 | ||
22f1229f KM |
11743 | TI LP8788 MFD DRIVER |
11744 | M: Milo Kim <milo.kim@ti.com> | |
11745 | S: Maintained | |
11746 | F: drivers/iio/adc/lp8788_adc.c | |
11747 | F: drivers/leds/leds-lp8788.c | |
11748 | F: drivers/mfd/lp8788*.c | |
11749 | F: drivers/power/lp8788-charger.c | |
11750 | F: drivers/regulator/lp8788-*.c | |
11751 | F: include/linux/mfd/lp8788*.h | |
11752 | ||
84640e27 KM |
11753 | TI NETCP ETHERNET DRIVER |
11754 | M: Wingman Kwok <w-kwok2@ti.com> | |
11755 | M: Murali Karicheri <m-karicheri2@ti.com> | |
11756 | L: netdev@vger.kernel.org | |
11757 | S: Maintained | |
11758 | F: drivers/net/ethernet/ti/netcp* | |
11759 | ||
217e0ca9 KC |
11760 | TI TAS571X FAMILY ASoC CODEC DRIVER |
11761 | M: Kevin Cernekee <cernekee@chromium.org> | |
11762 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
11763 | S: Odd Fixes | |
11764 | F: sound/soc/codecs/tas571x* | |
11765 | ||
dd5e8e6b | 11766 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 11767 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
dd5e8e6b PU |
11768 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
11769 | S: Maintained | |
11770 | F: sound/soc/codecs/twl4030* | |
11771 | ||
90921014 | 11772 | TI WILINK WIRELESS DRIVERS |
90921014 LC |
11773 | L: linux-wireless@vger.kernel.org |
11774 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
11775 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
11776 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
22d072f6 | 11777 | S: Orphan |
90921014 LC |
11778 | F: drivers/net/wireless/ti/ |
11779 | F: include/linux/wl12xx.h | |
11780 | ||
e86eaa3a | 11781 | TIPC NETWORK LAYER |
8b58be88 | 11782 | M: Jon Maloy <jon.maloy@ericsson.com> |
115403df | 11783 | M: Ying Xue <ying.xue@windriver.com> |
633d2bde AS |
11784 | L: netdev@vger.kernel.org (core kernel code) |
11785 | L: tipc-discussion@lists.sourceforge.net (user apps, general discussion) | |
e86eaa3a | 11786 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 11787 | S: Maintained |
c117ab84 | 11788 | F: include/uapi/linux/tipc*.h |
679655da | 11789 | F: net/tipc/ |
e86eaa3a | 11790 | |
867e359b | 11791 | TILE ARCHITECTURE |
b9a279f6 | 11792 | M: Chris Metcalf <cmetcalf@mellanox.com> |
8c34d8d9 | 11793 | W: http://www.mellanox.com/repository/solutions/tile-scm/ |
7fa129cc | 11794 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git |
867e359b CM |
11795 | S: Supported |
11796 | F: arch/tile/ | |
6b940606 | 11797 | F: drivers/char/tile-srom.c |
5c770755 | 11798 | F: drivers/edac/tile_edac.c |
6b940606 CM |
11799 | F: drivers/net/ethernet/tile/ |
11800 | F: drivers/rtc/rtc-tile.c | |
11801 | F: drivers/tty/hvc/hvc_tile.c | |
b5c6c1a7 | 11802 | F: drivers/tty/serial/tilegx.c |
6b940606 CM |
11803 | F: drivers/usb/host/*-tilegx.c |
11804 | F: include/linux/usb/tilegx.h | |
867e359b | 11805 | |
1da177e4 | 11806 | TLAN NETWORK DRIVER |
8b58be88 | 11807 | M: Samuel Chessman <chessman@tux.org> |
88c07dde | 11808 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
1da177e4 LT |
11809 | W: http://sourceforge.net/projects/tlan/ |
11810 | S: Maintained | |
679655da | 11811 | F: Documentation/networking/tlan.txt |
b544dbac | 11812 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 11813 | |
d74db3b2 | 11814 | TOMOYO SECURITY MODULE |
8b58be88 JP |
11815 | M: Kentaro Takeda <takedakn@nttdata.co.jp> |
11816 | M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> | |
d03a5d88 TH |
11817 | L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English) |
11818 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English) | |
d74db3b2 KT |
11819 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
11820 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) | |
11821 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 11822 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 11823 | S: Maintained |
679655da | 11824 | F: security/tomoyo/ |
d74db3b2 | 11825 | |
9caeb532 | 11826 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 11827 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
d0944853 | 11828 | L: platform-driver-x86@vger.kernel.org |
9caeb532 HRK |
11829 | S: Maintained |
11830 | F: drivers/platform/x86/topstar-laptop.c | |
11831 | ||
1da177e4 | 11832 | TOSHIBA ACPI EXTRAS DRIVER |
0a63ca11 | 11833 | M: Azael Avalos <coproscefalo@gmail.com> |
d0944853 | 11834 | L: platform-driver-x86@vger.kernel.org |
0a63ca11 | 11835 | S: Maintained |
679655da | 11836 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 | 11837 | |
0a63ca11 AA |
11838 | TOSHIBA BLUETOOTH DRIVER |
11839 | M: Azael Avalos <coproscefalo@gmail.com> | |
11840 | L: platform-driver-x86@vger.kernel.org | |
11841 | S: Maintained | |
11842 | F: drivers/platform/x86/toshiba_bluetooth.c | |
11843 | ||
11844 | TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER | |
11845 | M: Azael Avalos <coproscefalo@gmail.com> | |
11846 | L: platform-driver-x86@vger.kernel.org | |
11847 | S: Maintained | |
11848 | F: drivers/platform/x86/toshiba_haps.c | |
11849 | ||
14991fc7 AA |
11850 | TOSHIBA WMI HOTKEYS DRIVER |
11851 | M: Azael Avalos <coproscefalo@gmail.com> | |
11852 | L: platform-driver-x86@vger.kernel.org | |
11853 | S: Maintained | |
11854 | F: drivers/platform/x86/toshiba-wmi.c | |
11855 | ||
1da177e4 | 11856 | TOSHIBA SMM DRIVER |
8b58be88 | 11857 | M: Jonathan Buzzard <jonathan@buzzard.org.uk> |
1da177e4 LT |
11858 | W: http://www.buzzard.org.uk/toshiba/ |
11859 | S: Maintained | |
679655da JP |
11860 | F: drivers/char/toshiba.c |
11861 | F: include/linux/toshiba.h | |
c117ab84 | 11862 | F: include/uapi/linux/toshiba.h |
1da177e4 | 11863 | |
d32d9864 MR |
11864 | TOSHIBA TC358743 DRIVER |
11865 | M: Mats Randgaard <matrandg@cisco.com> | |
11866 | L: linux-media@vger.kernel.org | |
11867 | S: Maintained | |
11868 | F: drivers/media/i2c/tc358743* | |
b5dcee22 | 11869 | F: include/media/i2c/tc358743.h |
d32d9864 | 11870 | |
560e6475 WS |
11871 | TMIO/SDHI MMC DRIVER |
11872 | M: Wolfram Sang <wsa+renesas@sang-engineering.com> | |
d1057c40 | 11873 | L: linux-mmc@vger.kernel.org |
560e6475 | 11874 | S: Supported |
d1057c40 GL |
11875 | F: drivers/mmc/host/tmio_mmc* |
11876 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
560e6475 | 11877 | F: include/linux/mfd/tmio.h |
d719f900 | 11878 | |
917cc4e6 GR |
11879 | TMP401 HARDWARE MONITOR DRIVER |
11880 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 11881 | L: linux-hwmon@vger.kernel.org |
917cc4e6 GR |
11882 | S: Maintained |
11883 | F: Documentation/hwmon/tmp401 | |
11884 | F: drivers/hwmon/tmp401.c | |
11885 | ||
98f32602 | 11886 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 11887 | M: Hugh Dickins <hughd@google.com> |
98f32602 HD |
11888 | L: linux-mm@kvack.org |
11889 | S: Maintained | |
11890 | F: include/linux/shmem_fs.h | |
11891 | F: mm/shmem.c | |
11892 | ||
45f95b53 | 11893 | TM6000 VIDEO4LINUX DRIVER |
5dc8a864 MCC |
11894 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
11895 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
45f95b53 | 11896 | L: linux-media@vger.kernel.org |
a825eaec | 11897 | W: https://linuxtv.org |
45f95b53 MCC |
11898 | T: git git://linuxtv.org/media_tree.git |
11899 | S: Odd fixes | |
11900 | F: drivers/media/usb/tm6000/ | |
11901 | ||
c65fde19 HV |
11902 | TW68 VIDEO4LINUX DRIVER |
11903 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11904 | L: linux-media@vger.kernel.org | |
11905 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11906 | W: https://linuxtv.org |
c65fde19 HV |
11907 | S: Odd Fixes |
11908 | F: drivers/media/pci/tw68/ | |
11909 | ||
704a84cc EG |
11910 | TW686X VIDEO4LINUX DRIVER |
11911 | M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> | |
11912 | L: linux-media@vger.kernel.org | |
11913 | T: git git://linuxtv.org/media_tree.git | |
11914 | W: http://linuxtv.org | |
11915 | S: Maintained | |
11916 | F: drivers/media/pci/tw686x/ | |
11917 | ||
4e68852d | 11918 | TPM DEVICE DRIVER |
901486b8 | 11919 | M: Peter Huewe <peterhuewe@gmx.de> |
cbb2d5e4 | 11920 | M: Marcel Selhorst <tpmdd@selhorst.net> |
89adb83c | 11921 | M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> |
ce93b4b0 | 11922 | R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> |
383dec1f | 11923 | W: http://tpmdd.sourceforge.net |
63a10dfd | 11924 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
d9912846 JS |
11925 | Q: https://patchwork.kernel.org/project/tpmdd-devel/list/ |
11926 | T: git git://git.infradead.org/users/jjs/linux-tpmdd.git | |
4e68852d | 11927 | S: Maintained |
679655da | 11928 | F: drivers/char/tpm/ |
4e68852d | 11929 | |
1a0f1b27 AL |
11930 | TPM IBM_VTPM DEVICE DRIVER |
11931 | M: Ashley Lai <ashleydlai@gmail.com> | |
11932 | W: http://tpmdd.sourceforge.net | |
11933 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) | |
11934 | S: Maintained | |
11935 | F: drivers/char/tpm/tpm_ibmvtpm* | |
11936 | ||
d6f005a1 JP |
11937 | TRACING |
11938 | M: Steven Rostedt <rostedt@goodmis.org> | |
d6f005a1 | 11939 | M: Ingo Molnar <mingo@redhat.com> |
75fc2d37 | 11940 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
11941 | S: Maintained |
11942 | F: Documentation/trace/ftrace.txt | |
11943 | F: arch/*/*/*/ftrace.h | |
11944 | F: arch/*/kernel/ftrace.c | |
11945 | F: include/*/ftrace.h | |
11946 | F: include/linux/trace*.h | |
11947 | F: include/trace/ | |
11948 | F: kernel/trace/ | |
6e68e6c5 | 11949 | F: tools/testing/selftests/ftrace/ |
d6f005a1 | 11950 | |
4abac0d0 IM |
11951 | TRACING MMIO ACCESSES (MMIOTRACE) |
11952 | M: Steven Rostedt <rostedt@goodmis.org> | |
11953 | M: Ingo Molnar <mingo@kernel.org> | |
11954 | R: Karol Herbst <karolherbst@gmail.com> | |
11955 | R: Pekka Paalanen <ppaalanen@gmail.com> | |
11956 | S: Maintained | |
11957 | L: linux-kernel@vger.kernel.org | |
11958 | L: nouveau@lists.freedesktop.org | |
11959 | F: kernel/trace/trace_mmiotrace.c | |
11960 | F: include/linux/mmiotrace.h | |
11961 | F: arch/x86/mm/kmmio.c | |
11962 | F: arch/x86/mm/mmio-mod.c | |
11963 | F: arch/x86/mm/testmmiotrace.c | |
11964 | ||
1da177e4 | 11965 | TRIVIAL PATCHES |
8b58be88 | 11966 | M: Jiri Kosina <trivial@kernel.org> |
54e5881d | 11967 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 11968 | S: Maintained |
86ef925f | 11969 | K: ^Subject:.*(?i)trivial |
1da177e4 | 11970 | |
4e68852d | 11971 | TTY LAYER |
879a5a00 | 11972 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
d8130624 | 11973 | M: Jiri Slaby <jslaby@suse.com> |
879a5a00 | 11974 | S: Supported |
08deed1e | 11975 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
84e1eb83 | 11976 | F: Documentation/serial/ |
8dd5d2f1 | 11977 | F: drivers/tty/ |
df621252 | 11978 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
11979 | F: include/linux/serial_core.h |
11980 | F: include/linux/serial.h | |
11981 | F: include/linux/tty.h | |
c117ab84 CEB |
11982 | F: include/uapi/linux/serial_core.h |
11983 | F: include/uapi/linux/serial.h | |
11984 | F: include/uapi/linux/tty.h | |
4e68852d | 11985 | |
91952bc0 AP |
11986 | TUA9001 MEDIA DRIVER |
11987 | M: Antti Palosaari <crope@iki.fi> | |
11988 | L: linux-media@vger.kernel.org | |
a825eaec | 11989 | W: https://linuxtv.org |
91952bc0 AP |
11990 | W: http://palosaari.fi/linux/ |
11991 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11992 | T: git git://linuxtv.org/anttip/media_tree.git | |
11993 | S: Maintained | |
11994 | F: drivers/media/tuners/tua9001* | |
11995 | ||
740db6d7 | 11996 | TULIP NETWORK DRIVERS |
740db6d7 | 11997 | L: netdev@vger.kernel.org |
cf869eb1 GG |
11998 | L: linux-parisc@vger.kernel.org |
11999 | S: Orphan | |
0f04e2aa | 12000 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
12001 | |
12002 | TUN/TAP driver | |
ba57b6f2 | 12003 | M: Maxim Krasnyansky <maxk@qti.qualcomm.com> |
1da177e4 LT |
12004 | W: http://vtun.sourceforge.net/tun |
12005 | S: Maintained | |
679655da JP |
12006 | F: Documentation/networking/tuntap.txt |
12007 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 12008 | |
b454cc66 | 12009 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 12010 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
c406339c RB |
12011 | M: Ralf Baechle <ralf@linux-mips.org> |
12012 | L: linux-mips@linux-mips.org | |
12013 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ | |
b454cc66 | 12014 | S: Maintained |
679655da JP |
12015 | F: drivers/tc/ |
12016 | F: include/linux/tc.h | |
b454cc66 | 12017 | |
1da177e4 | 12018 | U14-34F SCSI DRIVER |
8b58be88 | 12019 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
12020 | L: linux-scsi@vger.kernel.org |
12021 | S: Maintained | |
679655da | 12022 | F: drivers/scsi/u14-34f.c |
1da177e4 | 12023 | |
e2d1d6c0 | 12024 | UBI FILE SYSTEM (UBIFS) |
a7859936 | 12025 | M: Richard Weinberger <richard@nod.at> |
949cb623 | 12026 | M: Artem Bityutskiy <dedekind1@gmail.com> |
cc8f9b99 | 12027 | M: Adrian Hunter <adrian.hunter@intel.com> |
e2d1d6c0 | 12028 | L: linux-mtd@lists.infradead.org |
e2966cbe | 12029 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 | 12030 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
a7859936 | 12031 | S: Supported |
679655da JP |
12032 | F: Documentation/filesystems/ubifs.txt |
12033 | F: fs/ubifs/ | |
e2d1d6c0 | 12034 | |
e1632fa2 | 12035 | UCLINUX (M68KNOMMU AND COLDFIRE) |
44156aff GU |
12036 | M: Greg Ungerer <gerg@linux-m68k.org> |
12037 | W: http://www.linux-m68k.org/ | |
cc2020e6 | 12038 | W: http://www.uclinux.org/ |
e1632fa2 | 12039 | L: linux-m68k@lists.linux-m68k.org |
cc2020e6 | 12040 | L: uclinux-dev@uclinux.org (subscribers-only) |
e1632fa2 | 12041 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git |
cc2020e6 | 12042 | S: Maintained |
e1632fa2 GU |
12043 | F: arch/m68k/coldfire/ |
12044 | F: arch/m68k/68*/ | |
61bc02bb JP |
12045 | F: arch/m68k/*/*_no.* |
12046 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 12047 | |
1da177e4 | 12048 | UDF FILESYSTEM |
d8130624 | 12049 | M: Jan Kara <jack@suse.com> |
1da177e4 | 12050 | S: Maintained |
679655da JP |
12051 | F: Documentation/filesystems/udf.txt |
12052 | F: fs/udf/ | |
1da177e4 | 12053 | |
cc2020e6 | 12054 | UFS FILESYSTEM |
8b58be88 | 12055 | M: Evgeniy Dushistov <dushistov@mail.ru> |
cc2020e6 | 12056 | S: Maintained |
679655da JP |
12057 | F: Documentation/filesystems/ufs.txt |
12058 | F: fs/ufs/ | |
cc2020e6 | 12059 | |
0a09d3ab DH |
12060 | UHID USERSPACE HID IO DRIVER: |
12061 | M: David Herrmann <dh.herrmann@googlemail.com> | |
12062 | L: linux-input@vger.kernel.org | |
12063 | S: Maintained | |
12064 | F: drivers/hid/uhid.c | |
c117ab84 | 12065 | F: include/uapi/linux/uhid.h |
0a09d3ab | 12066 | |
18332a80 | 12067 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 12068 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 12069 | S: Orphan |
355ffe69 | 12070 | F: drivers/uwb/ |
679655da JP |
12071 | F: include/linux/uwb.h |
12072 | F: include/linux/uwb/ | |
18332a80 | 12073 | |
b31d8273 G |
12074 | UNICORE32 ARCHITECTURE: |
12075 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
12076 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
12077 | S: Maintained | |
ceebf4d5 | 12078 | T: git git://github.com/gxt/linux.git |
b31d8273 G |
12079 | F: arch/unicore32/ |
12080 | ||
d8379ab1 TF |
12081 | UNIFDEF |
12082 | M: Tony Finch <dot@dotat.at> | |
12083 | W: http://dotat.at/prog/unifdef | |
12084 | S: Maintained | |
12085 | F: scripts/unifdef.c | |
12086 | ||
1da177e4 | 12087 | UNIFORM CDROM DRIVER |
8b58be88 | 12088 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
12089 | W: http://www.kernel.dk |
12090 | S: Maintained | |
679655da JP |
12091 | F: Documentation/cdrom/ |
12092 | F: drivers/cdrom/cdrom.c | |
12093 | F: include/linux/cdrom.h | |
c117ab84 | 12094 | F: include/uapi/linux/cdrom.h |
1da177e4 | 12095 | |
56df0122 | 12096 | UNISYS S-PAR DRIVERS |
49e7d9df JP |
12097 | M: David Kershner <david.kershner@unisys.com> |
12098 | L: sparmaintainer@unisys.com (Unisys internal) | |
12099 | S: Supported | |
12100 | F: drivers/staging/unisys/ | |
56df0122 | 12101 | |
9941fa6e VH |
12102 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
12103 | M: Vinayak Holikatti <vinholikatti@gmail.com> | |
9941fa6e VH |
12104 | L: linux-scsi@vger.kernel.org |
12105 | S: Supported | |
12106 | F: Documentation/scsi/ufs.txt | |
12107 | F: drivers/scsi/ufs/ | |
12108 | ||
4b9ffb5a JP |
12109 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS |
12110 | M: Joao Pinto <Joao.Pinto@synopsys.com> | |
12111 | L: linux-scsi@vger.kernel.org | |
12112 | S: Supported | |
12113 | F: drivers/scsi/ufs/*dwc* | |
12114 | ||
e2d1d6c0 | 12115 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 12116 | M: Artem Bityutskiy <dedekind1@gmail.com> |
346be9bc | 12117 | M: Richard Weinberger <richard@nod.at> |
e2d1d6c0 RD |
12118 | W: http://www.linux-mtd.infradead.org/ |
12119 | L: linux-mtd@lists.infradead.org | |
b6b44e0a | 12120 | T: git git://git.infradead.org/ubifs-2.6.git |
346be9bc | 12121 | S: Supported |
80811493 | 12122 | F: drivers/mtd/ubi/ |
679655da | 12123 | F: include/linux/mtd/ubi.h |
c117ab84 | 12124 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 12125 | |
1da177e4 | 12126 | USB ACM DRIVER |
ca1c3e6f | 12127 | M: Oliver Neukum <oneukum@suse.com> |
6372594a | 12128 | L: linux-usb@vger.kernel.org |
1da177e4 | 12129 | S: Maintained |
679655da JP |
12130 | F: Documentation/usb/acm.txt |
12131 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 12132 | |
b7d572e1 PF |
12133 | USB AR5523 WIRELESS DRIVER |
12134 | M: Pontus Fuchs <pontus.fuchs@gmail.com> | |
12135 | L: linux-wireless@vger.kernel.org | |
12136 | S: Maintained | |
12137 | F: drivers/net/wireless/ath/ar5523/ | |
12138 | ||
115bb1ff | 12139 | USB ATTACHED SCSI |
866d372e | 12140 | M: Oliver Neukum <oneukum@suse.com> |
115bb1ff MW |
12141 | L: linux-usb@vger.kernel.org |
12142 | L: linux-scsi@vger.kernel.org | |
8eae0fb7 | 12143 | S: Maintained |
115bb1ff MW |
12144 | F: drivers/usb/storage/uas.c |
12145 | ||
1da177e4 | 12146 | USB CDC ETHERNET DRIVER |
61eee9a7 | 12147 | M: Oliver Neukum <oliver@neukum.org> |
795fb7e7 | 12148 | L: linux-usb@vger.kernel.org |
1da177e4 | 12149 | S: Maintained |
679655da | 12150 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 12151 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 12152 | |
66e3e591 KP |
12153 | USB CHAOSKEY DRIVER |
12154 | M: Keith Packard <keithp@keithp.com> | |
12155 | L: linux-usb@vger.kernel.org | |
12156 | S: Maintained | |
12157 | F: drivers/usb/misc/chaoskey.c | |
12158 | ||
b02b371e | 12159 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 12160 | M: Peter Korsgaard <jacmet@sunsite.dk> |
b02b371e PK |
12161 | L: linux-usb@vger.kernel.org |
12162 | S: Maintained | |
679655da | 12163 | F: drivers/usb/c67x00/ |
b02b371e | 12164 | |
d0374f4f | 12165 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 12166 | M: Peter Korsgaard <jacmet@sunsite.dk> |
043600a6 | 12167 | L: netdev@vger.kernel.org |
d0374f4f PK |
12168 | W: http://www.linux-usb.org/usbnet |
12169 | S: Maintained | |
679655da | 12170 | F: drivers/net/usb/dm9601.c |
d0374f4f | 12171 | |
cc2020e6 | 12172 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 12173 | M: Cesar Miquel <miquel@df.uba.ar> |
cc2020e6 AC |
12174 | L: rio500-users@lists.sourceforge.net |
12175 | W: http://rio500.sourceforge.net | |
12176 | S: Maintained | |
679655da | 12177 | F: drivers/usb/misc/rio500* |
cc2020e6 | 12178 | |
1da177e4 | 12179 | USB EHCI DRIVER |
578333ab | 12180 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 12181 | L: linux-usb@vger.kernel.org |
578333ab | 12182 | S: Maintained |
679655da JP |
12183 | F: Documentation/usb/ehci.txt |
12184 | F: drivers/usb/host/ehci* | |
1da177e4 | 12185 | |
69ae9e3e | 12186 | USB GADGET/PERIPHERAL SUBSYSTEM |
a55f6286 | 12187 | M: Felipe Balbi <balbi@kernel.org> |
795fb7e7 | 12188 | L: linux-usb@vger.kernel.org |
69ae9e3e | 12189 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
12190 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
12191 | S: Maintained | |
679655da JP |
12192 | F: drivers/usb/gadget/ |
12193 | F: include/linux/usb/gadget* | |
69ae9e3e | 12194 | |
2dea64b4 | 12195 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
e5f6450c | 12196 | M: Jiri Kosina <jikos@kernel.org> |
406df153 | 12197 | R: Benjamin Tissoires <benjamin.tissoires@redhat.com> |
795fb7e7 | 12198 | L: linux-usb@vger.kernel.org |
54e5881d | 12199 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 12200 | S: Maintained |
c2f01971 | 12201 | F: Documentation/hid/hiddev.txt |
679655da | 12202 | F: drivers/hid/usbhid/ |
1da177e4 | 12203 | |
959eea21 | 12204 | USB ISP116X DRIVER |
8b58be88 | 12205 | M: Olav Kongas <ok@artecdesign.ee> |
795fb7e7 | 12206 | L: linux-usb@vger.kernel.org |
959eea21 | 12207 | S: Maintained |
679655da JP |
12208 | F: drivers/usb/host/isp116x* |
12209 | F: include/linux/usb/isp116x.h | |
959eea21 | 12210 | |
146498ea WH |
12211 | USB LAN78XX ETHERNET DRIVER |
12212 | M: Woojung Huh <woojung.huh@microchip.com> | |
12213 | M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com> | |
12214 | L: netdev@vger.kernel.org | |
12215 | S: Maintained | |
12216 | F: drivers/net/usb/lan78xx.* | |
12217 | ||
1da177e4 | 12218 | USB MASS STORAGE DRIVER |
fc8b690d | 12219 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 12220 | L: linux-usb@vger.kernel.org |
8836aeb8 | 12221 | L: usb-storage@lists.one-eyed-alien.net |
1da177e4 LT |
12222 | S: Maintained |
12223 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 12224 | F: drivers/usb/storage/ |
1da177e4 | 12225 | |
af39917d CL |
12226 | USB MIDI DRIVER |
12227 | M: Clemens Ladisch <clemens@ladisch.de> | |
12228 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
12229 | T: git git://git.alsa-project.org/alsa-kernel.git | |
12230 | S: Maintained | |
12231 | F: sound/usb/midi.* | |
12232 | ||
444ce9d4 JP |
12233 | USB NETWORKING DRIVERS |
12234 | L: linux-usb@vger.kernel.org | |
12235 | S: Odd Fixes | |
12236 | F: drivers/net/usb/ | |
12237 | ||
1da177e4 | 12238 | USB OHCI DRIVER |
578333ab | 12239 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 12240 | L: linux-usb@vger.kernel.org |
578333ab | 12241 | S: Maintained |
679655da JP |
12242 | F: Documentation/usb/ohci.txt |
12243 | F: drivers/usb/host/ohci* | |
1da177e4 | 12244 | |
963ffa3e | 12245 | USB OTG FSM (Finite State Machine) |
60d77b3d | 12246 | M: Peter Chen <Peter.Chen@nxp.com> |
8373856d | 12247 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
963ffa3e PC |
12248 | L: linux-usb@vger.kernel.org |
12249 | S: Maintained | |
12250 | F: drivers/usb/common/usb-otg-fsm.c | |
12251 | ||
563da3a9 VM |
12252 | USB OVER IP DRIVER |
12253 | M: Valentina Manea <valentina.manea.m@gmail.com> | |
90effdcd SK |
12254 | M: Shuah Khan <shuahkh@osg.samsung.com> |
12255 | M: Shuah Khan <shuah@kernel.org> | |
563da3a9 VM |
12256 | L: linux-usb@vger.kernel.org |
12257 | S: Maintained | |
a6d6fc2b | 12258 | F: Documentation/usb/usbip_protocol.txt |
563da3a9 VM |
12259 | F: drivers/usb/usbip/ |
12260 | F: tools/usb/usbip/ | |
12261 | ||
1da177e4 | 12262 | USB PEGASUS DRIVER |
a16b945c | 12263 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 12264 | L: linux-usb@vger.kernel.org |
043600a6 | 12265 | L: netdev@vger.kernel.org |
052e3128 PM |
12266 | T: git git://github.com/petkan/pegasus.git |
12267 | W: https://github.com/petkan/pegasus | |
1da177e4 | 12268 | S: Maintained |
679655da | 12269 | F: drivers/net/usb/pegasus.* |
1da177e4 | 12270 | |
d3ad558f | 12271 | USB PHY LAYER |
a55f6286 | 12272 | M: Felipe Balbi <balbi@kernel.org> |
d3ad558f FB |
12273 | L: linux-usb@vger.kernel.org |
12274 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
12275 | S: Maintained | |
12276 | F: drivers/usb/phy/ | |
d3ad558f | 12277 | |
73e4fb3f | 12278 | USB PRINTER DRIVER (usblp) |
8b58be88 | 12279 | M: Pete Zaitcev <zaitcev@redhat.com> |
795fb7e7 | 12280 | L: linux-usb@vger.kernel.org |
73e4fb3f | 12281 | S: Supported |
679655da | 12282 | F: drivers/usb/class/usblp.c |
1da177e4 | 12283 | |
4521b477 BM |
12284 | USB QMI WWAN NETWORK DRIVER |
12285 | M: Bjørn Mork <bjorn@mork.no> | |
12286 | L: netdev@vger.kernel.org | |
12287 | S: Maintained | |
12288 | F: Documentation/ABI/testing/sysfs-class-net-qmi | |
12289 | F: drivers/net/usb/qmi_wwan.c | |
12290 | ||
1da177e4 | 12291 | USB RTL8150 DRIVER |
a16b945c | 12292 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 12293 | L: linux-usb@vger.kernel.org |
043600a6 | 12294 | L: netdev@vger.kernel.org |
052e3128 PM |
12295 | T: git git://github.com/petkan/rtl8150.git |
12296 | W: https://github.com/petkan/rtl8150 | |
1da177e4 | 12297 | S: Maintained |
679655da | 12298 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 12299 | |
f896b796 | 12300 | USB SERIAL SUBSYSTEM |
66085694 | 12301 | M: Johan Hovold <johan@kernel.org> |
795fb7e7 | 12302 | L: linux-usb@vger.kernel.org |
5ee05309 | 12303 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git |
4e68852d | 12304 | S: Maintained |
679655da | 12305 | F: Documentation/usb/usb-serial.txt |
f896b796 | 12306 | F: drivers/usb/serial/ |
679655da | 12307 | F: include/linux/usb/serial.h |
1da177e4 | 12308 | |
b3f0db1c SG |
12309 | USB SMSC75XX ETHERNET DRIVER |
12310 | M: Steve Glendinning <steve.glendinning@shawell.net> | |
12311 | L: netdev@vger.kernel.org | |
12312 | S: Maintained | |
12313 | F: drivers/net/usb/smsc75xx.* | |
12314 | ||
2f7ca802 | 12315 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 12316 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2f7ca802 | 12317 | L: netdev@vger.kernel.org |
90b24cfb | 12318 | S: Maintained |
679655da | 12319 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 12320 | |
1da177e4 | 12321 | USB SUBSYSTEM |
879a5a00 | 12322 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
795fb7e7 | 12323 | L: linux-usb@vger.kernel.org |
1da177e4 | 12324 | W: http://www.linux-usb.org |
08deed1e | 12325 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 12326 | S: Supported |
1700bd98 | 12327 | F: Documentation/devicetree/bindings/usb/ |
679655da | 12328 | F: Documentation/usb/ |
679655da JP |
12329 | F: drivers/usb/ |
12330 | F: include/linux/usb.h | |
12331 | F: include/linux/usb/ | |
1da177e4 LT |
12332 | |
12333 | USB UHCI DRIVER | |
8b58be88 | 12334 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 12335 | L: linux-usb@vger.kernel.org |
1da177e4 | 12336 | S: Maintained |
679655da | 12337 | F: drivers/usb/host/uhci* |
1da177e4 | 12338 | |
69ae9e3e | 12339 | USB "USBNET" DRIVER FRAMEWORK |
d8130624 | 12340 | M: Oliver Neukum <oneukum@suse.com> |
043600a6 | 12341 | L: netdev@vger.kernel.org |
69ae9e3e | 12342 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 12343 | S: Maintained |
679655da JP |
12344 | F: drivers/net/usb/usbnet.c |
12345 | F: include/linux/usb/usbnet.h | |
1da177e4 | 12346 | |
c0efd232 | 12347 | USB VIDEO CLASS |
c53ac071 | 12348 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
616bd4e2 | 12349 | L: linux-uvc-devel@lists.sourceforge.net (subscribers-only) |
661263b5 | 12350 | L: linux-media@vger.kernel.org |
275ffde4 | 12351 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 12352 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 12353 | S: Maintained |
0c0d06ca | 12354 | F: drivers/media/usb/uvc/ |
6c0f0359 | 12355 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 12356 | |
b60b9c45 HV |
12357 | USB VISION DRIVER |
12358 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
12359 | L: linux-media@vger.kernel.org | |
12360 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 12361 | W: https://linuxtv.org |
b60b9c45 HV |
12362 | S: Odd Fixes |
12363 | F: drivers/media/usb/usbvision/ | |
12364 | ||
8282da47 LP |
12365 | USB WEBCAM GADGET |
12366 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
12367 | L: linux-usb@vger.kernel.org | |
12368 | S: Maintained | |
3a83c16e | 12369 | F: drivers/usb/gadget/function/*uvc* |
faf2e1db | 12370 | F: drivers/usb/gadget/legacy/webcam.c |
8282da47 | 12371 | |
bf164cc0 | 12372 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 12373 | M: Jussi Kivilinna <jussi.kivilinna@iki.fi> |
bf164cc0 JK |
12374 | L: linux-wireless@vger.kernel.org |
12375 | S: Maintained | |
679655da | 12376 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 12377 | |
eb6bab13 | 12378 | USB XHCI DRIVER |
03d85053 | 12379 | M: Mathias Nyman <mathias.nyman@intel.com> |
eb6bab13 SS |
12380 | L: linux-usb@vger.kernel.org |
12381 | S: Supported | |
36d0344c SS |
12382 | F: drivers/usb/host/xhci* |
12383 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 12384 | |
1da177e4 | 12385 | USB ZD1201 DRIVER |
4086b9ca | 12386 | L: linux-wireless@vger.kernel.org |
1da177e4 | 12387 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 12388 | S: Orphan |
ed0ad06f | 12389 | F: drivers/net/wireless/zydas/zd1201.* |
1da177e4 | 12390 | |
b7eee616 | 12391 | USB ZR364XX DRIVER |
8b58be88 | 12392 | M: Antoine Jacquet <royale@zerezo.com> |
795fb7e7 | 12393 | L: linux-usb@vger.kernel.org |
661263b5 | 12394 | L: linux-media@vger.kernel.org |
275ffde4 | 12395 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
12396 | W: http://royale.zerezo.com/zr364xx/ |
12397 | S: Maintained | |
679655da | 12398 | F: Documentation/video4linux/zr364xx.txt |
90d72ac6 | 12399 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 12400 | |
289fcff4 HK |
12401 | ULPI BUS |
12402 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> | |
12403 | L: linux-usb@vger.kernel.org | |
12404 | S: Maintained | |
12405 | F: drivers/usb/common/ulpi.c | |
12406 | F: include/linux/ulpi/ | |
12407 | ||
e7839f25 | 12408 | USER-MODE LINUX (UML) |
8b58be88 | 12409 | M: Jeff Dike <jdike@addtoit.com> |
b15194b7 | 12410 | M: Richard Weinberger <richard@nod.at> |
1da177e4 LT |
12411 | L: user-mode-linux-devel@lists.sourceforge.net |
12412 | L: user-mode-linux-user@lists.sourceforge.net | |
12413 | W: http://user-mode-linux.sourceforge.net | |
9f273c24 | 12414 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git |
1da177e4 | 12415 | S: Maintained |
61516587 | 12416 | F: Documentation/virtual/uml/ |
679655da | 12417 | F: arch/um/ |
b070989a | 12418 | F: arch/x86/um/ |
679655da JP |
12419 | F: fs/hostfs/ |
12420 | F: fs/hppfs/ | |
b7eee616 | 12421 | |
e5f114e9 | 12422 | USERSPACE I/O (UIO) |
879a5a00 | 12423 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
e5f114e9 | 12424 | S: Maintained |
3d3fecbd | 12425 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
679655da JP |
12426 | F: Documentation/DocBook/uio-howto.tmpl |
12427 | F: drivers/uio/ | |
12428 | F: include/linux/uio*.h | |
e5f114e9 | 12429 | |
256cccbe | 12430 | UTIL-LINUX PACKAGE |
8b58be88 | 12431 | M: Karel Zak <kzak@redhat.com> |
256cccbe KZ |
12432 | L: util-linux@vger.kernel.org |
12433 | W: http://en.wikipedia.org/wiki/Util-linux | |
12434 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
12435 | S: Maintained |
12436 | ||
c1fd1c07 | 12437 | UVESAFB DRIVER |
8b58be88 | 12438 | M: Michal Januszewski <spock@gentoo.org> |
c69f677c | 12439 | L: linux-fbdev@vger.kernel.org |
c1fd1c07 MJ |
12440 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
12441 | S: Maintained | |
679655da | 12442 | F: Documentation/fb/uvesafb.txt |
8a61f013 | 12443 | F: drivers/video/fbdev/uvesafb.* |
c1fd1c07 | 12444 | |
456930d8 SA |
12445 | VF610 NAND DRIVER |
12446 | M: Stefan Agner <stefan@agner.ch> | |
12447 | L: linux-mtd@lists.infradead.org | |
12448 | S: Supported | |
12449 | F: drivers/mtd/nand/vf610_nfc.c | |
12450 | ||
4480f15b | 12451 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 12452 | M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> |
1da177e4 | 12453 | S: Maintained |
679655da JP |
12454 | F: Documentation/filesystems/vfat.txt |
12455 | F: fs/fat/ | |
1da177e4 | 12456 | |
cba3345c AW |
12457 | VFIO DRIVER |
12458 | M: Alex Williamson <alex.williamson@redhat.com> | |
12459 | L: kvm@vger.kernel.org | |
9f273c24 | 12460 | T: git git://github.com/awilliam/linux-vfio.git |
cba3345c AW |
12461 | S: Maintained |
12462 | F: Documentation/vfio.txt | |
12463 | F: drivers/vfio/ | |
12464 | F: include/linux/vfio.h | |
c117ab84 | 12465 | F: include/uapi/linux/vfio.h |
cba3345c | 12466 | |
a714ea5f AW |
12467 | VFIO PLATFORM DRIVER |
12468 | M: Baptiste Reynal <b.reynal@virtualopensystems.com> | |
12469 | L: kvm@vger.kernel.org | |
12470 | S: Maintained | |
12471 | F: drivers/vfio/platform/ | |
12472 | ||
9e6f3438 PO |
12473 | VIDEOBUF2 FRAMEWORK |
12474 | M: Pawel Osciak <pawel@osciak.com> | |
12475 | M: Marek Szyprowski <m.szyprowski@samsung.com> | |
e76e4706 | 12476 | M: Kyungmin Park <kyungmin.park@samsung.com> |
9e6f3438 PO |
12477 | L: linux-media@vger.kernel.org |
12478 | S: Maintained | |
90d72ac6 | 12479 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
12480 | F: include/media/videobuf2-* |
12481 | ||
06a8fc78 AH |
12482 | VIRTIO AND VHOST VSOCK DRIVER |
12483 | M: Stefan Hajnoczi <stefanha@redhat.com> | |
12484 | L: kvm@vger.kernel.org | |
12485 | L: virtualization@lists.linux-foundation.org | |
12486 | L: netdev@vger.kernel.org | |
12487 | S: Maintained | |
12488 | F: include/linux/virtio_vsock.h | |
12489 | F: include/uapi/linux/virtio_vsock.h | |
12490 | F: net/vmw_vsock/virtio_transport_common.c | |
0ea9e1d3 | 12491 | F: net/vmw_vsock/virtio_transport.c |
433fc58e AH |
12492 | F: drivers/vhost/vsock.c |
12493 | F: drivers/vhost/vsock.h | |
06a8fc78 | 12494 | |
5523662e SCP |
12495 | VIRTUAL SERIO DEVICE DRIVER |
12496 | M: Stephen Chandler Paul <thatslyude@gmail.com> | |
12497 | S: Maintained | |
12498 | F: drivers/input/serio/userio.c | |
12499 | F: include/uapi/linux/userio.h | |
12500 | ||
9a82446b AS |
12501 | VIRTIO CONSOLE DRIVER |
12502 | M: Amit Shah <amit.shah@redhat.com> | |
12503 | L: virtualization@lists.linux-foundation.org | |
12504 | S: Maintained | |
12505 | F: drivers/char/virtio_console.c | |
12506 | F: include/linux/virtio_console.h | |
c117ab84 | 12507 | F: include/uapi/linux/virtio_console.h |
9a82446b | 12508 | |
2426ec8f | 12509 | VIRTIO CORE, NET AND BLOCK DRIVERS |
2426ec8f MT |
12510 | M: "Michael S. Tsirkin" <mst@redhat.com> |
12511 | L: virtualization@lists.linux-foundation.org | |
12512 | S: Maintained | |
0e4191fe | 12513 | F: Documentation/devicetree/bindings/virtio/ |
2426ec8f | 12514 | F: drivers/virtio/ |
c893c8d7 | 12515 | F: tools/virtio/ |
2426ec8f MT |
12516 | F: drivers/net/virtio_net.c |
12517 | F: drivers/block/virtio_blk.c | |
12518 | F: include/linux/virtio_*.h | |
916cdabc | 12519 | F: include/uapi/linux/virtio_*.h |
2426ec8f | 12520 | |
f2dbda3b CH |
12521 | VIRTIO DRIVERS FOR S390 |
12522 | M: Christian Borntraeger <borntraeger@de.ibm.com> | |
12523 | M: Cornelia Huck <cornelia.huck@de.ibm.com> | |
12524 | L: linux-s390@vger.kernel.org | |
12525 | L: virtualization@lists.linux-foundation.org | |
12526 | L: kvm@vger.kernel.org | |
12527 | S: Supported | |
1b568d93 | 12528 | F: drivers/s390/virtio/ |
f2dbda3b | 12529 | |
4ad6ee91 GH |
12530 | VIRTIO GPU DRIVER |
12531 | M: David Airlie <airlied@linux.ie> | |
12532 | M: Gerd Hoffmann <kraxel@redhat.com> | |
12533 | L: dri-devel@lists.freedesktop.org | |
12534 | L: virtualization@lists.linux-foundation.org | |
12535 | S: Maintained | |
12536 | F: drivers/gpu/drm/virtio/ | |
12537 | F: include/uapi/linux/virtio_gpu.h | |
12538 | ||
3a4d5c94 MT |
12539 | VIRTIO HOST (VHOST) |
12540 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
12541 | L: kvm@vger.kernel.org | |
c996d8b9 | 12542 | L: virtualization@lists.linux-foundation.org |
3a4d5c94 | 12543 | L: netdev@vger.kernel.org |
9f273c24 | 12544 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git |
3a4d5c94 MT |
12545 | S: Maintained |
12546 | F: drivers/vhost/ | |
c117ab84 | 12547 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 12548 | |
271c8651 GH |
12549 | VIRTIO INPUT DRIVER |
12550 | M: Gerd Hoffmann <kraxel@redhat.com> | |
12551 | S: Maintained | |
12552 | F: drivers/virtio/virtio_input.c | |
12553 | F: include/uapi/linux/virtio_input.h | |
12554 | ||
1da177e4 | 12555 | VIA RHINE NETWORK DRIVER |
210347e1 | 12556 | S: Orphan |
f2148a47 | 12557 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 12558 | |
f0bf7f61 | 12559 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 12560 | M: Bruce Chang <brucechang@via.com.tw> |
8b58be88 | 12561 | M: Harald Welte <HaraldWelte@viatech.com> |
f0bf7f61 HW |
12562 | S: Maintained |
12563 | F: drivers/mmc/host/via-sdmmc.c | |
12564 | ||
69e4a7c2 | 12565 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 12566 | M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> |
c69f677c | 12567 | L: linux-fbdev@vger.kernel.org |
69e4a7c2 | 12568 | S: Maintained |
c7babebd FTS |
12569 | F: include/linux/via-core.h |
12570 | F: include/linux/via-gpio.h | |
12571 | F: include/linux/via_i2c.h | |
8a61f013 | 12572 | F: drivers/video/fbdev/via/ |
69e4a7c2 | 12573 | |
01f20734 | 12574 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 12575 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 FR |
12576 | L: netdev@vger.kernel.org |
12577 | S: Maintained | |
f2148a47 | 12578 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 12579 | |
f73f8173 AW |
12580 | VIRT LIB |
12581 | M: Alex Williamson <alex.williamson@redhat.com> | |
12582 | M: Paolo Bonzini <pbonzini@redhat.com> | |
12583 | L: kvm@vger.kernel.org | |
12584 | S: Supported | |
12585 | F: virt/lib/ | |
12586 | ||
77911fd2 | 12587 | VIVID VIRTUAL VIDEO DRIVER |
0b7bc1fa HV |
12588 | M: Hans Verkuil <hverkuil@xs4all.nl> |
12589 | L: linux-media@vger.kernel.org | |
12590 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 12591 | W: https://linuxtv.org |
0b7bc1fa | 12592 | S: Maintained |
77911fd2 | 12593 | F: drivers/media/platform/vivid/* |
0b7bc1fa | 12594 | |
be7f8273 | 12595 | VLAN (802.1Q) |
8b58be88 | 12596 | M: Patrick McHardy <kaber@trash.net> |
be7f8273 PM |
12597 | L: netdev@vger.kernel.org |
12598 | S: Maintained | |
679655da JP |
12599 | F: drivers/net/macvlan.c |
12600 | F: include/linux/if_*vlan.h | |
12601 | F: net/8021q/ | |
be7f8273 | 12602 | |
55e331cf | 12603 | VLYNQ BUS |
08eeb306 | 12604 | M: Florian Fainelli <f.fainelli@gmail.com> |
8578d7af | 12605 | L: openwrt-devel@lists.openwrt.org (subscribers-only) |
55e331cf FF |
12606 | S: Maintained |
12607 | F: drivers/vlynq/vlynq.c | |
12608 | F: include/linux/vlynq.h | |
12609 | ||
390beae4 | 12610 | VME SUBSYSTEM |
74c600e3 | 12611 | M: Martyn Welch <martyn@welchs.me.uk> |
1bd289d1 | 12612 | M: Manohar Vanga <manohar.vanga@gmail.com> |
390beae4 MW |
12613 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
12614 | L: devel@driverdev.osuosl.org | |
12615 | S: Maintained | |
12616 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
12617 | F: Documentation/vme_api.txt | |
12618 | F: drivers/staging/vme/ | |
12619 | F: drivers/vme/ | |
12620 | F: include/linux/vme* | |
12621 | ||
4488e09b AK |
12622 | VMWARE HYPERVISOR INTERFACE |
12623 | M: Alok Kataria <akataria@vmware.com> | |
12624 | L: virtualization@lists.linux-foundation.org | |
12625 | S: Supported | |
12626 | F: arch/x86/kernel/cpu/vmware.c | |
12627 | ||
73b35d07 DT |
12628 | VMWARE BALLOON DRIVER |
12629 | M: Xavier Deguillard <xdeguillard@vmware.com> | |
12630 | M: Philip Moltmann <moltmann@vmware.com> | |
12631 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
12632 | L: linux-kernel@vger.kernel.org | |
12633 | S: Maintained | |
12634 | F: drivers/misc/vmw_balloon.c | |
12635 | ||
8b8be51b TH |
12636 | VMWARE VMMOUSE SUBDRIVER |
12637 | M: "VMware Graphics" <linux-graphics-maintainer@vmware.com> | |
12638 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
12639 | L: linux-input@vger.kernel.org | |
12640 | S: Maintained | |
12641 | F: drivers/input/mouse/vmmouse.c | |
12642 | F: drivers/input/mouse/vmmouse.h | |
12643 | ||
d1a890fa | 12644 | VMWARE VMXNET3 ETHERNET DRIVER |
04e1b734 | 12645 | M: Shrikrishna Khare <skhare@vmware.com> |
65c8bb5b JP |
12646 | M: "VMware, Inc." <pv-drivers@vmware.com> |
12647 | L: netdev@vger.kernel.org | |
12648 | S: Maintained | |
12649 | F: drivers/net/vmxnet3/ | |
d1a890fa | 12650 | |
851b1642 | 12651 | VMware PVSCSI driver |
29374ec6 | 12652 | M: Jim Gill <jgill@vmware.com> |
851b1642 AK |
12653 | M: VMware PV-Drivers <pv-drivers@vmware.com> |
12654 | L: linux-scsi@vger.kernel.org | |
12655 | S: Maintained | |
12656 | F: drivers/scsi/vmw_pvscsi.c | |
12657 | F: drivers/scsi/vmw_pvscsi.h | |
12658 | ||
e53e86c7 | 12659 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 12660 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 12661 | M: Mark Brown <broonie@kernel.org> |
5cdeb2c8 | 12662 | L: linux-kernel@vger.kernel.org |
1dd68f01 | 12663 | W: http://www.slimlogic.co.uk/?p=48 |
6febb5ab | 12664 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
e53e86c7 | 12665 | S: Supported |
9d2597e8 | 12666 | F: Documentation/devicetree/bindings/regulator/ |
679655da | 12667 | F: drivers/regulator/ |
9d2597e8 | 12668 | F: include/dt-bindings/regulator/ |
679655da | 12669 | F: include/linux/regulator/ |
e53e86c7 | 12670 | |
081958eb DA |
12671 | VRF |
12672 | M: David Ahern <dsa@cumulusnetworks.com> | |
12673 | M: Shrijeet Mukherjee <shm@cumulusnetworks.com> | |
12674 | L: netdev@vger.kernel.org | |
12675 | S: Maintained | |
12676 | F: drivers/net/vrf.c | |
562d897d | 12677 | F: Documentation/networking/vrf.txt |
081958eb | 12678 | |
ab41319e | 12679 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 12680 | M: Juerg Haefliger <juergh@gmail.com> |
968ce1b1 | 12681 | L: linux-hwmon@vger.kernel.org |
ab41319e | 12682 | S: Maintained |
679655da JP |
12683 | F: Documentation/hwmon/vt1211 |
12684 | F: drivers/hwmon/vt1211.c | |
ab41319e | 12685 | |
1de9e371 | 12686 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 12687 | M: Roger Lucas <vt8231@hiddenengine.co.uk> |
968ce1b1 | 12688 | L: linux-hwmon@vger.kernel.org |
1de9e371 | 12689 | S: Maintained |
679655da | 12690 | F: drivers/hwmon/vt8231.c |
1de9e371 | 12691 | |
88095e7b TO |
12692 | VUB300 USB to SDIO/SD/MMC bridge chip |
12693 | M: Tony Olech <tony.olech@elandigitalsystems.com> | |
12694 | L: linux-mmc@vger.kernel.org | |
12695 | L: linux-usb@vger.kernel.org | |
12696 | S: Supported | |
12697 | F: drivers/mmc/host/vub300.c | |
12698 | ||
1da177e4 | 12699 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 12700 | M: Evgeniy Polyakov <zbr@ioremap.net> |
1da177e4 | 12701 | S: Maintained |
679655da JP |
12702 | F: Documentation/w1/ |
12703 | F: drivers/w1/ | |
1da177e4 | 12704 | |
13927079 | 12705 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 12706 | M: Marc Hulsman <m.hulsman@tudelft.nl> |
968ce1b1 | 12707 | L: linux-hwmon@vger.kernel.org |
25845c22 | 12708 | S: Maintained |
679655da JP |
12709 | F: Documentation/hwmon/w83791d |
12710 | F: drivers/hwmon/w83791d.c | |
13927079 | 12711 | |
61db011d | 12712 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 12713 | M: Rudolf Marek <r.marek@assembler.cz> |
968ce1b1 | 12714 | L: linux-hwmon@vger.kernel.org |
61db011d | 12715 | S: Maintained |
679655da JP |
12716 | F: Documentation/hwmon/w83793 |
12717 | F: drivers/hwmon/w83793.c | |
61db011d | 12718 | |
e3760b43 | 12719 | W83795 HARDWARE MONITORING DRIVER |
d8130624 | 12720 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 12721 | L: linux-hwmon@vger.kernel.org |
e3760b43 JD |
12722 | S: Maintained |
12723 | F: drivers/hwmon/w83795.c | |
12724 | ||
1da177e4 | 12725 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 12726 | M: Pierre Ossman <pierre@ossman.eu> |
1da177e4 | 12727 | S: Maintained |
679655da | 12728 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 12729 | |
b4e05923 HG |
12730 | WACOM PROTOCOL 4 SERIAL TABLETS |
12731 | M: Julian Squires <julian@cipht.net> | |
12732 | M: Hans de Goede <hdegoede@redhat.com> | |
12733 | L: linux-input@vger.kernel.org | |
12734 | S: Maintained | |
12735 | F: drivers/input/tablet/wacom_serial4.c | |
12736 | ||
3527761c | 12737 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 12738 | M: Wim Van Sebroeck <wim@iguana.be> |
1f32f83e | 12739 | R: Guenter Roeck <linux@roeck-us.net> |
230a5cef WVS |
12740 | L: linux-watchdog@vger.kernel.org |
12741 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 12742 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 12743 | S: Maintained |
540be8b2 | 12744 | F: Documentation/devicetree/bindings/watchdog/ |
679655da JP |
12745 | F: Documentation/watchdog/ |
12746 | F: drivers/watchdog/ | |
12747 | F: include/linux/watchdog.h | |
c117ab84 | 12748 | F: include/uapi/linux/watchdog.h |
3527761c | 12749 | |
1da177e4 | 12750 | WD7000 SCSI DRIVER |
8b58be88 | 12751 | M: Miroslav Zagorac <zaga@fly.cc.fer.hr> |
1da177e4 LT |
12752 | L: linux-scsi@vger.kernel.org |
12753 | S: Maintained | |
679655da | 12754 | F: drivers/scsi/wd7000.c |
1da177e4 | 12755 | |
b22e00f3 DH |
12756 | WIIMOTE HID DRIVER |
12757 | M: David Herrmann <dh.herrmann@googlemail.com> | |
12758 | L: linux-input@vger.kernel.org | |
12759 | S: Maintained | |
12760 | F: drivers/hid/hid-wiimote* | |
12761 | ||
e258b80e | 12762 | WINBOND CIR DRIVER |
364e9e18 | 12763 | M: David Härdeman <david@hardeman.nu> |
e258b80e | 12764 | S: Maintained |
116ab806 | 12765 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 12766 | |
c36a483d WBG |
12767 | WINSYSTEMS EBC-C384 WATCHDOG DRIVER |
12768 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
12769 | L: linux-watchdog@vger.kernel.org | |
12770 | S: Maintained | |
12771 | F: drivers/watchdog/ebc-c384_wdt.c | |
12772 | ||
9c26df9b WBG |
12773 | WINSYSTEMS WS16C48 GPIO DRIVER |
12774 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
12775 | L: linux-gpio@vger.kernel.org | |
12776 | S: Maintained | |
12777 | F: drivers/gpio/gpio-ws16c48.c | |
e258b80e | 12778 | |
8a70da82 | 12779 | WIMAX STACK |
8b58be88 | 12780 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 12781 | M: linux-wimax@intel.com |
49e7d9df | 12782 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
12783 | S: Supported |
12784 | W: http://linuxwimax.org | |
315987dc | 12785 | F: Documentation/wimax/README.wimax |
315987dc JP |
12786 | F: include/linux/wimax/debug.h |
12787 | F: include/net/wimax.h | |
c117ab84 | 12788 | F: include/uapi/linux/wimax.h |
315987dc | 12789 | F: net/wimax/ |
8a70da82 | 12790 | |
5fc14680 | 12791 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 12792 | M: Miloslav Trmac <mitr@volny.cz> |
5fc14680 | 12793 | S: Maintained |
679655da | 12794 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 12795 | |
1da177e4 | 12796 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 12797 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
724c6b35 | 12798 | L: linux-wireless@vger.kernel.org |
926554c4 | 12799 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 12800 | S: Maintained |
679655da | 12801 | F: drivers/net/wireless/wl3501* |
1da177e4 | 12802 | |
055bcbcb | 12803 | WOLFSON MICROELECTRONICS DRIVERS |
fef95164 | 12804 | L: patches@opensource.wolfsonmicro.com |
f0e03dbd RF |
12805 | T: git https://github.com/CirrusLogic/linux-drivers.git |
12806 | W: https://github.com/CirrusLogic/linux-drivers/wiki | |
b75ea16a | 12807 | S: Supported |
3768f0b1 | 12808 | F: Documentation/hwmon/wm83?? |
f494993f CK |
12809 | F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt |
12810 | F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt | |
12811 | F: Documentation/devicetree/bindings/mfd/arizona.txt | |
af1c5386 | 12812 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 12813 | F: drivers/clk/clk-wm83*.c |
9c309598 | 12814 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 12815 | F: drivers/leds/leds-wm83*.c |
25b273ba | 12816 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 12817 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 12818 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
12819 | F: drivers/input/misc/wm831x-on.c |
12820 | F: drivers/input/touchscreen/wm831x-ts.c | |
12821 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
12822 | F: drivers/mfd/arizona* |
12823 | F: drivers/mfd/wm*.c | |
12ebc137 | 12824 | F: drivers/mfd/cs47l24* |
b75ea16a MB |
12825 | F: drivers/power/wm83*.c |
12826 | F: drivers/rtc/rtc-wm83*.c | |
12827 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 12828 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 12829 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 12830 | F: include/linux/mfd/arizona/ |
3860e6c4 | 12831 | F: include/linux/mfd/wm831x/ |
b75ea16a | 12832 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 12833 | F: include/linux/mfd/wm8400* |
59ec6da2 | 12834 | F: include/linux/wm97xx.h |
055bcbcb | 12835 | F: include/sound/wm????.h |
9c309598 | 12836 | F: sound/soc/codecs/arizona.? |
055bcbcb | 12837 | F: sound/soc/codecs/wm* |
12ebc137 | 12838 | F: sound/soc/codecs/cs47l24* |
b75ea16a | 12839 | |
3e6cd7a4 TH |
12840 | WORKQUEUE |
12841 | M: Tejun Heo <tj@kernel.org> | |
badb7f5e | 12842 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
3e6cd7a4 TH |
12843 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
12844 | S: Maintained | |
12845 | F: include/linux/workqueue.h | |
12846 | F: kernel/workqueue.c | |
12847 | F: Documentation/workqueue.txt | |
12848 | ||
39ac9f48 CYT |
12849 | X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS |
12850 | M: Chen-Yu Tsai <wens@csie.org> | |
12851 | L: linux-kernel@vger.kernel.org | |
12852 | S: Maintained | |
12853 | N: axp[128] | |
12854 | ||
1da177e4 | 12855 | X.25 NETWORK LAYER |
8bf28059 | 12856 | M: Andrew Hendry <andrew.hendry@gmail.com> |
1da177e4 | 12857 | L: linux-x25@vger.kernel.org |
8bf28059 | 12858 | S: Odd Fixes |
679655da JP |
12859 | F: Documentation/networking/x25* |
12860 | F: include/net/x25* | |
12861 | F: net/x25/ | |
1da177e4 | 12862 | |
e2d1d6c0 | 12863 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
12864 | M: Thomas Gleixner <tglx@linutronix.de> |
12865 | M: Ingo Molnar <mingo@redhat.com> | |
12866 | M: "H. Peter Anvin" <hpa@zytor.com> | |
bcde563c | 12867 | M: x86@kernel.org |
981c3a4f | 12868 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 12869 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 12870 | S: Maintained |
679655da JP |
12871 | F: Documentation/x86/ |
12872 | F: arch/x86/ | |
e2d1d6c0 | 12873 | |
d0944853 | 12874 | X86 PLATFORM DRIVERS |
e181ba15 | 12875 | M: Darren Hart <dvhart@infradead.org> |
d0944853 | 12876 | L: platform-driver-x86@vger.kernel.org |
e181ba15 | 12877 | T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git |
d0944853 | 12878 | S: Maintained |
14430813 | 12879 | F: drivers/platform/x86/ |
3a4bceef | 12880 | F: drivers/platform/olpc/ |
d0944853 | 12881 | |
c1f5c54b IM |
12882 | X86 MCE INFRASTRUCTURE |
12883 | M: Tony Luck <tony.luck@intel.com> | |
487ba8e8 | 12884 | M: Borislav Petkov <bp@alien8.de> |
c1f5c54b IM |
12885 | L: linux-edac@vger.kernel.org |
12886 | S: Maintained | |
12887 | F: arch/x86/kernel/cpu/mcheck/* | |
12888 | ||
79ebdc95 BP |
12889 | X86 MICROCODE UPDATE SUPPORT |
12890 | M: Borislav Petkov <bp@alien8.de> | |
12891 | S: Maintained | |
12892 | F: arch/x86/kernel/cpu/microcode/* | |
12893 | ||
f0905c5a AL |
12894 | X86 VDSO |
12895 | M: Andy Lutomirski <luto@amacapital.net> | |
12896 | L: linux-kernel@vger.kernel.org | |
12897 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso | |
12898 | S: Maintained | |
d603c8e1 | 12899 | F: arch/x86/entry/vdso/ |
f0905c5a | 12900 | |
d6fad502 | 12901 | XC2028/3028 TUNER DRIVER |
5dc8a864 MCC |
12902 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
12903 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
d6fad502 | 12904 | L: linux-media@vger.kernel.org |
a825eaec | 12905 | W: https://linuxtv.org |
d6fad502 MCC |
12906 | T: git git://linuxtv.org/media_tree.git |
12907 | S: Maintained | |
12908 | F: drivers/media/tuners/tuner-xc2028.* | |
12909 | ||
c4468085 | 12910 | XEN HYPERVISOR INTERFACE |
3eeef8f7 KRW |
12911 | M: Boris Ostrovsky <boris.ostrovsky@oracle.com> |
12912 | M: David Vrabel <david.vrabel@citrix.com> | |
101ecde5 | 12913 | M: Juergen Gross <jgross@suse.com> |
11dbb52b | 12914 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
ea70ba3a | 12915 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git |
c4468085 IC |
12916 | S: Supported |
12917 | F: arch/x86/xen/ | |
12918 | F: drivers/*/xen-*front.c | |
12919 | F: drivers/xen/ | |
12920 | F: arch/x86/include/asm/xen/ | |
12921 | F: include/xen/ | |
c117ab84 | 12922 | F: include/uapi/xen/ |
c4468085 | 12923 | |
77bfb479 | 12924 | XEN HYPERVISOR ARM |
85d1a29d | 12925 | M: Stefano Stabellini <sstabellini@kernel.org> |
11dbb52b | 12926 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
85d1a29d | 12927 | S: Maintained |
77bfb479 SS |
12928 | F: arch/arm/xen/ |
12929 | F: arch/arm/include/asm/xen/ | |
12930 | ||
b475e83f | 12931 | XEN HYPERVISOR ARM64 |
85d1a29d | 12932 | M: Stefano Stabellini <sstabellini@kernel.org> |
11dbb52b | 12933 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
85d1a29d | 12934 | S: Maintained |
b475e83f SS |
12935 | F: arch/arm64/xen/ |
12936 | F: arch/arm64/include/asm/xen/ | |
12937 | ||
9b57e1a7 | 12938 | XEN NETWORK BACKEND DRIVER |
8386040b | 12939 | M: Wei Liu <wei.liu2@citrix.com> |
11dbb52b | 12940 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
9b57e1a7 IC |
12941 | L: netdev@vger.kernel.org |
12942 | S: Supported | |
12943 | F: drivers/net/xen-netback/* | |
12944 | ||
c5f8e29d KRW |
12945 | XEN PCI SUBSYSTEM |
12946 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 12947 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
12948 | S: Supported |
12949 | F: arch/x86/pci/*xen* | |
12950 | F: drivers/pci/*xen* | |
12951 | ||
a2c5ae65 KRW |
12952 | XEN BLOCK SUBSYSTEM |
12953 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
bcadb699 | 12954 | M: Roger Pau Monné <roger.pau@citrix.com> |
a2c5ae65 KRW |
12955 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
12956 | S: Supported | |
12957 | F: drivers/block/xen-blkback/* | |
12958 | F: drivers/block/xen* | |
12959 | ||
15d03609 JG |
12960 | XEN PVSCSI DRIVERS |
12961 | M: Juergen Gross <jgross@suse.com> | |
12962 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) | |
12963 | L: linux-scsi@vger.kernel.org | |
12964 | S: Supported | |
12965 | F: drivers/scsi/xen-scsifront.c | |
12966 | F: drivers/xen/xen-scsiback.c | |
12967 | F: include/xen/interface/io/vscsiif.h | |
12968 | ||
c5f8e29d KRW |
12969 | XEN SWIOTLB SUBSYSTEM |
12970 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 12971 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
12972 | S: Supported |
12973 | F: arch/x86/xen/*swiotlb* | |
12974 | F: drivers/xen/*swiotlb* | |
12975 | ||
1da177e4 LT |
12976 | XFS FILESYSTEM |
12977 | P: Silicon Graphics Inc | |
809625ca | 12978 | M: Dave Chinner <david@fromorbit.com> |
18caa67a | 12979 | M: xfs@oss.sgi.com |
d7ede1aa | 12980 | L: xfs@oss.sgi.com |
1da177e4 | 12981 | W: http://oss.sgi.com/projects/xfs |
9f273c24 | 12982 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git |
1da177e4 | 12983 | S: Supported |
679655da JP |
12984 | F: Documentation/filesystems/xfs.txt |
12985 | F: fs/xfs/ | |
1da177e4 | 12986 | |
8a3b7a25 | 12987 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
12988 | M: Anirudha Sarangi <anirudh@xilinx.com> |
12989 | M: John Linn <John.Linn@xilinx.com> | |
8a3b7a25 | 12990 | S: Maintained |
12991 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
12992 | ||
238b8721 | 12993 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 12994 | M: Peter Korsgaard <jacmet@sunsite.dk> |
238b8721 PK |
12995 | L: linux-serial@vger.kernel.org |
12996 | S: Maintained | |
df621252 | 12997 | F: drivers/tty/serial/uartlite.c |
238b8721 | 12998 | |
df330515 LP |
12999 | XILINX VIDEO IP CORES |
13000 | M: Hyun Kwon <hyun.kwon@xilinx.com> | |
13001 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
13002 | L: linux-media@vger.kernel.org | |
13003 | T: git git://linuxtv.org/media_tree.git | |
13004 | S: Supported | |
13005 | F: Documentation/devicetree/bindings/media/xilinx/ | |
13006 | F: drivers/media/platform/xilinx/ | |
a5562f65 | 13007 | F: include/uapi/linux/xilinx-v4l2-controls.h |
df330515 | 13008 | |
74316949 EB |
13009 | XILLYBUS DRIVER |
13010 | M: Eli Billauer <eli.billauer@gmail.com> | |
13011 | L: linux-kernel@vger.kernel.org | |
13012 | S: Supported | |
13013 | F: drivers/char/xillybus/ | |
13014 | ||
f620e4b8 MF |
13015 | XTENSA XTFPGA PLATFORM SUPPORT |
13016 | M: Max Filippov <jcmvbkbc@gmail.com> | |
13017 | L: linux-xtensa@linux-xtensa.org | |
13018 | S: Maintained | |
13019 | F: drivers/spi/spi-xtensa-xtfpga.c | |
57b7068d | 13020 | F: sound/soc/xtensa/xtfpga-i2s.c |
f620e4b8 | 13021 | |
1da177e4 | 13022 | YAM DRIVER FOR AX.25 |
8b58be88 | 13023 | M: Jean-Paul Roubelat <jpr@f6fbb.org> |
1da177e4 LT |
13024 | L: linux-hams@vger.kernel.org |
13025 | S: Maintained | |
679655da JP |
13026 | F: drivers/net/hamradio/yam* |
13027 | F: include/linux/yam.h | |
1da177e4 | 13028 | |
af64a5eb | 13029 | YEALINK PHONE DRIVER |
8b58be88 | 13030 | M: Henk Vergonet <Henk.Vergonet@gmail.com> |
af64a5eb HV |
13031 | L: usbb2k-api-dev@nongnu.org |
13032 | S: Maintained | |
679655da JP |
13033 | F: Documentation/input/yealink.txt |
13034 | F: drivers/input/misc/yealink.* | |
af64a5eb | 13035 | |
1da177e4 | 13036 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 13037 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
13038 | W: http://yaina.de/jreuter/ |
13039 | W: http://www.qsl.net/dl1bke/ | |
13040 | L: linux-hams@vger.kernel.org | |
13041 | S: Maintained | |
679655da JP |
13042 | F: Documentation/networking/z8530drv.txt |
13043 | F: drivers/net/hamradio/*scc.c | |
13044 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 13045 | |
0cf31ec1 | 13046 | ZBUD COMPRESSED PAGE ALLOCATOR |
0bb181c7 | 13047 | M: Seth Jennings <sjenning@redhat.com> |
0cf31ec1 SJ |
13048 | L: linux-mm@kvack.org |
13049 | S: Maintained | |
13050 | F: mm/zbud.c | |
13051 | F: include/linux/zbud.h | |
13052 | ||
7c0c3afb | 13053 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
13054 | M: Daniel Drake <dsd@gentoo.org> |
13055 | M: Ulrich Kunitz <kune@deine-taler.de> | |
7c0c3afb | 13056 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 13057 | L: linux-wireless@vger.kernel.org |
7c0c3afb DD |
13058 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
13059 | S: Maintained | |
6948300c | 13060 | F: drivers/net/wireless/zydas/zd1211rw/ |
7c0c3afb | 13061 | |
20263029 DS |
13062 | ZPOOL COMPRESSED PAGE STORAGE API |
13063 | M: Dan Streetman <ddstreet@ieee.org> | |
13064 | L: linux-mm@kvack.org | |
13065 | S: Maintained | |
13066 | F: mm/zpool.c | |
13067 | F: include/linux/zpool.h | |
13068 | ||
1da177e4 | 13069 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 13070 | L: mjpeg-users@lists.sourceforge.net |
f63145e2 | 13071 | L: linux-media@vger.kernel.org |
1da177e4 | 13072 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
a825eaec | 13073 | T: hg https://linuxtv.org/hg/v4l-dvb |
f63145e2 | 13074 | S: Odd Fixes |
90d72ac6 | 13075 | F: drivers/media/pci/zoran/ |
1da177e4 | 13076 | |
6920f2cc MK |
13077 | ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER |
13078 | M: Minchan Kim <minchan@kernel.org> | |
13079 | M: Nitin Gupta <ngupta@vflare.org> | |
74f3037c | 13080 | R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
6920f2cc MK |
13081 | L: linux-kernel@vger.kernel.org |
13082 | S: Maintained | |
13083 | F: drivers/block/zram/ | |
13084 | F: Documentation/blockdev/zram.txt | |
13085 | ||
8b4a4080 | 13086 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 13087 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
8b4a4080 | 13088 | S: Maintained |
df621252 | 13089 | F: drivers/tty/serial/zs.* |
8b4a4080 | 13090 | |
eae70d06 MK |
13091 | ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR |
13092 | M: Minchan Kim <minchan@kernel.org> | |
13093 | M: Nitin Gupta <ngupta@vflare.org> | |
41192a2d | 13094 | R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
eae70d06 MK |
13095 | L: linux-mm@kvack.org |
13096 | S: Maintained | |
13097 | F: mm/zsmalloc.c | |
13098 | F: include/linux/zsmalloc.h | |
d02be50d | 13099 | F: Documentation/vm/zsmalloc.txt |
eae70d06 | 13100 | |
0cf31ec1 | 13101 | ZSWAP COMPRESSED SWAP CACHING |
0bb181c7 | 13102 | M: Seth Jennings <sjenning@redhat.com> |
0cf31ec1 SJ |
13103 | L: linux-mm@kvack.org |
13104 | S: Maintained | |
13105 | F: mm/zswap.c | |
13106 | ||
1da177e4 | 13107 | THE REST |
8b58be88 | 13108 | M: Linus Torvalds <torvalds@linux-foundation.org> |
34d03cc1 | 13109 | L: linux-kernel@vger.kernel.org |
8a6e2535 | 13110 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 13111 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 13112 | S: Buried alive in reporters |
34d03cc1 JP |
13113 | F: * |
13114 | F: */ |