]>
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 AA |
153 | 6LOWPAN GENERIC (BTLE/IEEE 802.15.4) |
154 | M: Alexander Aring <alex.aring@gmail.com> | |
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 LT |
177 | L: linux-serial@vger.kernel.org |
178 | W: http://serial.sourceforge.net | |
8ee16a1b | 179 | S: Maintained |
08deed1e | 180 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
df621252 | 181 | F: drivers/tty/serial/8250* |
679655da | 182 | F: include/linux/serial_8250.h |
1da177e4 LT |
183 | |
184 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] | |
979b6c13 | 185 | L: netdev@vger.kernel.org |
0cf445ce | 186 | S: Orphan / Obsolete |
644570b8 | 187 | F: drivers/net/ethernet/8390/ |
1da177e4 | 188 | |
67543e50 | 189 | 9P FILE SYSTEM |
8b58be88 JP |
190 | M: Eric Van Hensbergen <ericvh@gmail.com> |
191 | M: Ron Minnich <rminnich@sandia.gov> | |
192 | M: Latchesar Ionkov <lucho@ionkov.net> | |
ce00f85c | 193 | L: v9fs-developer@lists.sourceforge.net |
27a2a5ff | 194 | W: http://swik.net/v9fs |
8a6e2535 | 195 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
eeba444a | 196 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
ce00f85c | 197 | S: Maintained |
679655da JP |
198 | F: Documentation/filesystems/9p.txt |
199 | F: fs/9p/ | |
2315cb14 RL |
200 | F: net/9p/ |
201 | F: include/net/9p/ | |
202 | F: include/uapi/linux/virtio_9p.h | |
203 | F: include/trace/events/9p.h | |
204 | ||
67543e50 | 205 | |
91952bc0 AP |
206 | A8293 MEDIA DRIVER |
207 | M: Antti Palosaari <crope@iki.fi> | |
208 | L: linux-media@vger.kernel.org | |
a825eaec | 209 | W: https://linuxtv.org |
91952bc0 AP |
210 | W: http://palosaari.fi/linux/ |
211 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
212 | T: git git://linuxtv.org/anttip/media_tree.git | |
213 | S: Maintained | |
214 | F: drivers/media/dvb-frontends/a8293* | |
215 | ||
e2d1d6c0 | 216 | AACRAID SCSI RAID DRIVER |
8b58be88 | 217 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
218 | L: linux-scsi@vger.kernel.org |
219 | W: http://www.adaptec.com/ | |
1da177e4 | 220 | S: Supported |
679655da JP |
221 | F: Documentation/scsi/aacraid.txt |
222 | F: drivers/scsi/aacraid/ | |
1da177e4 | 223 | |
ea8f8fc8 JT |
224 | ABI/API |
225 | L: linux-api@vger.kernel.org | |
ea8f8fc8 | 226 | F: include/linux/syscalls.h |
ea8f8fc8 JT |
227 | F: kernel/sys_ni.c |
228 | ||
249e3c85 | 229 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
93d0cc58 | 230 | M: Hans de Goede <hdegoede@redhat.com> |
f2b84bbc HG |
231 | L: lm-sensors@lm-sensors.org |
232 | S: Maintained | |
679655da | 233 | F: drivers/hwmon/abituguru.c |
f2b84bbc | 234 | |
249e3c85 | 235 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
8b58be88 | 236 | M: Alistair John Strachan <alistair@devzero.co.uk> |
249e3c85 AJS |
237 | L: lm-sensors@lm-sensors.org |
238 | S: Maintained | |
679655da | 239 | F: drivers/hwmon/abituguru3.c |
249e3c85 | 240 | |
6ddcf9b4 WBG |
241 | ACCES 104-IDI-48 GPIO DRIVER |
242 | M: "William Breathitt Gray" <vilhelm.gray@gmail.com> | |
243 | L: linux-gpio@vger.kernel.org | |
244 | S: Maintained | |
245 | F: drivers/gpio/gpio-104-idi-48.c | |
246 | ||
e2558989 WBG |
247 | ACCES 104-IDIO-16 GPIO DRIVER |
248 | M: "William Breathitt Gray" <vilhelm.gray@gmail.com> | |
249 | L: linux-gpio@vger.kernel.org | |
250 | S: Maintained | |
251 | F: drivers/gpio/gpio-104-idio-16.c | |
252 | ||
1da177e4 | 253 | ACENIC DRIVER |
8b58be88 | 254 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
255 | L: linux-acenic@sunsite.dk |
256 | S: Maintained | |
531c4f89 | 257 | F: drivers/net/ethernet/alteon/acenic* |
1da177e4 | 258 | |
e86435eb | 259 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 260 | M: Peter Feuerer <peter@piie.net> |
d0944853 | 261 | L: platform-driver-x86@vger.kernel.org |
4fc26e36 JP |
262 | W: http://piie.net/?section=acerhdf |
263 | S: Maintained | |
264 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 265 | |
745a5d21 | 266 | ACER WMI LAPTOP EXTRAS |
182ae55c | 267 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 268 | L: platform-driver-x86@vger.kernel.org |
745a5d21 | 269 | S: Maintained |
679655da | 270 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 271 | |
1da177e4 | 272 | ACPI |
9c3646d1 | 273 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 274 | M: Len Brown <lenb@kernel.org> |
6968e50c | 275 | L: linux-acpi@vger.kernel.org |
360818b8 RW |
276 | W: https://01.org/linux-acpi |
277 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
278 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
8b59a454 | 279 | S: Supported |
679655da JP |
280 | F: drivers/acpi/ |
281 | F: drivers/pnp/pnpacpi/ | |
282 | F: include/linux/acpi.h | |
43368e74 | 283 | F: include/acpi/ |
3a75ef0c | 284 | F: Documentation/acpi/ |
89ca78a0 | 285 | F: Documentation/ABI/testing/sysfs-bus-acpi |
15fd830d BH |
286 | F: drivers/pci/*acpi* |
287 | F: drivers/pci/*/*acpi* | |
288 | F: drivers/pci/*/*/*acpi* | |
3a75ef0c | 289 | F: tools/power/acpi/ |
8b59a454 | 290 | |
3774929d RW |
291 | ACPI COMPONENT ARCHITECTURE (ACPICA) |
292 | M: Robert Moore <robert.moore@intel.com> | |
293 | M: Lv Zheng <lv.zheng@intel.com> | |
9c3646d1 | 294 | M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> |
3774929d RW |
295 | L: linux-acpi@vger.kernel.org |
296 | L: devel@acpica.org | |
297 | W: https://acpica.org/ | |
298 | W: https://github.com/acpica/acpica/ | |
299 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
300 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
301 | S: Supported | |
302 | F: drivers/acpi/acpica/ | |
303 | F: include/acpi/ | |
2754c447 | 304 | F: tools/power/acpi/ |
3774929d | 305 | |
8b59a454 | 306 | ACPI FAN DRIVER |
8b58be88 | 307 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 308 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 309 | W: https://01.org/linux-acpi |
8b59a454 | 310 | S: Supported |
679655da | 311 | F: drivers/acpi/fan.c |
1da177e4 | 312 | |
8b59a454 | 313 | ACPI THERMAL DRIVER |
8b58be88 | 314 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 315 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 316 | W: https://01.org/linux-acpi |
8b59a454 | 317 | S: Supported |
679655da | 318 | F: drivers/acpi/*thermal* |
998be20f | 319 | |
359acec8 | 320 | ACPI VIDEO DRIVER |
8b58be88 | 321 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 322 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 323 | W: https://01.org/linux-acpi |
8b59a454 | 324 | S: Supported |
86f98a3a | 325 | F: drivers/acpi/acpi_video.c |
998be20f | 326 | |
bff431e4 | 327 | ACPI WMI DRIVER |
d0944853 | 328 | L: platform-driver-x86@vger.kernel.org |
5b927259 | 329 | S: Orphan |
679655da | 330 | F: drivers/platform/x86/wmi.c |
bff431e4 | 331 | |
2f39d519 | 332 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 333 | M: Thibaut Varene <T-Bone@parisc-linux.org> |
795fb7e7 JD |
334 | W: http://wiki.parisc-linux.org/AD1889 |
335 | L: linux-parisc@vger.kernel.org | |
336 | S: Maintained | |
679655da | 337 | F: sound/pci/ad1889.* |
2f39d519 | 338 | |
527a1a83 MH |
339 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
340 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 341 | W: http://wiki.analog.com/AD5254 |
a4edbc10 | 342 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
343 | S: Supported |
344 | F: drivers/misc/ad525x_dpot.c | |
345 | ||
346 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
347 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 348 | W: http://wiki.analog.com/AD5398 |
a4edbc10 | 349 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
350 | S: Supported |
351 | F: drivers/regulator/ad5398.c | |
352 | ||
353 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
354 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 355 | W: http://wiki.analog.com/AD7142 |
a4edbc10 | 356 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
357 | S: Supported |
358 | F: drivers/input/misc/ad714x.c | |
359 | ||
360 | AD7877 TOUCHSCREEN DRIVER | |
361 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 362 | W: http://wiki.analog.com/AD7877 |
a4edbc10 | 363 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
364 | S: Supported |
365 | F: drivers/input/touchscreen/ad7877.c | |
366 | ||
367 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
368 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 369 | W: http://wiki.analog.com/AD7879 |
a4edbc10 | 370 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
371 | S: Supported |
372 | F: drivers/input/touchscreen/ad7879.c | |
373 | ||
1330b0dc | 374 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
e5f6450c | 375 | M: Jiri Kosina <jikos@kernel.org> |
1330b0dc JK |
376 | S: Maintained |
377 | ||
7302b9d9 MH |
378 | ADF7242 IEEE 802.15.4 RADIO DRIVER |
379 | M: Michael Hennerich <michael.hennerich@analog.com> | |
380 | W: https://wiki.analog.com/ADF7242 | |
381 | W: http://ez.analog.com/community/linux-device-drivers | |
382 | L: linux-wpan@vger.kernel.org | |
383 | S: Supported | |
384 | F: drivers/net/ieee802154/adf7242.c | |
385 | F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt | |
386 | ||
1da177e4 | 387 | ADM1025 HARDWARE MONITOR DRIVER |
d8130624 | 388 | M: Jean Delvare <jdelvare@suse.com> |
cc0b07ed | 389 | L: lm-sensors@lm-sensors.org |
1da177e4 | 390 | S: Maintained |
679655da JP |
391 | F: Documentation/hwmon/adm1025 |
392 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 393 | |
cae2caae | 394 | ADM1029 HARDWARE MONITOR DRIVER |
fce8ffa3 | 395 | M: Corentin Labbe <clabbe.montjoie@gmail.com> |
cae2caae CL |
396 | L: lm-sensors@lm-sensors.org |
397 | S: Maintained | |
679655da | 398 | F: drivers/hwmon/adm1029.c |
cae2caae | 399 | |
cc0b88cf | 400 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 401 | L: linux-wireless@vger.kernel.org |
491b26b4 | 402 | W: http://wireless.kernel.org/ |
e71bcbd0 | 403 | S: Orphan |
d4a17304 | 404 | F: drivers/net/wireless/admtek/adm8211.* |
cc0b88cf | 405 | |
e8e31622 SA |
406 | ADP1653 FLASH CONTROLLER DRIVER |
407 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
408 | L: linux-media@vger.kernel.org | |
409 | S: Maintained | |
410 | F: drivers/media/i2c/adp1653.c | |
b5dcee22 | 411 | F: include/media/i2c/adp1653.h |
e8e31622 | 412 | |
527a1a83 MH |
413 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
414 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 415 | W: http://wiki.analog.com/ADP5520 |
a4edbc10 | 416 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
417 | S: Supported |
418 | F: drivers/mfd/adp5520.c | |
419 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 420 | F: drivers/leds/leds-adp5520.c |
77278d50 | 421 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
422 | F: drivers/input/keyboard/adp5520-keys.c |
423 | ||
424 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
425 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 426 | W: http://wiki.analog.com/ADP5588 |
a4edbc10 | 427 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
428 | S: Supported |
429 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 430 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
431 | |
432 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
433 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 434 | W: http://wiki.analog.com/ADP8860 |
a4edbc10 | 435 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
436 | S: Supported |
437 | F: drivers/video/backlight/adp8860_bl.c | |
438 | ||
8c22a8f5 DE |
439 | ADS1015 HARDWARE MONITOR DRIVER |
440 | M: Dirk Eibach <eibach@gdsys.de> | |
441 | L: lm-sensors@lm-sensors.org | |
442 | S: Maintained | |
443 | F: Documentation/hwmon/ads1015 | |
444 | F: drivers/hwmon/ads1015.c | |
445 | F: include/linux/i2c/ads1015.h | |
446 | ||
1da177e4 | 447 | ADT746X FAN DRIVER |
8b58be88 | 448 | M: Colin Leroy <colin@colino.net> |
1da177e4 | 449 | S: Maintained |
679655da | 450 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 451 | |
b058b859 | 452 | ADT7475 HARDWARE MONITOR DRIVER |
d8130624 | 453 | M: Jean Delvare <jdelvare@suse.com> |
b058b859 JD |
454 | L: lm-sensors@lm-sensors.org |
455 | S: Maintained | |
456 | F: Documentation/hwmon/adt7475 | |
457 | F: drivers/hwmon/adt7475.c | |
458 | ||
527a1a83 MH |
459 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
460 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 461 | W: http://wiki.analog.com/ADXL345 |
a4edbc10 | 462 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
463 | S: Supported |
464 | F: drivers/input/misc/adxl34x.c | |
465 | ||
8c6af9e1 | 466 | ADVANSYS SCSI DRIVER |
8b58be88 | 467 | M: Matthew Wilcox <matthew@wil.cx> |
d8130624 | 468 | M: Hannes Reinecke <hare@suse.com> |
8c6af9e1 MW |
469 | L: linux-scsi@vger.kernel.org |
470 | S: Maintained | |
679655da JP |
471 | F: Documentation/scsi/advansys.txt |
472 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 473 | |
1da177e4 | 474 | AEDSP16 DRIVER |
8b58be88 | 475 | M: Riccardo Facchetti <fizban@tin.it> |
1da177e4 | 476 | S: Maintained |
679655da | 477 | F: sound/oss/aedsp16.c |
1da177e4 | 478 | |
91952bc0 AP |
479 | AF9013 MEDIA DRIVER |
480 | M: Antti Palosaari <crope@iki.fi> | |
481 | L: linux-media@vger.kernel.org | |
a825eaec | 482 | W: https://linuxtv.org |
91952bc0 AP |
483 | W: http://palosaari.fi/linux/ |
484 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
485 | T: git git://linuxtv.org/anttip/media_tree.git | |
486 | S: Maintained | |
487 | F: drivers/media/dvb-frontends/af9013* | |
488 | ||
489 | AF9033 MEDIA DRIVER | |
490 | M: Antti Palosaari <crope@iki.fi> | |
491 | L: linux-media@vger.kernel.org | |
a825eaec | 492 | W: https://linuxtv.org |
91952bc0 AP |
493 | W: http://palosaari.fi/linux/ |
494 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
495 | T: git git://linuxtv.org/anttip/media_tree.git | |
496 | S: Maintained | |
497 | F: drivers/media/dvb-frontends/af9033* | |
498 | ||
1da177e4 | 499 | AFFS FILE SYSTEM |
6cf515e1 GU |
500 | L: linux-fsdevel@vger.kernel.org |
501 | S: Orphan | |
679655da JP |
502 | F: Documentation/filesystems/affs.txt |
503 | F: fs/affs/ | |
1da177e4 | 504 | |
e2d1d6c0 | 505 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 506 | M: David Howells <dhowells@redhat.com> |
e2d1d6c0 RD |
507 | L: linux-afs@lists.infradead.org |
508 | S: Supported | |
679655da JP |
509 | F: fs/afs/ |
510 | F: include/net/af_rxrpc.h | |
511 | F: net/rxrpc/af_rxrpc.c | |
e2d1d6c0 | 512 | |
1da177e4 | 513 | AGPGART DRIVER |
8b58be88 | 514 | M: David Airlie <airlied@linux.ie> |
878eaf61 | 515 | T: git git://people.freedesktop.org/~airlied/linux (part of drm maint) |
1da177e4 | 516 | S: Maintained |
679655da JP |
517 | F: drivers/char/agp/ |
518 | F: include/linux/agp* | |
c117ab84 | 519 | F: include/uapi/linux/agp* |
1da177e4 LT |
520 | |
521 | AHA152X SCSI DRIVER | |
8b58be88 | 522 | M: "Juergen E. Fischer" <fischer@norbit.de> |
1da177e4 LT |
523 | L: linux-scsi@vger.kernel.org |
524 | S: Maintained | |
679655da JP |
525 | F: drivers/scsi/aha152x* |
526 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 527 | |
64624d4f | 528 | AIC7XXX / AIC79XX SCSI DRIVER |
d8130624 | 529 | M: Hannes Reinecke <hare@suse.com> |
64624d4f | 530 | L: linux-scsi@vger.kernel.org |
1da177e4 | 531 | S: Maintained |
679655da | 532 | F: drivers/scsi/aic7xxx/ |
1da177e4 | 533 | |
450500ad HV |
534 | AIMSLAB FM RADIO RECEIVER DRIVER |
535 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
536 | L: linux-media@vger.kernel.org | |
537 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 538 | W: https://linuxtv.org |
450500ad HV |
539 | S: Maintained |
540 | F: drivers/media/radio/radio-aimslab* | |
541 | ||
e2d1d6c0 | 542 | AIO |
8b58be88 | 543 | M: Benjamin LaHaise <bcrl@kvack.org> |
e2d1d6c0 RD |
544 | L: linux-aio@kvack.org |
545 | S: Supported | |
679655da JP |
546 | F: fs/aio.c |
547 | F: include/linux/*aio*.h | |
e2d1d6c0 | 548 | |
469d4ec8 AP |
549 | AIRSPY MEDIA DRIVER |
550 | M: Antti Palosaari <crope@iki.fi> | |
551 | L: linux-media@vger.kernel.org | |
a825eaec | 552 | W: https://linuxtv.org |
469d4ec8 AP |
553 | W: http://palosaari.fi/linux/ |
554 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
555 | T: git git://linuxtv.org/anttip/media_tree.git | |
556 | S: Maintained | |
557 | F: drivers/media/usb/airspy/ | |
558 | ||
1da177e4 | 559 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 560 | M: Duncan Sands <duncan.sands@free.fr> |
6372594a | 561 | L: linux-usb@vger.kernel.org |
1da177e4 LT |
562 | W: http://www.linux-usb.org/SpeedTouch/ |
563 | S: Maintained | |
679655da JP |
564 | F: drivers/usb/atm/speedtch.c |
565 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 566 | |
272f133a | 567 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 568 | M: Manuel Lauss <manuel.lauss@gmail.com> |
08fcb720 | 569 | S: Maintained |
679655da | 570 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 571 | |
4a4e5787 | 572 | ALI1563 I2C DRIVER |
8b58be88 | 573 | M: Rudolf Marek <r.marek@assembler.cz> |
846557d3 | 574 | L: linux-i2c@vger.kernel.org |
4a4e5787 | 575 | S: Maintained |
679655da JP |
576 | F: Documentation/i2c/busses/i2c-ali1563 |
577 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 578 | |
bc368798 LC |
579 | ALLWINNER SECURITY SYSTEM |
580 | M: Corentin Labbe <clabbe.montjoie@gmail.com> | |
581 | L: linux-crypto@vger.kernel.org | |
582 | S: Maintained | |
583 | F: drivers/crypto/sunxi-ss/ | |
584 | ||
1da177e4 | 585 | ALPHA PORT |
8b58be88 | 586 | M: Richard Henderson <rth@twiddle.net> |
8b58be88 | 587 | M: Ivan Kokshaysky <ink@jurassic.park.msu.ru> |
abd4d609 | 588 | M: Matt Turner <mattst88@gmail.com> |
c89f4f9a | 589 | S: Odd Fixes |
a9406699 | 590 | L: linux-alpha@vger.kernel.org |
679655da | 591 | F: arch/alpha/ |
1da177e4 | 592 | |
f62092f6 LFT |
593 | ALTERA MAILBOX DRIVER |
594 | M: Ley Foon Tan <lftan@altera.com> | |
595 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
596 | S: Maintained | |
597 | F: drivers/mailbox/mailbox-altera.c | |
598 | ||
c5abbba9 THL |
599 | ALTERA PIO DRIVER |
600 | M: Tien Hock Loh <thloh@altera.com> | |
601 | L: linux-gpio@vger.kernel.org | |
602 | S: Maintained | |
603 | F: drivers/gpio/gpio-altera.c | |
604 | ||
16b8b922 | 605 | ALTERA TRIPLE SPEED ETHERNET DRIVER |
c53fed07 | 606 | M: Vince Bridgers <vbridger@opensource.altera.com> |
16b8b922 VB |
607 | L: netdev@vger.kernel.org |
608 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
609 | S: Maintained | |
610 | F: drivers/net/ethernet/altera/ | |
611 | ||
adf9251f TK |
612 | ALTERA UART/JTAG UART SERIAL DRIVERS |
613 | M: Tobias Klauser <tklauser@distanz.ch> | |
614 | L: linux-serial@vger.kernel.org | |
61bd0943 | 615 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
adf9251f TK |
616 | S: Maintained |
617 | F: drivers/tty/serial/altera_uart.c | |
618 | F: drivers/tty/serial/altera_jtaguart.c | |
619 | F: include/linux/altera_uart.h | |
620 | F: include/linux/altera_jtaguart.h | |
621 | ||
f4875e12 TL |
622 | AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER |
623 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
624 | L: linux-crypto@vger.kernel.org | |
625 | S: Supported | |
626 | F: drivers/crypto/ccp/ | |
627 | F: include/linux/ccp.h | |
628 | ||
512d1027 | 629 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
96818b58 | 630 | M: Huang Rui <ray.huang@amd.com> |
512d1027 | 631 | L: lm-sensors@lm-sensors.org |
96818b58 | 632 | S: Supported |
512d1027 AH |
633 | F: Documentation/hwmon/fam15h_power |
634 | F: drivers/hwmon/fam15h_power.c | |
635 | ||
167a675a | 636 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
67d76710 | 637 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
b4731977 | 638 | S: Orphan |
faf2e1db | 639 | F: drivers/usb/gadget/udc/amd5536udc.* |
167a675a | 640 | |
f90b8116 | 641 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 642 | P: Andres Salomon <dilinger@queued.net> |
67d76710 | 643 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
f90b8116 JC |
644 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
645 | S: Supported | |
679655da JP |
646 | F: drivers/char/hw_random/geode-rng.c |
647 | F: drivers/crypto/geode* | |
8a61f013 | 648 | F: drivers/video/fbdev/geode/ |
679655da | 649 | F: arch/x86/include/asm/geode.h |
f90b8116 | 650 | |
919ee7dd | 651 | AMD IOMMU (AMD-VI) |
e4110568 | 652 | M: Joerg Roedel <joro@8bytes.org> |
919ee7dd | 653 | L: iommu@lists.linux-foundation.org |
525b233c | 654 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 655 | S: Maintained |
b2c16391 JP |
656 | F: drivers/iommu/amd_iommu*.[ch] |
657 | F: include/linux/amd-iommu.h | |
919ee7dd | 658 | |
16423d67 | 659 | AMD KFD |
1241e0b4 | 660 | M: Oded Gabbay <oded.gabbay@gmail.com> |
49e7d9df JP |
661 | L: dri-devel@lists.freedesktop.org |
662 | T: git git://people.freedesktop.org/~gabbayo/linux.git | |
663 | S: Supported | |
130e0371 OG |
664 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c |
665 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h | |
32c22e99 | 666 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c |
ff758a12 | 667 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c |
49e7d9df | 668 | F: drivers/gpu/drm/amd/amdkfd/ |
04df25d1 OG |
669 | F: drivers/gpu/drm/amd/include/cik_structs.h |
670 | F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h | |
ff758a12 | 671 | F: drivers/gpu/drm/amd/include/vi_structs.h |
49e7d9df JP |
672 | F: drivers/gpu/drm/radeon/radeon_kfd.c |
673 | F: drivers/gpu/drm/radeon/radeon_kfd.h | |
674 | F: include/uapi/linux/kfd_ioctl.h | |
16423d67 | 675 | |
45198c7b LT |
676 | AMD XGBE DRIVER |
677 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
678 | L: netdev@vger.kernel.org | |
679 | S: Supported | |
680 | F: drivers/net/ethernet/amd/xgbe/ | |
45198c7b | 681 | |
284f42b6 | 682 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 | 683 | M: Michael Hanselmann <linux-kernel@hansmi.ch> |
284f42b6 | 684 | S: Supported |
bd5f47ec | 685 | F: drivers/macintosh/ams/ |
284f42b6 | 686 | |
531fca16 HV |
687 | ANALOG DEVICES INC AD9389B DRIVER |
688 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
689 | L: linux-media@vger.kernel.org | |
690 | S: Maintained | |
691 | F: drivers/media/i2c/ad9389b* | |
692 | ||
614b4384 LPC |
693 | ANALOG DEVICES INC ADV7180 DRIVER |
694 | M: Lars-Peter Clausen <lars@metafoo.de> | |
695 | L: linux-media@vger.kernel.org | |
696 | W: http://ez.analog.com/community/linux-device-drivers | |
697 | S: Supported | |
698 | F: drivers/media/i2c/adv7180.c | |
699 | ||
c40ddfa3 HV |
700 | ANALOG DEVICES INC ADV7511 DRIVER |
701 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
702 | L: linux-media@vger.kernel.org | |
703 | S: Maintained | |
704 | F: drivers/media/i2c/adv7511* | |
705 | ||
531fca16 HV |
706 | ANALOG DEVICES INC ADV7604 DRIVER |
707 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
708 | L: linux-media@vger.kernel.org | |
709 | S: Maintained | |
710 | F: drivers/media/i2c/adv7604* | |
711 | ||
c40ddfa3 HV |
712 | ANALOG DEVICES INC ADV7842 DRIVER |
713 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
714 | L: linux-media@vger.kernel.org | |
715 | S: Maintained | |
716 | F: drivers/media/i2c/adv7842* | |
717 | ||
527a1a83 | 718 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 719 | M: Lars-Peter Clausen <lars@metafoo.de> |
4bdef3bd | 720 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a3f531ac | 721 | W: http://wiki.analog.com/ |
a4edbc10 | 722 | W: http://ez.analog.com/community/linux-device-drivers |
4bdef3bd | 723 | S: Supported |
39c9d199 | 724 | F: sound/soc/codecs/adau* |
cc52688a | 725 | F: sound/soc/codecs/adav* |
4bdef3bd | 726 | F: sound/soc/codecs/ad1* |
ae48f5ef | 727 | F: sound/soc/codecs/ad7* |
4bdef3bd | 728 | F: sound/soc/codecs/ssm* |
40216ce7 | 729 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 730 | |
527a1a83 | 731 | ANALOG DEVICES INC ASOC DRIVERS |
b3fe92b0 | 732 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
527a1a83 MH |
733 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
734 | W: http://blackfin.uclinux.org/ | |
735 | S: Supported | |
736 | F: sound/soc/blackfin/* | |
7d1f9018 | 737 | |
4ce72abc LPC |
738 | ANALOG DEVICES INC IIO DRIVERS |
739 | M: Lars-Peter Clausen <lars@metafoo.de> | |
740 | M: Michael Hennerich <Michael.Hennerich@analog.com> | |
741 | W: http://wiki.analog.com/ | |
742 | W: http://ez.analog.com/community/linux-device-drivers | |
743 | S: Supported | |
744 | F: drivers/iio/*/ad* | |
745 | X: drivers/iio/*/adjd* | |
746 | F: drivers/staging/iio/*/ad* | |
747 | F: staging/iio/trigger/iio-trig-bfin-timer.c | |
527a1a83 | 748 | |
0e3b67b3 LPC |
749 | ANALOG DEVICES INC DMA DRIVERS |
750 | M: Lars-Peter Clausen <lars@metafoo.de> | |
751 | W: http://ez.analog.com/community/linux-device-drivers | |
752 | S: Supported | |
753 | F: drivers/dma/dma-axi-dmac.c | |
754 | ||
41c9e95d GK |
755 | ANDROID DRIVERS |
756 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
27682407 | 757 | M: Arve HjønnevĂ¥g <arve@android.com> |
41c9e95d | 758 | M: Riley Andrews <riandrews@android.com> |
0e4a566b | 759 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
41c9e95d GK |
760 | L: devel@driverdev.osuosl.org |
761 | S: Supported | |
762 | F: drivers/android/ | |
763 | F: drivers/staging/android/ | |
764 | ||
42269063 | 765 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 766 | M: Johannes Berg <johannes@sipsolutions.net> |
a4724ed6 | 767 | L: linuxppc-dev@lists.ozlabs.org |
93711660 | 768 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
42269063 | 769 | S: Maintained |
679655da | 770 | F: sound/aoa/ |
42269063 | 771 | |
1da177e4 | 772 | APM DRIVER |
e5f6450c | 773 | M: Jiri Kosina <jikos@kernel.org> |
81024fc4 | 774 | S: Odd fixes |
9f273c24 | 775 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git |
679655da JP |
776 | F: arch/x86/kernel/apm_32.c |
777 | F: include/linux/apm_bios.h | |
c117ab84 | 778 | F: include/uapi/linux/apm_bios.h |
81024fc4 | 779 | F: drivers/char/apm-emulation.c |
1da177e4 | 780 | |
bd7aa4b2 | 781 | APPLE BCM5974 MULTITOUCH DRIVER |
75dd112a | 782 | M: Henrik Rydberg <rydberg@bitmath.org> |
bd7aa4b2 | 783 | L: linux-input@vger.kernel.org |
75dd112a | 784 | S: Odd fixes |
679655da | 785 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 786 | |
6f2fad74 | 787 | APPLE SMC DRIVER |
75dd112a | 788 | M: Henrik Rydberg <rydberg@bitmath.org> |
d618540f | 789 | L: lm-sensors@lm-sensors.org |
75dd112a | 790 | S: Odd fixes |
679655da | 791 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 792 | |
1da177e4 | 793 | APPLETALK NETWORK LAYER |
8b58be88 | 794 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
1da177e4 | 795 | S: Maintained |
679655da JP |
796 | F: drivers/net/appletalk/ |
797 | F: net/appletalk/ | |
1da177e4 | 798 | |
21c75328 DD |
799 | APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT |
800 | M: Duc Dang <dhdang@apm.com> | |
801 | S: Supported | |
802 | F: arch/arm64/boot/dts/apm/ | |
803 | ||
24299502 IS |
804 | APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER |
805 | M: Iyappan Subramanian <isubramanian@apm.com> | |
806 | M: Keyur Chudgar <kchudgar@apm.com> | |
24299502 IS |
807 | S: Supported |
808 | F: drivers/net/ethernet/apm/xgene/ | |
809 | F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt | |
810 | ||
62a37dc7 LP |
811 | APTINA CAMERA SENSOR PLL |
812 | M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com> | |
813 | L: linux-media@vger.kernel.org | |
814 | S: Maintained | |
815 | F: drivers/media/i2c/aptina-pll.* | |
816 | ||
1154ea7d | 817 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 818 | M: Jaya Kumar <jayalk@intworks.biz> |
1154ea7d | 819 | S: Maintained |
8a61f013 JH |
820 | F: drivers/video/fbdev/arcfb.c |
821 | F: drivers/video/fbdev/core/fb_defio.c | |
1154ea7d | 822 | |
c38f6ac7 MG |
823 | ARCNET NETWORK LAYER |
824 | M: Michael Grzeschik <m.grzeschik@pengutronix.de> | |
825 | L: netdev@vger.kernel.org | |
826 | S: Maintained | |
827 | F: drivers/net/arcnet/ | |
828 | F: include/uapi/linux/if_arcnet.h | |
829 | ||
1da177e4 | 830 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 831 | M: Ian Molton <spyro@f2s.com> |
1da177e4 | 832 | S: Maintained |
679655da JP |
833 | F: arch/arm/lib/floppydma.S |
834 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 835 | |
6f96521f WD |
836 | ARM PMU PROFILING AND DEBUGGING |
837 | M: Will Deacon <will.deacon@arm.com> | |
70e238df | 838 | R: Mark Rutland <mark.rutland@arm.com> |
6f96521f | 839 | S: Maintained |
dd06a84b | 840 | F: arch/arm*/kernel/perf_* |
6f96521f | 841 | F: arch/arm/oprofile/common.c |
dd06a84b MR |
842 | F: arch/arm*/kernel/hw_breakpoint.c |
843 | F: arch/arm*/include/asm/hw_breakpoint.h | |
844 | F: arch/arm*/include/asm/perf_event.h | |
fa8ad788 MR |
845 | F: drivers/perf/arm_pmu.c |
846 | F: include/linux/perf/arm_pmu.h | |
6f96521f | 847 | |
d4275354 | 848 | ARM PORT |
8b58be88 | 849 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 850 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
851 | W: http://www.arm.linux.org.uk/ |
852 | S: Maintained | |
853 | F: arch/arm/ | |
854 | ||
d323c243 SB |
855 | ARM SUB-ARCHITECTURES |
856 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
56ca9d98 | 857 | S: Maintained |
d323c243 SB |
858 | F: arch/arm/mach-*/ |
859 | F: arch/arm/plat-*/ | |
860 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
861 | ||
cefbf4ea RK |
862 | ARM PRIMECELL AACI PL041 DRIVER |
863 | M: Russell King <linux@arm.linux.org.uk> | |
864 | S: Maintained | |
865 | F: sound/arm/aaci.* | |
866 | ||
867 | ARM PRIMECELL CLCD PL110 DRIVER | |
868 | M: Russell King <linux@arm.linux.org.uk> | |
869 | S: Maintained | |
8a61f013 | 870 | F: drivers/video/fbdev/amba-clcd.* |
cefbf4ea RK |
871 | |
872 | ARM PRIMECELL KMI PL050 DRIVER | |
873 | M: Russell King <linux@arm.linux.org.uk> | |
874 | S: Maintained | |
875 | F: drivers/input/serio/ambakmi.* | |
876 | F: include/linux/amba/kmi.h | |
877 | ||
2761f5c2 | 878 | ARM PRIMECELL MMCI PL180/1 DRIVER |
08a5c9a2 RK |
879 | M: Russell King <linux@arm.linux.org.uk> |
880 | S: Maintained | |
679655da | 881 | F: drivers/mmc/host/mmci.* |
2f748aaa | 882 | F: include/linux/amba/mmci.h |
2761f5c2 | 883 | |
1b4304e5 RK |
884 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
885 | M: Russell King <linux@arm.linux.org.uk> | |
886 | S: Maintained | |
887 | F: drivers/tty/serial/amba-pl01*.c | |
888 | F: include/linux/amba/serial.h | |
2761f5c2 | 889 | |
cefbf4ea RK |
890 | ARM PRIMECELL BUS SUPPORT |
891 | M: Russell King <linux@arm.linux.org.uk> | |
892 | S: Maintained | |
893 | F: drivers/amba/ | |
894 | F: include/linux/amba/bus.h | |
895 | ||
2b7a52a4 | 896 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 897 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 898 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
899 | S: Maintained |
900 | ||
9c784f95 | 901 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 902 | M: Sergey Lapin <slapin@ossfans.org> |
efc03ecb | 903 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9c784f95 SL |
904 | S: Maintained |
905 | ||
2b7a52a4 | 906 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 907 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 908 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
909 | S: Maintained |
910 | ||
5c6dcd7f | 911 | ARM/Allwinner sunXi SoC support |
1b106699 | 912 | M: Maxime Ripard <maxime.ripard@free-electrons.com> |
5c6dcd7f | 913 | M: Chen-Yu Tsai <wens@csie.org> |
1b106699 MR |
914 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
915 | S: Maintained | |
5c6dcd7f | 916 | N: sun[x456789]i |
60b0f380 MR |
917 | |
918 | ARM/Allwinner SoC Clock Support | |
919 | M: Emilio LĂ³pez <emilio@elopez.com.ar> | |
920 | S: Maintained | |
921 | F: drivers/clk/sunxi/ | |
1b106699 | 922 | |
79318452 | 923 | ARM/Amlogic Meson SoC support |
7c1e3876 CC |
924 | M: Carlo Caione <carlo@caione.org> |
925 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
79318452 CC |
926 | L: linux-meson@googlegroups.com |
927 | W: http://linux-meson.com/ | |
7c1e3876 | 928 | S: Maintained |
79318452 CC |
929 | F: arch/arm/mach-meson/ |
930 | F: arch/arm/boot/dts/meson* | |
931 | N: meson | |
7c1e3876 | 932 | |
eff506fa TZ |
933 | ARM/Annapurna Labs ALPINE ARCHITECTURE |
934 | M: Tsahee Zidenberg <tsahee@annapurnalabs.com> | |
a9e5547b | 935 | M: Antoine Tenart <antoine.tenart@free-electrons.com> |
eff506fa TZ |
936 | S: Maintained |
937 | F: arch/arm/mach-alpine/ | |
a9e5547b AT |
938 | F: arch/arm/boot/dts/alpine* |
939 | F: arch/arm64/boot/dts/al/ | |
940 | F: drivers/*/*alpine* | |
eff506fa | 941 | |
8dca5ce8 | 942 | ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT |
c1fc8675 | 943 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
d68b35f8 | 944 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
c1fc8675 | 945 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
efc03ecb | 946 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
c1fc8675 | 947 | W: http://www.linux4sam.org |
9f273c24 | 948 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git |
c1fc8675 NF |
949 | S: Supported |
950 | F: arch/arm/mach-at91/ | |
f0a0a58e | 951 | F: include/soc/at91/ |
70e389cc MB |
952 | F: arch/arm/boot/dts/at91*.dts |
953 | F: arch/arm/boot/dts/at91*.dtsi | |
954 | F: arch/arm/boot/dts/sama*.dts | |
955 | F: arch/arm/boot/dts/sama*.dtsi | |
5f58c970 | 956 | F: arch/arm/include/debug/at91.S |
d4a89c7d | 957 | |
6e05dd4e BB |
958 | ARM/ATMEL AT91 Clock Support |
959 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
960 | S: Maintained | |
961 | F: drivers/clk/at91 | |
962 | ||
986cf2e9 | 963 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
5d3ad8a6 | 964 | M: Rob Herring <robh@kernel.org> |
986cf2e9 RH |
965 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
966 | S: Maintained | |
967 | F: arch/arm/mach-highbank/ | |
e68d7c14 RH |
968 | F: arch/arm/boot/dts/highbank.dts |
969 | F: arch/arm/boot/dts/ecx-*.dts* | |
986cf2e9 | 970 | |
d94f944e | 971 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
5529c2cd | 972 | M: Krzysztof Halasa <khalasa@piap.pl> |
d94f944e AV |
973 | S: Maintained |
974 | F: arch/arm/mach-cns3xxx/ | |
d94f944e | 975 | |
4863dea3 SG |
976 | ARM/CAVIUM THUNDER NETWORK DRIVER |
977 | M: Sunil Goutham <sgoutham@cavium.com> | |
978 | M: Robert Richter <rric@kernel.org> | |
979 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
980 | S: Supported | |
322e5cc5 | 981 | F: drivers/net/ethernet/cavium/thunder/ |
4863dea3 | 982 | |
386ab516 AS |
983 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
984 | M: Alexander Shiyan <shc_work@mail.ru> | |
985 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
986 | S: Odd Fixes | |
b8ba3874 | 987 | N: clps711x |
386ab516 | 988 | |
2b7a52a4 | 989 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 990 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
1c5454ee | 991 | M: Ryan Mallon <rmallon@gmail.com> |
efc03ecb | 992 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 | 993 | S: Maintained |
d19d3667 HS |
994 | F: arch/arm/mach-ep93xx/ |
995 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
996 | |
997 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 998 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 999 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1000 | S: Maintained |
1001 | ||
d4275354 | 1002 | ARM/CLKDEV SUPPORT |
8b58be88 | 1003 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1004 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
37417046 | 1005 | S: Maintained |
d4275354 | 1006 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 1007 | F: drivers/clk/clkdev.c |
d4275354 | 1008 | |
d48134e7 | 1009 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 1010 | M: Mike Rapoport <mike@compulab.co.il> |
efc03ecb | 1011 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
a9da4f7e RK |
1012 | S: Maintained |
1013 | ||
94150095 HF |
1014 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
1015 | M: Hubert Feurstein <hubert.feurstein@contec.at> | |
1016 | S: Maintained | |
1017 | F: arch/arm/mach-ep93xx/micro9.c | |
1018 | ||
a06ae860 PP |
1019 | ARM/CORESIGHT FRAMEWORK AND DRIVERS |
1020 | M: Mathieu Poirier <mathieu.poirier@linaro.org> | |
1021 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1022 | S: Maintained | |
01081f5a | 1023 | F: drivers/hwtracing/coresight/* |
a06ae860 PP |
1024 | F: Documentation/trace/coresight.txt |
1025 | F: Documentation/devicetree/bindings/arm/coresight.txt | |
7a25ec8e | 1026 | F: Documentation/ABI/testing/sysfs-bus-coresight-devices-* |
a06ae860 | 1027 | |
1da177e4 | 1028 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 1029 | M: Richard Purdie <rpurdie@rpsys.net> |
1da177e4 LT |
1030 | S: Maintained |
1031 | ||
881a95f9 | 1032 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 1033 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 1034 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
b60e23ba | 1035 | T: git git://github.com/ulli-kroll/linux.git |
162500b3 | 1036 | S: Maintained |
f49afbb5 | 1037 | F: arch/arm/mach-gemini/ |
98a9bb5b | 1038 | F: drivers/rtc/rtc-gemini.c |
881a95f9 | 1039 | |
a990cbd8 | 1040 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
5abf58bf | 1041 | M: Barry Song <baohua@kernel.org> |
a990cbd8 | 1042 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
85529d14 | 1043 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
a990cbd8 | 1044 | S: Maintained |
e68d7c14 | 1045 | F: arch/arm/boot/dts/prima2* |
a990cbd8 | 1046 | F: arch/arm/mach-prima2/ |
4a9c44f1 | 1047 | F: drivers/clk/sirf/ |
05f30e8d | 1048 | F: drivers/clocksource/timer-prima2.c |
5833ac98 | 1049 | F: drivers/clocksource/timer-atlas7.c |
f8505ef5 | 1050 | N: [^a-z]sirf |
a990cbd8 | 1051 | |
c9d862c4 BS |
1052 | ARM/CONEXANT DIGICOLOR MACHINE SUPPORT |
1053 | M: Baruch Siach <baruch@tkos.co.il> | |
1054 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1055 | S: Maintained | |
cde137aa | 1056 | F: arch/arm/boot/dts/cx92755* |
c9d862c4 BS |
1057 | N: digicolor |
1058 | ||
d4275354 | 1059 | ARM/EBSA110 MACHINE SUPPORT |
8b58be88 | 1060 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1061 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1062 | W: http://www.arm.linux.org.uk/ |
1063 | S: Maintained | |
1064 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 1065 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 1066 | |
4721f3ce UKK |
1067 | ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT |
1068 | M: Uwe Kleine-König <kernel@pengutronix.de> | |
1069 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1070 | S: Maintained | |
1071 | N: efm32 | |
1072 | ||
a9da4f7e | 1073 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
1074 | M: Daniel Ribeiro <drwyrm@gmail.com> |
1075 | M: Stefan Schmidt <stefan@openezx.org> | |
1076 | M: Harald Welte <laforge@openezx.org> | |
d66f1886 | 1077 | L: openezx-devel@lists.openezx.org (moderated for non-subscribers) |
a9da4f7e RK |
1078 | W: http://www.openezx.org/ |
1079 | S: Maintained | |
cafc2265 SS |
1080 | T: topgit git://git.openezx.org/openezx.git |
1081 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 1082 | |
6a915af9 | 1083 | ARM/FARADAY FA526 PORT |
162500b3 | 1084 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 1085 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
162500b3 | 1086 | S: Maintained |
1fa7e547 | 1087 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 1088 | F: arch/arm/mm/*-fa* |
6a915af9 | 1089 | |
d4275354 | 1090 | ARM/FOOTBRIDGE ARCHITECTURE |
8b58be88 | 1091 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1092 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1093 | W: http://www.arm.linux.org.uk/ |
1094 | S: Maintained | |
1095 | F: arch/arm/include/asm/hardware/dec21285.h | |
1096 | F: arch/arm/mach-footbridge/ | |
1097 | ||
86183a5f | 1098 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
7609ea2a | 1099 | M: Shawn Guo <shawnguo@kernel.org> |
8b58be88 | 1100 | M: Sascha Hauer <kernel@pengutronix.de> |
efc03ecb | 1101 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
86183a5f | 1102 | S: Maintained |
f1c12837 | 1103 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
adf79292 | 1104 | F: arch/arm/mach-imx/ |
ce515a6b | 1105 | F: arch/arm/mach-mxs/ |
2a82f95c | 1106 | F: arch/arm/boot/dts/imx* |
e5dafa22 | 1107 | F: arch/arm/configs/imx*_defconfig |
cf20968a SG |
1108 | F: drivers/clk/imx/ |
1109 | F: include/soc/imx/ | |
86183a5f | 1110 | |
142109d2 | 1111 | ARM/FREESCALE VYBRID ARM ARCHITECTURE |
7609ea2a | 1112 | M: Shawn Guo <shawnguo@kernel.org> |
142109d2 SA |
1113 | M: Sascha Hauer <kernel@pengutronix.de> |
1114 | R: Stefan Agner <stefan@agner.ch> | |
1115 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1116 | S: Maintained | |
1117 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git | |
1118 | F: arch/arm/mach-imx/*vf610* | |
1119 | F: arch/arm/boot/dts/vf* | |
1120 | ||
2b7a52a4 | 1121 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 1122 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1123 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1124 | S: Maintained |
1125 | ||
90b8fc34 | 1126 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 1127 | M: Steve Sakoman <sakoman@gmail.com> |
efc03ecb | 1128 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
90b8fc34 JK |
1129 | S: Maintained |
1130 | ||
ef47d5f0 | 1131 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 1132 | M: Philipp Zabel <philipp.zabel@gmail.com> |
12a93f32 PZ |
1133 | M: Paul Parsons <lost.distance@yahoo.com> |
1134 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
ef47d5f0 PZ |
1135 | S: Maintained |
1136 | F: arch/arm/mach-pxa/hx4700.c | |
1137 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 1138 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 1139 | |
4dfad069 WX |
1140 | ARM/HISILICON SOC SUPPORT |
1141 | M: Wei Xu <xuwei5@hisilicon.com> | |
1142 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1143 | W: http://www.hisilicon.com | |
1144 | S: Supported | |
1145 | T: git git://github.com/hisilicon/linux-hisi.git | |
1146 | F: arch/arm/mach-hisi/ | |
e68d7c14 RH |
1147 | F: arch/arm/boot/dts/hi3* |
1148 | F: arch/arm/boot/dts/hip* | |
1149 | F: arch/arm/boot/dts/hisi* | |
1150 | F: arch/arm64/boot/dts/hisilicon/ | |
4dfad069 | 1151 | |
21f37bc3 | 1152 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 1153 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
795fb7e7 JD |
1154 | W: www.jlime.com |
1155 | S: Maintained | |
084bad91 KE |
1156 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
1157 | F: arch/arm/mach-sa1100/jornada720.c | |
1158 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 1159 | |
5e767ab9 JMC |
1160 | ARM/IGEP MACHINE SUPPORT |
1161 | M: Enric Balletbo i Serra <eballetbo@gmail.com> | |
1162 | M: Javier Martinez Canillas <javier@dowhile0.org> | |
1163 | L: linux-omap@vger.kernel.org | |
1164 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1165 | S: Maintained | |
06ff74fd | 1166 | F: arch/arm/boot/dts/omap3-igep* |
5e767ab9 | 1167 | |
403d2971 MV |
1168 | ARM/INCOME PXA270 SUPPORT |
1169 | M: Marek Vasut <marek.vasut@gmail.com> | |
1170 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1171 | S: Maintained | |
ec154082 | 1172 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 1173 | |
2b7a52a4 | 1174 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 1175 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1176 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1177 | S: Maintained |
e2bdb176 DW |
1178 | |
1179 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
efc03ecb | 1180 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
08223d80 | 1181 | S: Orphan |
2b7a52a4 LB |
1182 | |
1183 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 1184 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1185 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1186 | S: Maintained |
2b7a52a4 LB |
1187 | |
1188 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 1189 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1190 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1191 | S: Maintained |
2b7a52a4 | 1192 | |
2b7a52a4 | 1193 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 1194 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1195 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1196 | S: Maintained |
1197 | ||
dfdd8cc9 KH |
1198 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
1199 | M: Imre Kaloz <kaloz@openwrt.org> | |
5529c2cd | 1200 | M: Krzysztof Halasa <khalasa@piap.pl> |
baea7b94 | 1201 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
dfdd8cc9 KH |
1202 | S: Maintained |
1203 | F: arch/arm/mach-ixp4xx/ | |
1204 | ||
838553c5 | 1205 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
1206 | M: Jonathan Cameron <jic23@cam.ac.uk> |
1207 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1208 | S: Maintained | |
1209 | F: arch/arm/mach-pxa/stargate2.c | |
1210 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
1211 | ||
2b7a52a4 | 1212 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 1213 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1214 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1215 | S: Maintained |
2b7a52a4 LB |
1216 | |
1217 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 1218 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1219 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1220 | S: Maintained |
1221 | ||
1154f858 | 1222 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
97215800 | 1223 | M: Santosh Shilimkar <ssantosh@kernel.org> |
1154f858 SS |
1224 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1225 | S: Maintained | |
1226 | F: arch/arm/mach-keystone/ | |
e68d7c14 | 1227 | F: arch/arm/boot/dts/k2* |
317929cd | 1228 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
1154f858 | 1229 | |
bc6aa566 | 1230 | ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK |
97215800 | 1231 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1232 | L: linux-kernel@vger.kernel.org |
1233 | S: Maintained | |
1234 | F: drivers/clk/keystone/ | |
1235 | ||
1236 | ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE | |
97215800 | 1237 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1238 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1239 | L: linux-kernel@vger.kernel.org | |
1240 | S: Maintained | |
1241 | F: drivers/clocksource/timer-keystone.c | |
1242 | ||
1243 | ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER | |
97215800 | 1244 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1245 | L: linux-kernel@vger.kernel.org |
1246 | S: Maintained | |
1247 | F: drivers/power/reset/keystone-reset.c | |
1248 | ||
1249 | ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS | |
97215800 | 1250 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1251 | L: linux-kernel@vger.kernel.org |
1252 | S: Maintained | |
1253 | F: drivers/memory/*emif* | |
1254 | ||
2b7a52a4 | 1255 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
8b58be88 | 1256 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1257 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1258 | S: Maintained |
1259 | ||
3143875f JE |
1260 | ARM/LPC18XX ARCHITECTURE |
1261 | M: Joachim Eastwood <manabian@gmail.com> | |
1262 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1263 | S: Maintained | |
19c1c32c JE |
1264 | F: arch/arm/boot/dts/lpc43* |
1265 | F: drivers/clk/nxp/clk-lpc18xx* | |
1266 | F: drivers/clocksource/time-lpc32xx.c | |
1267 | F: drivers/i2c/busses/i2c-lpc2k.c | |
1268 | F: drivers/memory/pl172.c | |
1269 | F: drivers/mtd/spi-nor/nxp-spifi.c | |
1270 | F: drivers/rtc/rtc-lpc24xx.c | |
3143875f JE |
1271 | N: lpc18xx |
1272 | ||
3b886171 | 1273 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 1274 | M: Philipp Zabel <philipp.zabel@gmail.com> |
3b886171 PZ |
1275 | S: Maintained |
1276 | ||
31c17ac9 | 1277 | ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support |
75f41273 TP |
1278 | M: Jason Cooper <jason@lakedaemon.net> |
1279 | M: Andrew Lunn <andrew@lunn.ch> | |
1280 | M: Gregory Clement <gregory.clement@free-electrons.com> | |
dcb71503 | 1281 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
75f41273 TP |
1282 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1283 | S: Maintained | |
1284 | F: arch/arm/mach-mvebu/ | |
59ec9671 | 1285 | F: drivers/rtc/rtc-armada38x.c |
31c17ac9 GC |
1286 | F: arch/arm/boot/dts/armada* |
1287 | F: arch/arm/boot/dts/kirkwood* | |
1288 | ||
75f41273 | 1289 | |
40f4978b SH |
1290 | ARM/Marvell Berlin SoC support |
1291 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> | |
1292 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1293 | S: Maintained | |
1294 | F: arch/arm/mach-berlin/ | |
31c17ac9 | 1295 | F: arch/arm/boot/dts/berlin* |
e68d7c14 | 1296 | F: arch/arm64/boot/dts/marvell/berlin* |
31c17ac9 | 1297 | |
40f4978b | 1298 | |
4cfab57e | 1299 | ARM/Marvell Dove/MV78xx0/Orion SOC support |
4f1312b0 NP |
1300 | M: Jason Cooper <jason@lakedaemon.net> |
1301 | M: Andrew Lunn <andrew@lunn.ch> | |
dcb71503 | 1302 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
bfda4031 | 1303 | M: Gregory Clement <gregory.clement@free-electrons.com> |
efc03ecb | 1304 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4f1312b0 NP |
1305 | S: Maintained |
1306 | F: arch/arm/mach-dove/ | |
54a246ff NP |
1307 | F: arch/arm/mach-mv78xx0/ |
1308 | F: arch/arm/mach-orion5x/ | |
1309 | F: arch/arm/plat-orion/ | |
31c17ac9 GC |
1310 | F: arch/arm/boot/dts/dove* |
1311 | F: arch/arm/boot/dts/orion5x* | |
1312 | ||
3b886171 | 1313 | |
d69ac131 AC |
1314 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
1315 | M: Alexander Clouter <alex@digriz.org.uk> | |
1316 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1317 | W: http://www.digriz.org.uk/ts78xx/kernel | |
1318 | S: Maintained | |
1319 | F: arch/arm/mach-orion5x/ts78xx-* | |
1320 | ||
607b8fc9 EH |
1321 | ARM/Mediatek RTC DRIVER |
1322 | M: Eddie Huang <eddie.huang@mediatek.com> | |
1323 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1324 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) | |
1325 | S: Maintained | |
1326 | F: drivers/rtc/rtc-mt6397.c | |
1327 | ||
e54951c8 MB |
1328 | ARM/Mediatek SoC support |
1329 | M: Matthias Brugger <matthias.bgg@gmail.com> | |
1330 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
17b199d6 | 1331 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) |
e54951c8 MB |
1332 | S: Maintained |
1333 | F: arch/arm/boot/dts/mt6* | |
1334 | F: arch/arm/boot/dts/mt8* | |
1335 | F: arch/arm/mach-mediatek/ | |
1336 | N: mtk | |
1337 | K: mediatek | |
1338 | ||
0f8669e3 CY |
1339 | ARM/Mediatek USB3 PHY DRIVER |
1340 | M: Chunfeng Yun <chunfeng.yun@mediatek.com> | |
1341 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1342 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) | |
1343 | S: Maintained | |
1344 | F: drivers/phy/phy-mt65xx-usb3.c | |
1345 | ||
adcb079f AB |
1346 | ARM/MICREL KS8695 ARCHITECTURE |
1347 | M: Greg Ungerer <gerg@uclinux.org> | |
1348 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
14430813 | 1349 | F: arch/arm/mach-ks8695/ |
adcb079f AB |
1350 | S: Odd Fixes |
1351 | ||
d78ff0a5 | 1352 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1353 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 1354 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d78ff0a5 RJ |
1355 | F: arch/arm/mach-pxa/mioa701.c |
1356 | S: Maintained | |
1357 | ||
9624dfe6 | 1358 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1359 | M: Michael Petchkovsky <mkpetch@internode.on.net> |
9624dfe6 KE |
1360 | S: Maintained |
1361 | ||
e0ee9851 | 1362 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1363 | M: Alessandro Rubini <rubini@unipv.it> |
e4651a9f | 1364 | M: Linus Walleij <linus.walleij@linaro.org> |
28b8e8d4 JP |
1365 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1366 | S: Maintained | |
1367 | F: arch/arm/mach-nomadik/ | |
ecc265fe | 1368 | F: drivers/pinctrl/nomadik/ |
87572880 | 1369 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1370 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1371 | |
9d76295a | 1372 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1373 | M: Nelson Castillo <arhuaco@freaks-unidos.net> |
9d76295a AG |
1374 | L: openmoko-kernel@lists.openmoko.org (subscribers-only) |
1375 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1376 | S: Supported | |
1377 | ||
8459c159 | 1378 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1379 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
1380 | M: Dirk Opfer <dirk@opfer-online.de> | |
8459c159 DO |
1381 | S: Maintained |
1382 | ||
5d783a2d | 1383 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1384 | M: Marek Vasut <marek.vasut@gmail.com> |
75280787 | 1385 | L: linux-arm-kernel@lists.infradead.org |
b5e4ad57 MV |
1386 | W: http://hackndev.com |
1387 | S: Maintained | |
933d35f0 JP |
1388 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1389 | F: arch/arm/mach-pxa/palmtx.c | |
1390 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1391 | F: arch/arm/mach-pxa/palmt5.c | |
1392 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1393 | F: arch/arm/mach-pxa/palmld.c | |
1394 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1395 | F: arch/arm/mach-pxa/palmte2.c | |
1396 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1397 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1398 | |
b57fe924 | 1399 | ARM/PALM TREO SUPPORT |
d8130624 | 1400 | M: Tomas Cech <sleep_walker@suse.com> |
75280787 | 1401 | L: linux-arm-kernel@lists.infradead.org |
90af5811 TSC |
1402 | W: http://hackndev.com |
1403 | S: Maintained | |
b57fe924 JP |
1404 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1405 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1406 | |
c49e1e63 | 1407 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1408 | M: Sergey Lapin <slapin@ossfans.org> |
75280787 | 1409 | L: linux-arm-kernel@lists.infradead.org |
7d2c86b5 JP |
1410 | W: http://hackndev.com |
1411 | S: Maintained | |
933d35f0 JP |
1412 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1413 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1414 | |
1da177e4 | 1415 | ARM/PLEB SUPPORT |
8b58be88 | 1416 | M: Peter Chubb <pleb@gelato.unsw.edu.au> |
1da177e4 LT |
1417 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1418 | S: Maintained | |
1419 | ||
1420 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1421 | M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> |
efc03ecb | 1422 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1da177e4 LT |
1423 | W: http://www.arm.linux.org.uk/ |
1424 | S: Maintained | |
1425 | ||
8fc1b0f8 | 1426 | ARM/QUALCOMM SUPPORT |
bbeaa595 AG |
1427 | M: Andy Gross <andy.gross@linaro.org> |
1428 | M: David Brown <david.brown@linaro.org> | |
8fc1b0f8 | 1429 | L: linux-arm-msm@vger.kernel.org |
f5d3af9d | 1430 | L: linux-soc@vger.kernel.org |
8fc1b0f8 | 1431 | S: Maintained |
0c4cbf9e BA |
1432 | F: arch/arm/boot/dts/qcom-*.dts |
1433 | F: arch/arm/boot/dts/qcom-*.dtsi | |
8fc1b0f8 | 1434 | F: arch/arm/mach-qcom/ |
e68d7c14 | 1435 | F: arch/arm64/boot/dts/qcom/* |
f5d3af9d | 1436 | F: drivers/soc/qcom/ |
c0c89faf SB |
1437 | F: drivers/tty/serial/msm_serial.h |
1438 | F: drivers/tty/serial/msm_serial.c | |
1439 | F: drivers/*/pm8???-* | |
1440 | F: drivers/mfd/ssbi.c | |
916f743d | 1441 | F: drivers/firmware/qcom_scm.c |
bbeaa595 | 1442 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git |
8fc1b0f8 | 1443 | |
2b7a52a4 | 1444 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1445 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1446 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1447 | S: Maintained |
1448 | ||
b138e119 SH |
1449 | ARM/RENESAS ARM64 ARCHITECTURE |
1450 | M: Simon Horman <horms@verge.net.au> | |
1451 | M: Magnus Damm <magnus.damm@gmail.com> | |
1926e54f SH |
1452 | L: linux-renesas-soc@vger.kernel.org |
1453 | Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/ | |
b138e119 SH |
1454 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
1455 | S: Supported | |
1456 | F: arch/arm64/boot/dts/renesas/ | |
1457 | ||
d4275354 | 1458 | ARM/RISCPC ARCHITECTURE |
8b58be88 | 1459 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1460 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1461 | W: http://www.arm.linux.org.uk/ |
1462 | S: Maintained | |
d4275354 RK |
1463 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1464 | F: arch/arm/include/asm/hardware/ioc.h | |
1465 | F: arch/arm/include/asm/hardware/iomd.h | |
1466 | F: arch/arm/include/asm/hardware/memc.h | |
1467 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1468 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1469 | F: drivers/net/ethernet/i825xx/ether1* |
1470 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1471 | F: drivers/scsi/arm/ |
1472 | ||
08ddbb0a HS |
1473 | ARM/Rockchip SoC support |
1474 | M: Heiko Stuebner <heiko@sntech.de> | |
1475 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
00250b52 | 1476 | L: linux-rockchip@lists.infradead.org |
9f273c24 | 1477 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git |
08ddbb0a | 1478 | S: Maintained |
541555e9 | 1479 | F: arch/arm/boot/dts/rk3* |
08ddbb0a | 1480 | F: arch/arm/mach-rockchip/ |
541555e9 HS |
1481 | F: drivers/clk/rockchip/ |
1482 | F: drivers/i2c/busses/i2c-rk3x.c | |
08ddbb0a | 1483 | F: drivers/*/*rockchip* |
541555e9 HS |
1484 | F: drivers/*/*/*rockchip* |
1485 | F: sound/soc/rockchip/ | |
b4331b43 | 1486 | N: rockchip |
08ddbb0a | 1487 | |
5bfb937c KK |
1488 | ARM/SAMSUNG EXYNOS ARM ARCHITECTURES |
1489 | M: Kukjin Kim <kgene@kernel.org> | |
e8f98457 | 1490 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> |
efc03ecb | 1491 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7a549d78 | 1492 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
b21477f9 | 1493 | S: Maintained |
6f0589c8 | 1494 | F: arch/arm/boot/dts/s3c* |
e68d7c14 RH |
1495 | F: arch/arm/boot/dts/s5p* |
1496 | F: arch/arm/boot/dts/samsung* | |
6f0589c8 | 1497 | F: arch/arm/boot/dts/exynos* |
d97236e6 | 1498 | F: arch/arm64/boot/dts/exynos/ |
482ce512 | 1499 | F: arch/arm/plat-samsung/ |
769bbb63 HS |
1500 | F: arch/arm/mach-s3c24*/ |
1501 | F: arch/arm/mach-s3c64xx/ | |
5bfb937c KK |
1502 | F: arch/arm/mach-s5p*/ |
1503 | F: arch/arm/mach-exynos*/ | |
eb2ffcaf BD |
1504 | F: drivers/*/*s3c2410* |
1505 | F: drivers/*/*/*s3c2410* | |
40c76662 MB |
1506 | F: drivers/spi/spi-s3c* |
1507 | F: sound/soc/samsung/* | |
d6b9aea6 KK |
1508 | F: Documentation/arm/Samsung/ |
1509 | F: Documentation/devicetree/bindings/arm/samsung/ | |
1510 | F: Documentation/devicetree/bindings/sram/samsung-sram.txt | |
1511 | F: Documentation/devicetree/bindings/power/pd-samsung.txt | |
33d43cdd | 1512 | N: exynos |
f556cb07 | 1513 | |
10ffa964 KP |
1514 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1515 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1516 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1517 | S: Maintained | |
004bbd3c | 1518 | F: arch/arm/mach-s5pv210/ |
10ffa964 | 1519 | |
3ce4ccb6 KD |
1520 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1521 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1522 | M: Kamil Debski <k.debski@samsung.com> | |
1523 | L: linux-arm-kernel@lists.infradead.org | |
1524 | L: linux-media@vger.kernel.org | |
1525 | S: Maintained | |
1526 | F: drivers/media/platform/s5p-g2d/ | |
1527 | ||
e6a476fd MS |
1528 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1529 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1530 | M: Kamil Debski <k.debski@samsung.com> | |
6305902c | 1531 | M: Jeongtae Park <jtp.park@samsung.com> |
e6a476fd MS |
1532 | L: linux-arm-kernel@lists.infradead.org |
1533 | L: linux-media@vger.kernel.org | |
1534 | S: Maintained | |
934455d7 | 1535 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1536 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd MS |
1537 | |
1538 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT | |
1539 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1540 | M: Tomasz Stanislawski <t.stanislaws@samsung.com> | |
1541 | L: linux-arm-kernel@lists.infradead.org | |
1542 | L: linux-media@vger.kernel.org | |
1543 | S: Maintained | |
90d72ac6 | 1544 | F: drivers/media/platform/s5p-tv/ |
e6a476fd | 1545 | |
7d9f9bf4 AP |
1546 | ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT |
1547 | M: Andrzej Pietrasiewicz <andrzej.p@samsung.com> | |
1548 | M: Jacek Anaszewski <j.anaszewski@samsung.com> | |
1549 | L: linux-arm-kernel@lists.infradead.org | |
1550 | L: linux-media@vger.kernel.org | |
1551 | S: Maintained | |
1552 | F: drivers/media/platform/s5p-jpeg/ | |
1553 | ||
d48d38e8 | 1554 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1555 | M: Simon Horman <horms@verge.net.au> |
d48d38e8 | 1556 | M: Magnus Damm <magnus.damm@gmail.com> |
4a121096 | 1557 | L: linux-renesas-soc@vger.kernel.org |
4a121096 | 1558 | Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/ |
5e212598 | 1559 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 | 1560 | S: Supported |
0b514fdb SH |
1561 | F: arch/arm/boot/dts/emev2* |
1562 | F: arch/arm/boot/dts/r7s* | |
1563 | F: arch/arm/boot/dts/r8a* | |
1564 | F: arch/arm/boot/dts/sh* | |
0b514fdb | 1565 | F: arch/arm/configs/shmobile_defconfig |
7a2071c5 | 1566 | F: arch/arm/include/debug/renesas-scif.S |
d48d38e8 PM |
1567 | F: arch/arm/mach-shmobile/ |
1568 | F: drivers/sh/ | |
1569 | ||
66314223 | 1570 | ARM/SOCFPGA ARCHITECTURE |
ba2b7d0a | 1571 | M: Dinh Nguyen <dinguyen@opensource.altera.com> |
66314223 DN |
1572 | S: Maintained |
1573 | F: arch/arm/mach-socfpga/ | |
efadb751 DN |
1574 | F: arch/arm/boot/dts/socfpga* |
1575 | F: arch/arm/configs/socfpga_defconfig | |
e68d7c14 | 1576 | F: arch/arm64/boot/dts/altera/ |
ba2b7d0a | 1577 | W: http://www.rocketboards.org |
efadb751 | 1578 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git |
66314223 DN |
1579 | |
1580 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
ba2b7d0a | 1581 | M: Dinh Nguyen <dinguyen@opensource.altera.com> |
66314223 DN |
1582 | S: Maintained |
1583 | F: drivers/clk/socfpga/ | |
1584 | ||
71bcada8 TT |
1585 | ARM/SOCFPGA EDAC SUPPORT |
1586 | M: Thor Thayer <tthayer@opensource.altera.com> | |
1587 | S: Maintained | |
1588 | F: drivers/edac/altera_edac. | |
1589 | ||
65ebcc11 | 1590 | ARM/STI ARCHITECTURE |
a92177ea SK |
1591 | M: Srinivas Kandagatla <srinivas.kandagatla@gmail.com> |
1592 | M: Maxime Coquelin <maxime.coquelin@st.com> | |
1593 | M: Patrice Chotard <patrice.chotard@st.com> | |
65ebcc11 SK |
1594 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1595 | L: kernel@stlinux.com | |
1596 | W: http://www.stlinux.com | |
1597 | S: Maintained | |
1598 | F: arch/arm/mach-sti/ | |
a92177ea | 1599 | F: arch/arm/boot/dts/sti* |
b8e31bf3 | 1600 | F: drivers/char/hw_random/st-rng.c |
a92177ea | 1601 | F: drivers/clocksource/arm_global_timer.c |
82805d1b | 1602 | F: drivers/clocksource/clksrc_st_lpc.c |
a92177ea | 1603 | F: drivers/i2c/busses/i2c-st.c |
346e2e4a | 1604 | F: drivers/media/rc/st_rc.c |
95d66b16 | 1605 | F: drivers/media/platform/sti/c8sectpfe/ |
f53b2bff | 1606 | F: drivers/mmc/host/sdhci-st.c |
e95cf393 PG |
1607 | F: drivers/phy/phy-miphy28lp.c |
1608 | F: drivers/phy/phy-miphy365x.c | |
6da969a5 | 1609 | F: drivers/phy/phy-stih407-usb.c |
26389c78 | 1610 | F: drivers/phy/phy-stih41x-usb.c |
346e2e4a GKH |
1611 | F: drivers/pinctrl/pinctrl-st.c |
1612 | F: drivers/reset/sti/ | |
db4112e6 | 1613 | F: drivers/rtc/rtc-st-lpc.c |
346e2e4a | 1614 | F: drivers/tty/serial/st-asc.c |
eb11adab | 1615 | F: drivers/usb/dwc3/dwc3-st.c |
62f6f086 PG |
1616 | F: drivers/usb/host/ehci-st.c |
1617 | F: drivers/usb/host/ohci-st.c | |
db4112e6 | 1618 | F: drivers/watchdog/st_lpc_wdt.c |
daac6f86 | 1619 | F: drivers/ata/ahci_st.c |
65ebcc11 | 1620 | |
ee6e7879 MC |
1621 | ARM/STM32 ARCHITECTURE |
1622 | M: Maxime Coquelin <mcoquelin.stm32@gmail.com> | |
1623 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1624 | S: Maintained | |
1625 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git | |
1626 | N: stm32 | |
1627 | F: drivers/clocksource/armv7m_systick.c | |
1628 | ||
d6de5b02 MG |
1629 | ARM/TANGO ARCHITECTURE |
1630 | M: Marc Gonzalez <marc_gonzalez@sigmadesigns.com> | |
1631 | L: linux-arm-kernel@lists.infradead.org | |
1632 | S: Maintained | |
1633 | F: arch/arm/mach-tango/ | |
1634 | F: arch/arm/boot/dts/tango* | |
1635 | ||
2b7a52a4 | 1636 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1637 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1638 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1639 | S: Maintained |
1640 | ||
1bbd7089 | 1641 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1642 | M: "Mark F. Brown" <mark.brown314@gmail.com> |
1bbd7089 MB |
1643 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1644 | S: Maintained | |
1645 | ||
2b7a52a4 | 1646 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1647 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1648 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1649 | S: Maintained |
1650 | ||
98ad6e3b | 1651 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1652 | M: Wan ZongShun <mcuos.com@gmail.com> |
efc03ecb | 1653 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7d2c86b5 JP |
1654 | W: http://www.mcuos.com |
1655 | S: Maintained | |
4e89e8f6 | 1656 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1657 | F: drivers/input/keyboard/w90p910_keypad.c |
1658 | F: drivers/input/touchscreen/w90p910_ts.c | |
1659 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1660 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1661 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1662 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1663 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 | 1664 | F: drivers/usb/host/ehci-w90x900.c |
8a61f013 | 1665 | F: drivers/video/fbdev/nuc900fb.c |
98ad6e3b | 1666 | |
54274d71 | 1667 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1668 | M: Linus Walleij <linus.walleij@linaro.org> |
54274d71 LW |
1669 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1670 | S: Supported | |
1671 | F: arch/arm/mach-u300/ | |
9affbd24 | 1672 | F: drivers/clocksource/timer-u300.c |
54274d71 LW |
1673 | F: drivers/i2c/busses/i2c-stu300.c |
1674 | F: drivers/rtc/rtc-coh901331.c | |
1675 | F: drivers/watchdog/coh901327_wdt.c | |
1676 | F: drivers/dma/coh901318* | |
87572880 LW |
1677 | F: drivers/mfd/ab3100* |
1678 | F: drivers/rtc/rtc-ab3100.c | |
1679 | F: drivers/rtc/rtc-coh901331.c | |
1680 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1681 | |
3d00d04f MY |
1682 | ARM/UNIPHIER ARCHITECTURE |
1683 | M: Masahiro Yamada <yamada.masahiro@socionext.com> | |
1684 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1685 | S: Maintained | |
a3ff83d2 | 1686 | F: arch/arm/boot/dts/uniphier* |
e7ecbc05 | 1687 | F: arch/arm/include/asm/hardware/cache-uniphier.h |
3d00d04f | 1688 | F: arch/arm/mach-uniphier/ |
e7ecbc05 | 1689 | F: arch/arm/mm/cache-uniphier.c |
e1a0ebc8 | 1690 | F: arch/arm64/boot/dts/socionext/ |
4b7f48d3 | 1691 | F: drivers/bus/uniphier-system-bus.c |
dd6fd4a3 | 1692 | F: drivers/i2c/busses/i2c-uniphier* |
a3ff83d2 MY |
1693 | F: drivers/pinctrl/uniphier/ |
1694 | F: drivers/tty/serial/8250/8250_uniphier.c | |
3d00d04f MY |
1695 | N: uniphier |
1696 | ||
87572880 | 1697 | ARM/Ux500 ARM ARCHITECTURE |
e4651a9f | 1698 | M: Linus Walleij <linus.walleij@linaro.org> |
870725d9 SK |
1699 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1700 | S: Maintained | |
1701 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1702 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1703 | F: drivers/dma/ste_dma40* |
e4651a9f | 1704 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1705 | F: drivers/mfd/abx500* |
1706 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1707 | F: drivers/mfd/dbx500* |
1708 | F: drivers/mfd/db8500* | |
ecc265fe JP |
1709 | F: drivers/pinctrl/nomadik/pinctrl-ab* |
1710 | F: drivers/pinctrl/nomadik/pinctrl-nomadik* | |
87572880 | 1711 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1712 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1713 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1714 | |
e93fde28 UH |
1715 | ARM/Ux500 CLOCK FRAMEWORK SUPPORT |
1716 | M: Ulf Hansson <ulf.hansson@linaro.org> | |
1717 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1718 | T: git git://git.linaro.org/people/ulfh/clk.git | |
1719 | S: Maintained | |
1720 | F: drivers/clk/ux500/ | |
1721 | F: include/linux/platform_data/clk-ux500.h | |
1722 | ||
740d93b1 PM |
1723 | ARM/VERSATILE EXPRESS PLATFORM |
1724 | M: Liviu Dudau <liviu.dudau@arm.com> | |
1725 | M: Sudeep Holla <sudeep.holla@arm.com> | |
1726 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
1727 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1728 | S: Maintained | |
1729 | F: arch/arm/boot/dts/vexpress* | |
e68d7c14 | 1730 | F: arch/arm64/boot/dts/arm/ |
740d93b1 PM |
1731 | F: arch/arm/mach-vexpress/ |
1732 | F: */*/vexpress* | |
7e8f403f | 1733 | F: */*/*/vexpress* |
740d93b1 PM |
1734 | F: drivers/clk/versatile/clk-vexpress-osc.c |
1735 | F: drivers/clocksource/versatile.c | |
1736 | ||
d4275354 | 1737 | ARM/VFP SUPPORT |
8b58be88 | 1738 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1739 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1740 | W: http://www.arm.linux.org.uk/ |
1741 | S: Maintained | |
1742 | F: arch/arm/vfp/ | |
1743 | ||
e66b6d8e MV |
1744 | ARM/VOIPAC PXA270 SUPPORT |
1745 | M: Marek Vasut <marek.vasut@gmail.com> | |
1746 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1747 | S: Maintained | |
1748 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1749 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1750 | |
04529fe2 TP |
1751 | ARM/VT8500 ARM ARCHITECTURE |
1752 | M: Tony Prisk <linux@prisktech.co.nz> | |
1753 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1754 | S: Maintained | |
1755 | F: arch/arm/mach-vt8500/ | |
41fd91b4 | 1756 | F: drivers/clocksource/vt8500_timer.c |
560746eb | 1757 | F: drivers/i2c/busses/i2c-wmt.c |
41fd91b4 TP |
1758 | F: drivers/mmc/host/wmt-sdmmc.c |
1759 | F: drivers/pwm/pwm-vt8500.c | |
1760 | F: drivers/rtc/rtc-vt8500.c | |
1761 | F: drivers/tty/serial/vt8500_serial.c | |
4f31102b | 1762 | F: drivers/usb/host/ehci-platform.c |
41fd91b4 | 1763 | F: drivers/usb/host/uhci-platform.c |
8a61f013 JH |
1764 | F: drivers/video/fbdev/vt8500lcdfb.* |
1765 | F: drivers/video/fbdev/wm8505fb* | |
1766 | F: drivers/video/fbdev/wmt_ge_rops.* | |
04529fe2 | 1767 | |
e66b6d8e MV |
1768 | ARM/ZIPIT Z2 SUPPORT |
1769 | M: Marek Vasut <marek.vasut@gmail.com> | |
1770 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1771 | S: Maintained | |
1772 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1773 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1774 | |
5ecc4b53 JN |
1775 | ARM/ZTE ARCHITECTURE |
1776 | M: Jun Nie <jun.nie@linaro.org> | |
1777 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1778 | S: Maintained | |
1779 | F: arch/arm/mach-zx/ | |
1780 | F: drivers/clk/zte/ | |
1781 | F: Documentation/devicetree/bindings/arm/zte.txt | |
1782 | F: Documentation/devicetree/bindings/clock/zx296702-clk.txt | |
1783 | ||
51f29d44 MS |
1784 | ARM/ZYNQ ARCHITECTURE |
1785 | M: Michal Simek <michal.simek@xilinx.com> | |
f0fd9ad8 | 1786 | R: Sören Brinkmann <soren.brinkmann@xilinx.com> |
51f29d44 MS |
1787 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1788 | W: http://wiki.xilinx.com | |
d6448b76 | 1789 | T: git https://github.com/Xilinx/linux-xlnx.git |
51f29d44 MS |
1790 | S: Supported |
1791 | F: arch/arm/mach-zynq/ | |
bd2a337a | 1792 | F: drivers/cpuidle/cpuidle-zynq.c |
fb9d4959 | 1793 | F: drivers/block/xsysace.c |
c2fd4e38 MS |
1794 | N: zynq |
1795 | N: xilinx | |
1796 | F: drivers/clocksource/cadence_ttc_timer.c | |
df8eb569 | 1797 | F: drivers/i2c/busses/i2c-cadence.c |
e3ec3a3d | 1798 | F: drivers/mmc/host/sdhci-of-arasan.c |
ae9b56e3 | 1799 | F: drivers/edac/synopsys_edac.c |
51f29d44 | 1800 | |
48ec83bc | 1801 | ARM SMMU DRIVERS |
b8f9879e WD |
1802 | M: Will Deacon <will.deacon@arm.com> |
1803 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1804 | S: Maintained | |
1805 | F: drivers/iommu/arm-smmu.c | |
48ec83bc | 1806 | F: drivers/iommu/arm-smmu-v3.c |
e1d3c0fd | 1807 | F: drivers/iommu/io-pgtable-arm.c |
b8f9879e | 1808 | |
38074229 CM |
1809 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1810 | M: Catalin Marinas <catalin.marinas@arm.com> | |
d19766ec | 1811 | M: Will Deacon <will.deacon@arm.com> |
38074229 | 1812 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9f273c24 | 1813 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git |
38074229 CM |
1814 | S: Maintained |
1815 | F: arch/arm64/ | |
d19766ec | 1816 | F: Documentation/arm64/ |
38074229 | 1817 | |
9d7005f9 LP |
1818 | AS3645A LED FLASH CONTROLLER DRIVER |
1819 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
1820 | L: linux-media@vger.kernel.org | |
1821 | T: git git://linuxtv.org/media_tree.git | |
1822 | S: Maintained | |
1823 | F: drivers/media/i2c/as3645a.c | |
b5dcee22 | 1824 | F: include/media/i2c/as3645a.h |
9d7005f9 | 1825 | |
d58de038 GJ |
1826 | ASC7621 HARDWARE MONITOR DRIVER |
1827 | M: George Joseph <george.joseph@fairview5.com> | |
1828 | L: lm-sensors@lm-sensors.org | |
1829 | S: Maintained | |
1830 | F: Documentation/hwmon/asc7621 | |
1831 | F: drivers/hwmon/asc7621.c | |
1832 | ||
b229ece9 | 1833 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 1834 | M: Corentin Chary <corentin.chary@gmail.com> |
1da177e4 | 1835 | L: acpi4asus-user@lists.sourceforge.net |
d0944853 | 1836 | L: platform-driver-x86@vger.kernel.org |
76593d6f | 1837 | W: http://acpi4asus.sf.net |
85091b71 | 1838 | S: Maintained |
b229ece9 CC |
1839 | F: drivers/platform/x86/asus*.c |
1840 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 1841 | |
f6a6bbae JPRV |
1842 | ASUS WIRELESS RADIO CONTROL DRIVER |
1843 | M: JoĂ£o Paulo Rechi Vita <jprvita@gmail.com> | |
1844 | L: platform-driver-x86@vger.kernel.org | |
1845 | S: Maintained | |
1846 | F: drivers/platform/x86/asus-wireless.c | |
1847 | ||
953a6479 | 1848 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
08223d80 | 1849 | R: Dan Williams <dan.j.williams@intel.com> |
b3e5f263 | 1850 | W: http://sourceforge.net/projects/xscaleiop |
08223d80 | 1851 | S: Odd fixes |
679655da JP |
1852 | F: Documentation/crypto/async-tx-api.txt |
1853 | F: crypto/async_tx/ | |
1854 | F: drivers/dma/ | |
1855 | F: include/linux/dmaengine.h | |
1856 | F: include/linux/async_tx.h | |
b3e5f263 | 1857 | |
a1867d36 | 1858 | AT24 EEPROM DRIVER |
14d77c4d | 1859 | M: Wolfram Sang <wsa@the-dreams.de> |
a1867d36 WS |
1860 | L: linux-i2c@vger.kernel.org |
1861 | S: Maintained | |
1862 | F: drivers/misc/eeprom/at24.c | |
25f73ed5 | 1863 | F: include/linux/platform_data/at24.h |
a1867d36 | 1864 | |
e7839f25 | 1865 | ATA OVER ETHERNET (AOE) DRIVER |
fb903811 EC |
1866 | M: "Ed L. Cashin" <ed.cashin@acm.org> |
1867 | W: http://www.openaoe.org/ | |
1da177e4 | 1868 | S: Supported |
679655da JP |
1869 | F: Documentation/aoe/ |
1870 | F: drivers/block/aoe/ | |
1da177e4 | 1871 | |
aad7a211 AB |
1872 | ATHEROS 71XX/9XXX GPIO DRIVER |
1873 | M: Alban Bedel <albeu@free.fr> | |
1874 | W: https://github.com/AlbanBedel/linux | |
1875 | T: git git://github.com/AlbanBedel/linux | |
1876 | S: Maintained | |
1877 | F: drivers/gpio/gpio-ath79.c | |
1878 | F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt | |
1879 | ||
9a10a870 | 1880 | ATHEROS ATH GENERIC UTILITIES |
f726ee65 | 1881 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
9a10a870 JP |
1882 | L: linux-wireless@vger.kernel.org |
1883 | S: Supported | |
1884 | F: drivers/net/wireless/ath/* | |
1885 | ||
fa1c114f | 1886 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
1887 | M: Jiri Slaby <jirislaby@gmail.com> |
1888 | M: Nick Kossifidis <mickflemm@gmail.com> | |
f726ee65 | 1889 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
fa1c114f | 1890 | L: linux-wireless@vger.kernel.org |
72c706b7 | 1891 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 1892 | S: Maintained |
fa451753 | 1893 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 1894 | |
12e62d6f KV |
1895 | ATHEROS ATH6KL WIRELESS DRIVER |
1896 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
1897 | L: linux-wireless@vger.kernel.org | |
1898 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
9f273c24 | 1899 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git |
12e62d6f KV |
1900 | S: Supported |
1901 | F: drivers/net/wireless/ath/ath6kl/ | |
1902 | ||
2be7d22f | 1903 | WILOCITY WIL6210 WIRELESS DRIVER |
23ba8a66 | 1904 | M: Maya Erez <qca_merez@qca.qualcomm.com> |
2be7d22f VK |
1905 | L: linux-wireless@vger.kernel.org |
1906 | L: wil6210@qca.qualcomm.com | |
1907 | S: Supported | |
1908 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
1909 | F: drivers/net/wireless/ath/wil6210/ | |
dba4b74d | 1910 | F: include/uapi/linux/wil6210_uapi.h |
2be7d22f | 1911 | |
1d7e1e6b CL |
1912 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
1913 | M: Christian Lamparter <chunkeey@googlemail.com> | |
1914 | L: linux-wireless@vger.kernel.org | |
1915 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
1916 | S: Maintained | |
1917 | F: drivers/net/wireless/ath/carl9170/ | |
1918 | ||
2c2a6172 LT |
1919 | ATK0110 HWMON DRIVER |
1920 | M: Luca Tettamanti <kronos.it@gmail.com> | |
1921 | L: lm-sensors@lm-sensors.org | |
1922 | S: Maintained | |
1923 | F: drivers/hwmon/asus_atk0110.c | |
1924 | ||
6f69a6d7 | 1925 | ATI_REMOTE2 DRIVER |
8b58be88 | 1926 | M: Ville Syrjala <syrjala@sci.fi> |
6f69a6d7 | 1927 | S: Maintained |
679655da | 1928 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 1929 | |
7ae115b4 | 1930 | ATLX ETHERNET DRIVERS |
8b58be88 | 1931 | M: Jay Cliburn <jcliburn@gmail.com> |
cb2f33e9 | 1932 | M: Chris Snook <chris.snook@gmail.com> |
e443e383 | 1933 | L: netdev@vger.kernel.org |
8d5ca6ec JC |
1934 | W: http://sourceforge.net/projects/atl1 |
1935 | W: http://atl1.sourceforge.net | |
1936 | S: Maintained | |
2b133ad6 | 1937 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 1938 | |
1da177e4 | 1939 | ATM |
366c1bd1 | 1940 | M: Chas Williams <3chas3@gmail.com> |
476604de | 1941 | L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers) |
44ae98b5 | 1942 | L: netdev@vger.kernel.org |
1da177e4 LT |
1943 | W: http://linux-atm.sourceforge.net |
1944 | S: Maintained | |
679655da JP |
1945 | F: drivers/atm/ |
1946 | F: include/linux/atm* | |
c117ab84 | 1947 | F: include/uapi/linux/atm* |
1da177e4 | 1948 | |
04ac2f46 | 1949 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 1950 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
04ac2f46 NF |
1951 | S: Maintained |
1952 | F: drivers/mmc/host/atmel-mci.c | |
04ac2f46 | 1953 | |
a1cfac48 | 1954 | ATMEL AT91 / AT32 SERIAL DRIVER |
a02875a6 | 1955 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
a1cfac48 | 1956 | S: Supported |
df621252 | 1957 | F: drivers/tty/serial/atmel_serial.c |
a1cfac48 | 1958 | |
dfae90ed | 1959 | ATMEL Audio ALSA driver |
3a82002c | 1960 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
dfae90ed BS |
1961 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
1962 | S: Supported | |
1963 | F: sound/soc/atmel | |
1964 | ||
b414dc16 NF |
1965 | ATMEL DMA DRIVER |
1966 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
1967 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1968 | S: Supported | |
1969 | F: drivers/dma/at_hdmac.c | |
1970 | F: drivers/dma/at_hdmac_regs.h | |
6f0d65af | 1971 | F: include/linux/platform_data/dma-atmel.h |
b414dc16 | 1972 | |
6bd0f436 LD |
1973 | ATMEL XDMA DRIVER |
1974 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
1975 | L: linux-arm-kernel@lists.infradead.org | |
1976 | L: dmaengine@vger.kernel.org | |
1977 | S: Supported | |
1978 | F: drivers/dma/at_xdmac.c | |
1979 | ||
888f2804 LD |
1980 | ATMEL I2C DRIVER |
1981 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
1982 | L: linux-i2c@vger.kernel.org | |
1983 | S: Supported | |
1984 | F: drivers/i2c/busses/i2c-at91.c | |
1985 | ||
15515545 | 1986 | ATMEL ISI DRIVER |
50cb2efa | 1987 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
15515545 JW |
1988 | L: linux-media@vger.kernel.org |
1989 | S: Supported | |
f2294c2d | 1990 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
1991 | F: include/media/atmel-isi.h |
1992 | ||
8f4c79ce | 1993 | ATMEL LCDFB DRIVER |
8b58be88 | 1994 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
c69f677c | 1995 | L: linux-fbdev@vger.kernel.org |
8f4c79ce | 1996 | S: Maintained |
8a61f013 | 1997 | F: drivers/video/fbdev/atmel_lcdfb.c |
679655da | 1998 | F: include/video/atmel_lcdc.h |
8f4c79ce | 1999 | |
89e5785f | 2000 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 2001 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
89e5785f | 2002 | S: Supported |
9f2f381f | 2003 | F: drivers/net/ethernet/cadence/ |
89e5785f | 2004 | |
5cbac98a | 2005 | ATMEL NAND DRIVER |
50cb2efa NF |
2006 | M: Wenyou Yang <wenyou.yang@atmel.com> |
2007 | M: Josh Wu <rainyfeeling@outlook.com> | |
5cbac98a JW |
2008 | L: linux-mtd@lists.infradead.org |
2009 | S: Supported | |
2010 | F: drivers/mtd/nand/atmel_nand* | |
2011 | ||
05c441ef | 2012 | ATMEL SDMMC DRIVER |
2013 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
2014 | L: linux-mmc@vger.kernel.org | |
2015 | S: Supported | |
2016 | F: drivers/mmc/host/sdhci-of-at91.c | |
2017 | ||
754ce4f2 | 2018 | ATMEL SPI DRIVER |
a02875a6 | 2019 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
754ce4f2 | 2020 | S: Supported |
9df92e6c | 2021 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 2022 | |
0ef09015 | 2023 | ATMEL SSC DRIVER |
03515f32 | 2024 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
0ef09015 BS |
2025 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2026 | S: Supported | |
2027 | F: drivers/misc/atmel-ssc.c | |
2028 | F: include/linux/atmel-ssc.h | |
2029 | ||
e9cb1c5a NF |
2030 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
2031 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
2032 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
2033 | S: Supported | |
2034 | F: drivers/misc/atmel_tclib.c | |
2035 | F: drivers/clocksource/tcb_clksrc.c | |
2036 | ||
914a3f3b | 2037 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
2038 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
2039 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
914a3f3b | 2040 | S: Supported |
faf2e1db | 2041 | F: drivers/usb/gadget/udc/atmel_usba_udc.* |
914a3f3b | 2042 | |
1da177e4 | 2043 | ATMEL WIRELESS DRIVER |
8b58be88 | 2044 | M: Simon Kelley <simon@thekelleys.org.uk> |
724c6b35 | 2045 | L: linux-wireless@vger.kernel.org |
1da177e4 LT |
2046 | W: http://www.thekelleys.org.uk/atmel |
2047 | W: http://atmelwlandriver.sourceforge.net/ | |
2048 | S: Maintained | |
30fe0f9b | 2049 | F: drivers/net/wireless/atmel/atmel* |
1da177e4 | 2050 | |
a14c0f8f ND |
2051 | ATMEL MAXTOUCH DRIVER |
2052 | M: Nick Dyer <nick.dyer@itdev.co.uk> | |
2053 | T: git git://github.com/atmel-maxtouch/linux.git | |
2054 | S: Supported | |
2055 | F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt | |
2056 | F: drivers/input/touchscreen/atmel_mxt_ts.c | |
2057 | F: include/linux/platform_data/atmel_mxt_ts.h | |
2058 | ||
26780d9e | 2059 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
b75f0050 JP |
2060 | M: Bradley Grove <linuxdrivers@attotech.com> |
2061 | L: linux-scsi@vger.kernel.org | |
2062 | W: http://www.attotech.com | |
2063 | S: Supported | |
2064 | F: drivers/scsi/esas2r | |
26780d9e | 2065 | |
bc6e17b8 SS |
2066 | ATUSB IEEE 802.15.4 RADIO DRIVER |
2067 | M: Stefan Schmidt <stefan@osg.samsung.com> | |
2068 | L: linux-wpan@vger.kernel.org | |
2069 | S: Maintained | |
2070 | F: drivers/net/ieee802154/atusb.c | |
2071 | F: drivers/net/ieee802154/atusb.h | |
2072 | F: drivers/net/ieee802154/at86rf230.h | |
2073 | ||
a92b7b80 | 2074 | AUDIT SUBSYSTEM |
915f389d | 2075 | M: Paul Moore <paul@paul-moore.com> |
8b58be88 | 2076 | M: Eric Paris <eparis@redhat.com> |
915f389d | 2077 | L: linux-audit@redhat.com (moderated for non-subscribers) |
ad3f9a22 | 2078 | W: http://people.redhat.com/sgrubb/audit/ |
915f389d | 2079 | T: git git://git.infradead.org/users/pcmoore/audit |
a92b7b80 | 2080 | S: Maintained |
679655da | 2081 | F: include/linux/audit.h |
c117ab84 | 2082 | F: include/uapi/linux/audit.h |
679655da | 2083 | F: kernel/audit* |
a92b7b80 | 2084 | |
70e84049 | 2085 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 2086 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2087 | W: http://miguelojeda.es/auxdisplay.htm |
2088 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2089 | S: Maintained |
679655da JP |
2090 | F: drivers/auxdisplay/ |
2091 | F: include/linux/cfag12864b.h | |
70e84049 | 2092 | |
5f97f7f9 | 2093 | AVR32 ARCHITECTURE |
e336f61f HCE |
2094 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
2095 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
5f97f7f9 | 2096 | W: http://www.atmel.com/products/AVR32/ |
249d9d9d | 2097 | W: http://mirror.egtvedt.no/avr32linux.org/ |
5f97f7f9 | 2098 | W: http://avrfreaks.net/ |
e336f61f | 2099 | S: Maintained |
679655da | 2100 | F: arch/avr32/ |
5f97f7f9 HS |
2101 | |
2102 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
2103 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
2104 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
2105 | S: Maintained | |
679655da | 2106 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 2107 | |
1da177e4 | 2108 | AX.25 NETWORK LAYER |
8b58be88 | 2109 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 2110 | L: linux-hams@vger.kernel.org |
d34cb28a | 2111 | W: http://www.linux-ax25.org/ |
1da177e4 | 2112 | S: Maintained |
c117ab84 | 2113 | F: include/uapi/linux/ax25.h |
679655da JP |
2114 | F: include/net/ax25.h |
2115 | F: net/ax25/ | |
1da177e4 | 2116 | |
d5269395 | 2117 | AZ6007 DVB DRIVER |
009a5410 | 2118 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
d5269395 | 2119 | L: linux-media@vger.kernel.org |
a825eaec | 2120 | W: https://linuxtv.org |
d5269395 MCC |
2121 | T: git git://linuxtv.org/media_tree.git |
2122 | S: Maintained | |
2123 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
2124 | ||
6777376e HV |
2125 | AZTECH FM RADIO RECEIVER DRIVER |
2126 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2127 | L: linux-media@vger.kernel.org | |
2128 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 2129 | W: https://linuxtv.org |
6777376e HV |
2130 | S: Maintained |
2131 | F: drivers/media/radio/radio-aztech* | |
2132 | ||
e2d1d6c0 | 2133 | B43 WIRELESS DRIVER |
e2d1d6c0 | 2134 | L: linux-wireless@vger.kernel.org |
ed072f9e | 2135 | L: b43-dev@lists.infradead.org |
491b26b4 | 2136 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
8a72ed6f | 2137 | S: Odd Fixes |
58619b14 | 2138 | F: drivers/net/wireless/broadcom/b43/ |
e2d1d6c0 RD |
2139 | |
2140 | B43LEGACY WIRELESS DRIVER | |
8b58be88 | 2141 | M: Larry Finger <Larry.Finger@lwfinger.net> |
e2d1d6c0 | 2142 | L: linux-wireless@vger.kernel.org |
ed072f9e | 2143 | L: b43-dev@lists.infradead.org |
491b26b4 | 2144 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 2145 | S: Maintained |
423e3ce3 | 2146 | F: drivers/net/wireless/broadcom/b43legacy/ |
e2d1d6c0 | 2147 | |
300abeb5 | 2148 | BACKLIGHT CLASS/SUBSYSTEM |
b7701755 | 2149 | M: Jingoo Han <jingoohan1@gmail.com> |
70d14fcf | 2150 | M: Lee Jones <lee.jones@linaro.org> |
9f273c24 | 2151 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git |
300abeb5 | 2152 | S: Maintained |
679655da JP |
2153 | F: drivers/video/backlight/ |
2154 | F: include/linux/backlight.h | |
300abeb5 | 2155 | |
c6c8fea2 | 2156 | BATMAN ADVANCED |
207df49e | 2157 | M: Marek Lindner <mareklindner@neomailbox.ch> |
c679ff8f | 2158 | M: Simon Wunderlich <sw@simonwunderlich.de> |
ca8e940c | 2159 | M: Antonio Quartulli <a@unstable.cc> |
c6c8fea2 SE |
2160 | L: b.a.t.m.a.n@lists.open-mesh.org |
2161 | W: http://www.open-mesh.org/ | |
2162 | S: Maintained | |
2163 | F: net/batman-adv/ | |
2164 | ||
e2d1d6c0 | 2165 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 2166 | M: Thomas Sailer <t.sailer@alumni.ethz.ch> |
e2d1d6c0 RD |
2167 | L: linux-hams@vger.kernel.org |
2168 | W: http://www.baycom.org/~tom/ham/ham.html | |
2169 | S: Maintained | |
679655da | 2170 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 2171 | |
cafe5635 | 2172 | BCACHE (BLOCK LAYER CACHE) |
d1aa1ab3 | 2173 | M: Kent Overstreet <kent.overstreet@gmail.com> |
cafe5635 KO |
2174 | L: linux-bcache@vger.kernel.org |
2175 | W: http://bcache.evilpiepirate.org | |
d1aa1ab3 | 2176 | S: Maintained |
cafe5635 KO |
2177 | F: drivers/md/bcache/ |
2178 | ||
04bd844a HV |
2179 | BDISP ST MEDIA DRIVER |
2180 | M: Fabien Dessenne <fabien.dessenne@st.com> | |
2181 | L: linux-media@vger.kernel.org | |
2182 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 2183 | W: https://linuxtv.org |
04bd844a HV |
2184 | S: Supported |
2185 | F: drivers/media/platform/sti/bdisp | |
2186 | ||
e2d1d6c0 | 2187 | BEFS FILE SYSTEM |
55817d3d | 2188 | S: Orphan |
679655da JP |
2189 | F: Documentation/filesystems/befs.txt |
2190 | F: fs/befs/ | |
e2d1d6c0 | 2191 | |
564ee360 | 2192 | BECKHOFF CX5020 ETHERCAT MASTER DRIVER |
49e7d9df JP |
2193 | M: Dariusz Marcinkiewicz <reksio@newterm.pl> |
2194 | L: netdev@vger.kernel.org | |
2195 | S: Maintained | |
2196 | F: drivers/net/ethernet/ec_bhf.c | |
564ee360 | 2197 | |
e2d1d6c0 | 2198 | BFS FILE SYSTEM |
8b58be88 | 2199 | M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk> |
e2d1d6c0 | 2200 | S: Maintained |
679655da JP |
2201 | F: Documentation/filesystems/bfs.txt |
2202 | F: fs/bfs/ | |
c117ab84 | 2203 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 2204 | |
1394f032 | 2205 | BLACKFIN ARCHITECTURE |
a4edbc10 | 2206 | M: Steven Miao <realmz6@gmail.com> |
b3fe92b0 | 2207 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1443176f | 2208 | T: git git://git.code.sf.net/p/adi-linux/code |
e3b2d3f3 BW |
2209 | W: http://blackfin.uclinux.org |
2210 | S: Supported | |
679655da | 2211 | F: arch/blackfin/ |
566da5b2 | 2212 | |
e190d6b1 | 2213 | BLACKFIN EMAC DRIVER |
b3fe92b0 | 2214 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e190d6b1 BW |
2215 | W: http://blackfin.uclinux.org |
2216 | S: Supported | |
7b35f033 | 2217 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 2218 | |
566da5b2 | 2219 | BLACKFIN RTC DRIVER |
b3fe92b0 | 2220 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
566da5b2 MF |
2221 | W: http://blackfin.uclinux.org |
2222 | S: Supported | |
679655da | 2223 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 2224 | |
936ed49a | 2225 | BLACKFIN SDH DRIVER |
109ec8c3 | 2226 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2227 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
936ed49a MF |
2228 | W: http://blackfin.uclinux.org |
2229 | S: Supported | |
2230 | F: drivers/mmc/host/bfin_sdh.c | |
2231 | ||
1394f032 | 2232 | BLACKFIN SERIAL DRIVER |
8b58be88 | 2233 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2234 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e3b2d3f3 BW |
2235 | W: http://blackfin.uclinux.org |
2236 | S: Supported | |
8460241e | 2237 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 2238 | |
1e6d320f | 2239 | BLACKFIN WATCHDOG DRIVER |
b3fe92b0 | 2240 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1e6d320f BW |
2241 | W: http://blackfin.uclinux.org |
2242 | S: Supported | |
679655da | 2243 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 2244 | |
d24ecfcc | 2245 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 2246 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2247 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
d24ecfcc BW |
2248 | W: http://blackfin.uclinux.org/ |
2249 | S: Supported | |
679655da | 2250 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 2251 | |
1e204377 SJ |
2252 | BLACKFIN MEDIA DRIVER |
2253 | M: Scott Jiang <scott.jiang.linux@gmail.com> | |
b3fe92b0 | 2254 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1e204377 SJ |
2255 | W: http://blackfin.uclinux.org/ |
2256 | S: Supported | |
2257 | F: drivers/media/platform/blackfin/ | |
2258 | F: drivers/media/i2c/adv7183* | |
2259 | F: drivers/media/i2c/vs6624* | |
2260 | ||
b54cf35a JSM |
2261 | BLINKM RGB LED DRIVER |
2262 | M: Jan-Simon Moeller <jansimon.moeller@gmx.de> | |
2263 | S: Maintained | |
2264 | F: drivers/leds/leds-blinkm.c | |
2265 | ||
1da177e4 | 2266 | BLOCK LAYER |
8b58be88 | 2267 | M: Jens Axboe <axboe@kernel.dk> |
82c426e0 | 2268 | L: linux-block@vger.kernel.org |
08deed1e | 2269 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 2270 | S: Maintained |
679655da | 2271 | F: block/ |
ae11f7ef | 2272 | F: kernel/trace/blktrace.c |
1da177e4 | 2273 | |
2b54aaef | 2274 | BLOCK2MTD DRIVER |
8b58be88 | 2275 | M: Joern Engel <joern@lazybastard.org> |
2b54aaef JE |
2276 | L: linux-mtd@lists.infradead.org |
2277 | S: Maintained | |
679655da | 2278 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 2279 | |
63fbd24e | 2280 | BLUETOOTH DRIVERS |
8b58be88 | 2281 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 2282 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 2283 | M: Johan Hedberg <johan.hedberg@gmail.com> |
781c2844 | 2284 | L: linux-bluetooth@vger.kernel.org |
63fbd24e | 2285 | W: http://www.bluez.org/ |
22e7a424 MH |
2286 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
2287 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 2288 | S: Maintained |
679655da | 2289 | F: drivers/bluetooth/ |
1da177e4 | 2290 | |
63fbd24e | 2291 | BLUETOOTH SUBSYSTEM |
8b58be88 | 2292 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 2293 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 2294 | M: Johan Hedberg <johan.hedberg@gmail.com> |
63fbd24e MH |
2295 | L: linux-bluetooth@vger.kernel.org |
2296 | W: http://www.bluez.org/ | |
22e7a424 MH |
2297 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
2298 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 2299 | S: Maintained |
679655da JP |
2300 | F: net/bluetooth/ |
2301 | F: include/net/bluetooth/ | |
1da177e4 LT |
2302 | |
2303 | BONDING DRIVER | |
79b30750 | 2304 | M: Jay Vosburgh <j.vosburgh@gmail.com> |
898602a0 | 2305 | M: Veaceslav Falico <vfalico@gmail.com> |
31639b94 | 2306 | M: Andy Gospodarek <gospo@cumulusnetworks.com> |
a6c36ee6 | 2307 | L: netdev@vger.kernel.org |
ce00f85c JC |
2308 | W: http://sourceforge.net/projects/bonding/ |
2309 | S: Supported | |
679655da | 2310 | F: drivers/net/bonding/ |
c117ab84 | 2311 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 2312 | |
b5f4df34 AS |
2313 | BPF (Safe dynamic programs and tools) |
2314 | M: Alexei Starovoitov <ast@kernel.org> | |
2315 | L: netdev@vger.kernel.org | |
2316 | L: linux-kernel@vger.kernel.org | |
2317 | S: Supported | |
2318 | F: kernel/bpf/ | |
2319 | ||
39105890 | 2320 | BROADCOM B44 10/100 ETHERNET DRIVER |
8b58be88 | 2321 | M: Gary Zambrano <zambrano@broadcom.com> |
39105890 GZ |
2322 | L: netdev@vger.kernel.org |
2323 | S: Supported | |
adfc5217 | 2324 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 2325 | |
32ec90d5 FF |
2326 | BROADCOM GENET ETHERNET DRIVER |
2327 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2328 | L: netdev@vger.kernel.org | |
2329 | S: Supported | |
2330 | F: drivers/net/ethernet/broadcom/genet/ | |
2331 | ||
948c51e6 | 2332 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
f1d1baeb JK |
2333 | M: Sony Chacko <sony.chacko@qlogic.com> |
2334 | M: Dept-HSGLinuxNICDev@qlogic.com | |
948c51e6 MC |
2335 | L: netdev@vger.kernel.org |
2336 | S: Supported | |
adfc5217 JK |
2337 | F: drivers/net/ethernet/broadcom/bnx2.* |
2338 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 2339 | |
4d9d2cb0 | 2340 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
08f6dd89 | 2341 | M: Ariel Elior <ariel.elior@qlogic.com> |
4d9d2cb0 ET |
2342 | L: netdev@vger.kernel.org |
2343 | S: Supported | |
adfc5217 | 2344 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 2345 | |
90f4c594 | 2346 | BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE |
f18cf050 | 2347 | M: Florian Fainelli <f.fainelli@gmail.com> |
d3cc2e86 FF |
2348 | M: Ray Jui <rjui@broadcom.com> |
2349 | M: Scott Branden <sbranden@broadcom.com> | |
497a045d | 2350 | L: bcm-kernel-feedback-list@broadcom.com |
90f4c594 | 2351 | T: git git://github.com/broadcom/mach-bcm |
af4b8e37 CD |
2352 | S: Maintained |
2353 | F: arch/arm/mach-bcm/ | |
2354 | F: arch/arm/boot/dts/bcm113* | |
90f4c594 | 2355 | F: arch/arm/boot/dts/bcm216* |
af4b8e37 | 2356 | F: arch/arm/boot/dts/bcm281* |
e68d7c14 | 2357 | F: arch/arm64/boot/dts/broadcom/ |
af4b8e37 | 2358 | F: arch/arm/configs/bcm_defconfig |
e4ef47f2 | 2359 | F: drivers/mmc/host/sdhci-bcm-kona.c |
af4b8e37 CD |
2360 | F: drivers/clocksource/bcm_kona_timer.c |
2361 | ||
9209bec4 | 2362 | BROADCOM BCM2835 ARM ARCHITECTURE |
f680f25c | 2363 | M: Stephen Warren <swarren@wwwdotorg.org> |
8bcdd929 | 2364 | M: Lee Jones <lee@kernel.org> |
10b9e887 | 2365 | M: Eric Anholt <eric@anholt.net> |
f680f25c | 2366 | L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers) |
82481129 | 2367 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
8bcdd929 | 2368 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git |
f680f25c | 2369 | S: Maintained |
9209bec4 | 2370 | N: bcm2835 |
f680f25c | 2371 | |
5564f092 RM |
2372 | BROADCOM BCM47XX MIPS ARCHITECTURE |
2373 | M: Hauke Mehrtens <hauke@hauke-m.de> | |
2374 | M: Rafał Miłecki <zajec5@gmail.com> | |
2375 | L: linux-mips@linux-mips.org | |
2376 | S: Maintained | |
2377 | F: arch/mips/bcm47xx/* | |
2378 | F: arch/mips/include/asm/mach-bcm47xx/* | |
2379 | ||
9209bec4 | 2380 | BROADCOM BCM5301X ARM ARCHITECTURE |
5b293ebe HM |
2381 | M: Hauke Mehrtens <hauke@hauke-m.de> |
2382 | L: linux-arm-kernel@lists.infradead.org | |
2383 | S: Maintained | |
2384 | F: arch/arm/mach-bcm/bcm_5301x.c | |
2385 | F: arch/arm/boot/dts/bcm5301x.dtsi | |
2386 | F: arch/arm/boot/dts/bcm470* | |
2387 | ||
e076e962 FF |
2388 | BROADCOM BCM63XX ARM ARCHITECTURE |
2389 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2390 | L: linux-arm-kernel@lists.infradead.org | |
eb6725d0 | 2391 | T: git git://github.com/broadcom/arm-bcm63xx.git |
e076e962 FF |
2392 | S: Maintained |
2393 | F: arch/arm/mach-bcm/bcm63xx.c | |
2394 | F: arch/arm/include/debug/bcm63xx.S | |
2395 | ||
7110e227 KC |
2396 | BROADCOM BCM63XX/BCM33XX UDC DRIVER |
2397 | M: Kevin Cernekee <cernekee@gmail.com> | |
2398 | L: linux-usb@vger.kernel.org | |
2399 | S: Maintained | |
2400 | F: drivers/usb/gadget/udc/bcm63xx_udc.* | |
2401 | ||
2df94fd6 | 2402 | BROADCOM BCM7XXX ARM ARCHITECTURE |
2df94fd6 | 2403 | M: Brian Norris <computersforpeace@gmail.com> |
3b4b6fe9 FF |
2404 | M: Gregory Fong <gregory.0xf0@gmail.com> |
2405 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2df94fd6 | 2406 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1e65a347 | 2407 | L: bcm-kernel-feedback-list@broadcom.com |
eb6725d0 | 2408 | T: git git://github.com/broadcom/stblinux.git |
2df94fd6 BN |
2409 | S: Maintained |
2410 | F: arch/arm/mach-bcm/*brcmstb* | |
2411 | F: arch/arm/boot/dts/bcm7*.dts* | |
e36661e4 | 2412 | F: drivers/bus/brcmstb_gisb.c |
5009a289 | 2413 | N: brcmstb |
2df94fd6 | 2414 | |
70371cef KC |
2415 | BROADCOM BMIPS MIPS ARCHITECTURE |
2416 | M: Kevin Cernekee <cernekee@gmail.com> | |
2417 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2418 | L: linux-mips@linux-mips.org | |
eb6725d0 | 2419 | T: git git://github.com/broadcom/stblinux.git |
70371cef KC |
2420 | S: Maintained |
2421 | F: arch/mips/bmips/* | |
2422 | F: arch/mips/include/asm/mach-bmips/* | |
2423 | F: arch/mips/kernel/*bmips* | |
338808de | 2424 | F: arch/mips/boot/dts/brcm/bcm*.dts* |
70371cef KC |
2425 | F: drivers/irqchip/irq-bcm7* |
2426 | F: drivers/irqchip/irq-brcmstb* | |
3271e610 | 2427 | F: include/linux/bcm963xx_nvram.h |
8fce60b8 | 2428 | F: include/linux/bcm963xx_tag.h |
70371cef | 2429 | |
948c51e6 | 2430 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
23629477 | 2431 | M: Prashant Sreedharan <prashant@broadcom.com> |
8b58be88 | 2432 | M: Michael Chan <mchan@broadcom.com> |
948c51e6 MC |
2433 | L: netdev@vger.kernel.org |
2434 | S: Supported | |
adfc5217 | 2435 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 2436 | |
a9533e7e HP |
2437 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
2438 | M: Brett Rudley <brudley@broadcom.com> | |
818c07b8 | 2439 | M: Arend van Spriel <arend@broadcom.com> |
85d63686 | 2440 | M: Franky (Zhenhui) Lin <frankyl@broadcom.com> |
006a8f14 | 2441 | M: Hante Meuleman <meuleman@broadcom.com> |
a9533e7e | 2442 | L: linux-wireless@vger.kernel.org |
5615171c | 2443 | L: brcm80211-dev-list@broadcom.com |
a9533e7e | 2444 | S: Supported |
05491d2c | 2445 | F: drivers/net/wireless/broadcom/brcm80211/ |
a9533e7e | 2446 | |
9958d6f9 | 2447 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
3b7f040a | 2448 | M: QLogic-Storage-Upstream@qlogic.com |
9958d6f9 BPG |
2449 | L: linux-scsi@vger.kernel.org |
2450 | S: Supported | |
2451 | F: drivers/scsi/bnx2fc/ | |
2452 | ||
6a6b5ad0 | 2453 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
3b7f040a | 2454 | M: QLogic-Storage-Upstream@qlogic.com |
6a6b5ad0 EW |
2455 | L: linux-scsi@vger.kernel.org |
2456 | S: Supported | |
2457 | F: drivers/scsi/bnx2i/ | |
2458 | ||
63f37ddf | 2459 | BROADCOM IPROC ARM ARCHITECTURE |
36c0237f SB |
2460 | M: Ray Jui <rjui@broadcom.com> |
2461 | M: Scott Branden <sbranden@broadcom.com> | |
63f37ddf | 2462 | M: Jon Mason <jonmason@broadcom.com> |
36c0237f SB |
2463 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2464 | L: bcm-kernel-feedback-list@broadcom.com | |
eb6725d0 | 2465 | T: git git://github.com/broadcom/cygnus-linux.git |
36c0237f SB |
2466 | S: Maintained |
2467 | N: iproc | |
2468 | N: cygnus | |
63f37ddf | 2469 | N: nsp |
36c0237f SB |
2470 | N: bcm9113* |
2471 | N: bcm9583* | |
63f37ddf JM |
2472 | N: bcm9585* |
2473 | N: bcm9586* | |
2474 | N: bcm988312 | |
36c0237f | 2475 | N: bcm113* |
63f37ddf JM |
2476 | N: bcm583* |
2477 | N: bcm585* | |
2478 | N: bcm586* | |
2479 | N: bcm88312 | |
36c0237f | 2480 | |
3b0213d5 GF |
2481 | BROADCOM BRCMSTB GPIO DRIVER |
2482 | M: Gregory Fong <gregory.0xf0@gmail.com> | |
9c2abe2f | 2483 | L: bcm-kernel-feedback-list@broadcom.com |
3b0213d5 GF |
2484 | S: Supported |
2485 | F: drivers/gpio/gpio-brcmstb.c | |
2486 | F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt | |
2487 | ||
7b7f588b | 2488 | BROADCOM KONA GPIO DRIVER |
5e163903 | 2489 | M: Ray Jui <rjui@broadcom.com> |
7b7f588b MM |
2490 | L: bcm-kernel-feedback-list@broadcom.com |
2491 | S: Supported | |
2492 | F: drivers/gpio/gpio-bcm-kona.c | |
1db12cde | 2493 | F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt |
7b7f588b | 2494 | |
f6e734a8 RM |
2495 | BROADCOM NVRAM DRIVER |
2496 | M: Rafał Miłecki <zajec5@gmail.com> | |
2497 | L: linux-mips@linux-mips.org | |
2498 | S: Maintained | |
2499 | F: drivers/firmware/broadcom/* | |
2500 | ||
02787daa BN |
2501 | BROADCOM STB NAND FLASH DRIVER |
2502 | M: Brian Norris <computersforpeace@gmail.com> | |
1ddaa021 | 2503 | M: Kamal Dasu <kdasu.kdev@gmail.com> |
02787daa | 2504 | L: linux-mtd@lists.infradead.org |
1285734c | 2505 | L: bcm-kernel-feedback-list@broadcom.com |
02787daa BN |
2506 | S: Maintained |
2507 | F: drivers/mtd/nand/brcmnand/ | |
2508 | ||
c9678d86 RM |
2509 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
2510 | M: Rafał Miłecki <zajec5@gmail.com> | |
2511 | L: linux-wireless@vger.kernel.org | |
2512 | S: Maintained | |
2513 | F: drivers/bcma/ | |
2514 | F: include/linux/bcma/ | |
2515 | ||
b8302205 FF |
2516 | BROADCOM SYSTEMPORT ETHERNET DRIVER |
2517 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2518 | L: netdev@vger.kernel.org | |
2519 | S: Supported | |
2520 | F: drivers/net/ethernet/broadcom/bcmsysport.* | |
2521 | ||
7725ccfd | 2522 | BROCADE BFA FC SCSI DRIVER |
aa803370 AG |
2523 | M: Anil Gurumurthy <anil.gurumurthy@qlogic.com> |
2524 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> | |
455518e7 JP |
2525 | L: linux-scsi@vger.kernel.org |
2526 | S: Supported | |
2527 | F: drivers/scsi/bfa/ | |
7725ccfd | 2528 | |
8b230ed8 | 2529 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
439e9575 | 2530 | M: Rasesh Mody <rasesh.mody@qlogic.com> |
8b230ed8 RM |
2531 | L: netdev@vger.kernel.org |
2532 | S: Supported | |
f844a0ea | 2533 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 2534 | |
5cdf7f76 | 2535 | BSG (block layer generic sg v4 driver) |
8b58be88 | 2536 | M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> |
5cdf7f76 JA |
2537 | L: linux-scsi@vger.kernel.org |
2538 | S: Supported | |
679655da JP |
2539 | F: block/bsg.c |
2540 | F: include/linux/bsg.h | |
c117ab84 | 2541 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 2542 | |
af39917d CL |
2543 | BT87X AUDIO DRIVER |
2544 | M: Clemens Ladisch <clemens@ladisch.de> | |
2545 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2546 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2547 | S: Maintained | |
2548 | F: Documentation/sound/alsa/Bt87x.txt | |
2549 | F: sound/pci/bt87x.c | |
2550 | ||
ff1d5c2f | 2551 | BT8XXGPIO DRIVER |
eb032b98 | 2552 | M: Michael Buesch <m@bues.ch> |
ff1d5c2f MB |
2553 | W: http://bu3sch.de/btgpio.php |
2554 | S: Maintained | |
72dbb705 | 2555 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 2556 | |
eb1eb04f | 2557 | BTRFS FILE SYSTEM |
c0778e25 CM |
2558 | M: Chris Mason <clm@fb.com> |
2559 | M: Josef Bacik <jbacik@fb.com> | |
d8130624 | 2560 | M: David Sterba <dsterba@suse.com> |
eb1eb04f JP |
2561 | L: linux-btrfs@vger.kernel.org |
2562 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 2563 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 2564 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 2565 | S: Maintained |
679655da JP |
2566 | F: Documentation/filesystems/btrfs.txt |
2567 | F: fs/btrfs/ | |
eb1eb04f | 2568 | |
1da177e4 | 2569 | BTTV VIDEO4LINUX DRIVER |
009a5410 | 2570 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
661263b5 | 2571 | L: linux-media@vger.kernel.org |
a825eaec | 2572 | W: https://linuxtv.org |
275ffde4 | 2573 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 2574 | S: Odd fixes |
679655da | 2575 | F: Documentation/video4linux/bttv/ |
90d72ac6 | 2576 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 2577 | |
1f34923c KA |
2578 | BUSLOGIC SCSI DRIVER |
2579 | M: Khalid Aziz <khalid@gonehiking.org> | |
2580 | L: linux-scsi@vger.kernel.org | |
2581 | S: Maintained | |
2582 | F: drivers/scsi/BusLogic.* | |
2583 | F: drivers/scsi/FlashPoint.* | |
2584 | ||
af39917d CL |
2585 | C-MEDIA CMI8788 DRIVER |
2586 | M: Clemens Ladisch <clemens@ladisch.de> | |
2587 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2588 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2589 | S: Maintained | |
2590 | F: sound/pci/oxygen/ | |
2591 | ||
2141355f MS |
2592 | C6X ARCHITECTURE |
2593 | M: Mark Salter <msalter@redhat.com> | |
2594 | M: Aurelien Jacquiot <a-jacquiot@ti.com> | |
2595 | L: linux-c6x-dev@linux-c6x.org | |
2596 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
2597 | S: Maintained | |
2598 | F: arch/c6x/ | |
2599 | ||
a5432f5a | 2600 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 2601 | M: David Howells <dhowells@redhat.com> |
e62d6e24 | 2602 | L: linux-cachefs@redhat.com (moderated for non-subscribers) |
a5432f5a DH |
2603 | S: Supported |
2604 | F: Documentation/filesystems/caching/cachefiles.txt | |
2605 | F: fs/cachefiles/ | |
2606 | ||
c815ca39 HV |
2607 | CADET FM/AM RADIO RECEIVER DRIVER |
2608 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2609 | L: linux-media@vger.kernel.org | |
2610 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 2611 | W: https://linuxtv.org |
c815ca39 HV |
2612 | S: Maintained |
2613 | F: drivers/media/radio/radio-cadet* | |
2614 | ||
77d5140f | 2615 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 2616 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 2617 | L: linux-media@vger.kernel.org |
275ffde4 | 2618 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 2619 | S: Maintained |
679655da | 2620 | F: Documentation/video4linux/cafe_ccic |
90d72ac6 | 2621 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 2622 | |
201b6bab | 2623 | CAIF NETWORK LAYER |
5c574f50 | 2624 | M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no> |
201b6bab JP |
2625 | L: netdev@vger.kernel.org |
2626 | S: Supported | |
2627 | F: Documentation/networking/caif/ | |
2628 | F: drivers/net/caif/ | |
c117ab84 | 2629 | F: include/uapi/linux/caif/ |
201b6bab JP |
2630 | F: include/net/caif/ |
2631 | F: net/caif/ | |
2632 | ||
77dac90f | 2633 | CALGARY x86-64 IOMMU |
8b58be88 JP |
2634 | M: Muli Ben-Yehuda <muli@il.ibm.com> |
2635 | M: "Jon D. Mason" <jdmason@kudzu.us> | |
77dac90f MBY |
2636 | L: discuss@x86-64.org |
2637 | S: Maintained | |
679655da JP |
2638 | F: arch/x86/kernel/pci-calgary_64.c |
2639 | F: arch/x86/kernel/tce_64.c | |
2640 | F: arch/x86/include/asm/calgary.h | |
2641 | F: arch/x86/include/asm/tce.h | |
77dac90f | 2642 | |
e2d1d6c0 | 2643 | CAN NETWORK LAYER |
8d15d386 | 2644 | M: Oliver Hartkopp <socketcan@hartkopp.net> |
f7214cf2 | 2645 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 2646 | L: linux-can@vger.kernel.org |
84b0d715 | 2647 | W: https://github.com/linux-can |
870482a4 MKB |
2648 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
2649 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git | |
e2d1d6c0 | 2650 | S: Maintained |
f35f6c8f | 2651 | F: Documentation/networking/can.txt |
8d15d386 | 2652 | F: net/can/ |
8d15d386 | 2653 | F: include/linux/can/core.h |
c117ab84 CEB |
2654 | F: include/uapi/linux/can.h |
2655 | F: include/uapi/linux/can/bcm.h | |
2656 | F: include/uapi/linux/can/raw.h | |
2657 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 2658 | |
4261a204 | 2659 | CAN NETWORK DRIVERS |
8b58be88 | 2660 | M: Wolfgang Grandegger <wg@grandegger.com> |
ec78213a | 2661 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 2662 | L: linux-can@vger.kernel.org |
84b0d715 | 2663 | W: https://github.com/linux-can |
870482a4 MKB |
2664 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
2665 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git | |
4261a204 | 2666 | S: Maintained |
8d15d386 OH |
2667 | F: drivers/net/can/ |
2668 | F: include/linux/can/dev.h | |
8d15d386 | 2669 | F: include/linux/can/platform/ |
c117ab84 CEB |
2670 | F: include/uapi/linux/can/error.h |
2671 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 2672 | |
95d16c72 JM |
2673 | CAPABILITIES |
2674 | M: Serge Hallyn <serge.hallyn@canonical.com> | |
2675 | L: linux-security-module@vger.kernel.org | |
6305902c | 2676 | S: Supported |
95d16c72 | 2677 | F: include/linux/capability.h |
c117ab84 | 2678 | F: include/uapi/linux/capability.h |
6305902c | 2679 | F: security/commoncap.c |
38a94118 | 2680 | F: kernel/capability.c |
95d16c72 | 2681 | |
b84894c7 KT |
2682 | CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER |
2683 | M: Kevin Tsai <ktsai@capellamicro.com> | |
2684 | S: Maintained | |
2685 | F: drivers/iio/light/cm* | |
2686 | F: Documentation/devicetree/bindings/i2c/trivial-devices.txt | |
2687 | ||
f21fb3ed RV |
2688 | CAVIUM LIQUIDIO NETWORK DRIVER |
2689 | M: Derek Chickles <derek.chickles@caviumnetworks.com> | |
2690 | M: Satanand Burla <satananda.burla@caviumnetworks.com> | |
2691 | M: Felix Manlunas <felix.manlunas@caviumnetworks.com> | |
2692 | M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com> | |
2693 | L: netdev@vger.kernel.org | |
2694 | W: http://www.cavium.com | |
2695 | S: Supported | |
f21fb3ed RV |
2696 | F: drivers/net/ethernet/cavium/liquidio/ |
2697 | ||
ef0bbac3 VB |
2698 | CC2520 IEEE-802.15.4 RADIO DRIVER |
2699 | M: Varka Bhadram <varkabhadram@gmail.com> | |
2700 | L: linux-wpan@vger.kernel.org | |
2701 | S: Maintained | |
2702 | F: drivers/net/ieee802154/cc2520.c | |
2703 | F: include/linux/spi/cc2520.h | |
2704 | F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt | |
2705 | ||
b8154542 | 2706 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 2707 | M: Arnd Bergmann <arnd@arndb.de> |
a4724ed6 | 2708 | L: linuxppc-dev@lists.ozlabs.org |
b8154542 AB |
2709 | W: http://www.ibm.com/developerworks/power/cell/ |
2710 | S: Supported | |
679655da | 2711 | F: arch/powerpc/include/asm/cell*.h |
679655da | 2712 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 2713 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
2714 | F: arch/powerpc/oprofile/*cell* |
2715 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 2716 | |
398ecff5 SW |
2717 | CEPH COMMON CODE (LIBCEPH) |
2718 | M: Ilya Dryomov <idryomov@gmail.com> | |
e43cdb56 | 2719 | M: "Yan, Zheng" <zyan@redhat.com> |
0f5417ce | 2720 | M: Sage Weil <sage@redhat.com> |
82593f87 | 2721 | L: ceph-devel@vger.kernel.org |
09d90327 | 2722 | W: http://ceph.com/ |
fb99f881 | 2723 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
6e67b7ae | 2724 | T: git git://github.com/ceph/ceph-client.git |
9030aaf9 | 2725 | S: Supported |
14430813 JP |
2726 | F: net/ceph/ |
2727 | F: include/linux/ceph/ | |
2728 | F: include/linux/crush/ | |
9030aaf9 | 2729 | |
398ecff5 SW |
2730 | CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH) |
2731 | M: "Yan, Zheng" <zyan@redhat.com> | |
2732 | M: Sage Weil <sage@redhat.com> | |
2733 | M: Ilya Dryomov <idryomov@gmail.com> | |
2734 | L: ceph-devel@vger.kernel.org | |
2735 | W: http://ceph.com/ | |
2736 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
6e67b7ae | 2737 | T: git git://github.com/ceph/ceph-client.git |
398ecff5 SW |
2738 | S: Supported |
2739 | F: Documentation/filesystems/ceph.txt | |
2740 | F: fs/ceph/ | |
2741 | ||
cfc411e7 DH |
2742 | CERTIFICATE HANDLING: |
2743 | M: David Howells <dhowells@redhat.com> | |
2744 | M: David Woodhouse <dwmw2@infradead.org> | |
d8d80386 | 2745 | L: keyrings@vger.kernel.org |
cfc411e7 DH |
2746 | S: Maintained |
2747 | F: Documentation/module-signing.txt | |
2748 | F: certs/ | |
d8d80386 | 2749 | F: scripts/sign-file.c |
cfc411e7 DH |
2750 | F: scripts/extract-cert.c |
2751 | ||
18332a80 | 2752 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 2753 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 2754 | S: Orphan |
679655da JP |
2755 | F: Documentation/usb/WUSB-Design-overview.txt |
2756 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
2757 | F: drivers/usb/host/hwa-hc.c |
2758 | F: drivers/usb/host/whci/ | |
679655da JP |
2759 | F: drivers/usb/wusbcore/ |
2760 | F: include/linux/usb/wusb* | |
18332a80 | 2761 | |
70e84049 | 2762 | CFAG12864B LCD DRIVER |
8b58be88 | 2763 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2764 | W: http://miguelojeda.es/auxdisplay.htm |
2765 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2766 | S: Maintained |
679655da JP |
2767 | F: drivers/auxdisplay/cfag12864b.c |
2768 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
2769 | |
2770 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 2771 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2772 | W: http://miguelojeda.es/auxdisplay.htm |
2773 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2774 | S: Maintained |
679655da JP |
2775 | F: drivers/auxdisplay/cfag12864bfb.c |
2776 | F: include/linux/cfag12864b.h | |
70e84049 | 2777 | |
704232c2 | 2778 | CFG80211 and NL80211 |
8b58be88 | 2779 | M: Johannes Berg <johannes@sipsolutions.net> |
704232c2 | 2780 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
2781 | W: http://wireless.kernel.org/ |
2782 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
2783 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 2784 | S: Maintained |
c117ab84 | 2785 | F: include/uapi/linux/nl80211.h |
679655da JP |
2786 | F: include/net/cfg80211.h |
2787 | F: net/wireless/* | |
2788 | X: net/wireless/wext* | |
704232c2 | 2789 | |
46e64261 GKH |
2790 | CHAR and MISC DRIVERS |
2791 | M: Arnd Bergmann <arnd@arndb.de> | |
879a5a00 | 2792 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
46e64261 | 2793 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 2794 | S: Supported |
46e64261 GKH |
2795 | F: drivers/char/* |
2796 | F: drivers/misc/* | |
471322a8 | 2797 | F: include/linux/miscdevice.h |
46e64261 | 2798 | |
0a920b5b | 2799 | CHECKPATCH |
8b58be88 | 2800 | M: Andy Whitcroft <apw@canonical.com> |
10d83f07 JP |
2801 | M: Joe Perches <joe@perches.com> |
2802 | S: Maintained | |
679655da | 2803 | F: scripts/checkpatch.pl |
0a920b5b | 2804 | |
f8407f26 HW |
2805 | CHINESE DOCUMENTATION |
2806 | M: Harry Wei <harryxiyou@gmail.com> | |
9740153c | 2807 | L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only) |
f8407f26 HW |
2808 | L: linux-kernel@zh-kernel.org (moderated for non-subscribers) |
2809 | S: Maintained | |
2810 | F: Documentation/zh_CN/ | |
2811 | ||
2721ea2c | 2812 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
60d77b3d | 2813 | M: Peter Chen <Peter.Chen@nxp.com> |
8373856d | 2814 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
2721ea2c AS |
2815 | L: linux-usb@vger.kernel.org |
2816 | S: Maintained | |
2817 | F: drivers/usb/chipidea/ | |
2818 | ||
a93ad65d HG |
2819 | CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER |
2820 | M: Hans de Goede <hdegoede@redhat.com> | |
2821 | L: linux-input@vger.kernel.org | |
2822 | S: Maintained | |
2823 | F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt | |
2824 | F: drivers/input/touchscreen/chipone_icn8318.c | |
2825 | ||
ab043105 OJ |
2826 | CHROME HARDWARE PLATFORM SUPPORT |
2827 | M: Olof Johansson <olof@lixom.net> | |
2828 | S: Maintained | |
9f273c24 | 2829 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git |
ab043105 OJ |
2830 | F: drivers/platform/chrome/ |
2831 | ||
641cb85e | 2832 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 2833 | M: Christian Benvenuti <benve@cisco.com> |
001e1c1d | 2834 | M: Sujith Sankar <ssujith@cisco.com> |
c327e8f4 | 2835 | M: Govindarajulu Varadarajan <_govind@gmx.com> |
5c6652f5 | 2836 | M: Neel Patel <neepatel@cisco.com> |
7063fbf2 | 2837 | S: Supported |
a6a5580c | 2838 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 2839 | |
e3cf00d0 | 2840 | CISCO VIC LOW LATENCY NIC DRIVER |
35ef4a9e DG |
2841 | M: Christian Benvenuti <benve@cisco.com> |
2842 | M: Dave Goodell <dgoodell@cisco.com> | |
b75f0050 | 2843 | S: Supported |
35ef4a9e | 2844 | F: drivers/infiniband/hw/usnic/ |
e3cf00d0 | 2845 | |
2b7a52a4 | 2846 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 2847 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
2b7a52a4 LB |
2848 | L: netdev@vger.kernel.org |
2849 | S: Maintained | |
57d0b7a0 | 2850 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 2851 | |
3d4cfdc9 MB |
2852 | CIRRUS LOGIC AUDIO CODEC DRIVERS |
2853 | M: Brian Austin <brian.austin@cirrus.com> | |
2854 | M: Paul Handrigan <Paul.Handrigan@cirrus.com> | |
2855 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2856 | S: Maintained | |
2857 | F: sound/soc/codecs/cs* | |
2858 | ||
94574d9a KRW |
2859 | CLEANCACHE API |
2860 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
2861 | L: linux-kernel@vger.kernel.org | |
2862 | S: Maintained | |
2863 | F: mm/cleancache.c | |
2864 | F: include/linux/cleancache.h | |
2865 | ||
d4275354 | 2866 | CLK API |
8b58be88 | 2867 | M: Russell King <linux@arm.linux.org.uk> |
aa571b14 | 2868 | L: linux-clk@vger.kernel.org |
37417046 | 2869 | S: Maintained |
d4275354 RK |
2870 | F: include/linux/clk.h |
2871 | ||
9222d247 JS |
2872 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
2873 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
2874 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 2875 | L: linux-kernel@vger.kernel.org |
9222d247 JS |
2876 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
2877 | S: Supported | |
2878 | F: drivers/clocksource | |
2879 | ||
5df6d737 | 2880 | CISCO FCOE HBA DRIVER |
8fc89a79 HP |
2881 | M: Hiral Patel <hiralpat@cisco.com> |
2882 | M: Suma Ramars <sramars@cisco.com> | |
d7e01dc6 | 2883 | M: Brian Uchino <buchino@cisco.com> |
5df6d737 AJ |
2884 | L: linux-scsi@vger.kernel.org |
2885 | S: Supported | |
2a99921a | 2886 | F: drivers/scsi/fnic/ |
5df6d737 | 2887 | |
c8806b6c NM |
2888 | CISCO SCSI HBA DRIVER |
2889 | M: Narsimhulu Musini <nmusini@cisco.com> | |
2890 | M: Sesidhar Baddela <sebaddel@cisco.com> | |
2891 | L: linux-scsi@vger.kernel.org | |
2892 | S: Supported | |
2893 | F: drivers/scsi/snic/ | |
2894 | ||
529aa8cb TLSC |
2895 | CMPC ACPI DRIVER |
2896 | M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> | |
2897 | M: Daniel Oliveira Nascimento <don@syst.com.br> | |
d0944853 | 2898 | L: platform-driver-x86@vger.kernel.org |
529aa8cb TLSC |
2899 | S: Supported |
2900 | F: drivers/platform/x86/classmate-laptop.c | |
2901 | ||
85756a06 HV |
2902 | COBALT MEDIA DRIVER |
2903 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
2904 | L: linux-media@vger.kernel.org | |
2905 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 2906 | W: https://linuxtv.org |
85756a06 HV |
2907 | S: Supported |
2908 | F: drivers/media/pci/cobalt/ | |
2909 | ||
74425eee | 2910 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 2911 | M: Julia Lawall <Julia.Lawall@lip6.fr> |
74425eee | 2912 | M: Gilles Muller <Gilles.Muller@lip6.fr> |
26de9c26 | 2913 | M: Nicolas Palix <nicolas.palix@imag.fr> |
d8130624 | 2914 | M: Michal Marek <mmarek@suse.com> |
26de9c26 | 2915 | L: cocci@systeme.lip6.fr (moderated for non-subscribers) |
c00b5110 | 2916 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
74425eee NP |
2917 | W: http://coccinelle.lip6.fr/ |
2918 | S: Supported | |
4b92b2aa | 2919 | F: Documentation/coccinelle.txt |
74425eee NP |
2920 | F: scripts/coccinelle/ |
2921 | F: scripts/coccicheck | |
2922 | ||
1da177e4 | 2923 | CODA FILE SYSTEM |
8b58be88 | 2924 | M: Jan Harkes <jaharkes@cs.cmu.edu> |
1da177e4 LT |
2925 | M: coda@cs.cmu.edu |
2926 | L: codalist@coda.cs.cmu.edu | |
2927 | W: http://www.coda.cs.cmu.edu/ | |
2928 | S: Maintained | |
679655da JP |
2929 | F: Documentation/filesystems/coda.txt |
2930 | F: fs/coda/ | |
2931 | F: include/linux/coda*.h | |
c117ab84 | 2932 | F: include/uapi/linux/coda*.h |
1da177e4 | 2933 | |
0b14261e PZ |
2934 | CODA V4L2 MEM2MEM DRIVER |
2935 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
2936 | L: linux-media@vger.kernel.org | |
2937 | S: Maintained | |
2938 | F: Documentation/devicetree/bindings/media/coda.txt | |
2939 | F: drivers/media/platform/coda/ | |
2940 | ||
7704addb | 2941 | COMMON CLK FRAMEWORK |
a85fa007 | 2942 | M: Michael Turquette <mturquette@baylibre.com> |
f956165f | 2943 | M: Stephen Boyd <sboyd@codeaurora.org> |
aa571b14 | 2944 | L: linux-clk@vger.kernel.org |
baeb0d9b | 2945 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git |
7704addb | 2946 | S: Maintained |
60bea3b5 SW |
2947 | F: drivers/clk/ |
2948 | X: drivers/clk/clkdev.c | |
7704addb | 2949 | F: include/linux/clk-pr* |
60bea3b5 | 2950 | F: include/linux/clk/ |
7704addb | 2951 | |
e2d1d6c0 | 2952 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 2953 | M: Steve French <sfrench@samba.org> |
51223df6 | 2954 | L: linux-cifs@vger.kernel.org |
d1f28953 | 2955 | L: samba-technical@lists.samba.org (moderated for non-subscribers) |
e2d1d6c0 | 2956 | W: http://linux-cifs.samba.org/ |
bb1d5dda | 2957 | T: git git://git.samba.org/sfrench/cifs-2.6.git |
e2d1d6c0 | 2958 | S: Supported |
ec421a71 | 2959 | F: Documentation/filesystems/cifs/ |
679655da | 2960 | F: fs/cifs/ |
e2d1d6c0 | 2961 | |
1da177e4 | 2962 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 2963 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2964 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2965 | S: Maintained |
679655da | 2966 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
2967 | |
2968 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 2969 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2970 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2971 | S: Maintained |
679655da | 2972 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
2973 | |
2974 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 2975 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2976 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2977 | S: Maintained |
679655da | 2978 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 2979 | |
5411552c | 2980 | COMPAL LAPTOP SUPPORT |
8b58be88 | 2981 | M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> |
d0944853 | 2982 | L: platform-driver-x86@vger.kernel.org |
5411552c | 2983 | S: Maintained |
679655da | 2984 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 2985 | |
949be0f7 | 2986 | CONEXANT ACCESSRUNNER USB DRIVER |
9ae5e3bc SA |
2987 | L: accessrunner-general@lists.sourceforge.net |
2988 | W: http://accessrunner.sourceforge.net/ | |
44243ef4 | 2989 | S: Orphan |
679655da | 2990 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 2991 | |
e2d1d6c0 | 2992 | CONFIGFS |
d6351db2 | 2993 | M: Joel Becker <jlbec@evilplan.org> |
1609bac8 CH |
2994 | M: Christoph Hellwig <hch@lst.de> |
2995 | T: git git://git.infradead.org/users/hch/configfs.git | |
e2d1d6c0 | 2996 | S: Supported |
679655da JP |
2997 | F: fs/configfs/ |
2998 | F: include/linux/configfs.h | |
e2d1d6c0 | 2999 | |
acb9c1b2 | 3000 | CONNECTOR |
8b58be88 | 3001 | M: Evgeniy Polyakov <zbr@ioremap.net> |
acb9c1b2 EP |
3002 | L: netdev@vger.kernel.org |
3003 | S: Maintained | |
3004 | F: drivers/connector/ | |
3005 | ||
a3e3354d | 3006 | CONTROL GROUP (CGROUP) |
860ca0e6 | 3007 | M: Tejun Heo <tj@kernel.org> |
ad50c159 | 3008 | M: Li Zefan <lizefan@huawei.com> |
4d205676 | 3009 | M: Johannes Weiner <hannes@cmpxchg.org> |
12340313 | 3010 | L: cgroups@vger.kernel.org |
860ca0e6 | 3011 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 3012 | S: Maintained |
a3e3354d | 3013 | F: Documentation/cgroups/ |
679655da JP |
3014 | F: include/linux/cgroup* |
3015 | F: kernel/cgroup* | |
a3e3354d TH |
3016 | |
3017 | CONTROL GROUP - CPUSET | |
3018 | M: Li Zefan <lizefan@huawei.com> | |
3019 | L: cgroups@vger.kernel.org | |
3020 | W: http://www.bullopensource.org/cpuset/ | |
3021 | W: http://oss.sgi.com/projects/cpusets/ | |
3022 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git | |
3023 | S: Maintained | |
3024 | F: Documentation/cgroups/cpusets.txt | |
3025 | F: include/linux/cpuset.h | |
3026 | F: kernel/cpuset.c | |
3027 | ||
3028 | CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG) | |
3029 | M: Johannes Weiner <hannes@cmpxchg.org> | |
fbd7dc74 | 3030 | M: Michal Hocko <mhocko@kernel.org> |
ed0f1e21 | 3031 | M: Vladimir Davydov <vdavydov@virtuozzo.com> |
a3e3354d TH |
3032 | L: cgroups@vger.kernel.org |
3033 | L: linux-mm@kvack.org | |
3034 | S: Maintained | |
3035 | F: mm/memcontrol.c | |
5d1ea48b | 3036 | F: mm/swap_cgroup.c |
fb3a0fb6 | 3037 | |
bebe4678 | 3038 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 3039 | M: Fenghua Yu <fenghua.yu@intel.com> |
bebe4678 RM |
3040 | L: lm-sensors@lm-sensors.org |
3041 | S: Maintained | |
679655da JP |
3042 | F: Documentation/hwmon/coretemp |
3043 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 3044 | |
1da177e4 | 3045 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 3046 | M: Jan "Yenya" Kasprzak <kas@fi.muni.cz> |
1da177e4 LT |
3047 | W: http://www.fi.muni.cz/~kas/cosa/ |
3048 | S: Maintained | |
679655da | 3049 | F: drivers/net/wan/cosa* |
1da177e4 | 3050 | |
4371ee35 | 3051 | CPMAC ETHERNET DRIVER |
8b58be88 | 3052 | M: Florian Fainelli <florian@openwrt.org> |
4371ee35 FF |
3053 | L: netdev@vger.kernel.org |
3054 | S: Maintained | |
b544dbac | 3055 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 3056 | |
1da177e4 | 3057 | CPU FREQUENCY DRIVERS |
9c3646d1 | 3058 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
45c009a9 | 3059 | M: Viresh Kumar <viresh.kumar@linaro.org> |
a6c072c7 | 3060 | L: linux-pm@vger.kernel.org |
1da177e4 | 3061 | S: Maintained |
27209d91 VK |
3062 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
3063 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) | |
679655da JP |
3064 | F: drivers/cpufreq/ |
3065 | F: include/linux/cpufreq.h | |
1da177e4 | 3066 | |
8a67f0ef VK |
3067 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
3068 | M: Viresh Kumar <viresh.kumar@linaro.org> | |
171d0ba8 | 3069 | M: Sudeep Holla <sudeep.holla@arm.com> |
8a67f0ef VK |
3070 | L: linux-pm@vger.kernel.org |
3071 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
3072 | S: Maintained | |
3073 | F: drivers/cpufreq/arm_big_little.h | |
3074 | F: drivers/cpufreq/arm_big_little.c | |
3075 | F: drivers/cpufreq/arm_big_little_dt.c | |
3076 | ||
14d2c34c | 3077 | CPUIDLE DRIVER - ARM BIG LITTLE |
b75f0050 JP |
3078 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
3079 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3080 | L: linux-pm@vger.kernel.org | |
3081 | L: linux-arm-kernel@lists.infradead.org | |
cea8321c | 3082 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
b75f0050 JP |
3083 | S: Maintained |
3084 | F: drivers/cpuidle/cpuidle-big_little.c | |
14d2c34c | 3085 | |
0c570c18 BZ |
3086 | CPUIDLE DRIVER - ARM EXYNOS |
3087 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
3088 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3089 | M: Kukjin Kim <kgene@kernel.org> | |
3090 | L: linux-pm@vger.kernel.org | |
3091 | L: linux-samsung-soc@vger.kernel.org | |
3092 | S: Supported | |
3093 | F: drivers/cpuidle/cpuidle-exynos.c | |
3094 | F: arch/arm/mach-exynos/pm.c | |
3095 | ||
a8e39c35 | 3096 | CPUIDLE DRIVERS |
9c3646d1 | 3097 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
a8e39c35 DL |
3098 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
3099 | L: linux-pm@vger.kernel.org | |
3100 | S: Maintained | |
cea8321c | 3101 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
a8e39c35 DL |
3102 | F: drivers/cpuidle/* |
3103 | F: include/linux/cpuidle.h | |
3104 | ||
1da177e4 | 3105 | CPUID/MSR DRIVER |
8b58be88 | 3106 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 3107 | S: Maintained |
679655da JP |
3108 | F: arch/x86/kernel/cpuid.c |
3109 | F: arch/x86/kernel/msr.c | |
1da177e4 | 3110 | |
7fe2f639 | 3111 | CPU POWER MONITORING SUBSYSTEM |
d8130624 | 3112 | M: Thomas Renninger <trenn@suse.com> |
103f1790 | 3113 | L: linux-pm@vger.kernel.org |
7fe2f639 | 3114 | S: Maintained |
14430813 | 3115 | F: tools/power/cpupower/ |
7fe2f639 | 3116 | |
1da177e4 | 3117 | CRAMFS FILESYSTEM |
ce00f85c | 3118 | W: http://sourceforge.net/projects/cramfs/ |
54886a71 | 3119 | S: Orphan / Obsolete |
679655da JP |
3120 | F: Documentation/filesystems/cramfs.txt |
3121 | F: fs/cramfs/ | |
1da177e4 LT |
3122 | |
3123 | CRIS PORT | |
8b58be88 JP |
3124 | M: Mikael Starvik <starvik@axis.com> |
3125 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
9937ac0c | 3126 | L: linux-cris-kernel@axis.com |
1da177e4 | 3127 | W: http://developer.axis.com |
9f273c24 | 3128 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git |
1da177e4 | 3129 | S: Maintained |
679655da | 3130 | F: arch/cris/ |
df621252 | 3131 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
3132 | |
3133 | CRYPTO API | |
8b58be88 JP |
3134 | M: Herbert Xu <herbert@gondor.apana.org.au> |
3135 | M: "David S. Miller" <davem@davemloft.net> | |
1da177e4 | 3136 | L: linux-crypto@vger.kernel.org |
9f273c24 | 3137 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git |
54e5881d | 3138 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 3139 | S: Maintained |
679655da | 3140 | F: Documentation/crypto/ |
2ca87a17 | 3141 | F: Documentation/DocBook/crypto-API.tmpl |
679655da JP |
3142 | F: arch/*/crypto/ |
3143 | F: crypto/ | |
3144 | F: drivers/crypto/ | |
3145 | F: include/crypto/ | |
1da177e4 | 3146 | |
5b07bd57 | 3147 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 3148 | M: Neil Horman <nhorman@tuxdriver.com> |
5b07bd57 NH |
3149 | L: linux-crypto@vger.kernel.org |
3150 | S: Maintained | |
51a2228a JP |
3151 | F: crypto/ansi_cprng.c |
3152 | F: crypto/rng.c | |
5b07bd57 | 3153 | |
fc279cc2 HV |
3154 | CS3308 MEDIA DRIVER |
3155 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3156 | L: linux-media@vger.kernel.org | |
3157 | T: git git://linuxtv.org/media_tree.git | |
3158 | W: http://linuxtv.org | |
3159 | S: Odd Fixes | |
3160 | F: drivers/media/i2c/cs3308.c | |
3161 | F: drivers/media/i2c/cs3308.h | |
3162 | ||
9b4ffa48 | 3163 | CS5535 Audio ALSA driver |
8b58be88 | 3164 | M: Jaya Kumar <jayakumar.alsa@gmail.com> |
9b4ffa48 | 3165 | S: Maintained |
679655da | 3166 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 3167 | |
a910e4a9 | 3168 | CW1200 WLAN driver |
b75f0050 JP |
3169 | M: Solomon Peachy <pizza@shaftnet.org> |
3170 | S: Maintained | |
560424e9 | 3171 | F: drivers/net/wireless/st/cw1200/ |
a910e4a9 | 3172 | |
6d8425b1 | 3173 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 3174 | M: Andy Walls <awalls@md.metrocast.net> |
7b212edf | 3175 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
661263b5 | 3176 | L: linux-media@vger.kernel.org |
275ffde4 | 3177 | T: git git://linuxtv.org/media_tree.git |
a825eaec | 3178 | W: https://linuxtv.org |
30e10993 | 3179 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 3180 | S: Maintained |
679655da | 3181 | F: Documentation/video4linux/cx18.txt |
90d72ac6 | 3182 | F: drivers/media/pci/cx18/ |
6c0f0359 | 3183 | F: include/uapi/linux/ivtv* |
6d8425b1 | 3184 | |
3f101d91 HV |
3185 | CX2341X MPEG ENCODER HELPER MODULE |
3186 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3187 | L: linux-media@vger.kernel.org | |
3188 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 3189 | W: https://linuxtv.org |
3f101d91 | 3190 | S: Maintained |
c368360b | 3191 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
3192 | F: include/media/cx2341x* |
3193 | ||
b8fe6e2c PB |
3194 | CX24120 MEDIA DRIVER |
3195 | M: Jemma Denson <jdenson@gmail.com> | |
3196 | M: Patrick Boettcher <patrick.boettcher@posteo.de> | |
3197 | L: linux-media@vger.kernel.org | |
a825eaec | 3198 | W: https://linuxtv.org |
b8fe6e2c PB |
3199 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3200 | S: Maintained | |
3201 | F: drivers/media/dvb-frontends/cx24120* | |
3202 | ||
20357578 | 3203 | CX88 VIDEO4LINUX DRIVER |
009a5410 | 3204 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
20357578 | 3205 | L: linux-media@vger.kernel.org |
a825eaec | 3206 | W: https://linuxtv.org |
20357578 MCC |
3207 | T: git git://linuxtv.org/media_tree.git |
3208 | S: Odd fixes | |
3209 | F: Documentation/video4linux/cx88/ | |
3210 | F: drivers/media/pci/cx88/ | |
6d8425b1 | 3211 | |
91952bc0 AP |
3212 | CXD2820R MEDIA DRIVER |
3213 | M: Antti Palosaari <crope@iki.fi> | |
3214 | L: linux-media@vger.kernel.org | |
a825eaec | 3215 | W: https://linuxtv.org |
91952bc0 AP |
3216 | W: http://palosaari.fi/linux/ |
3217 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3218 | T: git git://linuxtv.org/anttip/media_tree.git | |
3219 | S: Maintained | |
3220 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 3221 | |
e5ec3789 | 3222 | CXGB3 ETHERNET DRIVER (CXGB3) |
cdc99239 | 3223 | M: Santosh Raspatur <santosh@chelsio.com> |
e5ec3789 SW |
3224 | L: netdev@vger.kernel.org |
3225 | W: http://www.chelsio.com | |
3226 | S: Supported | |
f7917c00 | 3227 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 | 3228 | |
d8ae3c33 | 3229 | CXGB3 ISCSI DRIVER (CXGB3I) |
49e7d9df JP |
3230 | M: Karen Xie <kxie@chelsio.com> |
3231 | L: linux-scsi@vger.kernel.org | |
3232 | W: http://www.chelsio.com | |
3233 | S: Supported | |
3234 | F: drivers/scsi/cxgbi/cxgb3i | |
d8ae3c33 | 3235 | |
e5ec3789 | 3236 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) |
8b58be88 | 3237 | M: Steve Wise <swise@chelsio.com> |
e6cc0fd1 | 3238 | L: linux-rdma@vger.kernel.org |
e5ec3789 SW |
3239 | W: http://www.openfabrics.org |
3240 | S: Supported | |
679655da | 3241 | F: drivers/infiniband/hw/cxgb3/ |
e5ec3789 | 3242 | |
be4c9bad | 3243 | CXGB4 ETHERNET DRIVER (CXGB4) |
56f16c74 | 3244 | M: Hariprasad S <hariprasad@chelsio.com> |
be4c9bad RD |
3245 | L: netdev@vger.kernel.org |
3246 | W: http://www.chelsio.com | |
3247 | S: Supported | |
f7917c00 | 3248 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad | 3249 | |
d8ae3c33 | 3250 | CXGB4 ISCSI DRIVER (CXGB4I) |
49e7d9df JP |
3251 | M: Karen Xie <kxie@chelsio.com> |
3252 | L: linux-scsi@vger.kernel.org | |
3253 | W: http://www.chelsio.com | |
3254 | S: Supported | |
3255 | F: drivers/scsi/cxgbi/cxgb4i | |
d8ae3c33 | 3256 | |
be4c9bad RD |
3257 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) |
3258 | M: Steve Wise <swise@chelsio.com> | |
3259 | L: linux-rdma@vger.kernel.org | |
3260 | W: http://www.openfabrics.org | |
3261 | S: Supported | |
3262 | F: drivers/infiniband/hw/cxgb4/ | |
3263 | ||
5c20a5c7 CL |
3264 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
3265 | M: Casey Leedom <leedom@chelsio.com> | |
3266 | L: netdev@vger.kernel.org | |
3267 | W: http://www.chelsio.com | |
3268 | S: Supported | |
f7917c00 | 3269 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 3270 | |
a9282d01 IM |
3271 | CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER |
3272 | M: Ian Munsie <imunsie@au1.ibm.com> | |
3273 | M: Michael Neuling <mikey@neuling.org> | |
3274 | L: linuxppc-dev@lists.ozlabs.org | |
3275 | S: Supported | |
3276 | F: drivers/misc/cxl/ | |
ec249dd8 | 3277 | F: include/misc/cxl* |
a9282d01 IM |
3278 | F: include/uapi/misc/cxl.h |
3279 | F: Documentation/powerpc/cxl.txt | |
3280 | F: Documentation/powerpc/cxl.txt | |
3281 | F: Documentation/ABI/testing/sysfs-class-cxl | |
3282 | ||
11f43ae7 MO |
3283 | CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER |
3284 | M: Manoj N. Kumar <manoj@linux.vnet.ibm.com> | |
3285 | M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com> | |
3286 | L: linux-scsi@vger.kernel.org | |
3287 | S: Supported | |
3288 | F: drivers/scsi/cxlflash/ | |
3289 | F: include/uapi/scsi/cxlflash_ioctls.h | |
3290 | F: Documentation/powerpc/cxlflash.txt | |
3291 | ||
b52b97a3 GC |
3292 | STMMAC ETHERNET DRIVER |
3293 | M: Giuseppe Cavallaro <peppe.cavallaro@st.com> | |
3294 | L: netdev@vger.kernel.org | |
3295 | W: http://www.stlinux.com | |
3296 | S: Supported | |
7ac6653a | 3297 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 3298 | |
1da177e4 | 3299 | CYBERPRO FB DRIVER |
8b58be88 | 3300 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 3301 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1da177e4 LT |
3302 | W: http://www.arm.linux.org.uk/ |
3303 | S: Maintained | |
8a61f013 | 3304 | F: drivers/video/fbdev/cyber2000fb.* |
9fa68eae | 3305 | |
1da177e4 | 3306 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 3307 | W: http://www.cyclades.com/ |
d459883e | 3308 | S: Orphan |
c897401b | 3309 | F: drivers/tty/cyclades.c |
679655da | 3310 | F: include/linux/cyclades.h |
c117ab84 | 3311 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
3312 | |
3313 | CYCLADES PC300 DRIVER | |
1da177e4 | 3314 | W: http://www.cyclades.com/ |
d459883e | 3315 | S: Orphan |
679655da | 3316 | F: drivers/net/wan/pc300* |
1da177e4 | 3317 | |
402f6ae4 AP |
3318 | CYPRESS_FIRMWARE MEDIA DRIVER |
3319 | M: Antti Palosaari <crope@iki.fi> | |
3320 | L: linux-media@vger.kernel.org | |
a825eaec | 3321 | W: https://linuxtv.org |
402f6ae4 AP |
3322 | W: http://palosaari.fi/linux/ |
3323 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3324 | T: git git://linuxtv.org/anttip/media_tree.git | |
3325 | S: Maintained | |
3326 | F: drivers/media/common/cypress_firmware* | |
3327 | ||
e3ae3525 | 3328 | CYTTSP TOUCHSCREEN DRIVER |
be9a6f40 | 3329 | M: Ferruh Yigit <fery@cypress.com> |
6305902c | 3330 | L: linux-input@vger.kernel.org |
be9a6f40 | 3331 | S: Supported |
6305902c JP |
3332 | F: drivers/input/touchscreen/cyttsp* |
3333 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 3334 | |
aaaf5fbf JK |
3335 | DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK |
3336 | M: Joshua Kinard <kumba@gentoo.org> | |
3337 | S: Maintained | |
3338 | F: drivers/rtc/rtc-ds1685.c | |
3339 | F: include/linux/rtc/ds1685.h | |
3340 | ||
1da177e4 | 3341 | DAMA SLAVE for AX.25 |
8b58be88 | 3342 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
3343 | W: http://yaina.de/jreuter/ |
3344 | W: http://www.qsl.net/dl1bke/ | |
3345 | L: linux-hams@vger.kernel.org | |
3346 | S: Maintained | |
679655da JP |
3347 | F: net/ax25/af_ax25.c |
3348 | F: net/ax25/ax25_dev.c | |
3349 | F: net/ax25/ax25_ds_* | |
3350 | F: net/ax25/ax25_in.c | |
3351 | F: net/ax25/ax25_out.c | |
3352 | F: net/ax25/ax25_timer.c | |
3353 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 3354 | |
e2d1d6c0 | 3355 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 3356 | L: netdev@vger.kernel.org |
5ff77428 | 3357 | S: Orphan |
679655da | 3358 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 3359 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
3360 | |
3361 | DC390/AM53C974 SCSI driver | |
d8130624 | 3362 | M: Hannes Reinecke <hare@suse.com> |
71bd849d | 3363 | L: linux-scsi@vger.kernel.org |
e2d1d6c0 | 3364 | S: Maintained |
71bd849d | 3365 | F: drivers/scsi/am53c974.c |
e2d1d6c0 | 3366 | |
1da177e4 | 3367 | DC395x SCSI driver |
61eee9a7 | 3368 | M: Oliver Neukum <oliver@neukum.org> |
8b58be88 JP |
3369 | M: Ali Akcaagac <aliakc@web.de> |
3370 | M: Jamie Lenehan <lenehan@twibble.org> | |
f5df5881 | 3371 | L: dc395x@twibble.org |
cf015e9f JP |
3372 | W: http://twibble.org/dist/dc395x/ |
3373 | W: http://lists.twibble.org/mailman/listinfo/dc395x/ | |
1da177e4 | 3374 | S: Maintained |
679655da JP |
3375 | F: Documentation/scsi/dc395x.txt |
3376 | F: drivers/scsi/dc395x.* | |
1da177e4 | 3377 | |
eb8edb08 | 3378 | DCCP PROTOCOL |
a89d030e | 3379 | M: Gerrit Renker <gerrit@erg.abdn.ac.uk> |
eb8edb08 | 3380 | L: dccp@vger.kernel.org |
c996d8b9 | 3381 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 3382 | S: Maintained |
679655da | 3383 | F: include/linux/dccp.h |
c117ab84 | 3384 | F: include/uapi/linux/dccp.h |
679655da JP |
3385 | F: include/linux/tfrc.h |
3386 | F: net/dccp/ | |
eb8edb08 | 3387 | |
1da177e4 | 3388 | DECnet NETWORK LAYER |
1da177e4 LT |
3389 | W: http://linux-decnet.sourceforge.net |
3390 | L: linux-decnet-user@lists.sourceforge.net | |
f546444d | 3391 | S: Orphan |
679655da JP |
3392 | F: Documentation/networking/decnet.txt |
3393 | F: net/decnet/ | |
1da177e4 | 3394 | |
ebff05b9 MR |
3395 | DECSTATION PLATFORM SUPPORT |
3396 | M: "Maciej W. Rozycki" <macro@linux-mips.org> | |
3397 | L: linux-mips@linux-mips.org | |
3398 | W: http://www.linux-mips.org/wiki/DECstation | |
3399 | S: Maintained | |
3400 | F: arch/mips/dec/ | |
3401 | F: arch/mips/include/asm/dec/ | |
3402 | F: arch/mips/include/asm/mach-dec/ | |
3403 | ||
1da177e4 | 3404 | DEFXX FDDI NETWORK DRIVER |
8b58be88 | 3405 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
1da177e4 | 3406 | S: Maintained |
33f810b2 | 3407 | F: drivers/net/fddi/defxx.* |
1da177e4 | 3408 | |
ad8f07cc | 3409 | DELL LAPTOP DRIVER |
8b58be88 | 3410 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
cdbff611 | 3411 | M: Pali RohĂ¡r <pali.rohar@gmail.com> |
d0944853 | 3412 | L: platform-driver-x86@vger.kernel.org |
ad8f07cc | 3413 | S: Maintained |
679655da | 3414 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 3415 | |
817a5cdb PR |
3416 | DELL LAPTOP RBTN DRIVER |
3417 | M: Pali RohĂ¡r <pali.rohar@gmail.com> | |
3418 | S: Maintained | |
3419 | F: drivers/platform/x86/dell-rbtn.* | |
3420 | ||
cdbff611 PR |
3421 | DELL LAPTOP FREEFALL DRIVER |
3422 | M: Pali RohĂ¡r <pali.rohar@gmail.com> | |
3423 | S: Maintained | |
3424 | F: drivers/platform/x86/dell-smo8800.c | |
3425 | ||
1da177e4 | 3426 | DELL LAPTOP SMM DRIVER |
a5afba16 | 3427 | M: Pali RohĂ¡r <pali.rohar@gmail.com> |
ef3522f7 | 3428 | S: Maintained |
a5afba16 | 3429 | F: drivers/hwmon/dell-smm-hwmon.c |
c117ab84 | 3430 | F: include/uapi/linux/i8k.h |
1da177e4 | 3431 | |
90563ec4 | 3432 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 3433 | M: Doug Warzecha <Douglas_Warzecha@dell.com> |
90563ec4 | 3434 | S: Maintained |
679655da JP |
3435 | F: Documentation/dcdbas.txt |
3436 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 3437 | |
0b3f6109 | 3438 | DELL WMI EXTRAS DRIVER |
8b58be88 | 3439 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
cdbff611 | 3440 | M: Pali RohĂ¡r <pali.rohar@gmail.com> |
0b3f6109 | 3441 | S: Maintained |
36b3a96f | 3442 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 3443 | |
5efc75e3 | 3444 | DESIGNWARE USB2 DRD IP DRIVER |
16272ae7 | 3445 | M: John Youn <johnyoun@synopsys.com> |
5efc75e3 | 3446 | L: linux-usb@vger.kernel.org |
18f340f9 | 3447 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
5efc75e3 | 3448 | S: Maintained |
197ba5f4 | 3449 | F: drivers/usb/dwc2/ |
5efc75e3 | 3450 | |
94ab23dd | 3451 | DESIGNWARE USB3 DRD IP DRIVER |
a55f6286 | 3452 | M: Felipe Balbi <balbi@kernel.org> |
94ab23dd | 3453 | L: linux-usb@vger.kernel.org |
94ab23dd FB |
3454 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
3455 | S: Maintained | |
3456 | F: drivers/usb/dwc3/ | |
3457 | ||
833c9545 JB |
3458 | DEVICE COREDUMP (DEV_COREDUMP) |
3459 | M: Johannes Berg <johannes@sipsolutions.net> | |
3460 | L: linux-kernel@vger.kernel.org | |
3461 | S: Maintained | |
3462 | F: drivers/base/devcoredump.c | |
3463 | F: include/linux/devcoredump.h | |
3464 | ||
89d07767 KP |
3465 | DEVICE FREQUENCY (DEVFREQ) |
3466 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
3467 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
88476d34 | 3468 | L: linux-pm@vger.kernel.org |
6a3cd722 | 3469 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git |
89d07767 KP |
3470 | S: Maintained |
3471 | F: drivers/devfreq/ | |
6a3cd722 CC |
3472 | F: include/linux/devfreq.h |
3473 | F: Documentation/devicetree/bindings/devfreq/ | |
89d07767 | 3474 | |
7dbded06 CC |
3475 | DEVICE FREQUENCY EVENT (DEVFREQ-EVENT) |
3476 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
3477 | L: linux-pm@vger.kernel.org | |
3478 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git | |
3479 | S: Supported | |
3480 | F: drivers/devfreq/event/ | |
3481 | F: drivers/devfreq/devfreq-event.c | |
3482 | F: include/linux/devfreq-event.h | |
3483 | F: Documentation/devicetree/bindings/devfreq/event/ | |
89d07767 | 3484 | |
1da177e4 | 3485 | DEVICE NUMBER REGISTRY |
8b58be88 | 3486 | M: Torben Mathiasen <device@lanana.org> |
1da177e4 | 3487 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
3488 | S: Maintained |
3489 | ||
e2d1d6c0 | 3490 | DEVICE-MAPPER (LVM) |
854ecaad | 3491 | M: Alasdair Kergon <agk@redhat.com> |
8504eed3 | 3492 | M: Mike Snitzer <snitzer@redhat.com> |
854ecaad | 3493 | M: dm-devel@redhat.com |
e2d1d6c0 RD |
3494 | L: dm-devel@redhat.com |
3495 | W: http://sources.redhat.com/dm | |
8a6e2535 | 3496 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
41d35d25 | 3497 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git |
854ecaad | 3498 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 3499 | S: Maintained |
679655da JP |
3500 | F: Documentation/device-mapper/ |
3501 | F: drivers/md/dm* | |
854ecaad | 3502 | F: drivers/md/persistent-data/ |
679655da JP |
3503 | F: include/linux/device-mapper.h |
3504 | F: include/linux/dm-*.h | |
8504eed3 | 3505 | F: include/uapi/linux/dm-*.h |
e2d1d6c0 | 3506 | |
c0d995aa OST |
3507 | DIALOG SEMICONDUCTOR DRIVERS |
3508 | M: Support Opensource <support.opensource@diasemi.com> | |
3509 | W: http://www.dialog-semiconductor.com/products | |
3510 | S: Supported | |
3511 | F: Documentation/hwmon/da90?? | |
7c933772 | 3512 | F: Documentation/devicetree/bindings/sound/da[79]*.txt |
c0d995aa OST |
3513 | F: drivers/gpio/gpio-da90??.c |
3514 | F: drivers/hwmon/da90??-hwmon.c | |
7be72c2c | 3515 | F: drivers/iio/adc/da91??-*.c |
c0d995aa OST |
3516 | F: drivers/input/misc/da90??_onkey.c |
3517 | F: drivers/input/touchscreen/da9052_tsi.c | |
3518 | F: drivers/leds/leds-da90??.c | |
3519 | F: drivers/mfd/da903x.c | |
3520 | F: drivers/mfd/da90??-*.c | |
7be72c2c | 3521 | F: drivers/mfd/da91??-*.c |
c0d995aa | 3522 | F: drivers/power/da9052-battery.c |
7be72c2c | 3523 | F: drivers/power/da91??-*.c |
c0d995aa OST |
3524 | F: drivers/regulator/da903x.c |
3525 | F: drivers/regulator/da9???-regulator.[ch] | |
3526 | F: drivers/rtc/rtc-da90??.c | |
3527 | F: drivers/video/backlight/da90??_bl.c | |
3528 | F: drivers/watchdog/da90??_wdt.c | |
3529 | F: include/linux/mfd/da903x.h | |
3530 | F: include/linux/mfd/da9052/ | |
3531 | F: include/linux/mfd/da9055/ | |
3532 | F: include/linux/mfd/da9063/ | |
7be72c2c | 3533 | F: include/linux/mfd/da9150/ |
c0d995aa OST |
3534 | F: include/sound/da[79]*.h |
3535 | F: sound/soc/codecs/da[79]*.[ch] | |
3536 | ||
599aa697 LL |
3537 | DIGI NEO AND CLASSIC PCI PRODUCTS |
3538 | M: Lidza Louina <lidza.louina@gmail.com> | |
542f3d5a | 3539 | M: Mark Hounschell <markh@compro.net> |
599aa697 LL |
3540 | L: driverdev-devel@linuxdriverproject.org |
3541 | S: Maintained | |
3542 | F: drivers/staging/dgnc/ | |
3543 | ||
3544 | DIGI EPCA PCI PRODUCTS | |
3545 | M: Lidza Louina <lidza.louina@gmail.com> | |
6d825f79 | 3546 | M: Daeseok Youn <daeseok.youn@gmail.com> |
599aa697 LL |
3547 | L: driverdev-devel@linuxdriverproject.org |
3548 | S: Maintained | |
3549 | F: drivers/staging/dgap/ | |
3550 | ||
335d7c58 | 3551 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 3552 | M: Guenter Roeck <linux@roeck-us.net> |
335d7c58 GR |
3553 | L: linux-i2c@vger.kernel.org |
3554 | S: Maintained | |
3555 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
3556 | ||
d475c634 MW |
3557 | DIRECT ACCESS (DAX) |
3558 | M: Matthew Wilcox <willy@linux.intel.com> | |
3559 | L: linux-fsdevel@vger.kernel.org | |
3560 | S: Supported | |
3561 | F: fs/dax.c | |
3562 | ||
e7839f25 | 3563 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 3564 | M: Eric Paris <eparis@parisplace.org> |
3c5119c0 | 3565 | S: Maintained |
679655da JP |
3566 | F: Documentation/filesystems/dnotify.txt |
3567 | F: fs/notify/dnotify/ | |
3568 | F: include/linux/dnotify.h | |
1da177e4 LT |
3569 | |
3570 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 3571 | M: Andries Brouwer <aeb@cwi.nl> |
1da177e4 LT |
3572 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
3573 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
3574 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
3575 | S: Maintained | |
3576 | ||
4480f15b | 3577 | DISKQUOTA |
d8130624 | 3578 | M: Jan Kara <jack@suse.com> |
1da177e4 | 3579 | S: Maintained |
679655da JP |
3580 | F: Documentation/filesystems/quota.txt |
3581 | F: fs/quota/ | |
3582 | F: include/linux/quota*.h | |
c117ab84 | 3583 | F: include/uapi/linux/quota*.h |
1da177e4 | 3584 | |
702686ad BT |
3585 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
3586 | M: Bernie Thompson <bernie@plugable.com> | |
3587 | L: linux-fbdev@vger.kernel.org | |
3588 | S: Maintained | |
3589 | W: http://plugable.com/category/projects/udlfb/ | |
8a61f013 | 3590 | F: drivers/video/fbdev/udlfb.c |
702686ad BT |
3591 | F: include/video/udlfb.h |
3592 | F: Documentation/fb/udlfb.txt | |
3593 | ||
e7839f25 | 3594 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
3595 | M: Christine Caulfield <ccaulfie@redhat.com> |
3596 | M: David Teigland <teigland@redhat.com> | |
a4644184 | 3597 | L: cluster-devel@redhat.com |
5be7b50f | 3598 | W: http://sources.redhat.com/cluster/ |
9f273c24 | 3599 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git |
5be7b50f | 3600 | S: Supported |
679655da | 3601 | F: fs/dlm/ |
5be7b50f | 3602 | |
53b6b3e0 SS |
3603 | DMA BUFFER SHARING FRAMEWORK |
3604 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
3605 | S: Maintained | |
3606 | L: linux-media@vger.kernel.org | |
3607 | L: dri-devel@lists.freedesktop.org | |
8ada6d2d | 3608 | L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers) |
35fac7e3 | 3609 | F: drivers/dma-buf/ |
e46d12c6 JP |
3610 | F: include/linux/dma-buf* |
3611 | F: include/linux/reservation.h | |
3612 | F: include/linux/*fence.h | |
53b6b3e0 SS |
3613 | F: Documentation/dma-buf-sharing.txt |
3614 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
3615 | ||
b3e5f263 | 3616 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 3617 | M: Vinod Koul <vinod.koul@intel.com> |
17b59560 VK |
3618 | L: dmaengine@vger.kernel.org |
3619 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
08223d80 | 3620 | S: Maintained |
679655da | 3621 | F: drivers/dma/ |
0ce3c066 | 3622 | F: include/linux/dmaengine.h |
979a281e VK |
3623 | F: Documentation/dmaengine/ |
3624 | T: git git://git.infradead.org/users/vkoul/slave-dma.git | |
248a9dc3 | 3625 | |
b825037d | 3626 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 3627 | M: Juerg Haefliger <juergh@gmail.com> |
b825037d JH |
3628 | L: lm-sensors@lm-sensors.org |
3629 | S: Maintained | |
679655da JP |
3630 | F: Documentation/hwmon/dme1737 |
3631 | F: drivers/hwmon/dme1737.c | |
b825037d | 3632 | |
1f31e1b1 | 3633 | DMI/SMBIOS SUPPORT |
d8130624 | 3634 | M: Jean Delvare <jdelvare@suse.com> |
1f31e1b1 | 3635 | S: Maintained |
d4aeef93 | 3636 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/ |
d7f96f97 | 3637 | F: Documentation/ABI/testing/sysfs-firmware-dmi-tables |
1f31e1b1 JD |
3638 | F: drivers/firmware/dmi-id.c |
3639 | F: drivers/firmware/dmi_scan.c | |
3640 | F: include/linux/dmi.h | |
3641 | ||
7d2c86b5 | 3642 | DOCUMENTATION |
ad3118b9 | 3643 | M: Jonathan Corbet <corbet@lwn.net> |
795fb7e7 JD |
3644 | L: linux-doc@vger.kernel.org |
3645 | S: Maintained | |
679655da | 3646 | F: Documentation/ |
42f41ecf JC |
3647 | F: scripts/docproc.c |
3648 | F: scripts/kernel-doc* | |
97be078b RD |
3649 | X: Documentation/ABI/ |
3650 | X: Documentation/devicetree/ | |
933a46b8 JC |
3651 | X: Documentation/acpi |
3652 | X: Documentation/power | |
3653 | X: Documentation/spi | |
6c121170 | 3654 | X: Documentation/DocBook/media |
c51edfb1 | 3655 | T: git git://git.lwn.net/linux.git docs-next |
abbaeff3 | 3656 | |
1da177e4 | 3657 | DOUBLETALK DRIVER |
8b58be88 | 3658 | M: "James R. Van Zandt" <jrv@vanzandt.mv.com> |
1da177e4 LT |
3659 | L: blinux-list@redhat.com |
3660 | S: Maintained | |
679655da JP |
3661 | F: drivers/char/dtlk.c |
3662 | F: include/linux/dtlk.h | |
1da177e4 | 3663 | |
e2d1d6c0 | 3664 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 3665 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
3666 | L: linux-scsi@vger.kernel.org |
3667 | W: http://www.adaptec.com/ | |
3668 | S: Maintained | |
679655da JP |
3669 | F: drivers/scsi/dpt* |
3670 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 3671 | |
b411b363 | 3672 | DRBD DRIVER |
bc2c049d RK |
3673 | M: Philipp Reisner <philipp.reisner@linbit.com> |
3674 | M: Lars Ellenberg <lars.ellenberg@linbit.com> | |
3675 | L: drbd-dev@lists.linbit.com | |
28b8e8d4 | 3676 | W: http://www.drbd.org |
bc2c049d RK |
3677 | T: git git://git.linbit.com/linux-drbd.git |
3678 | T: git git://git.linbit.com/drbd-8.4.git | |
28b8e8d4 JP |
3679 | S: Supported |
3680 | F: drivers/block/drbd/ | |
3681 | F: lib/lru_cache.c | |
3682 | F: Documentation/blockdev/drbd/ | |
b411b363 | 3683 | |
dc7dfcd8 | 3684 | DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS |
879a5a00 | 3685 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
08deed1e | 3686 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 3687 | S: Supported |
679655da | 3688 | F: Documentation/kobject.txt |
7cfc51b9 | 3689 | F: drivers/base/ |
87544653 | 3690 | F: fs/debugfs/ |
dc7dfcd8 WS |
3691 | F: fs/kernfs/ |
3692 | F: fs/sysfs/ | |
87544653 | 3693 | F: include/linux/debugfs.h |
dc7dfcd8 | 3694 | F: include/linux/kobj* |
679655da | 3695 | F: lib/kobj* |
1da177e4 LT |
3696 | |
3697 | DRM DRIVERS | |
8b58be88 | 3698 | M: David Airlie <airlied@linux.ie> |
4c6a3999 | 3699 | L: dri-devel@lists.freedesktop.org |
b0447888 | 3700 | T: git git://people.freedesktop.org/~airlied/linux |
1da177e4 | 3701 | S: Maintained |
679655da | 3702 | F: drivers/gpu/drm/ |
433e3b34 | 3703 | F: drivers/gpu/vga/ |
850e9411 | 3704 | F: include/drm/ |
c117ab84 | 3705 | F: include/uapi/drm/ |
1da177e4 | 3706 | |
566f5939 AD |
3707 | RADEON DRM DRIVERS |
3708 | M: Alex Deucher <alexander.deucher@amd.com> | |
3709 | M: Christian König <christian.koenig@amd.com> | |
3710 | L: dri-devel@lists.freedesktop.org | |
3711 | T: git git://people.freedesktop.org/~agd5f/linux | |
3712 | S: Supported | |
3713 | F: drivers/gpu/drm/radeon/ | |
566f5939 AD |
3714 | F: include/uapi/drm/radeon* |
3715 | ||
03e255b9 TR |
3716 | DRM PANEL DRIVERS |
3717 | M: Thierry Reding <thierry.reding@gmail.com> | |
3718 | L: dri-devel@lists.freedesktop.org | |
3719 | T: git git://anongit.freedesktop.org/tegra/linux.git | |
3720 | S: Maintained | |
3721 | F: drivers/gpu/drm/drm_panel.c | |
3722 | F: drivers/gpu/drm/panel/ | |
3723 | F: include/drm/drm_panel.h | |
2d799dde | 3724 | F: Documentation/devicetree/bindings/display/panel/ |
03e255b9 | 3725 | |
8daf7473 | 3726 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
cbce7107 | 3727 | M: Daniel Vetter <daniel.vetter@intel.com> |
47f95647 | 3728 | M: Jani Nikula <jani.nikula@linux.intel.com> |
362132d2 | 3729 | L: intel-gfx@lists.freedesktop.org |
8daf7473 | 3730 | L: dri-devel@lists.freedesktop.org |
7564fde3 | 3731 | W: https://01.org/linuxgraphics/ |
47f95647 | 3732 | Q: http://patchwork.freedesktop.org/project/intel-gfx/ |
89258a97 | 3733 | T: git git://anongit.freedesktop.org/drm-intel |
8daf7473 | 3734 | S: Supported |
14430813 | 3735 | F: drivers/gpu/drm/i915/ |
8daf7473 | 3736 | F: include/drm/i915* |
c117ab84 | 3737 | F: include/uapi/drm/i915* |
8daf7473 | 3738 | |
99763bb8 BB |
3739 | DRM DRIVERS FOR ATMEL HLCDC |
3740 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
3741 | L: dri-devel@lists.freedesktop.org | |
3742 | S: Supported | |
3743 | F: drivers/gpu/drm/atmel-hlcdc/ | |
3744 | F: Documentation/devicetree/bindings/drm/atmel/ | |
3745 | ||
398a6d4a KP |
3746 | DRM DRIVERS FOR EXYNOS |
3747 | M: Inki Dae <inki.dae@samsung.com> | |
f1501303 ID |
3748 | M: Joonyoung Shim <jy0922.shim@samsung.com> |
3749 | M: Seung-Woo Kim <sw0312.kim@samsung.com> | |
3750 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
398a6d4a | 3751 | L: dri-devel@lists.freedesktop.org |
25a58030 | 3752 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a | 3753 | S: Supported |
14430813 | 3754 | F: drivers/gpu/drm/exynos/ |
398a6d4a | 3755 | F: include/drm/exynos* |
c117ab84 | 3756 | F: include/uapi/drm/exynos* |
398a6d4a | 3757 | |
b55a1b9c JW |
3758 | DRM DRIVERS FOR FREESCALE DCU |
3759 | M: Jianwei Wang <jianwei.wang.chn@gmail.com> | |
3760 | M: Alison Wang <alison.wang@freescale.com> | |
3761 | L: dri-devel@lists.freedesktop.org | |
3762 | S: Supported | |
3763 | F: drivers/gpu/drm/fsl-dcu/ | |
2d799dde RH |
3764 | F: Documentation/devicetree/bindings/display/fsl,dcu.txt |
3765 | F: Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt | |
b55a1b9c | 3766 | |
0a3d775f PZ |
3767 | DRM DRIVERS FOR FREESCALE IMX |
3768 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
3769 | L: dri-devel@lists.freedesktop.org | |
3770 | S: Maintained | |
3771 | F: drivers/gpu/drm/imx/ | |
ef739aa4 | 3772 | F: drivers/gpu/ipu-v3/ |
2d799dde | 3773 | F: Documentation/devicetree/bindings/display/imx/ |
0a3d775f | 3774 | |
ba2199a6 PJ |
3775 | DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets) |
3776 | M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com> | |
3777 | L: dri-devel@lists.freedesktop.org | |
3778 | T: git git://github.com/patjak/drm-gma500 | |
3779 | S: Maintained | |
3780 | F: drivers/gpu/drm/gma500 | |
3781 | F: include/drm/gma500* | |
3782 | ||
bd3b49f2 | 3783 | DRM DRIVERS FOR NVIDIA TEGRA |
a5ad7a63 TR |
3784 | M: Thierry Reding <thierry.reding@gmail.com> |
3785 | M: Terje Bergström <tbergstrom@nvidia.com> | |
bd3b49f2 TR |
3786 | L: dri-devel@lists.freedesktop.org |
3787 | L: linux-tegra@vger.kernel.org | |
a5ad7a63 | 3788 | T: git git://anongit.freedesktop.org/tegra/linux.git |
adabdb0c | 3789 | S: Supported |
dee8268f | 3790 | F: drivers/gpu/drm/tegra/ |
a5ad7a63 | 3791 | F: drivers/gpu/host1x/ |
e1e90644 | 3792 | F: include/linux/host1x.h |
a5ad7a63 | 3793 | F: include/uapi/drm/tegra_drm.h |
2d799dde | 3794 | F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt |
bd3b49f2 | 3795 | |
a284e9d1 LP |
3796 | DRM DRIVERS FOR RENESAS |
3797 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
3798 | L: dri-devel@lists.freedesktop.org | |
4a121096 | 3799 | L: linux-renesas-soc@vger.kernel.org |
a284e9d1 LP |
3800 | T: git git://people.freedesktop.org/~airlied/linux |
3801 | S: Supported | |
3802 | F: drivers/gpu/drm/rcar-du/ | |
3803 | F: drivers/gpu/drm/shmobile/ | |
a284e9d1 LP |
3804 | F: include/linux/platform_data/shmob_drm.h |
3805 | ||
625e0346 HS |
3806 | DRM DRIVERS FOR ROCKCHIP |
3807 | M: Mark Yao <mark.yao@rock-chips.com> | |
3808 | L: dri-devel@lists.freedesktop.org | |
3809 | S: Maintained | |
3810 | F: drivers/gpu/drm/rockchip/ | |
2d799dde | 3811 | F: Documentation/devicetree/bindings/display/rockchip* |
625e0346 | 3812 | |
7f11c476 BG |
3813 | DRM DRIVERS FOR STI |
3814 | M: Benjamin Gaignard <benjamin.gaignard@linaro.org> | |
3815 | M: Vincent Abriou <vincent.abriou@st.com> | |
3816 | L: dri-devel@lists.freedesktop.org | |
3817 | T: git http://git.linaro.org/people/benjamin.gaignard/kernel.git | |
3818 | S: Maintained | |
3819 | F: drivers/gpu/drm/sti | |
2d799dde | 3820 | F: Documentation/devicetree/bindings/display/st,stih4xx.txt |
7f11c476 | 3821 | |
8bb0bce9 LS |
3822 | DRM DRIVERS FOR VIVANTE GPU IP |
3823 | M: Lucas Stach <l.stach@pengutronix.de> | |
3824 | R: Russell King <linux+etnaviv@arm.linux.org.uk> | |
3825 | R: Christian Gmeiner <christian.gmeiner@gmail.com> | |
3826 | L: dri-devel@lists.freedesktop.org | |
3827 | S: Maintained | |
3828 | F: drivers/gpu/drm/etnaviv | |
3829 | F: Documentation/devicetree/bindings/display/etnaviv | |
3830 | ||
598df1ac AK |
3831 | DSBR100 USB FM RADIO DRIVER |
3832 | M: Alexey Klimov <klimov.linux@gmail.com> | |
3833 | L: linux-media@vger.kernel.org | |
3834 | T: git git://linuxtv.org/media_tree.git | |
3835 | S: Maintained | |
3836 | F: drivers/media/radio/dsbr100.c | |
3837 | ||
1da177e4 | 3838 | DSCC4 DRIVER |
8b58be88 | 3839 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 | 3840 | L: netdev@vger.kernel.org |
1da177e4 | 3841 | S: Maintained |
679655da | 3842 | F: drivers/net/wan/dscc4.c |
1da177e4 | 3843 | |
cc11b140 HV |
3844 | DT3155 MEDIA DRIVER |
3845 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3846 | L: linux-media@vger.kernel.org | |
3847 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 3848 | W: https://linuxtv.org |
cc11b140 HV |
3849 | S: Odd Fixes |
3850 | F: drivers/media/pci/dt3155/ | |
3851 | ||
91952bc0 AP |
3852 | DVB_USB_AF9015 MEDIA DRIVER |
3853 | M: Antti Palosaari <crope@iki.fi> | |
3854 | L: linux-media@vger.kernel.org | |
a825eaec | 3855 | W: https://linuxtv.org |
91952bc0 AP |
3856 | W: http://palosaari.fi/linux/ |
3857 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3858 | T: git git://linuxtv.org/anttip/media_tree.git | |
3859 | S: Maintained | |
3860 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
3861 | ||
3862 | DVB_USB_AF9035 MEDIA DRIVER | |
3863 | M: Antti Palosaari <crope@iki.fi> | |
3864 | L: linux-media@vger.kernel.org | |
a825eaec | 3865 | W: https://linuxtv.org |
91952bc0 AP |
3866 | W: http://palosaari.fi/linux/ |
3867 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3868 | T: git git://linuxtv.org/anttip/media_tree.git | |
3869 | S: Maintained | |
3870 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
3871 | ||
3872 | DVB_USB_ANYSEE MEDIA DRIVER | |
3873 | M: Antti Palosaari <crope@iki.fi> | |
3874 | L: linux-media@vger.kernel.org | |
a825eaec | 3875 | W: https://linuxtv.org |
91952bc0 AP |
3876 | W: http://palosaari.fi/linux/ |
3877 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3878 | T: git git://linuxtv.org/anttip/media_tree.git | |
3879 | S: Maintained | |
3880 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
3881 | ||
3882 | DVB_USB_AU6610 MEDIA DRIVER | |
3883 | M: Antti Palosaari <crope@iki.fi> | |
3884 | L: linux-media@vger.kernel.org | |
a825eaec | 3885 | W: https://linuxtv.org |
91952bc0 AP |
3886 | W: http://palosaari.fi/linux/ |
3887 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3888 | T: git git://linuxtv.org/anttip/media_tree.git | |
3889 | S: Maintained | |
3890 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
3891 | ||
3892 | DVB_USB_CE6230 MEDIA DRIVER | |
3893 | M: Antti Palosaari <crope@iki.fi> | |
3894 | L: linux-media@vger.kernel.org | |
a825eaec | 3895 | W: https://linuxtv.org |
91952bc0 AP |
3896 | W: http://palosaari.fi/linux/ |
3897 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3898 | T: git git://linuxtv.org/anttip/media_tree.git | |
3899 | S: Maintained | |
3900 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
3901 | ||
d099dea2 MK |
3902 | DVB_USB_CXUSB MEDIA DRIVER |
3903 | M: Michael Krufky <mkrufky@linuxtv.org> | |
3904 | L: linux-media@vger.kernel.org | |
a825eaec | 3905 | W: https://linuxtv.org |
d099dea2 MK |
3906 | W: http://github.com/mkrufky |
3907 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3908 | T: git git://linuxtv.org/media_tree.git | |
3909 | S: Maintained | |
9819da66 | 3910 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 3911 | |
91952bc0 | 3912 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
3913 | M: Antti Palosaari <crope@iki.fi> |
3914 | L: linux-media@vger.kernel.org | |
a825eaec | 3915 | W: https://linuxtv.org |
91952bc0 AP |
3916 | W: http://palosaari.fi/linux/ |
3917 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3918 | T: git git://linuxtv.org/anttip/media_tree.git | |
3919 | S: Maintained | |
91952bc0 | 3920 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 3921 | |
5560983b | 3922 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
3923 | M: Antti Palosaari <crope@iki.fi> |
3924 | L: linux-media@vger.kernel.org | |
a825eaec | 3925 | W: https://linuxtv.org |
91952bc0 AP |
3926 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3927 | T: git git://linuxtv.org/anttip/media_tree.git | |
3928 | S: Maintained | |
5560983b | 3929 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 3930 | |
8856f5f2 MK |
3931 | DVB_USB_MXL111SF MEDIA DRIVER |
3932 | M: Michael Krufky <mkrufky@linuxtv.org> | |
3933 | L: linux-media@vger.kernel.org | |
a825eaec | 3934 | W: https://linuxtv.org |
8856f5f2 MK |
3935 | W: http://github.com/mkrufky |
3936 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3937 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
3938 | S: Maintained | |
3939 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
3940 | ||
91952bc0 AP |
3941 | DVB_USB_RTL28XXU MEDIA DRIVER |
3942 | M: Antti Palosaari <crope@iki.fi> | |
3943 | L: linux-media@vger.kernel.org | |
a825eaec | 3944 | W: https://linuxtv.org |
91952bc0 AP |
3945 | W: http://palosaari.fi/linux/ |
3946 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3947 | T: git git://linuxtv.org/anttip/media_tree.git | |
3948 | S: Maintained | |
3949 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
3950 | ||
3951 | DVB_USB_V2 MEDIA DRIVER | |
3952 | M: Antti Palosaari <crope@iki.fi> | |
3953 | L: linux-media@vger.kernel.org | |
a825eaec | 3954 | W: https://linuxtv.org |
91952bc0 AP |
3955 | W: http://palosaari.fi/linux/ |
3956 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3957 | T: git git://linuxtv.org/anttip/media_tree.git | |
3958 | S: Maintained | |
3959 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
3960 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
3961 | ||
ac0ac38f | 3962 | DYNAMIC DEBUG |
5c4a97d1 | 3963 | M: Jason Baron <jbaron@akamai.com> |
ac0ac38f JB |
3964 | S: Maintained |
3965 | F: lib/dynamic_debug.c | |
3966 | F: include/linux/dynamic_debug.h | |
3967 | ||
789c7048 | 3968 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 3969 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
789c7048 | 3970 | S: Maintained |
df621252 | 3971 | F: drivers/tty/serial/dz.* |
789c7048 | 3972 | |
f17effbe MF |
3973 | E3X0 POWER BUTTON DRIVER |
3974 | M: Moritz Fischer <moritz.fischer@ettus.com> | |
3975 | L: usrp-users@lists.ettus.com | |
3976 | W: http://www.ettus.com | |
3977 | S: Supported | |
3978 | F: drivers/input/misc/e3x0-button.c | |
3979 | F: Documentation/devicetree/bindings/input/e3x0-button.txt | |
3980 | ||
91952bc0 AP |
3981 | E4000 MEDIA DRIVER |
3982 | M: Antti Palosaari <crope@iki.fi> | |
3983 | L: linux-media@vger.kernel.org | |
a825eaec | 3984 | W: https://linuxtv.org |
91952bc0 AP |
3985 | W: http://palosaari.fi/linux/ |
3986 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3987 | T: git git://linuxtv.org/anttip/media_tree.git | |
3988 | S: Maintained | |
3989 | F: drivers/media/tuners/e4000* | |
3990 | ||
1da177e4 | 3991 | EATA ISA/EISA/PCI SCSI DRIVER |
8b58be88 | 3992 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
3993 | L: linux-scsi@vger.kernel.org |
3994 | S: Maintained | |
679655da | 3995 | F: drivers/scsi/eata.c |
1da177e4 | 3996 | |
91952bc0 AP |
3997 | EC100 MEDIA DRIVER |
3998 | M: Antti Palosaari <crope@iki.fi> | |
3999 | L: linux-media@vger.kernel.org | |
a825eaec | 4000 | W: https://linuxtv.org |
91952bc0 AP |
4001 | W: http://palosaari.fi/linux/ |
4002 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4003 | T: git git://linuxtv.org/anttip/media_tree.git | |
4004 | S: Maintained | |
4005 | F: drivers/media/dvb-frontends/ec100* | |
4006 | ||
237fead6 | 4007 | ECRYPT FILE SYSTEM |
0de9adf2 | 4008 | M: Tyler Hicks <tyhicks@canonical.com> |
a058bfbb | 4009 | L: ecryptfs@vger.kernel.org |
24a923e4 | 4010 | W: http://ecryptfs.org |
6dc7516e | 4011 | W: https://launchpad.net/ecryptfs |
9f273c24 | 4012 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git |
237fead6 | 4013 | S: Supported |
679655da JP |
4014 | F: Documentation/filesystems/ecryptfs.txt |
4015 | F: fs/ecryptfs/ | |
237fead6 | 4016 | |
da9bb1d2 | 4017 | EDAC-CORE |
8b58be88 | 4018 | M: Doug Thompson <dougthompson@xmission.com> |
aa15aa0e | 4019 | M: Borislav Petkov <bp@alien8.de> |
009a5410 | 4020 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
91445c72 | 4021 | L: linux-edac@vger.kernel.org |
07cd6bf5 FW |
4022 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next |
4023 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next | |
8c2a6a40 | 4024 | S: Supported |
679655da | 4025 | F: Documentation/edac.txt |
91445c72 | 4026 | F: drivers/edac/ |
679655da | 4027 | F: include/linux/edac.h |
0e438e3f | 4028 | |
c476c23b | 4029 | EDAC-AMD64 |
8b58be88 | 4030 | M: Doug Thompson <dougthompson@xmission.com> |
487ba8e8 | 4031 | M: Borislav Petkov <bp@alien8.de> |
91445c72 | 4032 | L: linux-edac@vger.kernel.org |
487ba8e8 | 4033 | S: Maintained |
c476c23b BP |
4034 | F: drivers/edac/amd64_edac* |
4035 | ||
836dae5d RR |
4036 | EDAC-CALXEDA |
4037 | M: Doug Thompson <dougthompson@xmission.com> | |
4038 | M: Robert Richter <rric@kernel.org> | |
4039 | L: linux-edac@vger.kernel.org | |
836dae5d RR |
4040 | S: Maintained |
4041 | F: drivers/edac/highbank* | |
4042 | ||
f65aad41 RB |
4043 | EDAC-CAVIUM |
4044 | M: Ralf Baechle <ralf@linux-mips.org> | |
4045 | M: David Daney <david.daney@cavium.com> | |
4046 | L: linux-edac@vger.kernel.org | |
4047 | L: linux-mips@linux-mips.org | |
f65aad41 RB |
4048 | S: Supported |
4049 | F: drivers/edac/octeon_edac* | |
4050 | ||
0e438e3f | 4051 | EDAC-E752X |
8b58be88 JP |
4052 | M: Mark Gross <mark.gross@intel.com> |
4053 | M: Doug Thompson <dougthompson@xmission.com> | |
91445c72 | 4054 | L: linux-edac@vger.kernel.org |
0e438e3f | 4055 | S: Maintained |
679655da | 4056 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
4057 | |
4058 | EDAC-E7XXX | |
8b58be88 | 4059 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 4060 | L: linux-edac@vger.kernel.org |
0e438e3f | 4061 | S: Maintained |
679655da | 4062 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 4063 | |
77c5f5d2 | 4064 | EDAC-GHES |
009a5410 | 4065 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
77c5f5d2 | 4066 | L: linux-edac@vger.kernel.org |
77c5f5d2 | 4067 | S: Maintained |
2caa67a6 | 4068 | F: drivers/edac/ghes_edac.c |
77c5f5d2 | 4069 | |
6bc78404 | 4070 | EDAC-I82443BXGX |
8b58be88 | 4071 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 4072 | L: linux-edac@vger.kernel.org |
6bc78404 | 4073 | S: Maintained |
679655da | 4074 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
4075 | |
4076 | EDAC-I3000 | |
8b58be88 | 4077 | M: Jason Uhlenkott <juhlenko@akamai.com> |
91445c72 | 4078 | L: linux-edac@vger.kernel.org |
6bc78404 | 4079 | S: Maintained |
679655da | 4080 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
4081 | |
4082 | EDAC-I5000 | |
8b58be88 | 4083 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 4084 | L: linux-edac@vger.kernel.org |
ba9a5918 | 4085 | S: Maintained |
679655da | 4086 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 4087 | |
44c12cb2 | 4088 | EDAC-I5400 |
009a5410 | 4089 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
67c89316 | 4090 | L: linux-edac@vger.kernel.org |
44c12cb2 | 4091 | S: Maintained |
679655da | 4092 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 4093 | |
3c9c92b6 | 4094 | EDAC-I7300 |
009a5410 | 4095 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
3c9c92b6 | 4096 | L: linux-edac@vger.kernel.org |
3c9c92b6 MCC |
4097 | S: Maintained |
4098 | F: drivers/edac/i7300_edac.c | |
4099 | ||
67c89316 | 4100 | EDAC-I7CORE |
009a5410 | 4101 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
67c89316 | 4102 | L: linux-edac@vger.kernel.org |
67c89316 | 4103 | S: Maintained |
70aff0ce | 4104 | F: drivers/edac/i7core_edac.c |
67c89316 | 4105 | |
ba9a5918 | 4106 | EDAC-I82975X |
8b58be88 | 4107 | M: Ranganathan Desikan <ravi@jetztechnologies.com> |
25527885 | 4108 | M: "Arvind R." <arvino55@gmail.com> |
91445c72 | 4109 | L: linux-edac@vger.kernel.org |
ba9a5918 | 4110 | S: Maintained |
679655da | 4111 | F: drivers/edac/i82975x_edac.c |
ba9a5918 | 4112 | |
791b4706 JB |
4113 | EDAC-IE31200 |
4114 | M: Jason Baron <jbaron@akamai.com> | |
4115 | L: linux-edac@vger.kernel.org | |
791b4706 JB |
4116 | S: Maintained |
4117 | F: drivers/edac/ie31200_edac.c | |
4118 | ||
ccdfb979 | 4119 | EDAC-MPC85XX |
30c7469b | 4120 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
ccdfb979 | 4121 | L: linux-edac@vger.kernel.org |
ccdfb979 JT |
4122 | S: Maintained |
4123 | F: drivers/edac/mpc85xx_edac.[ch] | |
4124 | ||
ba9a5918 | 4125 | EDAC-PASEMI |
8b58be88 | 4126 | M: Egor Martovetsky <egor@pasemi.com> |
91445c72 | 4127 | L: linux-edac@vger.kernel.org |
6bc78404 | 4128 | S: Maintained |
679655da | 4129 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 4130 | |
0e438e3f | 4131 | EDAC-R82600 |
8b58be88 | 4132 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 4133 | L: linux-edac@vger.kernel.org |
0e438e3f | 4134 | S: Maintained |
679655da | 4135 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 4136 | |
4d096ca7 | 4137 | EDAC-SBRIDGE |
009a5410 | 4138 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
4d096ca7 | 4139 | L: linux-edac@vger.kernel.org |
4d096ca7 MCC |
4140 | S: Maintained |
4141 | F: drivers/edac/sb_edac.c | |
4142 | ||
995e1de4 LH |
4143 | EDAC-XGENE |
4144 | APPLIED MICRO (APM) X-GENE SOC EDAC | |
4145 | M: Loc Ho <lho@apm.com> | |
4146 | S: Supported | |
4147 | F: drivers/edac/xgene_edac.c | |
4148 | F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt | |
4149 | ||
af39917d CL |
4150 | EDIROL UA-101/UA-1000 DRIVER |
4151 | M: Clemens Ladisch <clemens@ladisch.de> | |
4152 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
4153 | T: git git://git.alsa-project.org/alsa-kernel.git | |
4154 | S: Maintained | |
4155 | F: sound/usb/misc/ua101.c | |
4156 | ||
1f7df953 | 4157 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
825fcfce | 4158 | M: Matt Fleming <matt@codeblueprint.co.uk> |
1f7df953 | 4159 | L: linux-efi@vger.kernel.org |
78bef24e | 4160 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
1f7df953 | 4161 | S: Maintained |
fb2efb5c | 4162 | F: Documentation/efi-stub.txt |
1f7df953 MF |
4163 | F: arch/ia64/kernel/efi.c |
4164 | F: arch/x86/boot/compressed/eboot.[ch] | |
4165 | F: arch/x86/include/asm/efi.h | |
4166 | F: arch/x86/platform/efi/* | |
a9499fa7 | 4167 | F: drivers/firmware/efi/* |
1f7df953 MF |
4168 | F: include/linux/efi*.h |
4169 | ||
d68772b7 MF |
4170 | EFI VARIABLE FILESYSTEM |
4171 | M: Matthew Garrett <matthew.garrett@nebula.com> | |
4172 | M: Jeremy Kerr <jk@ozlabs.org> | |
825fcfce | 4173 | M: Matt Fleming <matt@codeblueprint.co.uk> |
d68772b7 MF |
4174 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
4175 | L: linux-efi@vger.kernel.org | |
4176 | S: Maintained | |
4177 | F: fs/efivarfs/ | |
4178 | ||
85a00d9b PJ |
4179 | EFIFB FRAMEBUFFER DRIVER |
4180 | L: linux-fbdev@vger.kernel.org | |
4181 | M: Peter Jones <pjones@redhat.com> | |
4182 | S: Maintained | |
8a61f013 | 4183 | F: drivers/video/fbdev/efifb.c |
85a00d9b | 4184 | |
0bee8d28 JT |
4185 | EFS FILESYSTEM |
4186 | W: http://aeschi.ch.eu.org/efs/ | |
4187 | S: Orphan | |
679655da | 4188 | F: fs/efs/ |
0bee8d28 | 4189 | |
aa8a9e25 | 4190 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
34b1901a | 4191 | M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> |
aa8a9e25 BL |
4192 | L: netdev@vger.kernel.org |
4193 | S: Maintained | |
9aa32835 | 4194 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 4195 | |
f0319efe | 4196 | EM28XX VIDEO4LINUX DRIVER |
009a5410 | 4197 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
f0319efe | 4198 | L: linux-media@vger.kernel.org |
a825eaec | 4199 | W: https://linuxtv.org |
f0319efe MCC |
4200 | T: git git://linuxtv.org/media_tree.git |
4201 | S: Maintained | |
4202 | F: drivers/media/usb/em28xx/ | |
4203 | ||
3e3a7d66 | 4204 | EMBEDDED LINUX |
8b58be88 JP |
4205 | M: Paul Gortmaker <paul.gortmaker@windriver.com> |
4206 | M: Matt Mackall <mpm@selenic.com> | |
4207 | M: David Woodhouse <dwmw2@infradead.org> | |
3e3a7d66 DW |
4208 | L: linux-embedded@vger.kernel.org |
4209 | S: Maintained | |
4210 | ||
32505876 JS |
4211 | EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER |
4212 | M: James Smart <james.smart@avagotech.com> | |
4213 | M: Dick Kennedy <dick.kennedy@avagotech.com> | |
ce00f85c | 4214 | L: linux-scsi@vger.kernel.org |
32505876 | 4215 | W: http://www.avagotech.com |
ce00f85c | 4216 | S: Supported |
679655da | 4217 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 4218 | |
5f5bac82 | 4219 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 4220 | M: Michał Mirosław <mirq-linux@rere.qmqm.pl> |
5f5bac82 MM |
4221 | S: Maintained |
4222 | F: drivers/misc/cb710/ | |
4223 | F: drivers/mmc/host/cb710-mmc.* | |
4224 | F: include/linux/cb710.h | |
4225 | ||
931e39a1 ML |
4226 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
4227 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
4228 | S: Maintained | |
2a837449 | 4229 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 4230 | |
ec207dcc GS |
4231 | ENHANCED ERROR HANDLING (EEH) |
4232 | M: Gavin Shan <shangw@linux.vnet.ibm.com> | |
4233 | L: linuxppc-dev@lists.ozlabs.org | |
4234 | S: Supported | |
4235 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
4236 | F: arch/powerpc/kernel/eeh*.c | |
4237 | ||
d5ca9006 | 4238 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 4239 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
d5ca9006 | 4240 | S: Maintained |
084bad91 | 4241 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
8a61f013 | 4242 | F: drivers/video/fbdev/s1d13xxxfb.c |
679655da | 4243 | F: include/video/s1d13xxxfb.h |
d5ca9006 | 4244 | |
38df6492 ME |
4245 | ET131X NETWORK DRIVER |
4246 | M: Mark Einon <mark.einon@gmail.com> | |
4247 | S: Odd Fixes | |
4248 | F: drivers/net/ethernet/agere/ | |
4249 | ||
1da177e4 | 4250 | ETHERNET BRIDGE |
adbbf69d | 4251 | M: Stephen Hemminger <stephen@networkplumber.org> |
f318a63b | 4252 | L: bridge@lists.linux-foundation.org |
4c325313 | 4253 | L: netdev@vger.kernel.org |
c996d8b9 | 4254 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 4255 | S: Maintained |
679655da JP |
4256 | F: include/linux/netfilter_bridge/ |
4257 | F: net/bridge/ | |
1da177e4 | 4258 | |
22f08ad9 FF |
4259 | ETHERNET PHY LIBRARY |
4260 | M: Florian Fainelli <f.fainelli@gmail.com> | |
4261 | L: netdev@vger.kernel.org | |
4262 | S: Maintained | |
4263 | F: include/linux/phy.h | |
4264 | F: include/linux/phy_fixed.h | |
4265 | F: drivers/net/phy/ | |
4266 | F: Documentation/networking/phy.txt | |
4267 | F: drivers/of/of_mdio.c | |
4268 | F: drivers/of/of_net.c | |
4269 | ||
1da177e4 | 4270 | EXT2 FILE SYSTEM |
d8130624 | 4271 | M: Jan Kara <jack@suse.com> |
72be2ccf | 4272 | L: linux-ext4@vger.kernel.org |
1da177e4 | 4273 | S: Maintained |
679655da JP |
4274 | F: Documentation/filesystems/ext2.txt |
4275 | F: fs/ext2/ | |
4276 | F: include/linux/ext2* | |
1da177e4 | 4277 | |
72be2ccf | 4278 | EXT4 FILE SYSTEM |
8b58be88 | 4279 | M: "Theodore Ts'o" <tytso@mit.edu> |
3c373a5f | 4280 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
72be2ccf | 4281 | L: linux-ext4@vger.kernel.org |
08a225f1 | 4282 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 4283 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
9f273c24 | 4284 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git |
1da177e4 | 4285 | S: Maintained |
679655da JP |
4286 | F: Documentation/filesystems/ext4.txt |
4287 | F: fs/ext4/ | |
1da177e4 | 4288 | |
c5532b09 | 4289 | Extended Verification Module (EVM) |
74dd744f MZ |
4290 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
4291 | L: linux-ima-devel@lists.sourceforge.net | |
4292 | L: linux-security-module@vger.kernel.org | |
c5532b09 MZ |
4293 | S: Supported |
4294 | F: security/integrity/evm/ | |
4295 | ||
df6b3cfe MH |
4296 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
4297 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
4298 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
4299 | L: linux-kernel@vger.kernel.org | |
81df63a9 | 4300 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git |
df6b3cfe MH |
4301 | S: Maintained |
4302 | F: drivers/extcon/ | |
cd2c3e7f CC |
4303 | F: include/linux/extcon/ |
4304 | F: include/linux/extcon.h | |
df6b3cfe | 4305 | F: Documentation/extcon/ |
cd2c3e7f | 4306 | F: Documentation/devicetree/bindings/extcon/ |
df6b3cfe | 4307 | |
e2a75c44 | 4308 | EXYNOS DP DRIVER |
b7701755 | 4309 | M: Jingoo Han <jingoohan1@gmail.com> |
e2a75c44 JH |
4310 | L: dri-devel@lists.freedesktop.org |
4311 | S: Maintained | |
4312 | F: drivers/gpu/drm/exynos/exynos_dp* | |
4313 | ||
33ad3912 DL |
4314 | EXYNOS MIPI DISPLAY DRIVERS |
4315 | M: Inki Dae <inki.dae@samsung.com> | |
4316 | M: Donghwa Lee <dh09.lee@samsung.com> | |
4317 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
4318 | L: linux-fbdev@vger.kernel.org | |
4319 | S: Maintained | |
8a61f013 | 4320 | F: drivers/video/fbdev/exynos/exynos_mipi* |
33ad3912 DL |
4321 | F: include/video/exynos_mipi* |
4322 | ||
e53004e2 | 4323 | F71805F HARDWARE MONITORING DRIVER |
d8130624 | 4324 | M: Jean Delvare <jdelvare@suse.com> |
e53004e2 JD |
4325 | L: lm-sensors@lm-sensors.org |
4326 | S: Maintained | |
679655da JP |
4327 | F: Documentation/hwmon/f71805f |
4328 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 4329 | |
eea977ed MB |
4330 | FC0011 TUNER DRIVER |
4331 | M: Michael Buesch <m@bues.ch> | |
4332 | L: linux-media@vger.kernel.org | |
4333 | S: Maintained | |
ccae7af2 MCC |
4334 | F: drivers/media/tuners/fc0011.h |
4335 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 4336 | |
91952bc0 AP |
4337 | FC2580 MEDIA DRIVER |
4338 | M: Antti Palosaari <crope@iki.fi> | |
4339 | L: linux-media@vger.kernel.org | |
a825eaec | 4340 | W: https://linuxtv.org |
91952bc0 AP |
4341 | W: http://palosaari.fi/linux/ |
4342 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4343 | T: git git://linuxtv.org/anttip/media_tree.git | |
4344 | S: Maintained | |
4345 | F: drivers/media/tuners/fc2580* | |
eea977ed | 4346 | |
88b2dbdb EP |
4347 | FANOTIFY |
4348 | M: Eric Paris <eparis@redhat.com> | |
4349 | S: Maintained | |
4350 | F: fs/notify/fanotify/ | |
4351 | F: include/linux/fanotify.h | |
c117ab84 | 4352 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 4353 | |
1da177e4 | 4354 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 4355 | M: Kevin Curtis <kevin.curtis@farsite.co.uk> |
1da177e4 LT |
4356 | W: http://www.farsite.co.uk/ |
4357 | S: Supported | |
679655da | 4358 | F: drivers/net/wan/farsync.* |
1da177e4 | 4359 | |
c5408b88 | 4360 | FAULT INJECTION SUPPORT |
8b58be88 | 4361 | M: Akinobu Mita <akinobu.mita@gmail.com> |
c5408b88 | 4362 | S: Supported |
679655da JP |
4363 | F: Documentation/fault-injection/ |
4364 | F: lib/fault-inject.c | |
c5408b88 | 4365 | |
053e514f NT |
4366 | FBTFT Framebuffer drivers |
4367 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
4368 | M: Noralf Trønnes <noralf@tronnes.org> | |
4369 | S: Maintained | |
4370 | F: drivers/staging/fbtft/ | |
4371 | ||
cae727db | 4372 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
3bd746cf | 4373 | M: Vasu Dev <vasu.dev@intel.com> |
f4aaea6d | 4374 | L: fcoe-devel@open-fcoe.org |
cae727db RL |
4375 | W: www.Open-FCoE.org |
4376 | S: Supported | |
4377 | F: drivers/scsi/libfc/ | |
4378 | F: drivers/scsi/fcoe/ | |
4379 | F: include/scsi/fc/ | |
4380 | F: include/scsi/libfc.h | |
4381 | F: include/scsi/libfcoe.h | |
c117ab84 | 4382 | F: include/uapi/scsi/fc/ |
cae727db | 4383 | |
e2d1d6c0 | 4384 | FILE LOCKING (flock() and fcntl()/lockf()) |
8c836fa8 | 4385 | M: Jeff Layton <jlayton@poochiereds.net> |
9c3646d1 | 4386 | M: "J. Bruce Fields" <bfields@fieldses.org> |
e2d1d6c0 | 4387 | L: linux-fsdevel@vger.kernel.org |
1da177e4 | 4388 | S: Maintained |
679655da JP |
4389 | F: include/linux/fcntl.h |
4390 | F: include/linux/fs.h | |
c117ab84 CEB |
4391 | F: include/uapi/linux/fcntl.h |
4392 | F: include/uapi/linux/fs.h | |
679655da JP |
4393 | F: fs/fcntl.c |
4394 | F: fs/locks.c | |
1da177e4 | 4395 | |
e2d1d6c0 | 4396 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 4397 | M: Alexander Viro <viro@zeniv.linux.org.uk> |
e2d1d6c0 | 4398 | L: linux-fsdevel@vger.kernel.org |
173acc7c | 4399 | S: Maintained |
679655da | 4400 | F: fs/* |
173acc7c | 4401 | |
b26e0ed4 | 4402 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 4403 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 RV |
4404 | L: lm-sensors@lm-sensors.org |
4405 | S: Maintained | |
d5ca6918 JP |
4406 | F: drivers/hwmon/f75375s.c |
4407 | F: include/linux/f75375s.h | |
b26e0ed4 | 4408 | |
a331b0c3 CL |
4409 | FIREWIRE AUDIO DRIVERS |
4410 | M: Clemens Ladisch <clemens@ladisch.de> | |
4411 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
4412 | T: git git://git.alsa-project.org/alsa-kernel.git | |
4413 | S: Maintained | |
4414 | F: sound/firewire/ | |
4415 | ||
eb86ec51 SR |
4416 | FIREWIRE MEDIA DRIVERS (firedtv) |
4417 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> | |
4418 | L: linux-media@vger.kernel.org | |
4419 | L: linux1394-devel@lists.sourceforge.net | |
4420 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
4421 | S: Maintained | |
4422 | F: drivers/media/firewire/ | |
4423 | ||
a511ce33 CB |
4424 | FIREWIRE SBP-2 TARGET |
4425 | M: Chris Boot <bootc@bootc.net> | |
4426 | L: linux-scsi@vger.kernel.org | |
4427 | L: target-devel@vger.kernel.org | |
4428 | L: linux1394-devel@lists.sourceforge.net | |
4429 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
4430 | S: Maintained | |
4431 | F: drivers/target/sbp/ | |
4432 | ||
7d2c86b5 | 4433 | FIREWIRE SUBSYSTEM |
8b58be88 | 4434 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
e2d1d6c0 | 4435 | L: linux1394-devel@lists.sourceforge.net |
958a29cb | 4436 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 4437 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 4438 | S: Maintained |
679655da | 4439 | F: drivers/firewire/ |
8f06ce3b SR |
4440 | F: include/linux/firewire.h |
4441 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 4442 | F: tools/firewire/ |
e2d1d6c0 RD |
4443 | |
4444 | FIRMWARE LOADER (request_firmware) | |
39e68089 ML |
4445 | M: Ming Lei <ming.lei@canonical.com> |
4446 | L: linux-kernel@vger.kernel.org | |
4447 | S: Maintained | |
679655da JP |
4448 | F: Documentation/firmware_class/ |
4449 | F: drivers/base/firmware*.c | |
4450 | F: include/linux/firmware.h | |
e2d1d6c0 | 4451 | |
f730e3dc | 4452 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
9bb3c446 PK |
4453 | M: Joshua Morris <josh.h.morris@us.ibm.com> |
4454 | M: Philip Kelleher <pjk1939@linux.vnet.ibm.com> | |
4455 | S: Maintained | |
4456 | F: drivers/block/rsxx/ | |
4457 | ||
8206f664 | 4458 | FLOPPY DRIVER |
e5f6450c | 4459 | M: Jiri Kosina <jikos@kernel.org> |
8206f664 JK |
4460 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git |
4461 | S: Odd fixes | |
4462 | F: drivers/block/floppy.c | |
4463 | ||
9c9f32ed AR |
4464 | FMC SUBSYSTEM |
4465 | M: Alessandro Rubini <rubini@gnudd.com> | |
4466 | W: http://www.ohwr.org/projects/fmc-bus | |
4467 | S: Supported | |
4468 | F: drivers/fmc/ | |
4469 | F: include/linux/fmc*.h | |
4470 | F: include/linux/ipmi-fru.h | |
4471 | K: fmc_d.*register | |
4472 | ||
3c0ed7d5 AT |
4473 | FPGA MANAGER FRAMEWORK |
4474 | M: Alan Tull <atull@opensource.altera.com> | |
dd7d664a | 4475 | R: Moritz Fischer <moritz.fischer@ettus.com> |
3c0ed7d5 AT |
4476 | S: Maintained |
4477 | F: drivers/fpga/ | |
4478 | F: include/linux/fpga/fpga-mgr.h | |
4479 | W: http://www.rocketboards.org | |
4480 | ||
e2d1d6c0 | 4481 | FPU EMULATOR |
8b58be88 | 4482 | M: Bill Metzenthen <billm@melbpc.org.au> |
e769980f | 4483 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 4484 | S: Maintained |
679655da | 4485 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
4486 | |
4487 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 4488 | L: netdev@vger.kernel.org |
c173bfac | 4489 | S: Orphan |
679655da JP |
4490 | F: drivers/net/wan/dlci.c |
4491 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
4492 | |
4493 | FRAMEBUFFER LAYER | |
5489e948 JCPV |
4494 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
4495 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
c69f677c | 4496 | L: linux-fbdev@vger.kernel.org |
e2d1d6c0 | 4497 | W: http://linux-fbdev.sourceforge.net/ |
b22fe37b | 4498 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
5489e948 | 4499 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git |
56be1416 | 4500 | S: Maintained |
679655da | 4501 | F: Documentation/fb/ |
b22fe37b PM |
4502 | F: drivers/video/ |
4503 | F: include/video/ | |
679655da | 4504 | F: include/linux/fb.h |
c117ab84 CEB |
4505 | F: include/uapi/video/ |
4506 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 4507 | |
a57c188e | 4508 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 4509 | M: Timur Tabi <timur@tabi.org> |
a57c188e | 4510 | L: linux-fbdev@vger.kernel.org |
c4ef9bc4 | 4511 | S: Maintained |
8a61f013 | 4512 | F: drivers/video/fbdev/fsl-diu-fb.* |
a57c188e | 4513 | |
e2d1d6c0 | 4514 | FREESCALE DMA DRIVER |
8b58be88 JP |
4515 | M: Li Yang <leoli@freescale.com> |
4516 | M: Zhang Wei <zw@zh-kernel.org> | |
a4724ed6 | 4517 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 | 4518 | S: Maintained |
679655da | 4519 | F: drivers/dma/fsldma.* |
e2d1d6c0 | 4520 | |
44248aff HX |
4521 | FREESCALE GPMI NAND DRIVER |
4522 | M: Han Xu <han.xu@nxp.com> | |
4523 | L: linux-mtd@lists.infradead.org | |
4524 | S: Maintained | |
4525 | F: drivers/mtd/nand/gpmi-nand/* | |
4526 | ||
e2d1d6c0 | 4527 | FREESCALE I2C CPM DRIVER |
8b58be88 | 4528 | M: Jochen Friedrich <jochen@scram.de> |
a4724ed6 | 4529 | L: linuxppc-dev@lists.ozlabs.org |
846557d3 | 4530 | L: linux-i2c@vger.kernel.org |
0d2b405a | 4531 | S: Maintained |
679655da | 4532 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 4533 | |
60e8c5ab | 4534 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 4535 | M: Sascha Hauer <kernel@pengutronix.de> |
c69f677c | 4536 | L: linux-fbdev@vger.kernel.org |
efc03ecb | 4537 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
60e8c5ab | 4538 | S: Maintained |
bad985a1 | 4539 | F: include/linux/platform_data/video-imxfb.h |
8a61f013 | 4540 | F: drivers/video/fbdev/imxfb.c |
60e8c5ab | 4541 | |
4d8e2cef | 4542 | FREESCALE QUAD SPI DRIVER |
38714fbd | 4543 | M: Han Xu <han.xu@nxp.com> |
4d8e2cef HX |
4544 | L: linux-mtd@lists.infradead.org |
4545 | S: Maintained | |
4546 | F: drivers/mtd/spi-nor/fsl-quadspi.c | |
4547 | ||
4689a6b1 | 4548 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
4549 | M: Pantelis Antoniou <pantelis.antoniou@gmail.com> |
4550 | M: Vitaly Bordug <vbordug@ru.mvista.com> | |
a4724ed6 | 4551 | L: linuxppc-dev@lists.ozlabs.org |
4689a6b1 PA |
4552 | L: netdev@vger.kernel.org |
4553 | S: Maintained | |
ec21e2ec | 4554 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 4555 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 4556 | |
63a0a00b NA |
4557 | FREESCALE IMX / MXC FEC DRIVER |
4558 | M: Fugang Duan <fugang.duan@nxp.com> | |
4559 | L: netdev@vger.kernel.org | |
4560 | S: Maintained | |
4561 | F: drivers/net/ethernet/freescale/fec_main.c | |
4562 | F: drivers/net/ethernet/freescale/fec_ptp.c | |
4563 | F: drivers/net/ethernet/freescale/fec.h | |
4564 | F: Documentation/devicetree/bindings/net/fsl-fec.txt | |
4565 | ||
d9e9d82c | 4566 | FREESCALE QUICC ENGINE LIBRARY |
a4724ed6 | 4567 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 4568 | S: Orphan |
7aa1aa6e ZQ |
4569 | F: drivers/soc/fsl/qe/ |
4570 | F: include/soc/fsl/*qe*.h | |
4571 | F: include/soc/fsl/*ucc*.h | |
d9e9d82c | 4572 | |
b55ef929 | 4573 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 4574 | M: Li Yang <leoli@freescale.com> |
6372594a | 4575 | L: linux-usb@vger.kernel.org |
a4724ed6 | 4576 | L: linuxppc-dev@lists.ozlabs.org |
a7205b30 | 4577 | S: Maintained |
faf2e1db | 4578 | F: drivers/usb/gadget/udc/fsl* |
a7205b30 | 4579 | |
beaf53bf | 4580 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 4581 | M: Li Yang <leoli@freescale.com> |
beaf53bf | 4582 | L: netdev@vger.kernel.org |
a4724ed6 | 4583 | L: linuxppc-dev@lists.ozlabs.org |
beaf53bf | 4584 | S: Maintained |
ec21e2ec | 4585 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 4586 | |
abb1ed7b CM |
4587 | FREESCALE eTSEC ETHERNET DRIVER (GIANFAR) |
4588 | M: Claudiu Manoil <claudiu.manoil@freescale.com> | |
4589 | L: netdev@vger.kernel.org | |
4590 | S: Maintained | |
4591 | F: drivers/net/ethernet/freescale/gianfar* | |
4592 | X: drivers/net/ethernet/freescale/gianfar_ptp.c | |
4593 | F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt | |
4594 | ||
d9e9d82c | 4595 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 4596 | M: Timur Tabi <timur@tabi.org> |
a4724ed6 | 4597 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 4598 | S: Maintained |
df621252 | 4599 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
4600 | |
4601 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 4602 | M: Timur Tabi <timur@tabi.org> |
dc85950a | 4603 | M: Nicolin Chen <nicoleotsuka@gmail.com> |
b4b98297 | 4604 | M: Xiubo Li <Xiubo.Lee@gmail.com> |
93711660 | 4605 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a4724ed6 | 4606 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 4607 | S: Maintained |
69aefcea | 4608 | F: sound/soc/fsl/fsl* |
dc85950a | 4609 | F: sound/soc/fsl/imx* |
69aefcea | 4610 | F: sound/soc/fsl/mpc8610_hpcd.c |
d9e9d82c | 4611 | |
31c88965 | 4612 | FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER |
9c3646d1 | 4613 | M: "J. German Rivera" <German.Rivera@freescale.com> |
31c88965 GR |
4614 | L: linux-kernel@vger.kernel.org |
4615 | S: Maintained | |
4616 | F: drivers/staging/fsl-mc/ | |
4617 | ||
1da177e4 | 4618 | FREEVXFS FILESYSTEM |
8b58be88 | 4619 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 LT |
4620 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
4621 | S: Maintained | |
679655da | 4622 | F: fs/freevxfs/ |
1da177e4 | 4623 | |
71038f52 | 4624 | FREEZER |
49db1903 | 4625 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 4626 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 4627 | L: linux-pm@vger.kernel.org |
71038f52 | 4628 | S: Supported |
679655da JP |
4629 | F: Documentation/power/freezing-of-tasks.txt |
4630 | F: include/linux/freezer.h | |
4631 | F: kernel/freezer.c | |
71038f52 | 4632 | |
839a1f79 KRW |
4633 | FRONTSWAP API |
4634 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
4635 | L: linux-kernel@vger.kernel.org | |
4636 | S: Maintained | |
4637 | F: mm/frontswap.c | |
4638 | F: include/linux/frontswap.h | |
4639 | ||
a5432f5a | 4640 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 4641 | M: David Howells <dhowells@redhat.com> |
e62d6e24 | 4642 | L: linux-cachefs@redhat.com (moderated for non-subscribers) |
a5432f5a DH |
4643 | S: Supported |
4644 | F: Documentation/filesystems/caching/ | |
4645 | F: fs/fscache/ | |
4646 | F: include/linux/fscache*.h | |
4647 | ||
f58ad8f5 | 4648 | F2FS FILE SYSTEM |
9b29d481 | 4649 | M: Jaegeuk Kim <jaegeuk@kernel.org> |
f6238a72 | 4650 | M: Changman Lee <cm224.lee@samsung.com> |
7b2a246b | 4651 | R: Chao Yu <chao2.yu@samsung.com> |
f58ad8f5 JK |
4652 | L: linux-f2fs-devel@lists.sourceforge.net |
4653 | W: http://en.wikipedia.org/wiki/F2FS | |
4654 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git | |
4655 | S: Maintained | |
4656 | F: Documentation/filesystems/f2fs.txt | |
3bac380c | 4657 | F: Documentation/ABI/testing/sysfs-fs-f2fs |
f58ad8f5 JK |
4658 | F: fs/f2fs/ |
4659 | F: include/linux/f2fs_fs.h | |
62d43eeb | 4660 | F: include/trace/events/f2fs.h |
f58ad8f5 | 4661 | |
5ab7ffea | 4662 | FUJITSU FR-V (FRV) PORT |
0cf0305f | 4663 | S: Orphan |
679655da | 4664 | F: arch/frv/ |
1da177e4 | 4665 | |
20b93734 | 4666 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 4667 | M: Jonathan Woithe <jwoithe@just42.net> |
d0944853 | 4668 | L: platform-driver-x86@vger.kernel.org |
20b93734 | 4669 | S: Maintained |
679655da | 4670 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 4671 | |
4da621b6 HK |
4672 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
4673 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
4674 | M: Heungjun Kim <riverful.kim@samsung.com> | |
4675 | L: linux-media@vger.kernel.org | |
4676 | S: Maintained | |
90d72ac6 | 4677 | F: drivers/media/i2c/m5mols/ |
b5dcee22 | 4678 | F: include/media/i2c/m5mols.h |
4da621b6 | 4679 | |
2d24c490 RG |
4680 | FUJITSU TABLET EXTRAS |
4681 | M: Robert Gerlach <khnz@gmx.de> | |
4682 | L: platform-driver-x86@vger.kernel.org | |
4683 | S: Maintained | |
4684 | F: drivers/platform/x86/fujitsu-tablet.c | |
4685 | ||
04578f17 | 4686 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 4687 | M: Miklos Szeredi <miklos@szeredi.hu> |
04578f17 MS |
4688 | L: fuse-devel@lists.sourceforge.net |
4689 | W: http://fuse.sourceforge.net/ | |
0a30f612 | 4690 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git |
04578f17 | 4691 | S: Maintained |
679655da | 4692 | F: fs/fuse/ |
c117ab84 | 4693 | F: include/uapi/linux/fuse.h |
0a30f612 | 4694 | F: Documentation/filesystems/fuse.txt |
04578f17 | 4695 | |
1da177e4 | 4696 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 4697 | M: Rik Faith <faith@cs.unc.edu> |
1da177e4 | 4698 | L: linux-scsi@vger.kernel.org |
baaea1dc | 4699 | S: Odd Fixes (e.g., new signatures) |
679655da | 4700 | F: drivers/scsi/fdomain.* |
1da177e4 | 4701 | |
d8e2162c PO |
4702 | GCOV BASED KERNEL PROFILING |
4703 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
4704 | S: Maintained | |
4705 | F: kernel/gcov/ | |
4706 | F: Documentation/gcov.txt | |
4707 | ||
1da177e4 | 4708 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
8b58be88 | 4709 | M: Achim Leubner <achim_leubner@adaptec.com> |
1da177e4 LT |
4710 | L: linux-scsi@vger.kernel.org |
4711 | W: http://www.icp-vortex.com/ | |
4712 | S: Supported | |
679655da | 4713 | F: drivers/scsi/gdt* |
1da177e4 | 4714 | |
158daf16 JK |
4715 | GDB KERNEL DEBUGGING HELPER SCRIPTS |
4716 | M: Jan Kiszka <jan.kiszka@siemens.com> | |
4717 | S: Supported | |
4718 | F: scripts/gdb/ | |
4719 | ||
3169a1c7 HV |
4720 | GEMTEK FM RADIO RECEIVER DRIVER |
4721 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
4722 | L: linux-media@vger.kernel.org | |
4723 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 4724 | W: https://linuxtv.org |
3169a1c7 HV |
4725 | S: Maintained |
4726 | F: drivers/media/radio/radio-gemtek* | |
4727 | ||
1c23af90 | 4728 | GENERIC GPIO I2C DRIVER |
880b0e26 | 4729 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1c23af90 | 4730 | S: Supported |
679655da JP |
4731 | F: drivers/i2c/busses/i2c-gpio.c |
4732 | F: include/linux/i2c-gpio.h | |
1c23af90 | 4733 | |
92ed1a76 PK |
4734 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
4735 | M: Peter Korsgaard <peter.korsgaard@barco.com> | |
4736 | L: linux-i2c@vger.kernel.org | |
4737 | S: Supported | |
e7065e20 JD |
4738 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
4739 | F: include/linux/i2c-mux-gpio.h | |
4740 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 4741 | |
9251ce95 | 4742 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 4743 | M: Krzysztof Halasa <khc@pm.waw.pl> |
1da177e4 LT |
4744 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
4745 | S: Maintained | |
679655da JP |
4746 | F: drivers/net/wan/c101.c |
4747 | F: drivers/net/wan/hd6457* | |
4748 | F: drivers/net/wan/hdlc* | |
4749 | F: drivers/net/wan/n2.c | |
4750 | F: drivers/net/wan/pc300too.c | |
4751 | F: drivers/net/wan/pci200syn.c | |
4752 | F: drivers/net/wan/wanxl* | |
1da177e4 | 4753 | |
1527aab6 | 4754 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 4755 | M: Arnd Bergmann <arnd@arndb.de> |
1527aab6 AB |
4756 | L: linux-arch@vger.kernel.org |
4757 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
4758 | S: Maintained | |
14430813 JP |
4759 | F: include/asm-generic/ |
4760 | F: include/uapi/asm-generic/ | |
1527aab6 | 4761 | |
ff764963 KVA |
4762 | GENERIC PHY FRAMEWORK |
4763 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
4764 | L: linux-kernel@vger.kernel.org | |
4765 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git | |
4766 | S: Supported | |
4767 | F: drivers/phy/ | |
4768 | F: include/linux/phy/ | |
4769 | ||
eea97aed KH |
4770 | GENERIC PM DOMAINS |
4771 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> | |
4772 | M: Kevin Hilman <khilman@kernel.org> | |
4773 | M: Ulf Hansson <ulf.hansson@linaro.org> | |
4774 | L: linux-pm@vger.kernel.org | |
4775 | S: Supported | |
4776 | F: drivers/base/power/domain*.c | |
4777 | F: include/linux/pm_domain.h | |
4778 | ||
ccb86a69 | 4779 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 4780 | M: "Michael S. Tsirkin" <mst@redhat.com> |
ccb86a69 | 4781 | L: kvm@vger.kernel.org |
ccb86a69 MT |
4782 | S: Supported |
4783 | F: drivers/uio/uio_pci_generic.c | |
4784 | ||
f8f1ec73 JP |
4785 | GET_MAINTAINER SCRIPT |
4786 | M: Joe Perches <joe@perches.com> | |
4787 | S: Maintained | |
4788 | F: scripts/get_maintainer.pl | |
4789 | ||
5be7b50f | 4790 | GFS2 FILE SYSTEM |
8b58be88 | 4791 | M: Steven Whitehouse <swhiteho@redhat.com> |
28666d6d | 4792 | M: Bob Peterson <rpeterso@redhat.com> |
a4644184 | 4793 | L: cluster-devel@redhat.com |
5be7b50f | 4794 | W: http://sources.redhat.com/cluster/ |
28666d6d | 4795 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git |
5be7b50f | 4796 | S: Supported |
679655da JP |
4797 | F: Documentation/filesystems/gfs2*.txt |
4798 | F: fs/gfs2/ | |
c117ab84 | 4799 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 4800 | |
0a34eb8f | 4801 | GIGASET ISDN DRIVERS |
6b096fde | 4802 | M: Paul Bolle <pebolle@tiscali.nl> |
0a34eb8f HL |
4803 | L: gigaset307x-common@lists.sourceforge.net |
4804 | W: http://gigaset307x.sourceforge.net/ | |
6b096fde | 4805 | S: Odd Fixes |
679655da JP |
4806 | F: Documentation/isdn/README.gigaset |
4807 | F: drivers/isdn/gigaset/ | |
c117ab84 | 4808 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 4809 | |
7eea35fe JP |
4810 | GO7007 MPEG CODEC |
4811 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
4812 | L: linux-media@vger.kernel.org | |
4813 | S: Maintained | |
4814 | F: drivers/media/usb/go7007/ | |
4815 | ||
ca96ea86 BN |
4816 | GOODIX TOUCHSCREEN |
4817 | M: Bastien Nocera <hadess@hadess.net> | |
4818 | L: linux-input@vger.kernel.org | |
4819 | S: Maintained | |
4820 | F: drivers/input/touchscreen/goodix.c | |
4821 | ||
a0dc00b4 | 4822 | GPIO SUBSYSTEM |
e4651a9f | 4823 | M: Linus Walleij <linus.walleij@linaro.org> |
f2fa75cd | 4824 | M: Alexandre Courbot <gnurou@gmail.com> |
d15b7179 | 4825 | L: linux-gpio@vger.kernel.org |
f2fa75cd LW |
4826 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git |
4827 | S: Maintained | |
4828 | F: Documentation/gpio/ | |
a0dc00b4 | 4829 | F: drivers/gpio/ |
bdc6e95e AC |
4830 | F: include/linux/gpio/ |
4831 | F: include/linux/gpio.h | |
9b692346 | 4832 | F: include/asm-generic/gpio.h |
a0dc00b4 | 4833 | |
71a6d0af HW |
4834 | GRE DEMULTIPLEXER DRIVER |
4835 | M: Dmitry Kozlov <xeb@mail.ru> | |
4836 | L: netdev@vger.kernel.org | |
4837 | S: Maintained | |
11c26770 JP |
4838 | F: net/ipv4/gre_demux.c |
4839 | F: net/ipv4/gre_offload.c | |
71a6d0af HW |
4840 | F: include/net/gre.h |
4841 | ||
d4c41139 KG |
4842 | GRETH 10/100/1G Ethernet MAC device driver |
4843 | M: Kristoffer Glembo <kristoffer@gaisler.com> | |
4844 | L: netdev@vger.kernel.org | |
4845 | S: Maintained | |
a31a96ad | 4846 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 4847 | |
e8deeae2 | 4848 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 4849 | M: Frank Zago <frank@zago.net> |
661263b5 | 4850 | L: linux-media@vger.kernel.org |
275ffde4 | 4851 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4852 | S: Maintained |
0c0d06ca | 4853 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 4854 | |
4b3fa3c4 OL |
4855 | GSPCA GL860 SUBDRIVER |
4856 | M: Olivier Lorin <o.lorin@laposte.net> | |
4857 | L: linux-media@vger.kernel.org | |
275ffde4 | 4858 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 4859 | S: Maintained |
0c0d06ca | 4860 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 4861 | |
e8deeae2 | 4862 | GSPCA M5602 SUBDRIVER |
8b58be88 | 4863 | M: Erik Andren <erik.andren@gmail.com> |
661263b5 | 4864 | L: linux-media@vger.kernel.org |
275ffde4 | 4865 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4866 | S: Maintained |
0c0d06ca | 4867 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
4868 | |
4869 | GSPCA PAC207 SONIXB SUBDRIVER | |
8b58be88 | 4870 | M: Hans de Goede <hdegoede@redhat.com> |
661263b5 | 4871 | L: linux-media@vger.kernel.org |
275ffde4 | 4872 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4873 | S: Maintained |
0c0d06ca | 4874 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 4875 | |
261982f1 | 4876 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 4877 | M: Brian Johnson <brijohn@gmail.com> |
261982f1 | 4878 | L: linux-media@vger.kernel.org |
275ffde4 | 4879 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 4880 | S: Maintained |
0c0d06ca | 4881 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 4882 | |
e8deeae2 | 4883 | GSPCA T613 SUBDRIVER |
8b58be88 | 4884 | M: Leandro Costantino <lcostantino@gmail.com> |
661263b5 | 4885 | L: linux-media@vger.kernel.org |
275ffde4 | 4886 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4887 | S: Maintained |
0c0d06ca | 4888 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
4889 | |
4890 | GSPCA USB WEBCAM DRIVER | |
fc3f906b | 4891 | M: Hans de Goede <hdegoede@redhat.com> |
661263b5 | 4892 | L: linux-media@vger.kernel.org |
275ffde4 | 4893 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4894 | S: Maintained |
0c0d06ca | 4895 | F: drivers/media/usb/gspca/ |
e8deeae2 | 4896 | |
584ec979 | 4897 | GUID PARTITION TABLE (GPT) |
4f973c63 | 4898 | M: Davidlohr Bueso <dave@stgolabs.net> |
584ec979 DB |
4899 | L: linux-efi@vger.kernel.org |
4900 | S: Maintained | |
4901 | F: block/partitions/efi.* | |
4902 | ||
aa3c598b | 4903 | STK1160 USB VIDEO CAPTURE DRIVER |
3259aa57 | 4904 | M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> |
aa3c598b | 4905 | L: linux-media@vger.kernel.org |
275ffde4 | 4906 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
4907 | S: Maintained |
4908 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 4909 | |
4e456b86 YS |
4910 | H8/300 ARCHITECTURE |
4911 | M: Yoshinori Sato <ysato@users.sourceforge.jp> | |
b992c768 | 4912 | L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers) |
4e456b86 YS |
4913 | W: http://uclinux-h8.sourceforge.jp |
4914 | T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git | |
4915 | S: Maintained | |
4916 | F: arch/h8300/ | |
4917 | F: drivers/clocksource/h8300_*.c | |
4918 | F: drivers/clk/h8300/ | |
4919 | F: drivers/irqchip/irq-renesas-h8*.c | |
4920 | ||
71a6d0af HW |
4921 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
4922 | M: Frank Seidel <frank@f-seidel.de> | |
4923 | L: platform-driver-x86@vger.kernel.org | |
4924 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
4925 | S: Maintained | |
4926 | F: drivers/platform/x86/hdaps.c | |
4927 | ||
48fc9e26 HV |
4928 | HDPVR USB VIDEO ENCODER DRIVER |
4929 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
4930 | L: linux-media@vger.kernel.org | |
4931 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 4932 | W: https://linuxtv.org |
48fc9e26 | 4933 | S: Odd Fixes |
14430813 | 4934 | F: drivers/media/usb/hdpvr/ |
48fc9e26 | 4935 | |
71a6d0af | 4936 | HWPOISON MEMORY FAILURE HANDLING |
f9625c48 | 4937 | M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> |
71a6d0af | 4938 | L: linux-mm@kvack.org |
71a6d0af HW |
4939 | S: Maintained |
4940 | F: mm/memory-failure.c | |
4941 | F: mm/hwpoison-inject.c | |
4942 | ||
4943 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
4944 | L: linuxppc-dev@lists.ozlabs.org | |
4945 | S: Odd Fixes | |
4946 | F: drivers/tty/hvc/ | |
4947 | ||
e5ab1477 AP |
4948 | HACKRF MEDIA DRIVER |
4949 | M: Antti Palosaari <crope@iki.fi> | |
4950 | L: linux-media@vger.kernel.org | |
a825eaec | 4951 | W: https://linuxtv.org |
e5ab1477 AP |
4952 | W: http://palosaari.fi/linux/ |
4953 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4954 | T: git git://linuxtv.org/anttip/media_tree.git | |
4955 | S: Maintained | |
4956 | F: drivers/media/usb/hackrf/ | |
4957 | ||
5b543965 | 4958 | HARDWARE MONITORING |
d8130624 | 4959 | M: Jean Delvare <jdelvare@suse.com> |
ca462085 | 4960 | M: Guenter Roeck <linux@roeck-us.net> |
5b543965 | 4961 | L: lm-sensors@lm-sensors.org |
595142e0 | 4962 | W: http://www.lm-sensors.org/ |
a94ef4ed | 4963 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/ |
885374e3 | 4964 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 4965 | S: Maintained |
047f4ec2 | 4966 | F: Documentation/hwmon/ |
679655da | 4967 | F: drivers/hwmon/ |
047f4ec2 | 4968 | F: include/linux/hwmon*.h |
5b543965 | 4969 | |
844dd05f | 4970 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
4971 | M: Matt Mackall <mpm@selenic.com> |
4972 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
3eda7167 | 4973 | L: linux-crypto@vger.kernel.org |
c0d0787b | 4974 | S: Odd fixes |
679655da JP |
4975 | F: Documentation/hw_random.txt |
4976 | F: drivers/char/hw_random/ | |
4977 | F: include/linux/hw_random.h | |
844dd05f | 4978 | |
8b37fcfc OBC |
4979 | HARDWARE SPINLOCK CORE |
4980 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
4981 | S: Maintained | |
9f273c24 | 4982 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git |
8b37fcfc OBC |
4983 | F: Documentation/hwspinlock.txt |
4984 | F: drivers/hwspinlock/hwspinlock_* | |
4985 | F: include/linux/hwspinlock.h | |
4986 | ||
1da177e4 | 4987 | HARMONY SOUND DRIVER |
ac6aecbf | 4988 | L: linux-parisc@vger.kernel.org |
1da177e4 | 4989 | S: Maintained |
679655da | 4990 | F: sound/parisc/harmony.* |
1da177e4 | 4991 | |
91952bc0 AP |
4992 | HD29L2 MEDIA DRIVER |
4993 | M: Antti Palosaari <crope@iki.fi> | |
4994 | L: linux-media@vger.kernel.org | |
a825eaec | 4995 | W: https://linuxtv.org |
91952bc0 AP |
4996 | W: http://palosaari.fi/linux/ |
4997 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4998 | T: git git://linuxtv.org/anttip/media_tree.git | |
4999 | S: Maintained | |
5000 | F: drivers/media/dvb-frontends/hd29l2* | |
5001 | ||
e2d1d6c0 | 5002 | HEWLETT-PACKARD SMART2 RAID DRIVER |
e2d1d6c0 | 5003 | L: iss_storagedev@hp.com |
af9f1b3c | 5004 | S: Orphan |
679655da JP |
5005 | F: Documentation/blockdev/cpqarray.txt |
5006 | F: drivers/block/cpqarray.* | |
e2d1d6c0 | 5007 | |
9257aa49 | 5008 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
693373db | 5009 | M: Don Brace <don.brace@pmcs.com> |
9257aa49 | 5010 | L: iss_storagedev@hp.com |
693373db DB |
5011 | L: storagedev@pmcs.com |
5012 | L: linux-scsi@vger.kernel.org | |
9257aa49 SC |
5013 | S: Supported |
5014 | F: Documentation/scsi/hpsa.txt | |
5015 | F: drivers/scsi/hpsa*.[ch] | |
5016 | F: include/linux/cciss*.h | |
c117ab84 | 5017 | F: include/uapi/linux/cciss*.h |
9257aa49 | 5018 | |
e2d1d6c0 | 5019 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
693373db | 5020 | M: Don Brace <don.brace@pmcs.com> |
e2d1d6c0 | 5021 | L: iss_storagedev@hp.com |
693373db DB |
5022 | L: storagedev@pmcs.com |
5023 | L: linux-scsi@vger.kernel.org | |
e2d1d6c0 | 5024 | S: Supported |
679655da JP |
5025 | F: Documentation/blockdev/cciss.txt |
5026 | F: drivers/block/cciss* | |
5027 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 5028 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 5029 | |
1da177e4 | 5030 | HFS FILESYSTEM |
6cf515e1 GU |
5031 | L: linux-fsdevel@vger.kernel.org |
5032 | S: Orphan | |
679655da JP |
5033 | F: Documentation/filesystems/hfs.txt |
5034 | F: fs/hfs/ | |
1da177e4 | 5035 | |
ef575f47 GU |
5036 | HFSPLUS FILESYSTEM |
5037 | L: linux-fsdevel@vger.kernel.org | |
5038 | S: Orphan | |
5039 | F: Documentation/filesystems/hfsplus.txt | |
5040 | F: fs/hfsplus/ | |
5041 | ||
1da177e4 | 5042 | HGA FRAMEBUFFER DRIVER |
8b58be88 | 5043 | M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> |
1da177e4 LT |
5044 | L: linux-nvidia@lists.surfsouth.com |
5045 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
5046 | S: Maintained | |
8a61f013 | 5047 | F: drivers/video/fbdev/hgafb.c |
1da177e4 | 5048 | |
4480f15b | 5049 | HIBERNATION (aka Software Suspend, aka swsusp) |
49db1903 | 5050 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 5051 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 5052 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 5053 | S: Supported |
679655da JP |
5054 | F: arch/x86/power/ |
5055 | F: drivers/base/power/ | |
5056 | F: kernel/power/ | |
5057 | F: include/linux/suspend.h | |
5058 | F: include/linux/freezer.h | |
5059 | F: include/linux/pm.h | |
679655da | 5060 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 5061 | |
4ef4caad | 5062 | HID CORE LAYER |
e5f6450c | 5063 | M: Jiri Kosina <jikos@kernel.org> |
406df153 | 5064 | R: Benjamin Tissoires <benjamin.tissoires@redhat.com> |
eb76c5c0 | 5065 | L: linux-input@vger.kernel.org |
54e5881d | 5066 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 5067 | S: Maintained |
679655da JP |
5068 | F: drivers/hid/ |
5069 | F: include/linux/hid* | |
c117ab84 | 5070 | F: include/uapi/linux/hid* |
4ef4caad | 5071 | |
30ee72f0 | 5072 | HID SENSOR HUB DRIVERS |
e5f6450c | 5073 | M: Jiri Kosina <jikos@kernel.org> |
30ee72f0 SP |
5074 | M: Jonathan Cameron <jic23@kernel.org> |
5075 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> | |
5076 | L: linux-input@vger.kernel.org | |
5077 | L: linux-iio@vger.kernel.org | |
5078 | S: Maintained | |
5079 | F: Documentation/hid/hid-sensor* | |
5080 | F: drivers/hid/hid-sensor-* | |
5081 | F: drivers/iio/*/hid-* | |
5082 | F: include/linux/hid-sensor-* | |
5083 | ||
38bed542 | 5084 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 5085 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 5086 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 5087 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 5088 | S: Maintained |
679655da | 5089 | F: Documentation/timers/ |
5cee9645 | 5090 | F: kernel/time/hrtimer.c |
88606e80 TG |
5091 | F: kernel/time/clockevents.c |
5092 | F: kernel/time/tick*.* | |
5093 | F: kernel/time/timer_*.c | |
05ed8490 | 5094 | F: include/linux/clockchips.h |
679655da | 5095 | F: include/linux/hrtimer.h |
38bed542 | 5096 | |
1da177e4 | 5097 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 5098 | L: linux-hams@vger.kernel.org |
8b64f2a0 | 5099 | S: Orphan |
679655da JP |
5100 | F: drivers/net/hamradio/dmascc.c |
5101 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 5102 | |
ede1e6f8 | 5103 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 5104 | M: HighPoint Linux Team <linux@highpoint-tech.com> |
ede1e6f8 HLT |
5105 | W: http://www.highpoint-tech.com |
5106 | S: Supported | |
679655da JP |
5107 | F: Documentation/scsi/hptiop.txt |
5108 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 5109 | |
1da177e4 | 5110 | HIPPI |
8b58be88 | 5111 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
5112 | L: linux-hippi@sunsite.dk |
5113 | S: Maintained | |
679655da | 5114 | F: include/linux/hippidevice.h |
c117ab84 | 5115 | F: include/uapi/linux/if_hippi.h |
679655da | 5116 | F: net/802/hippi.c |
ff5a3b50 | 5117 | F: drivers/net/hippi/ |
1da177e4 | 5118 | |
16c6c252 JG |
5119 | HISILICON SAS Controller |
5120 | M: John Garry <john.garry@huawei.com> | |
5121 | W: http://www.hisilicon.com | |
5122 | S: Supported | |
5123 | F: drivers/scsi/hisi_sas/ | |
5124 | F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt | |
5125 | ||
ff1d2767 | 5126 | HOST AP DRIVER |
8b58be88 | 5127 | M: Jouni Malinen <j@w1.fi> |
85d32e7b | 5128 | L: hostap@shmoo.com (subscribers-only) |
724c6b35 | 5129 | L: linux-wireless@vger.kernel.org |
ff1d2767 JM |
5130 | W: http://hostap.epitest.fi/ |
5131 | S: Maintained | |
eb4f98d5 | 5132 | F: drivers/net/wireless/intersil/hostap/ |
ff1d2767 | 5133 | |
dd8cd779 | 5134 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 5135 | L: platform-driver-x86@vger.kernel.org |
95c70215 | 5136 | S: Orphan |
679655da | 5137 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 5138 | |
e2d1d6c0 | 5139 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 5140 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 5141 | S: Maintained |
7e25d724 | 5142 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 5143 | |
7d2c86b5 | 5144 | HPET: High Precision Event Timers driver |
8b58be88 | 5145 | M: Clemens Ladisch <clemens@ladisch.de> |
b9b0332f | 5146 | S: Maintained |
679655da JP |
5147 | F: Documentation/timers/hpet.txt |
5148 | F: drivers/char/hpet.c | |
5149 | F: include/linux/hpet.h | |
c117ab84 | 5150 | F: include/uapi/linux/hpet.h |
b9b0332f | 5151 | |
e07b5d79 | 5152 | HPET: x86 |
9e06f631 | 5153 | S: Orphan |
679655da JP |
5154 | F: arch/x86/kernel/hpet.c |
5155 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 5156 | |
1da177e4 | 5157 | HPFS FILESYSTEM |
8b58be88 | 5158 | M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> |
1da177e4 LT |
5159 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
5160 | S: Maintained | |
679655da | 5161 | F: fs/hpfs/ |
1da177e4 | 5162 | |
3441cded | 5163 | HSI SUBSYSTEM |
56459ea9 SR |
5164 | M: Sebastian Reichel <sre@kernel.org> |
5165 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git | |
3441cded SR |
5166 | S: Maintained |
5167 | F: Documentation/ABI/testing/sysfs-bus-hsi | |
56459ea9 | 5168 | F: Documentation/hsi.txt |
3441cded SR |
5169 | F: drivers/hsi/ |
5170 | F: include/linux/hsi/ | |
5171 | F: include/uapi/linux/hsi/ | |
5172 | ||
7d2c86b5 | 5173 | HSO 3G MODEM DRIVER |
8b58be88 | 5174 | M: Jan Dumon <j.dumon@option.com> |
11cd29b0 DJB |
5175 | W: http://www.pharscape.org |
5176 | S: Maintained | |
679655da | 5177 | F: drivers/net/usb/hso.c |
11cd29b0 | 5178 | |
19990e29 AB |
5179 | HSR NETWORK PROTOCOL |
5180 | M: Arvid Brodin <arvid.brodin@alten.se> | |
5181 | L: netdev@vger.kernel.org | |
5182 | S: Maintained | |
5183 | F: net/hsr/ | |
5184 | ||
5a18c343 | 5185 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 5186 | M: Pau Oliva Fora <pof@eslack.org> |
5a18c343 POF |
5187 | L: linux-input@vger.kernel.org |
5188 | S: Maintained | |
679655da | 5189 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 5190 | |
1da177e4 | 5191 | HUGETLB FILESYSTEM |
6d49e352 | 5192 | M: Nadia Yvette Chambers <nyc@holomorphy.com> |
1da177e4 | 5193 | S: Maintained |
679655da | 5194 | F: fs/hugetlbfs/ |
1da177e4 | 5195 | |
05183189 | 5196 | Hyper-V CORE AND DRIVERS |
9c3646d1 | 5197 | M: "K. Y. Srinivasan" <kys@microsoft.com> |
05183189 S |
5198 | M: Haiyang Zhang <haiyangz@microsoft.com> |
5199 | L: devel@linuxdriverproject.org | |
5200 | S: Maintained | |
a4162747 HZ |
5201 | F: arch/x86/include/asm/mshyperv.h |
5202 | F: arch/x86/include/uapi/asm/hyperv.h | |
5203 | F: arch/x86/kernel/cpu/mshyperv.c | |
05183189 | 5204 | F: drivers/hid/hid-hyperv.c |
a4162747 | 5205 | F: drivers/hv/ |
f92ca80b | 5206 | F: drivers/input/serio/hyperv-keyboard.c |
05183189 | 5207 | F: drivers/net/hyperv/ |
a4162747 | 5208 | F: drivers/scsi/storvsc_drv.c |
8a61f013 | 5209 | F: drivers/video/fbdev/hyperv_fb.c |
a4162747 HZ |
5210 | F: include/linux/hyperv.h |
5211 | F: tools/hv/ | |
54bf725e | 5212 | F: Documentation/ABI/stable/sysfs-bus-vmbus |
05183189 | 5213 | |
d85c8a6a | 5214 | I2C OVER PARALLEL PORT |
d8130624 | 5215 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
5216 | L: linux-i2c@vger.kernel.org |
5217 | S: Maintained | |
5218 | F: Documentation/i2c/busses/i2c-parport | |
5219 | F: Documentation/i2c/busses/i2c-parport-light | |
5220 | F: drivers/i2c/busses/i2c-parport.c | |
5221 | F: drivers/i2c/busses/i2c-parport-light.c | |
5222 | ||
5223 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
d8130624 | 5224 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
5225 | L: linux-i2c@vger.kernel.org |
5226 | S: Maintained | |
5227 | F: Documentation/i2c/busses/i2c-ali1535 | |
5228 | F: Documentation/i2c/busses/i2c-ali1563 | |
5229 | F: Documentation/i2c/busses/i2c-ali15x3 | |
5230 | F: Documentation/i2c/busses/i2c-amd756 | |
5231 | F: Documentation/i2c/busses/i2c-amd8111 | |
5232 | F: Documentation/i2c/busses/i2c-i801 | |
5233 | F: Documentation/i2c/busses/i2c-nforce2 | |
5234 | F: Documentation/i2c/busses/i2c-piix4 | |
5235 | F: Documentation/i2c/busses/i2c-sis5595 | |
5236 | F: Documentation/i2c/busses/i2c-sis630 | |
5237 | F: Documentation/i2c/busses/i2c-sis96x | |
5238 | F: Documentation/i2c/busses/i2c-via | |
5239 | F: Documentation/i2c/busses/i2c-viapro | |
5240 | F: drivers/i2c/busses/i2c-ali1535.c | |
5241 | F: drivers/i2c/busses/i2c-ali1563.c | |
5242 | F: drivers/i2c/busses/i2c-ali15x3.c | |
5243 | F: drivers/i2c/busses/i2c-amd756.c | |
5244 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
5245 | F: drivers/i2c/busses/i2c-amd8111.c | |
5246 | F: drivers/i2c/busses/i2c-i801.c | |
5247 | F: drivers/i2c/busses/i2c-isch.c | |
5248 | F: drivers/i2c/busses/i2c-nforce2.c | |
5249 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
5250 | F: drivers/i2c/busses/i2c-piix4.c | |
5251 | F: drivers/i2c/busses/i2c-sis5595.c | |
5252 | F: drivers/i2c/busses/i2c-sis630.c | |
5253 | F: drivers/i2c/busses/i2c-sis96x.c | |
5254 | F: drivers/i2c/busses/i2c-via.c | |
5255 | F: drivers/i2c/busses/i2c-viapro.c | |
5256 | ||
cb7f07a4 NH |
5257 | I2C/SMBUS ISMT DRIVER |
5258 | M: Seth Heasley <seth.heasley@intel.com> | |
5259 | M: Neil Horman <nhorman@tuxdriver.com> | |
5260 | L: linux-i2c@vger.kernel.org | |
5261 | F: drivers/i2c/busses/i2c-ismt.c | |
5262 | F: Documentation/i2c/busses/i2c-ismt | |
5263 | ||
6ea884db | 5264 | I2C/SMBUS STUB DRIVER |
d8130624 | 5265 | M: Jean Delvare <jdelvare@suse.com> |
846557d3 | 5266 | L: linux-i2c@vger.kernel.org |
6ea884db | 5267 | S: Maintained |
8547a5bc | 5268 | F: drivers/i2c/i2c-stub.c |
6ea884db | 5269 | |
5b543965 | 5270 | I2C SUBSYSTEM |
14d77c4d | 5271 | M: Wolfram Sang <wsa@the-dreams.de> |
846557d3 | 5272 | L: linux-i2c@vger.kernel.org |
9d4ea27a WS |
5273 | W: https://i2c.wiki.kernel.org/ |
5274 | Q: https://patchwork.ozlabs.org/project/linux-i2c/list/ | |
14d77c4d | 5275 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
1da177e4 | 5276 | S: Maintained |
40ed1b4c | 5277 | F: Documentation/devicetree/bindings/i2c/ |
679655da JP |
5278 | F: Documentation/i2c/ |
5279 | F: drivers/i2c/ | |
630bc46e | 5280 | F: drivers/i2c/*/ |
679655da | 5281 | F: include/linux/i2c.h |
03b70d62 | 5282 | F: include/linux/i2c-*.h |
c117ab84 CEB |
5283 | F: include/uapi/linux/i2c.h |
5284 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 5285 | |
4560d677 WS |
5286 | I2C ACPI SUPPORT |
5287 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
5288 | L: linux-i2c@vger.kernel.org | |
5289 | L: linux-acpi@vger.kernel.org | |
5290 | S: Maintained | |
4560d677 | 5291 | |
d85c8a6a | 5292 | I2C-TAOS-EVM DRIVER |
d8130624 | 5293 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
5294 | L: linux-i2c@vger.kernel.org |
5295 | S: Maintained | |
5296 | F: Documentation/i2c/busses/i2c-taos-evm | |
5297 | F: drivers/i2c/busses/i2c-taos-evm.c | |
5298 | ||
e8c76eed | 5299 | I2C-TINY-USB DRIVER |
8b58be88 | 5300 | M: Till Harbaum <till@harbaum.org> |
846557d3 | 5301 | L: linux-i2c@vger.kernel.org |
932d1872 | 5302 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 5303 | S: Maintained |
679655da | 5304 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 5305 | |
1da177e4 | 5306 | i386 BOOT CODE |
8b58be88 | 5307 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 5308 | S: Maintained |
679655da | 5309 | F: arch/x86/boot/ |
1da177e4 LT |
5310 | |
5311 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 5312 | M: "H. Peter Anvin" <hpa@zytor.com> |
54e5881d | 5313 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
5314 | S: Maintained |
5315 | ||
1da177e4 | 5316 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
5317 | M: Tony Luck <tony.luck@intel.com> |
5318 | M: Fenghua Yu <fenghua.yu@intel.com> | |
1da177e4 | 5319 | L: linux-ia64@vger.kernel.org |
6b1c70b1 | 5320 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 5321 | S: Maintained |
679655da | 5322 | F: arch/ia64/ |
1da177e4 | 5323 | |
4cd38750 LDSB |
5324 | IBM Power VMX Cryptographic instructions |
5325 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> | |
5cd01fe1 | 5326 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> |
4cd38750 LDSB |
5327 | L: linux-crypto@vger.kernel.org |
5328 | S: Supported | |
5329 | F: drivers/crypto/vmx/Makefile | |
5330 | F: drivers/crypto/vmx/Kconfig | |
5331 | F: drivers/crypto/vmx/vmx.c | |
5332 | F: drivers/crypto/vmx/aes* | |
5333 | F: drivers/crypto/vmx/ghash* | |
5334 | F: drivers/crypto/vmx/ppc-xlate.pl | |
5335 | ||
956c203c | 5336 | IBM Power in-Nest Crypto Acceleration |
4cd38750 | 5337 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> |
5cd01fe1 | 5338 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> |
956c203c KY |
5339 | L: linux-crypto@vger.kernel.org |
5340 | S: Supported | |
28bceeaa DS |
5341 | F: drivers/crypto/nx/Makefile |
5342 | F: drivers/crypto/nx/Kconfig | |
5343 | F: drivers/crypto/nx/nx-aes* | |
5344 | F: drivers/crypto/nx/nx-sha* | |
5345 | F: drivers/crypto/nx/nx.* | |
5346 | F: drivers/crypto/nx/nx_csbcpb.h | |
5347 | F: drivers/crypto/nx/nx_debugfs.h | |
956c203c | 5348 | |
0e16aafb | 5349 | IBM Power 842 compression accelerator |
41656aa7 | 5350 | M: Dan Streetman <ddstreet@ieee.org> |
0e16aafb | 5351 | S: Supported |
28bceeaa DS |
5352 | F: drivers/crypto/nx/Makefile |
5353 | F: drivers/crypto/nx/Kconfig | |
7011a122 | 5354 | F: drivers/crypto/nx/nx-842* |
2da572c9 | 5355 | F: include/linux/sw842.h |
2062c5b6 | 5356 | F: crypto/842.c |
2da572c9 | 5357 | F: lib/842/ |
0e16aafb | 5358 | |
1da177e4 | 5359 | IBM Power Linux RAID adapter |
8b58be88 | 5360 | M: Brian King <brking@us.ibm.com> |
1da177e4 | 5361 | S: Supported |
679655da | 5362 | F: drivers/scsi/ipr.* |
1da177e4 | 5363 | |
9d348af4 | 5364 | IBM Power Virtual Ethernet Device Driver |
eddd63a6 | 5365 | M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> |
9d348af4 SL |
5366 | L: netdev@vger.kernel.org |
5367 | S: Supported | |
9aa32835 | 5368 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 5369 | |
032c5e82 TF |
5370 | IBM Power SRIOV Virtual NIC Device Driver |
5371 | M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> | |
5372 | M: John Allen <jallen@linux.vnet.ibm.com> | |
5373 | L: netdev@vger.kernel.org | |
5374 | S: Supported | |
5375 | F: drivers/net/ethernet/ibm/ibmvnic.* | |
5376 | ||
e6babec6 | 5377 | IBM Power Virtual SCSI Device Drivers |
bcbde52b | 5378 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
4b7652cc RJ |
5379 | L: linux-scsi@vger.kernel.org |
5380 | S: Supported | |
e6babec6 NF |
5381 | F: drivers/scsi/ibmvscsi/ibmvscsi* |
5382 | F: drivers/scsi/ibmvscsi/viosrp.h | |
5383 | ||
5384 | IBM Power Virtual FC Device Drivers | |
44b4dad9 | 5385 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
e6babec6 NF |
5386 | L: linux-scsi@vger.kernel.org |
5387 | S: Supported | |
5388 | F: drivers/scsi/ibmvscsi/ibmvfc* | |
4b7652cc | 5389 | |
1da177e4 | 5390 | IBM ServeRAID RAID DRIVER |
f9213e78 | 5391 | S: Orphan |
679655da | 5392 | F: drivers/scsi/ips.* |
1da177e4 | 5393 | |
6ed9f9c4 PT |
5394 | ICH LPC AND GPIO DRIVER |
5395 | M: Peter Tyser <ptyser@xes-inc.com> | |
5396 | S: Maintained | |
5397 | F: drivers/mfd/lpc_ich.c | |
5398 | F: drivers/gpio/gpio-ich.c | |
5399 | ||
1e7106fc | 5400 | IDE SUBSYSTEM |
8b58be88 | 5401 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 5402 | L: linux-ide@vger.kernel.org |
8a6e2535 | 5403 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 5404 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 5405 | S: Maintained |
679655da JP |
5406 | F: Documentation/ide/ |
5407 | F: drivers/ide/ | |
5408 | F: include/linux/ide.h | |
1da177e4 | 5409 | |
6cb8c13d IP |
5410 | IDEAPAD LAPTOP EXTRAS DRIVER |
5411 | M: Ike Panhc <ike.pan@canonical.com> | |
5412 | L: platform-driver-x86@vger.kernel.org | |
5413 | W: http://launchpad.net/ideapad-laptop | |
5414 | S: Maintained | |
5415 | F: drivers/platform/x86/ideapad-laptop.c | |
5416 | ||
1ea4c161 AM |
5417 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
5418 | M: Andrey Moiseev <o2g.org.ru@gmail.com> | |
5419 | L: linux-input@vger.kernel.org | |
5420 | W: https://github.com/o2genum/ideapad-slidebar | |
5421 | S: Maintained | |
5422 | F: drivers/input/misc/ideapad_slidebar.c | |
5423 | ||
0f861e8c | 5424 | IDE/ATAPI DRIVERS |
487ba8e8 | 5425 | M: Borislav Petkov <bp@alien8.de> |
9c5b0ce4 | 5426 | L: linux-ide@vger.kernel.org |
c404c199 | 5427 | S: Maintained |
679655da JP |
5428 | F: Documentation/cdrom/ide-cd |
5429 | F: drivers/ide/ide-cd* | |
1da177e4 | 5430 | |
27471fdb | 5431 | IDLE-I7300 |
8b58be88 | 5432 | M: Andy Henroid <andrew.d.henroid@intel.com> |
bf1c138e | 5433 | L: linux-pm@vger.kernel.org |
27471fdb | 5434 | S: Supported |
679655da | 5435 | F: drivers/idle/i7300_idle.c |
27471fdb | 5436 | |
02cf2286 | 5437 | IEEE 802.15.4 SUBSYSTEM |
b6e195fd | 5438 | M: Alexander Aring <alex.aring@gmail.com> |
ebef9c12 VB |
5439 | L: linux-wpan@vger.kernel.org |
5440 | W: https://github.com/linux-wpan | |
5441 | T: git git://github.com/linux-wpan/linux-wpan-next.git | |
02cf2286 SL |
5442 | S: Maintained |
5443 | F: net/ieee802154/ | |
68653359 | 5444 | F: net/mac802154/ |
251741b1 | 5445 | F: drivers/net/ieee802154/ |
580947d3 AA |
5446 | F: include/linux/nl802154.h |
5447 | F: include/linux/ieee802154.h | |
5448 | F: include/net/nl802154.h | |
5449 | F: include/net/mac802154.h | |
5450 | F: include/net/af_ieee802154.h | |
5451 | F: include/net/cfg802154.h | |
5452 | F: include/net/ieee802154_netdev.h | |
ebef9c12 | 5453 | F: Documentation/networking/ieee802154.txt |
02cf2286 | 5454 | |
b1c97193 SY |
5455 | IGORPLUG-USB IR RECEIVER |
5456 | M: Sean Young <sean@mess.org> | |
5457 | L: linux-media@vger.kernel.org | |
5458 | S: Maintained | |
5459 | F: drivers/media/rc/igorplugusb.c | |
5460 | ||
40ad4a30 SY |
5461 | IGUANAWORKS USB IR TRANSCEIVER |
5462 | M: Sean Young <sean@mess.org> | |
5463 | L: linux-media@vger.kernel.org | |
5464 | S: Maintained | |
5465 | F: drivers/media/rc/iguanair.c | |
5466 | ||
9545f86e | 5467 | IIO SUBSYSTEM AND DRIVERS |
030a13d7 | 5468 | M: Jonathan Cameron <jic23@kernel.org> |
f0d61161 LPC |
5469 | R: Hartmut Knaack <knaack.h@gmx.de> |
5470 | R: Lars-Peter Clausen <lars@metafoo.de> | |
5471 | R: Peter Meerwald <pmeerw@pmeerw.net> | |
9545f86e AP |
5472 | L: linux-iio@vger.kernel.org |
5473 | S: Maintained | |
03e7c251 | 5474 | F: drivers/iio/ |
9545f86e | 5475 | F: drivers/staging/iio/ |
8fe671fc | 5476 | F: include/linux/iio/ |
817020cf | 5477 | F: tools/iio/ |
9545f86e | 5478 | |
65519263 SG |
5479 | IKANOS/ADI EAGLE ADSL USB DRIVER |
5480 | M: Matthieu Castet <castet.matthieu@free.fr> | |
5481 | M: Stanislaw Gruszka <stf_xl@wp.pl> | |
5482 | S: Maintained | |
5483 | F: drivers/usb/atm/ueagle-atm.c | |
5484 | ||
e89ab51f GR |
5485 | INA209 HARDWARE MONITOR DRIVER |
5486 | M: Guenter Roeck <linux@roeck-us.net> | |
5487 | L: lm-sensors@lm-sensors.org | |
5488 | S: Maintained | |
5489 | F: Documentation/hwmon/ina209 | |
5490 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
5491 | F: drivers/hwmon/ina209.c | |
5492 | ||
5493 | INA2XX HARDWARE MONITOR DRIVER | |
5494 | M: Guenter Roeck <linux@roeck-us.net> | |
5495 | L: lm-sensors@lm-sensors.org | |
5496 | S: Maintained | |
5497 | F: Documentation/hwmon/ina2xx | |
5498 | F: drivers/hwmon/ina2xx.c | |
5499 | F: include/linux/platform_data/ina2xx.h | |
5500 | ||
14dc124f SIG |
5501 | INDUSTRY PACK SUBSYSTEM (IPACK) |
5502 | M: Samuel Iglesias Gonsalvez <siglesias@igalia.com> | |
5503 | M: Jens Taprogge <jens.taprogge@taprogge.org> | |
5504 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
5505 | L: industrypack-devel@lists.sourceforge.net | |
5506 | W: http://industrypack.sourceforge.net | |
5507 | S: Maintained | |
5508 | F: drivers/ipack/ | |
5509 | ||
8adc53fd ZLK |
5510 | INGENIC JZ4780 DMA Driver |
5511 | M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> | |
5512 | S: Maintained | |
5513 | F: drivers/dma/dma-jz4780.c | |
5514 | ||
aa7168f4 | 5515 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
74dd744f | 5516 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
bfd33c4b | 5517 | M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com> |
74dd744f MZ |
5518 | L: linux-ima-devel@lists.sourceforge.net |
5519 | L: linux-ima-user@lists.sourceforge.net | |
5520 | L: linux-security-module@vger.kernel.org | |
9f273c24 | 5521 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git |
aa7168f4 | 5522 | S: Supported |
679655da | 5523 | F: security/integrity/ima/ |
aa7168f4 | 5524 | |
9a4ea5a9 JH |
5525 | IMGTEC IR DECODER DRIVER |
5526 | M: James Hogan <james.hogan@imgtec.com> | |
5527 | S: Maintained | |
5528 | F: drivers/media/rc/img-ir/ | |
5529 | ||
1da177e4 | 5530 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 5531 | L: linux-fbdev@vger.kernel.org |
843393d3 | 5532 | S: Orphan |
8a61f013 | 5533 | F: drivers/video/fbdev/imsttfb.c |
1da177e4 LT |
5534 | |
5535 | INFINIBAND SUBSYSTEM | |
b6b2bbe6 | 5536 | M: Doug Ledford <dledford@redhat.com> |
8b58be88 JP |
5537 | M: Sean Hefty <sean.hefty@intel.com> |
5538 | M: Hal Rosenstock <hal.rosenstock@gmail.com> | |
e6cc0fd1 | 5539 | L: linux-rdma@vger.kernel.org |
605841f5 | 5540 | W: http://www.openfabrics.org/ |
8a6e2535 | 5541 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
2936ae04 | 5542 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git |
1da177e4 | 5543 | S: Supported |
679655da JP |
5544 | F: Documentation/infiniband/ |
5545 | F: drivers/infiniband/ | |
2dfcad3a | 5546 | F: drivers/staging/rdma/ |
c117ab84 | 5547 | F: include/uapi/linux/if_infiniband.h |
954138dc YD |
5548 | F: include/uapi/rdma/ |
5549 | F: include/rdma/ | |
1da177e4 | 5550 | |
c9f04f58 | 5551 | INOTIFY |
8b58be88 JP |
5552 | M: John McCutchan <john@johnmccutchan.com> |
5553 | M: Robert Love <rlove@rlove.org> | |
5554 | M: Eric Paris <eparis@parisplace.org> | |
c9f04f58 | 5555 | S: Maintained |
679655da JP |
5556 | F: Documentation/filesystems/inotify.txt |
5557 | F: fs/notify/inotify/ | |
5558 | F: include/linux/inotify.h | |
c117ab84 | 5559 | F: include/uapi/linux/inotify.h |
c9f04f58 | 5560 | |
e2d1d6c0 | 5561 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 | 5562 | M: Dmitry Torokhov <dmitry.torokhov@gmail.com> |
e2d1d6c0 | 5563 | L: linux-input@vger.kernel.org |
8a6e2535 | 5564 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 5565 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 5566 | S: Maintained |
679655da | 5567 | F: drivers/input/ |
f4eea7e2 | 5568 | F: include/linux/input.h |
c117ab84 | 5569 | F: include/uapi/linux/input.h |
f4eea7e2 | 5570 | F: include/linux/input/ |
e2d1d6c0 | 5571 | |
3267a87f | 5572 | INPUT MULTITOUCH (MT) PROTOCOL |
75dd112a | 5573 | M: Henrik Rydberg <rydberg@bitmath.org> |
3267a87f | 5574 | L: linux-input@vger.kernel.org |
75dd112a | 5575 | S: Odd fixes |
3267a87f | 5576 | F: Documentation/input/multi-touch-protocol.txt |
7f9c2454 | 5577 | F: drivers/input/input-mt.c |
3267a87f HR |
5578 | K: \b(ABS|SYN)_MT_ |
5579 | ||
97fa99a3 JY |
5580 | INTEL ASoC BDW/HSW DRIVERS |
5581 | M: Jie Yang <yang.jie@linux.intel.com> | |
e5747e40 | 5582 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
97fa99a3 | 5583 | S: Supported |
e8e1225d JP |
5584 | F: sound/soc/intel/common/sst-dsp* |
5585 | F: sound/soc/intel/common/sst-firmware.c | |
5586 | F: sound/soc/intel/boards/broadwell.c | |
5587 | F: sound/soc/intel/haswell/ | |
97fa99a3 | 5588 | |
4ac13e17 DJ |
5589 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
5590 | M: Intel SCU Linux support <intel-linux-scu@intel.com> | |
fdc5813f | 5591 | M: Artur Paszkiewicz <artur.paszkiewicz@intel.com> |
4ac13e17 | 5592 | L: linux-scsi@vger.kernel.org |
7106891a DJ |
5593 | T: git git://git.code.sf.net/p/intel-sas/isci |
5594 | S: Supported | |
4ac13e17 | 5595 | F: drivers/scsi/isci/ |
4ac13e17 | 5596 | |
ecc83e52 AH |
5597 | INTEL HID EVENT DRIVER |
5598 | M: Alex Hung <alex.hung@canonical.com> | |
5599 | L: platform-driver-x86@vger.kernel.org | |
5600 | S: Maintained | |
5601 | F: drivers/platform/x86/intel-hid.c | |
5602 | ||
26717172 LB |
5603 | INTEL IDLE DRIVER |
5604 | M: Len Brown <lenb@kernel.org> | |
bf1c138e | 5605 | L: linux-pm@vger.kernel.org |
08deed1e | 5606 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
26717172 LB |
5607 | S: Supported |
5608 | F: drivers/idle/intel_idle.c | |
5609 | ||
7c1ac18d | 5610 | INTEL PSTATE DRIVER |
58ac1f62 SP |
5611 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> |
5612 | M: Len Brown <lenb@kernel.org> | |
7c1ac18d KCA |
5613 | L: linux-pm@vger.kernel.org |
5614 | S: Supported | |
5615 | F: drivers/cpufreq/intel_pstate.c | |
5616 | ||
9eb8ef74 | 5617 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
55a23c4a | 5618 | M: Maik Broemme <mbroemme@plusserver.de> |
c69f677c | 5619 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 5620 | S: Maintained |
679655da | 5621 | F: Documentation/fb/intelfb.txt |
8a61f013 | 5622 | F: drivers/video/fbdev/intelfb/ |
9eb8ef74 | 5623 | |
1da177e4 | 5624 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 5625 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 5626 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 5627 | S: Maintained |
8a61f013 | 5628 | F: drivers/video/fbdev/i810/ |
1da177e4 | 5629 | |
f4a9bc4c | 5630 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 5631 | M: Sujith Thomas <sujith.thomas@intel.com> |
d0944853 | 5632 | L: platform-driver-x86@vger.kernel.org |
5ca92bd9 | 5633 | W: https://01.org/linux-acpi |
f4a9bc4c | 5634 | S: Supported |
679655da | 5635 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 5636 | |
248a9dc3 | 5637 | INTEL I/OAT DMA DRIVER |
18ebd564 | 5638 | M: Dave Jiang <dave.jiang@intel.com> |
08223d80 | 5639 | R: Dan Williams <dan.j.williams@intel.com> |
18ebd564 DJ |
5640 | L: dmaengine@vger.kernel.org |
5641 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
5642 | S: Supported | |
679655da | 5643 | F: drivers/dma/ioat* |
248a9dc3 | 5644 | |
6c8909b4 | 5645 | INTEL IOMMU (VT-d) |
8b58be88 | 5646 | M: David Woodhouse <dwmw2@infradead.org> |
6c8909b4 | 5647 | L: iommu@lists.linux-foundation.org |
54e5881d | 5648 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 5649 | S: Supported |
3fb39615 | 5650 | F: drivers/iommu/intel-iommu.c |
679655da | 5651 | F: include/linux/intel-iommu.h |
6c8909b4 | 5652 | |
b3e5f263 | 5653 | INTEL IOP-ADMA DMA DRIVER |
08223d80 | 5654 | R: Dan Williams <dan.j.williams@intel.com> |
1dd8372d | 5655 | S: Odd fixes |
679655da | 5656 | F: drivers/dma/iop-adma.c |
b3e5f263 | 5657 | |
9251ce95 | 5658 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
5529c2cd | 5659 | M: Krzysztof Halasa <khalasa@piap.pl> |
9251ce95 | 5660 | S: Maintained |
679655da JP |
5661 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
5662 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
5663 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
5664 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 5665 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 5666 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 5667 | |
844dd05f | 5668 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 5669 | M: Deepak Saxena <dsaxena@plexity.net> |
844dd05f | 5670 | S: Maintained |
679655da | 5671 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 5672 | |
2f302324 | 5673 | INTEL ETHERNET DRIVERS |
8b58be88 | 5674 | M: Jeff Kirsher <jeffrey.t.kirsher@intel.com> |
2f302324 JK |
5675 | R: Jesse Brandeburg <jesse.brandeburg@intel.com> |
5676 | R: Shannon Nelson <shannon.nelson@intel.com> | |
5677 | R: Carolyn Wyborny <carolyn.wyborny@intel.com> | |
5678 | R: Don Skidmore <donald.c.skidmore@intel.com> | |
6e80a18c | 5679 | R: Bruce Allan <bruce.w.allan@intel.com> |
2f302324 JK |
5680 | R: John Ronciak <john.ronciak@intel.com> |
5681 | R: Mitch Williams <mitch.a.williams@intel.com> | |
5682 | L: intel-wired-lan@lists.osuosl.org | |
f6fde11a | 5683 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 5684 | W: http://e1000.sourceforge.net/ |
2f302324 JK |
5685 | Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/ |
5686 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git | |
5687 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git | |
1da177e4 | 5688 | S: Supported |
0d164401 JK |
5689 | F: Documentation/networking/e100.txt |
5690 | F: Documentation/networking/e1000.txt | |
5691 | F: Documentation/networking/e1000e.txt | |
5692 | F: Documentation/networking/igb.txt | |
5693 | F: Documentation/networking/igbvf.txt | |
5694 | F: Documentation/networking/ixgb.txt | |
5695 | F: Documentation/networking/ixgbe.txt | |
5696 | F: Documentation/networking/ixgbevf.txt | |
1bff6529 | 5697 | F: Documentation/networking/i40e.txt |
105bf2fe | 5698 | F: Documentation/networking/i40evf.txt |
dee1ad47 | 5699 | F: drivers/net/ethernet/intel/ |
bc90d291 | 5700 | F: drivers/net/ethernet/intel/*/ |
1da177e4 | 5701 | |
0963d59b LW |
5702 | INTEL-MID GPIO DRIVER |
5703 | M: David Cohen <david.a.cohen@linux.intel.com> | |
5704 | L: linux-gpio@vger.kernel.org | |
5705 | S: Maintained | |
5706 | F: drivers/gpio/gpio-intel-mid.c | |
5707 | ||
ca907a90 SY |
5708 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
5709 | M: Stanislav Yakovlev <stas.yakovlev@gmail.com> | |
724c6b35 | 5710 | L: linux-wireless@vger.kernel.org |
ca907a90 | 5711 | S: Maintained |
679655da | 5712 | F: Documentation/networking/README.ipw2100 |
679655da | 5713 | F: Documentation/networking/README.ipw2200 |
367a1092 | 5714 | F: drivers/net/wireless/intel/ipw2x00/ |
826d2abe | 5715 | |
5760b0a5 AS |
5716 | INTEL(R) TRACE HUB |
5717 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> | |
5718 | S: Supported | |
5719 | F: Documentation/trace/intel_th.txt | |
5720 | F: drivers/hwtracing/intel_th/ | |
5721 | ||
4bd96a7a | 5722 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
74b18e17 | 5723 | M: Ning Sun <ning.sun@intel.com> |
4bd96a7a SW |
5724 | L: tboot-devel@lists.sourceforge.net |
5725 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 5726 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
5727 | S: Supported |
5728 | F: Documentation/intel_txt.txt | |
5729 | F: include/linux/tboot.h | |
5730 | F: arch/x86/kernel/tboot.c | |
5731 | ||
8a70da82 | 5732 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 5733 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 5734 | M: linux-wimax@intel.com |
49e7d9df | 5735 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
5736 | S: Supported |
5737 | W: http://linuxwimax.org | |
679655da JP |
5738 | F: Documentation/wimax/README.i2400m |
5739 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 5740 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 5741 | |
1c0ce89c SG |
5742 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
5743 | M: Stanislaw Gruszka <sgruszka@redhat.com> | |
efa3144e | 5744 | L: linux-wireless@vger.kernel.org |
1c0ce89c | 5745 | S: Supported |
7ac9a364 | 5746 | F: drivers/net/wireless/intel/iwlegacy/ |
efa3144e | 5747 | |
b481de9c | 5748 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 5749 | M: Johannes Berg <johannes.berg@intel.com> |
6161b02b | 5750 | M: Emmanuel Grumbach <emmanuel.grumbach@intel.com> |
7b9aebf0 | 5751 | M: Intel Linux Wireless <linuxwifi@intel.com> |
b481de9c | 5752 | L: linux-wireless@vger.kernel.org |
b481de9c | 5753 | W: http://intellinuxwireless.org |
b62ff718 | 5754 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 5755 | S: Supported |
e705c121 | 5756 | F: drivers/net/wireless/intel/iwlwifi/ |
b481de9c | 5757 | |
de8fe023 TW |
5758 | INTEL MANAGEMENT ENGINE (mei) |
5759 | M: Tomas Winkler <tomas.winkler@intel.com> | |
5760 | L: linux-kernel@vger.kernel.org | |
5761 | S: Supported | |
c117ab84 | 5762 | F: include/uapi/linux/mei.h |
5069288b | 5763 | F: include/linux/mei_cl_bus.h |
de8fe023 | 5764 | F: drivers/misc/mei/* |
e07950a1 | 5765 | F: Documentation/misc-devices/mei/* |
de8fe023 | 5766 | |
50ceb98b SD |
5767 | INTEL MIC DRIVERS (mic) |
5768 | M: Sudeep Dutt <sudeep.dutt@intel.com> | |
5769 | M: Ashutosh Dixit <ashutosh.dixit@intel.com> | |
5770 | S: Supported | |
5771 | W: https://github.com/sudeepdutt/mic | |
5772 | W: http://software.intel.com/en-us/mic-developer | |
5773 | F: include/linux/mic_bus.h | |
5774 | F: include/linux/scif.h | |
5775 | F: include/uapi/linux/mic_common.h | |
5776 | F: include/uapi/linux/mic_ioctl.h | |
9f273c24 | 5777 | F: include/uapi/linux/scif_ioctl.h |
50ceb98b SD |
5778 | F: drivers/misc/mic/ |
5779 | F: drivers/dma/mic_x100_dma.c | |
5780 | F: drivers/dma/mic_x100_dma.h | |
9f273c24 | 5781 | F: Documentation/mic/ |
50ceb98b | 5782 | |
fdca4f16 | 5783 | INTEL PMC/P-Unit IPC DRIVER |
0a8b8353 | 5784 | M: Zha Qipeng<qipeng.zha@intel.com> |
5785 | L: platform-driver-x86@vger.kernel.org | |
5786 | S: Maintained | |
5787 | F: drivers/platform/x86/intel_pmc_ipc.c | |
fdca4f16 | 5788 | F: drivers/platform/x86/intel_punit_ipc.c |
0a8b8353 | 5789 | F: arch/x86/include/asm/intel_pmc_ipc.h |
fdca4f16 | 5790 | F: arch/x86/include/asm/intel_punit_ipc.h |
0a8b8353 | 5791 | |
378f956e SKC |
5792 | INTEL TELEMETRY DRIVER |
5793 | M: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com> | |
5794 | L: platform-driver-x86@vger.kernel.org | |
5795 | S: Maintained | |
378f956e | 5796 | F: arch/x86/include/asm/intel_telemetry.h |
f1fc3cd8 | 5797 | F: drivers/platform/x86/intel_telemetry* |
0a8b8353 | 5798 | |
cb109a0e | 5799 | IOC3 ETHERNET DRIVER |
8b58be88 | 5800 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 LT |
5801 | L: linux-mips@linux-mips.org |
5802 | S: Maintained | |
8862bf1e | 5803 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 5804 | |
cb109a0e | 5805 | IOC3 SERIAL DRIVER |
8b58be88 | 5806 | M: Pat Gefre <pfg@sgi.com> |
d39e0721 | 5807 | L: linux-serial@vger.kernel.org |
cb109a0e | 5808 | S: Maintained |
df621252 | 5809 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 5810 | |
0b6e8569 SW |
5811 | IOMMU DRIVERS |
5812 | M: Joerg Roedel <joro@8bytes.org> | |
5813 | L: iommu@lists.linux-foundation.org | |
5814 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git | |
5815 | S: Maintained | |
5816 | F: drivers/iommu/ | |
5817 | ||
4480f15b | 5818 | IP MASQUERADING |
8b58be88 | 5819 | M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar> |
1da177e4 | 5820 | S: Maintained |
679655da | 5821 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 5822 | |
4409ebe9 | 5823 | IPMI SUBSYSTEM |
8b58be88 | 5824 | M: Corey Minyard <minyard@acm.org> |
b0c90653 | 5825 | L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers) |
4409ebe9 CM |
5826 | W: http://openipmi.sourceforge.net/ |
5827 | S: Supported | |
679655da JP |
5828 | F: Documentation/IPMI.txt |
5829 | F: drivers/char/ipmi/ | |
5830 | F: include/linux/ipmi* | |
c117ab84 | 5831 | F: include/uapi/linux/ipmi* |
4409ebe9 | 5832 | |
2d800897 KW |
5833 | QCOM AUDIO (ASoC) DRIVERS |
5834 | M: Patrick Lai <plai@codeaurora.org> | |
5835 | M: Banajit Goswami <bgoswami@codeaurora.org> | |
5836 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
5837 | S: Supported | |
5838 | F: sound/soc/qcom/ | |
5839 | ||
e2d1d6c0 | 5840 | IPS SCSI RAID DRIVER |
8b58be88 | 5841 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
5842 | L: linux-scsi@vger.kernel.org |
5843 | W: http://www.adaptec.com/ | |
5844 | S: Maintained | |
679655da | 5845 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
5846 | |
5847 | IPVS | |
8b58be88 JP |
5848 | M: Wensong Zhang <wensong@linux-vs.org> |
5849 | M: Simon Horman <horms@verge.net.au> | |
5850 | M: Julian Anastasov <ja@ssi.bg> | |
979b6c13 | 5851 | L: netdev@vger.kernel.org |
e2d1d6c0 | 5852 | L: lvs-devel@vger.kernel.org |
1da177e4 | 5853 | S: Maintained |
9f273c24 FW |
5854 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git |
5855 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git | |
679655da | 5856 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 5857 | F: include/net/ip_vs.h |
c117ab84 | 5858 | F: include/uapi/linux/ip_vs.h |
679655da | 5859 | F: net/netfilter/ipvs/ |
1da177e4 | 5860 | |
e7839f25 | 5861 | IPWIRELESS DRIVER |
e5f6450c | 5862 | M: Jiri Kosina <jikos@kernel.org> |
d8130624 | 5863 | M: David Sterba <dsterba@suse.com> |
92094aa0 | 5864 | S: Odd Fixes |
282361a0 | 5865 | F: drivers/tty/ipwireless/ |
099dc4fb | 5866 | |
e2d1d6c0 | 5867 | IPX NETWORK LAYER |
8b58be88 | 5868 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 RD |
5869 | L: netdev@vger.kernel.org |
5870 | S: Maintained | |
679655da | 5871 | F: include/net/ipx.h |
c117ab84 | 5872 | F: include/uapi/linux/ipx.h |
679655da | 5873 | F: net/ipx/ |
e2d1d6c0 | 5874 | |
1da177e4 | 5875 | IRDA SUBSYSTEM |
8b58be88 | 5876 | M: Samuel Ortiz <samuel@sortiz.org> |
a2ac953d | 5877 | L: irda-users@lists.sourceforge.net (subscribers-only) |
ced649ea | 5878 | L: netdev@vger.kernel.org |
1da177e4 | 5879 | W: http://irda.sourceforge.net/ |
f353976d | 5880 | S: Maintained |
e0057975 | 5881 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
5882 | F: Documentation/networking/irda.txt |
5883 | F: drivers/net/irda/ | |
5884 | F: include/net/irda/ | |
5885 | F: net/irda/ | |
1da177e4 | 5886 | |
a800c7cc TG |
5887 | IRQ SUBSYSTEM |
5888 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 5889 | L: linux-kernel@vger.kernel.org |
a800c7cc | 5890 | S: Maintained |
75fc2d37 | 5891 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc | 5892 | F: kernel/irq/ |
2ed9fd28 JC |
5893 | |
5894 | IRQCHIP DRIVERS | |
5895 | M: Thomas Gleixner <tglx@linutronix.de> | |
5896 | M: Jason Cooper <jason@lakedaemon.net> | |
54d9ffc4 | 5897 | M: Marc Zyngier <marc.zyngier@arm.com> |
2ed9fd28 JC |
5898 | L: linux-kernel@vger.kernel.org |
5899 | S: Maintained | |
5900 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core | |
5901 | T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core | |
5b5a9069 | 5902 | F: Documentation/devicetree/bindings/interrupt-controller/ |
edd96900 | 5903 | F: drivers/irqchip/ |
a800c7cc | 5904 | |
7ab3a837 | 5905 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
b09dec2c TG |
5906 | M: Jiang Liu <jiang.liu@linux.intel.com> |
5907 | M: Marc Zyngier <marc.zyngier@arm.com> | |
7ab3a837 | 5908 | S: Maintained |
b09dec2c | 5909 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
7ab3a837 GL |
5910 | F: Documentation/IRQ-domain.txt |
5911 | F: include/linux/irqdomain.h | |
5912 | F: kernel/irq/irqdomain.c | |
b09dec2c | 5913 | F: kernel/irq/msi.c |
7ab3a837 | 5914 | |
e2d1d6c0 | 5915 | ISAPNP |
8b58be88 | 5916 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 5917 | S: Maintained |
679655da JP |
5918 | F: Documentation/isapnp.txt |
5919 | F: drivers/pnp/isapnp/ | |
5920 | F: include/linux/isapnp.h | |
e2d1d6c0 | 5921 | |
d39b8420 HV |
5922 | ISA RADIO MODULE |
5923 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5924 | L: linux-media@vger.kernel.org | |
5925 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 5926 | W: https://linuxtv.org |
d39b8420 HV |
5927 | S: Maintained |
5928 | F: drivers/media/radio/radio-isa* | |
5929 | ||
71a6d0af HW |
5930 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
5931 | M: Peter Jones <pjones@redhat.com> | |
5932 | M: Konrad Rzeszutek Wilk <konrad@kernel.org> | |
5933 | S: Maintained | |
5934 | F: drivers/firmware/iscsi_ibft* | |
5935 | ||
14816b1e | 5936 | ISCSI |
8b58be88 | 5937 | M: Mike Christie <michaelc@cs.wisc.edu> |
14816b1e MC |
5938 | L: open-iscsi@googlegroups.com |
5939 | W: www.open-iscsi.org | |
54e5881d | 5940 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
14816b1e | 5941 | S: Maintained |
679655da JP |
5942 | F: drivers/scsi/*iscsi* |
5943 | F: include/scsi/*iscsi* | |
14816b1e | 5944 | |
1e65eb42 OG |
5945 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
5946 | M: Or Gerlitz <ogerlitz@mellanox.com> | |
b261aeaf | 5947 | M: Sagi Grimberg <sagig@mellanox.com> |
1e65eb42 OG |
5948 | M: Roi Dayan <roid@mellanox.com> |
5949 | L: linux-rdma@vger.kernel.org | |
5950 | S: Supported | |
5951 | W: http://www.openfabrics.org | |
5952 | W: www.open-iscsi.org | |
5953 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
14430813 | 5954 | F: drivers/infiniband/ulp/iser/ |
1e65eb42 | 5955 | |
2b70e5fd SG |
5956 | ISCSI EXTENSIONS FOR RDMA (ISER) TARGET |
5957 | M: Sagi Grimberg <sagig@mellanox.com> | |
5958 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master | |
5959 | L: linux-rdma@vger.kernel.org | |
5960 | L: target-devel@vger.kernel.org | |
5961 | S: Supported | |
5962 | W: http://www.linux-iscsi.org | |
5963 | F: drivers/infiniband/ulp/isert | |
5964 | ||
1da177e4 | 5965 | ISDN SUBSYSTEM |
8b58be88 | 5966 | M: Karsten Keil <isdn@linux-pingi.de> |
d5d52273 | 5967 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
3da0ae62 | 5968 | L: netdev@vger.kernel.org |
1da177e4 | 5969 | W: http://www.isdn4linux.de |
54e5881d | 5970 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 5971 | S: Maintained |
679655da JP |
5972 | F: Documentation/isdn/ |
5973 | F: drivers/isdn/ | |
5974 | F: include/linux/isdn.h | |
5975 | F: include/linux/isdn/ | |
c117ab84 CEB |
5976 | F: include/uapi/linux/isdn.h |
5977 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
5978 | |
5979 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 5980 | M: Armin Schindler <mac@melware.de> |
d5d52273 | 5981 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
1da177e4 LT |
5982 | W: http://www.melware.de |
5983 | S: Maintained | |
679655da | 5984 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 5985 | |
d624870f | 5986 | IT87 HARDWARE MONITORING DRIVER |
d8130624 | 5987 | M: Jean Delvare <jdelvare@suse.com> |
d624870f JD |
5988 | L: lm-sensors@lm-sensors.org |
5989 | S: Maintained | |
5990 | F: Documentation/hwmon/it87 | |
5991 | F: drivers/hwmon/it87.c | |
5992 | ||
d7104bff AP |
5993 | IT913X MEDIA DRIVER |
5994 | M: Antti Palosaari <crope@iki.fi> | |
5995 | L: linux-media@vger.kernel.org | |
a825eaec | 5996 | W: https://linuxtv.org |
d7104bff AP |
5997 | W: http://palosaari.fi/linux/ |
5998 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5999 | T: git git://linuxtv.org/anttip/media_tree.git | |
6000 | S: Maintained | |
249c697e | 6001 | F: drivers/media/tuners/it913x* |
d7104bff | 6002 | |
91821ff3 | 6003 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 6004 | M: Andy Walls <awalls@md.metrocast.net> |
7b212edf | 6005 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
661263b5 | 6006 | L: linux-media@vger.kernel.org |
275ffde4 | 6007 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
6008 | W: http://www.ivtvdriver.org |
6009 | S: Maintained | |
679655da | 6010 | F: Documentation/video4linux/*.ivtv |
90d72ac6 | 6011 | F: drivers/media/pci/ivtv/ |
c117ab84 | 6012 | F: include/uapi/linux/ivtv* |
91821ff3 | 6013 | |
68620bdd MP |
6014 | IX2505V MEDIA DRIVER |
6015 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
6016 | L: linux-media@vger.kernel.org | |
a825eaec | 6017 | W: https://linuxtv.org |
68620bdd MP |
6018 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
6019 | S: Maintained | |
6020 | F: drivers/media/dvb-frontends/ix2505v* | |
6021 | ||
4453d736 GR |
6022 | JC42.4 TEMPERATURE SENSOR DRIVER |
6023 | M: Guenter Roeck <linux@roeck-us.net> | |
6024 | L: lm-sensors@lm-sensors.org | |
6025 | S: Maintained | |
6026 | F: drivers/hwmon/jc42.c | |
6027 | F: Documentation/hwmon/jc42 | |
6028 | ||
e2d1d6c0 | 6029 | JFS FILESYSTEM |
3256f80f | 6030 | M: Dave Kleikamp <shaggy@kernel.org> |
e2d1d6c0 RD |
6031 | L: jfs-discussion@lists.sourceforge.net |
6032 | W: http://jfs.sourceforge.net/ | |
54e5881d | 6033 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 6034 | S: Maintained |
679655da JP |
6035 | F: Documentation/filesystems/jfs.txt |
6036 | F: fs/jfs/ | |
e2d1d6c0 | 6037 | |
95252236 | 6038 | JME NETWORK DRIVER |
8b58be88 | 6039 | M: Guo-Fu Tseng <cooldavid@cooldavid.org> |
95252236 GFT |
6040 | L: netdev@vger.kernel.org |
6041 | S: Maintained | |
63d24a0e | 6042 | F: drivers/net/ethernet/jme.* |
95252236 | 6043 | |
1da177e4 | 6044 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 6045 | M: David Woodhouse <dwmw2@infradead.org> |
6d85d066 DW |
6046 | L: linux-mtd@lists.infradead.org |
6047 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 6048 | S: Maintained |
679655da | 6049 | F: fs/jffs2/ |
c117ab84 | 6050 | F: include/uapi/linux/jffs2.h |
1da177e4 | 6051 | |
d183e11a TT |
6052 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) |
6053 | M: "Theodore Ts'o" <tytso@mit.edu> | |
c290ea01 | 6054 | M: Jan Kara <jack@suse.com> |
d183e11a TT |
6055 | L: linux-ext4@vger.kernel.org |
6056 | S: Maintained | |
6057 | F: fs/jbd2/ | |
6058 | F: include/linux/jbd2.h | |
ae0718f8 | 6059 | |
207dab5f MU |
6060 | JPU V4L2 MEM2MEM DRIVER FOR RENESAS |
6061 | M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com> | |
6062 | L: linux-media@vger.kernel.org | |
6063 | S: Maintained | |
6064 | F: drivers/media/platform/rcar_jpu.c | |
6065 | ||
fd8b6cb4 | 6066 | JSM Neo PCI based serial card |
9d141cb9 | 6067 | M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> |
fd8b6cb4 BL |
6068 | L: linux-serial@vger.kernel.org |
6069 | S: Maintained | |
df621252 | 6070 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 6071 | |
af39917d CL |
6072 | K10TEMP HARDWARE MONITORING DRIVER |
6073 | M: Clemens Ladisch <clemens@ladisch.de> | |
6074 | L: lm-sensors@lm-sensors.org | |
6075 | S: Maintained | |
6076 | F: Documentation/hwmon/k10temp | |
6077 | F: drivers/hwmon/k10temp.c | |
6078 | ||
4660cb35 | 6079 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 6080 | M: Rudolf Marek <r.marek@assembler.cz> |
4660cb35 | 6081 | L: lm-sensors@lm-sensors.org |
ae0718f8 | 6082 | S: Maintained |
679655da JP |
6083 | F: Documentation/hwmon/k8temp |
6084 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 6085 | |
1da177e4 | 6086 | KCONFIG |
5eb1f99e | 6087 | M: "Yann E. MORIN" <yann.morin.1998@free.fr> |
347d12d7 | 6088 | L: linux-kbuild@vger.kernel.org |
cea8321c | 6089 | T: git git://gitorious.org/linux-kconfig/linux-kconfig |
5eb1f99e | 6090 | S: Maintained |
679655da JP |
6091 | F: Documentation/kbuild/kconfig-language.txt |
6092 | F: scripts/kconfig/ | |
1da177e4 | 6093 | |
ea6c2089 | 6094 | KDUMP |
8b58be88 JP |
6095 | M: Vivek Goyal <vgoyal@redhat.com> |
6096 | M: Haren Myneni <hbabu@us.ibm.com> | |
34633993 | 6097 | L: kexec@lists.infradead.org |
ea6c2089 VG |
6098 | W: http://lse.sourceforge.net/kdump/ |
6099 | S: Maintained | |
80811493 | 6100 | F: Documentation/kdump/ |
ea6c2089 | 6101 | |
f41bf02f HV |
6102 | KEENE FM RADIO TRANSMITTER DRIVER |
6103 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
6104 | L: linux-media@vger.kernel.org | |
6105 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 6106 | W: https://linuxtv.org |
f41bf02f HV |
6107 | S: Maintained |
6108 | F: drivers/media/radio/radio-keene* | |
6109 | ||
1da177e4 | 6110 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 6111 | M: Ian Kent <raven@themaw.net> |
f694fc97 | 6112 | L: autofs@vger.kernel.org |
1da177e4 | 6113 | S: Maintained |
679655da | 6114 | F: fs/autofs4/ |
1da177e4 | 6115 | |
70fb7ba6 | 6116 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
d8130624 | 6117 | M: Michal Marek <mmarek@suse.com> |
08deed1e JP |
6118 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
6119 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 6120 | L: linux-kbuild@vger.kernel.org |
5ce45962 | 6121 | S: Maintained |
679655da JP |
6122 | F: Documentation/kbuild/ |
6123 | F: Makefile | |
6124 | F: scripts/Makefile.* | |
70fb7ba6 MM |
6125 | F: scripts/basic/ |
6126 | F: scripts/mk* | |
6127 | F: scripts/package/ | |
1da177e4 LT |
6128 | |
6129 | KERNEL JANITORS | |
c3000e03 | 6130 | L: kernel-janitors@vger.kernel.org |
10466f5a | 6131 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 6132 | S: Odd Fixes |
1da177e4 | 6133 | |
e8b43555 | 6134 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 6135 | M: "J. Bruce Fields" <bfields@fieldses.org> |
883985f6 | 6136 | M: Jeff Layton <jlayton@poochiereds.net> |
16141c02 | 6137 | L: linux-nfs@vger.kernel.org |
1da177e4 | 6138 | W: http://nfs.sourceforge.net/ |
9f273c24 | 6139 | T: git git://linux-nfs.org/~bfields/linux.git |
98fac23f | 6140 | S: Supported |
679655da | 6141 | F: fs/nfsd/ |
c117ab84 | 6142 | F: include/uapi/linux/nfsd/ |
679655da JP |
6143 | F: fs/lockd/ |
6144 | F: fs/nfs_common/ | |
6145 | F: net/sunrpc/ | |
6146 | F: include/linux/lockd/ | |
6147 | F: include/linux/sunrpc/ | |
c117ab84 | 6148 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 6149 | |
13b122b3 SK |
6150 | KERNEL SELFTEST FRAMEWORK |
6151 | M: Shuah Khan <shuahkh@osg.samsung.com> | |
64f00850 | 6152 | L: linux-kselftest@vger.kernel.org |
13b122b3 SK |
6153 | T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest |
6154 | S: Maintained | |
6155 | F: tools/testing/selftests | |
6156 | ||
426d62e2 | 6157 | KERNEL VIRTUAL MACHINE (KVM) |
0a00a775 | 6158 | M: Gleb Natapov <gleb@kernel.org> |
c93a64fe | 6159 | M: Paolo Bonzini <pbonzini@redhat.com> |
1fc9d2bf | 6160 | L: kvm@vger.kernel.org |
e3e58478 | 6161 | W: http://www.linux-kvm.org |
a94b40a6 | 6162 | T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git |
426d62e2 | 6163 | S: Supported |
c93a64fe PB |
6164 | F: Documentation/*/kvm*.txt |
6165 | F: Documentation/virtual/kvm/ | |
679655da | 6166 | F: arch/*/kvm/ |
1662e862 CB |
6167 | F: arch/x86/kernel/kvm.c |
6168 | F: arch/x86/kernel/kvmclock.c | |
679655da JP |
6169 | F: arch/*/include/asm/kvm* |
6170 | F: include/linux/kvm* | |
c117ab84 | 6171 | F: include/uapi/linux/kvm* |
679655da | 6172 | F: virt/kvm/ |
426d62e2 | 6173 | |
ad8003d3 | 6174 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 6175 | M: Joerg Roedel <joro@8bytes.org> |
1fc9d2bf | 6176 | L: kvm@vger.kernel.org |
038161de | 6177 | W: http://www.linux-kvm.org/ |
7de609c8 | 6178 | S: Maintained |
679655da | 6179 | F: arch/x86/include/asm/svm.h |
679655da | 6180 | F: arch/x86/kvm/svm.c |
426d62e2 | 6181 | |
513014b7 | 6182 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
d8130624 | 6183 | M: Alexander Graf <agraf@suse.com> |
1fc9d2bf | 6184 | L: kvm-ppc@vger.kernel.org |
038161de | 6185 | W: http://www.linux-kvm.org/ |
6a7f972d | 6186 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 6187 | S: Supported |
679655da JP |
6188 | F: arch/powerpc/include/asm/kvm* |
6189 | F: arch/powerpc/kvm/ | |
513014b7 | 6190 | |
85f8fffe | 6191 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 6192 | M: Christian Borntraeger <borntraeger@de.ibm.com> |
4ae57b6c | 6193 | M: Cornelia Huck <cornelia.huck@de.ibm.com> |
85f8fffe CB |
6194 | L: linux-s390@vger.kernel.org |
6195 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
9f273c24 | 6196 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git |
85f8fffe | 6197 | S: Supported |
679655da JP |
6198 | F: Documentation/s390/kvm.txt |
6199 | F: arch/s390/include/asm/kvm* | |
80811493 | 6200 | F: arch/s390/kvm/ |
85f8fffe | 6201 | |
a749474d | 6202 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
0f4ca79e | 6203 | M: Christoffer Dall <christoffer.dall@linaro.org> |
5c8818b4 MZ |
6204 | M: Marc Zyngier <marc.zyngier@arm.com> |
6205 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
a749474d CD |
6206 | L: kvmarm@lists.cs.columbia.edu |
6207 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
1b1ebe82 | 6208 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git |
0f4ca79e | 6209 | S: Supported |
a749474d CD |
6210 | F: arch/arm/include/uapi/asm/kvm* |
6211 | F: arch/arm/include/asm/kvm* | |
6212 | F: arch/arm/kvm/ | |
5c8818b4 MZ |
6213 | F: virt/kvm/arm/ |
6214 | F: include/kvm/arm_* | |
a749474d | 6215 | |
6394a3ec | 6216 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
5c8818b4 | 6217 | M: Christoffer Dall <christoffer.dall@linaro.org> |
6394a3ec MZ |
6218 | M: Marc Zyngier <marc.zyngier@arm.com> |
6219 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6220 | L: kvmarm@lists.cs.columbia.edu | |
6221 | S: Maintained | |
6222 | F: arch/arm64/include/uapi/asm/kvm* | |
6223 | F: arch/arm64/include/asm/kvm* | |
6224 | F: arch/arm64/kvm/ | |
6225 | ||
bfd3d532 JH |
6226 | KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips) |
6227 | M: James Hogan <james.hogan@imgtec.com> | |
6228 | L: linux-mips@linux-mips.org | |
6229 | S: Supported | |
6230 | F: arch/mips/include/uapi/asm/kvm* | |
6231 | F: arch/mips/include/asm/kvm* | |
6232 | F: arch/mips/kvm/ | |
6233 | ||
dc009d92 | 6234 | KEXEC |
8b58be88 | 6235 | M: Eric Biederman <ebiederm@xmission.com> |
2f327dad | 6236 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 6237 | L: kexec@lists.infradead.org |
dc009d92 | 6238 | S: Maintained |
679655da | 6239 | F: include/linux/kexec.h |
c117ab84 | 6240 | F: include/uapi/linux/kexec.h |
679655da | 6241 | F: kernel/kexec.c |
dc009d92 | 6242 | |
e971461f DH |
6243 | KEYS/KEYRINGS: |
6244 | M: David Howells <dhowells@redhat.com> | |
aa62efff | 6245 | L: keyrings@vger.kernel.org |
e971461f | 6246 | S: Maintained |
d410fa4e | 6247 | F: Documentation/security/keys.txt |
e971461f DH |
6248 | F: include/linux/key.h |
6249 | F: include/linux/key-type.h | |
6250 | F: include/keys/ | |
6251 | F: security/keys/ | |
6252 | ||
7f3c68be | 6253 | KEYS-TRUSTED |
74dd744f MZ |
6254 | M: David Safford <safford@us.ibm.com> |
6255 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> | |
7f3c68be | 6256 | L: linux-security-module@vger.kernel.org |
aa62efff | 6257 | L: keyrings@vger.kernel.org |
7f3c68be | 6258 | S: Supported |
d410fa4e | 6259 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
6260 | F: include/keys/trusted-type.h |
6261 | F: security/keys/trusted.c | |
6262 | F: security/keys/trusted.h | |
6263 | ||
6264 | KEYS-ENCRYPTED | |
74dd744f MZ |
6265 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
6266 | M: David Safford <safford@us.ibm.com> | |
7f3c68be | 6267 | L: linux-security-module@vger.kernel.org |
aa62efff | 6268 | L: keyrings@vger.kernel.org |
7f3c68be | 6269 | S: Supported |
d410fa4e | 6270 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 6271 | F: include/keys/encrypted-type.h |
19c90aa6 | 6272 | F: security/keys/encrypted-keys/ |
7f3c68be | 6273 | |
5b778dad | 6274 | KGDB / KDB /debug_core |
8b58be88 | 6275 | M: Jason Wessel <jason.wessel@windriver.com> |
4063eb5f | 6276 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 | 6277 | L: kgdb-bugreport@lists.sourceforge.net |
9f273c24 | 6278 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git |
e3e2aaf7 | 6279 | S: Maintained |
679655da JP |
6280 | F: Documentation/DocBook/kgdb.tmpl |
6281 | F: drivers/misc/kgdbts.c | |
df621252 | 6282 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 6283 | F: include/linux/kdb.h |
679655da | 6284 | F: include/linux/kgdb.h |
4063eb5f | 6285 | F: kernel/debug/ |
e3e2aaf7 | 6286 | |
456db8cc | 6287 | KMEMCHECK |
8b58be88 | 6288 | M: Vegard Nossum <vegardno@ifi.uio.no> |
2ed1c525 | 6289 | M: Pekka Enberg <penberg@kernel.org> |
b9ce08c0 | 6290 | S: Maintained |
410d7a97 JP |
6291 | F: Documentation/kmemcheck.txt |
6292 | F: arch/x86/include/asm/kmemcheck.h | |
6293 | F: arch/x86/mm/kmemcheck/ | |
6294 | F: include/linux/kmemcheck.h | |
6295 | F: mm/kmemcheck.c | |
b9ce08c0 | 6296 | |
c3bb4d24 | 6297 | KMEMLEAK |
8b58be88 | 6298 | M: Catalin Marinas <catalin.marinas@arm.com> |
c3bb4d24 CM |
6299 | S: Maintained |
6300 | F: Documentation/kmemleak.txt | |
6301 | F: include/linux/kmemleak.h | |
6302 | F: mm/kmemleak.c | |
6303 | F: mm/kmemleak-test.c | |
6304 | ||
89559a61 | 6305 | KPROBES |
8b58be88 JP |
6306 | M: Ananth N Mavinakayanahalli <ananth@in.ibm.com> |
6307 | M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> | |
6308 | M: "David S. Miller" <davem@davemloft.net> | |
97c29e74 | 6309 | M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> |
89559a61 | 6310 | S: Maintained |
679655da JP |
6311 | F: Documentation/kprobes.txt |
6312 | F: include/linux/kprobes.h | |
6313 | F: kernel/kprobes.c | |
89559a61 | 6314 | |
70e84049 | 6315 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 6316 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
6317 | W: http://miguelojeda.es/auxdisplay.htm |
6318 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 6319 | S: Maintained |
679655da JP |
6320 | F: Documentation/auxdisplay/ks0108 |
6321 | F: drivers/auxdisplay/ks0108.c | |
6322 | F: include/linux/ks0108.h | |
70e84049 | 6323 | |
1b69c6d0 DA |
6324 | L3MDEV |
6325 | M: David Ahern <dsa@cumulusnetworks.com> | |
6326 | L: netdev@vger.kernel.org | |
6327 | S: Maintained | |
6328 | F: net/l3mdev | |
6329 | F: include/net/l3mdev.h | |
6330 | ||
9ca44355 JC |
6331 | LANTIQ MIPS ARCHITECTURE |
6332 | M: John Crispin <blogic@openwrt.org> | |
6333 | L: linux-mips@linux-mips.org | |
6334 | S: Maintained | |
6335 | F: arch/mips/lantiq | |
6336 | ||
1da177e4 | 6337 | LAPB module |
1da177e4 | 6338 | L: linux-x25@vger.kernel.org |
bf9915cc | 6339 | S: Orphan |
679655da JP |
6340 | F: Documentation/networking/lapb-module.txt |
6341 | F: include/*/lapb.h | |
6342 | F: net/lapb/ | |
1da177e4 LT |
6343 | |
6344 | LASI 53c700 driver for PARISC | |
8b58be88 | 6345 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
6346 | L: linux-scsi@vger.kernel.org |
6347 | S: Maintained | |
679655da JP |
6348 | F: Documentation/scsi/53c700.txt |
6349 | F: drivers/scsi/53c700* | |
1da177e4 | 6350 | |
263de9b5 | 6351 | LED SUBSYSTEM |
8b58be88 | 6352 | M: Richard Purdie <rpurdie@rpsys.net> |
48b945a1 | 6353 | M: Jacek Anaszewski <j.anaszewski@samsung.com> |
aa69cb8c | 6354 | L: linux-leds@vger.kernel.org |
b8926ba0 | 6355 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git |
263de9b5 | 6356 | S: Maintained |
679655da JP |
6357 | F: drivers/leds/ |
6358 | F: include/linux/leds.h | |
263de9b5 | 6359 | |
b0461a44 | 6360 | LEGACY EEPROM DRIVER |
d8130624 | 6361 | M: Jean Delvare <jdelvare@suse.com> |
b0461a44 JD |
6362 | S: Maintained |
6363 | F: Documentation/misc-devices/eeprom | |
6364 | F: drivers/misc/eeprom/eeprom.c | |
6365 | ||
1da177e4 | 6366 | LEGO USB Tower driver |
8b58be88 | 6367 | M: Juergen Stuber <starblue@users.sourceforge.net> |
1da177e4 LT |
6368 | L: legousb-devel@lists.sourceforge.net |
6369 | W: http://legousb.sourceforge.net/ | |
6370 | S: Maintained | |
679655da | 6371 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 6372 | |
055616a8 MK |
6373 | LG2160 MEDIA DRIVER |
6374 | M: Michael Krufky <mkrufky@linuxtv.org> | |
6375 | L: linux-media@vger.kernel.org | |
a825eaec | 6376 | W: https://linuxtv.org |
055616a8 MK |
6377 | W: http://github.com/mkrufky |
6378 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6379 | T: git git://linuxtv.org/mkrufky/tuners.git | |
6380 | S: Maintained | |
6381 | F: drivers/media/dvb-frontends/lg2160.* | |
6382 | ||
6f0e7725 MK |
6383 | LGDT3305 MEDIA DRIVER |
6384 | M: Michael Krufky <mkrufky@linuxtv.org> | |
6385 | L: linux-media@vger.kernel.org | |
a825eaec | 6386 | W: https://linuxtv.org |
6f0e7725 MK |
6387 | W: http://github.com/mkrufky |
6388 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6389 | T: git git://linuxtv.org/mkrufky/tuners.git | |
6390 | S: Maintained | |
6391 | F: drivers/media/dvb-frontends/lgdt3305.* | |
6392 | ||
568a17ff | 6393 | LGUEST |
8b58be88 | 6394 | M: Rusty Russell <rusty@rustcorp.com.au> |
a4724ed6 | 6395 | L: lguest@lists.ozlabs.org |
568a17ff | 6396 | W: http://lguest.ozlabs.org/ |
72e91863 | 6397 | S: Odd Fixes |
070f420b | 6398 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
6399 | F: arch/x86/lguest/ |
6400 | F: drivers/lguest/ | |
6401 | F: include/linux/lguest*.h | |
070f420b | 6402 | F: tools/lguest/ |
568a17ff | 6403 | |
32ac7cb2 TH |
6404 | LIBATA SUBSYSTEM (Serial and Parallel ATA drivers) |
6405 | M: Tejun Heo <tj@kernel.org> | |
6406 | L: linux-ide@vger.kernel.org | |
6407 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6408 | S: Maintained | |
6409 | F: drivers/ata/ | |
6410 | F: include/linux/ata.h | |
6411 | F: include/linux/libata.h | |
6412 | ||
6413 | LIBATA PATA ARASAN COMPACT FLASH CONTROLLER | |
da89947b | 6414 | M: Viresh Kumar <vireshk@kernel.org> |
32ac7cb2 TH |
6415 | L: linux-ide@vger.kernel.org |
6416 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6417 | S: Maintained | |
6418 | F: include/linux/pata_arasan_cf_data.h | |
6419 | F: drivers/ata/pata_arasan_cf.c | |
6420 | ||
c7fa056c BZ |
6421 | LIBATA PATA DRIVERS |
6422 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
6423 | M: Tejun Heo <tj@kernel.org> | |
6424 | L: linux-ide@vger.kernel.org | |
6425 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6426 | S: Maintained | |
6427 | F: drivers/ata/pata_*.c | |
6428 | F: drivers/ata/ata_generic.c | |
6429 | ||
32ac7cb2 TH |
6430 | LIBATA SATA AHCI PLATFORM devices support |
6431 | M: Hans de Goede <hdegoede@redhat.com> | |
6432 | M: Tejun Heo <tj@kernel.org> | |
6433 | L: linux-ide@vger.kernel.org | |
6434 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6435 | S: Maintained | |
6436 | F: drivers/ata/ahci_platform.c | |
6437 | F: drivers/ata/libahci_platform.c | |
6438 | F: include/linux/ahci_platform.h | |
6439 | ||
6440 | LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER | |
6441 | M: Mikael Pettersson <mikpelinux@gmail.com> | |
6442 | L: linux-ide@vger.kernel.org | |
6443 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
6444 | S: Maintained | |
6445 | F: drivers/ata/sata_promise.* | |
6446 | ||
1acd437c SL |
6447 | LIBLOCKDEP |
6448 | M: Sasha Levin <sasha.levin@oracle.com> | |
6449 | S: Maintained | |
6450 | F: tools/lib/lockdep/ | |
6451 | ||
bc30196f DW |
6452 | LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM |
6453 | M: Dan Williams <dan.j.williams@intel.com> | |
6454 | L: linux-nvdimm@lists.01.org | |
6455 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
9f273c24 | 6456 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git |
bc30196f DW |
6457 | S: Supported |
6458 | F: drivers/nvdimm/* | |
6459 | F: include/linux/nd.h | |
6460 | F: include/linux/libnvdimm.h | |
6461 | F: include/uapi/linux/ndctl.h | |
6462 | ||
6463 | LIBNVDIMM BLK: MMIO-APERTURE DRIVER | |
6464 | M: Ross Zwisler <ross.zwisler@linux.intel.com> | |
6465 | L: linux-nvdimm@lists.01.org | |
6466 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
6467 | S: Supported | |
6468 | F: drivers/nvdimm/blk.c | |
6469 | F: drivers/nvdimm/region_devs.c | |
6470 | F: drivers/acpi/nfit* | |
6471 | ||
6472 | LIBNVDIMM BTT: BLOCK TRANSLATION TABLE | |
6473 | M: Vishal Verma <vishal.l.verma@intel.com> | |
6474 | L: linux-nvdimm@lists.01.org | |
6475 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
6476 | S: Supported | |
6477 | F: drivers/nvdimm/btt* | |
6478 | ||
6479 | LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER | |
6480 | M: Ross Zwisler <ross.zwisler@linux.intel.com> | |
6481 | L: linux-nvdimm@lists.01.org | |
6482 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
6483 | S: Supported | |
6484 | F: drivers/nvdimm/pmem.c | |
b864bc17 | 6485 | F: include/linux/pmem.h |
40603526 | 6486 | F: arch/*/include/asm/pmem.h |
bc30196f | 6487 | |
cd9e9808 MB |
6488 | LIGHTNVM PLATFORM SUPPORT |
6489 | M: Matias Bjorling <mb@lightnvm.io> | |
6490 | W: http://github/OpenChannelSSD | |
4ead1a25 | 6491 | L: linux-block@vger.kernel.org |
cd9e9808 MB |
6492 | S: Maintained |
6493 | F: drivers/lightnvm/ | |
6494 | F: include/linux/lightnvm.h | |
6495 | F: include/uapi/linux/lightnvm.h | |
6496 | ||
1da177e4 | 6497 | LINUX FOR IBM pSERIES (RS/6000) |
8b58be88 | 6498 | M: Paul Mackerras <paulus@au.ibm.com> |
1da177e4 LT |
6499 | W: http://www.ibm.com/linux/ltc/projects/ppc |
6500 | S: Supported | |
11c34c7d | 6501 | F: arch/powerpc/boot/rs6000.h |
1da177e4 | 6502 | |
852bb9f5 | 6503 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
6504 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
6505 | M: Paul Mackerras <paulus@samba.org> | |
ea668936 | 6506 | M: Michael Ellerman <mpe@ellerman.id.au> |
1da177e4 | 6507 | W: http://www.penguinppc.org/ |
a4724ed6 | 6508 | L: linuxppc-dev@lists.ozlabs.org |
8a6e2535 | 6509 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
9958084a | 6510 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git |
1da177e4 | 6511 | S: Supported |
11c34c7d JP |
6512 | F: Documentation/powerpc/ |
6513 | F: arch/powerpc/ | |
1da177e4 LT |
6514 | |
6515 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 6516 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
1da177e4 | 6517 | W: http://www.penguinppc.org/ |
a4724ed6 | 6518 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 6519 | S: Maintained |
11c34c7d JP |
6520 | F: arch/powerpc/platforms/powermac/ |
6521 | F: drivers/macintosh/ | |
1da177e4 | 6522 | |
77a76369 | 6523 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 6524 | M: Anatolij Gustschin <agust@denx.de> |
a4724ed6 | 6525 | L: linuxppc-dev@lists.ozlabs.org |
cba5b1c6 | 6526 | T: git git://git.denx.de/linux-denx-agust.git |
1da177e4 | 6527 | S: Maintained |
11c34c7d JP |
6528 | F: arch/powerpc/platforms/512x/ |
6529 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
6530 | |
6531 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
49e7d9df | 6532 | M: Alistair Popple <alistair@popple.id.au> |
8b58be88 | 6533 | M: Matt Porter <mporter@kernel.crashing.org> |
1da177e4 | 6534 | W: http://www.penguinppc.org/ |
a4724ed6 | 6535 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 6536 | S: Maintained |
11c34c7d JP |
6537 | F: arch/powerpc/platforms/40x/ |
6538 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 6539 | |
260c02a9 | 6540 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
a4724ed6 | 6541 | L: linuxppc-dev@lists.ozlabs.org |
cdeb8994 | 6542 | S: Orphan |
11c34c7d JP |
6543 | F: arch/powerpc/*/*virtex* |
6544 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 6545 | |
e93adf1e | 6546 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 | 6547 | M: Vitaly Bordug <vitb@kernel.crashing.org> |
e93adf1e | 6548 | W: http://www.penguinppc.org/ |
a4724ed6 | 6549 | L: linuxppc-dev@lists.ozlabs.org |
e93adf1e | 6550 | S: Maintained |
a2b1f7c8 | 6551 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 6552 | |
1da177e4 | 6553 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
44451d4d | 6554 | M: Scott Wood <oss@buserror.net> |
8b58be88 | 6555 | M: Kumar Gala <galak@kernel.crashing.org> |
ce00f85c | 6556 | W: http://www.penguinppc.org/ |
a4724ed6 | 6557 | L: linuxppc-dev@lists.ozlabs.org |
a1e0fb42 | 6558 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git |
ce00f85c | 6559 | S: Maintained |
11c34c7d | 6560 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 6561 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 6562 | |
ab06ff3a | 6563 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
8b58be88 | 6564 | M: Olof Johansson <olof@lixom.net> |
a4724ed6 | 6565 | L: linuxppc-dev@lists.ozlabs.org |
92e19709 | 6566 | S: Maintained |
11c34c7d JP |
6567 | F: arch/powerpc/platforms/pasemi/ |
6568 | F: drivers/*/*pasemi* | |
6569 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 6570 | |
1da177e4 | 6571 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 6572 | M: Chris Wright <chrisw@sous-sol.org> |
1a4520be | 6573 | L: linux-security-module@vger.kernel.org |
1da177e4 LT |
6574 | S: Supported |
6575 | ||
a23ce6da HW |
6576 | LIS3LV02D ACCELEROMETER DRIVER |
6577 | M: Eric Piel <eric.piel@tremplin-utc.net> | |
6578 | S: Maintained | |
ff606677 JD |
6579 | F: Documentation/misc-devices/lis3lv02d |
6580 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 6581 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 6582 | |
b700e7f0 SJ |
6583 | LIVE PATCHING |
6584 | M: Josh Poimboeuf <jpoimboe@redhat.com> | |
6585 | M: Seth Jennings <sjenning@redhat.com> | |
e5f6450c | 6586 | M: Jiri Kosina <jikos@kernel.org> |
d8130624 | 6587 | M: Vojtech Pavlik <vojtech@suse.com> |
b700e7f0 SJ |
6588 | S: Maintained |
6589 | F: kernel/livepatch/ | |
6590 | F: include/linux/livepatch.h | |
6591 | F: arch/x86/include/asm/livepatch.h | |
6592 | F: arch/x86/kernel/livepatch.c | |
6593 | F: Documentation/ABI/testing/sysfs-kernel-livepatch | |
13d1cf7e | 6594 | F: samples/livepatch/ |
b700e7f0 | 6595 | L: live-patching@vger.kernel.org |
74d50da3 | 6596 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git |
b700e7f0 | 6597 | |
e2d1d6c0 | 6598 | LLC (802.2) |
8b58be88 | 6599 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 | 6600 | S: Maintained |
679655da | 6601 | F: include/linux/llc.h |
c117ab84 | 6602 | F: include/uapi/linux/llc.h |
679655da JP |
6603 | F: include/net/llc* |
6604 | F: net/llc/ | |
e2d1d6c0 | 6605 | |
4e233cbe AD |
6606 | LM73 HARDWARE MONITOR DRIVER |
6607 | M: Guillaume Ligneul <guillaume.ligneul@gmail.com> | |
6608 | L: lm-sensors@lm-sensors.org | |
6609 | S: Maintained | |
6610 | F: drivers/hwmon/lm73.c | |
6611 | ||
156e2d1a | 6612 | LM78 HARDWARE MONITOR DRIVER |
d8130624 | 6613 | M: Jean Delvare <jdelvare@suse.com> |
156e2d1a JD |
6614 | L: lm-sensors@lm-sensors.org |
6615 | S: Maintained | |
6616 | F: Documentation/hwmon/lm78 | |
6617 | F: drivers/hwmon/lm78.c | |
6618 | ||
1da177e4 | 6619 | LM83 HARDWARE MONITOR DRIVER |
d8130624 | 6620 | M: Jean Delvare <jdelvare@suse.com> |
cc0b07ed | 6621 | L: lm-sensors@lm-sensors.org |
1da177e4 | 6622 | S: Maintained |
679655da JP |
6623 | F: Documentation/hwmon/lm83 |
6624 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
6625 | |
6626 | LM90 HARDWARE MONITOR DRIVER | |
d8130624 | 6627 | M: Jean Delvare <jdelvare@suse.com> |
cc0b07ed | 6628 | L: lm-sensors@lm-sensors.org |
1da177e4 | 6629 | S: Maintained |
679655da | 6630 | F: Documentation/hwmon/lm90 |
aae7bce4 | 6631 | F: Documentation/devicetree/bindings/hwmon/lm90.txt |
679655da | 6632 | F: drivers/hwmon/lm90.c |
1da177e4 | 6633 | |
917cc4e6 GR |
6634 | LM95234 HARDWARE MONITOR DRIVER |
6635 | M: Guenter Roeck <linux@roeck-us.net> | |
6636 | L: lm-sensors@lm-sensors.org | |
6637 | S: Maintained | |
6638 | F: Documentation/hwmon/lm95234 | |
6639 | F: drivers/hwmon/lm95234.c | |
6640 | ||
68620bdd MP |
6641 | LME2510 MEDIA DRIVER |
6642 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
6643 | L: linux-media@vger.kernel.org | |
a825eaec | 6644 | W: https://linuxtv.org |
68620bdd MP |
6645 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
6646 | S: Maintained | |
6647 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
6648 | ||
512e67f9 | 6649 | LOCKDEP AND LOCKSTAT |
8b58be88 JP |
6650 | M: Peter Zijlstra <peterz@infradead.org> |
6651 | M: Ingo Molnar <mingo@redhat.com> | |
981c3a4f | 6652 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 6653 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking |
512e67f9 | 6654 | S: Maintained |
214e0aed DB |
6655 | F: Documentation/locking/lockdep*.txt |
6656 | F: Documentation/locking/lockstat.txt | |
679655da | 6657 | F: include/linux/lockdep.h |
7486d6da | 6658 | F: kernel/locking/ |
512e67f9 | 6659 | |
dde33348 | 6660 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 6661 | M: "Richard Russon (FlatCap)" <ldm@flatcap.org> |
dde33348 AA |
6662 | L: linux-ntfs-dev@lists.sourceforge.net |
6663 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 6664 | S: Maintained |
679655da | 6665 | F: Documentation/ldm.txt |
20d16fef | 6666 | F: block/partitions/ldm.* |
1da177e4 | 6667 | |
ef6ada3d JE |
6668 | LogFS |
6669 | M: Joern Engel <joern@logfs.org> | |
756ccb3c | 6670 | M: Prasad Joshi <prasadjoshi.linux@gmail.com> |
ef6ada3d JE |
6671 | L: logfs@logfs.org |
6672 | W: logfs.org | |
6673 | S: Maintained | |
6674 | F: fs/logfs/ | |
6675 | ||
b62d7946 RS |
6676 | LPC32XX MACHINE SUPPORT |
6677 | M: Roland Stigge <stigge@antcom.de> | |
6678 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6679 | S: Maintained | |
6680 | F: arch/arm/mach-lpc32xx/ | |
6681 | ||
c87e34ef | 6682 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
3a980508 RS |
6683 | M: Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com> |
6684 | M: Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com> | |
6685 | M: Sreekanth Reddy <sreekanth.reddy@avagotech.com> | |
6686 | M: Abhijit Mahajan <abhijit.mahajan@avagotech.com> | |
6687 | L: MPT-FusionLinux.pdl@avagotech.com | |
c87e34ef MED |
6688 | L: linux-scsi@vger.kernel.org |
6689 | W: http://www.lsilogic.com/support | |
6690 | S: Supported | |
679655da | 6691 | F: drivers/message/fusion/ |
500c152a | 6692 | F: drivers/scsi/mpt2sas/ |
6693 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 6694 | |
1da177e4 | 6695 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 6696 | M: Matthew Wilcox <matthew@wil.cx> |
1da177e4 LT |
6697 | L: linux-scsi@vger.kernel.org |
6698 | S: Maintained | |
679655da | 6699 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 6700 | |
e5f5c99a GR |
6701 | LTC4261 HARDWARE MONITOR DRIVER |
6702 | M: Guenter Roeck <linux@roeck-us.net> | |
6703 | L: lm-sensors@lm-sensors.org | |
6704 | S: Maintained | |
6705 | F: Documentation/hwmon/ltc4261 | |
6706 | F: drivers/hwmon/ltc4261.c | |
6707 | ||
81365c31 | 6708 | LTP (Linux Test Project) |
28b8e8d4 | 6709 | M: Mike Frysinger <vapier@gentoo.org> |
7d1ae8a8 | 6710 | M: Cyril Hrubis <chrubis@suse.cz> |
0526109a | 6711 | M: Wanlong Gao <wanlong.gao@gmail.com> |
f2eb7f6f CH |
6712 | M: Jan Stancek <jstancek@redhat.com> |
6713 | M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com> | |
6714 | M: Alexey Kodanev <alexey.kodanev@oracle.com> | |
0526109a | 6715 | L: ltp@lists.linux.it (subscribers-only) |
f2eb7f6f | 6716 | W: http://linux-test-project.github.io/ |
7d1ae8a8 | 6717 | T: git git://github.com/linux-test-project/ltp.git |
81365c31 MF |
6718 | S: Maintained |
6719 | ||
c12a54b3 | 6720 | M32R ARCHITECTURE |
c12a54b3 | 6721 | W: http://www.linux-m32r.org/ |
b4174867 | 6722 | S: Orphan |
679655da | 6723 | F: arch/m32r/ |
c12a54b3 | 6724 | |
1da177e4 | 6725 | M68K ARCHITECTURE |
8b58be88 | 6726 | M: Geert Uytterhoeven <geert@linux-m68k.org> |
1da177e4 LT |
6727 | L: linux-m68k@lists.linux-m68k.org |
6728 | W: http://www.linux-m68k.org/ | |
54e5881d | 6729 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 6730 | S: Maintained |
679655da | 6731 | F: arch/m68k/ |
9db35182 | 6732 | F: drivers/zorro/ |
1da177e4 LT |
6733 | |
6734 | M68K ON APPLE MACINTOSH | |
8b58be88 | 6735 | M: Joshua Thompson <funaho@jurai.org> |
1da177e4 | 6736 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 6737 | L: linux-m68k@lists.linux-m68k.org |
1da177e4 | 6738 | S: Maintained |
9db35182 | 6739 | F: arch/m68k/mac/ |
1da177e4 LT |
6740 | |
6741 | M68K ON HP9000/300 | |
8b58be88 | 6742 | M: Philip Blundell <philb@gnu.org> |
1da177e4 LT |
6743 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
6744 | S: Maintained | |
679655da | 6745 | F: arch/m68k/hp300/ |
1da177e4 | 6746 | |
74425546 AP |
6747 | M88DS3103 MEDIA DRIVER |
6748 | M: Antti Palosaari <crope@iki.fi> | |
6749 | L: linux-media@vger.kernel.org | |
a825eaec | 6750 | W: https://linuxtv.org |
74425546 AP |
6751 | W: http://palosaari.fi/linux/ |
6752 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6753 | T: git git://linuxtv.org/anttip/media_tree.git | |
6754 | S: Maintained | |
6755 | F: drivers/media/dvb-frontends/m88ds3103* | |
6756 | ||
68620bdd MP |
6757 | M88RS2000 MEDIA DRIVER |
6758 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
6759 | L: linux-media@vger.kernel.org | |
a825eaec | 6760 | W: https://linuxtv.org |
68620bdd MP |
6761 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
6762 | S: Maintained | |
6763 | F: drivers/media/dvb-frontends/m88rs2000* | |
6764 | ||
07a092fa | 6765 | MA901 MASTERKIT USB FM RADIO DRIVER |
b75f0050 JP |
6766 | M: Alexey Klimov <klimov.linux@gmail.com> |
6767 | L: linux-media@vger.kernel.org | |
6768 | T: git git://linuxtv.org/media_tree.git | |
6769 | S: Maintained | |
6770 | F: drivers/media/radio/radio-ma901.c | |
07a092fa | 6771 | |
64a327a7 | 6772 | MAC80211 |
8b58be88 | 6773 | M: Johannes Berg <johannes@sipsolutions.net> |
64a327a7 | 6774 | L: linux-wireless@vger.kernel.org |
491b26b4 | 6775 | W: http://wireless.kernel.org/ |
ce466579 JB |
6776 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
6777 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 6778 | S: Maintained |
679655da JP |
6779 | F: Documentation/networking/mac80211-injection.txt |
6780 | F: include/net/mac80211.h | |
6781 | F: net/mac80211/ | |
2af8c4dc | 6782 | F: drivers/net/wireless/mac80211_hwsim.[ch] |
64a327a7 | 6783 | |
b863ceb7 | 6784 | MACVLAN DRIVER |
8b58be88 | 6785 | M: Patrick McHardy <kaber@trash.net> |
b863ceb7 PM |
6786 | L: netdev@vger.kernel.org |
6787 | S: Maintained | |
679655da JP |
6788 | F: drivers/net/macvlan.c |
6789 | F: include/linux/if_macvlan.h | |
b863ceb7 | 6790 | |
2b6d83e2 JB |
6791 | MAILBOX API |
6792 | M: Jassi Brar <jassisinghbrar@gmail.com> | |
6793 | L: linux-kernel@vger.kernel.org | |
6794 | S: Maintained | |
6795 | F: drivers/mailbox/ | |
6796 | F: include/linux/mailbox_client.h | |
6797 | F: include/linux/mailbox_controller.h | |
6798 | ||
faf1668c | 6799 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 6800 | M: Michael Kerrisk <mtk.manpages@gmail.com> |
795fb7e7 | 6801 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 6802 | L: linux-man@vger.kernel.org |
1b53dc74 | 6803 | S: Maintained |
faf1668c | 6804 | |
8427defd RK |
6805 | MARVELL ARMADA DRM SUPPORT |
6806 | M: Russell King <rmk+kernel@arm.linux.org.uk> | |
6807 | S: Maintained | |
6808 | F: drivers/gpu/drm/armada/ | |
6809 | ||
3ad50cca GR |
6810 | MARVELL 88E6352 DSA support |
6811 | M: Guenter Roeck <linux@roeck-us.net> | |
6812 | S: Maintained | |
6813 | F: drivers/net/dsa/mv88e6352.c | |
6814 | ||
c4d007bc TP |
6815 | MARVELL CRYPTO DRIVER |
6816 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
6817 | M: Arnaud Ebalard <arno@natisbad.org> | |
6818 | F: drivers/crypto/marvell/ | |
6819 | S: Maintained | |
6820 | L: linux-crypto@vger.kernel.org | |
6821 | ||
44c14c1d | 6822 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
6823 | M: Mirko Lindner <mlindner@marvell.com> | |
adbbf69d | 6824 | M: Stephen Hemminger <stephen@networkplumber.org> |
44c14c1d | 6825 | L: netdev@vger.kernel.org |
6826 | S: Maintained | |
6827 | F: drivers/net/ethernet/marvell/sk* | |
6828 | ||
74cda169 | 6829 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 6830 | L: libertas-dev@lists.infradead.org |
8ac3e99e | 6831 | S: Orphan |
f988d640 | 6832 | F: drivers/net/wireless/marvell/libertas/ |
74cda169 | 6833 | |
b60d6975 | 6834 | MARVELL MV643XX ETHERNET DRIVER |
4e3faf88 | 6835 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
979b6c13 | 6836 | L: netdev@vger.kernel.org |
f5ca8502 | 6837 | S: Maintained |
527a6266 | 6838 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 6839 | F: include/linux/mv643xx.h |
1da177e4 | 6840 | |
370b8ed9 TP |
6841 | MARVELL MVNETA ETHERNET DRIVER |
6842 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
6843 | L: netdev@vger.kernel.org | |
6844 | S: Maintained | |
6845 | F: drivers/net/ethernet/marvell/mvneta.* | |
6846 | ||
fcad584d | 6847 | MARVELL MWIFIEX WIRELESS DRIVER |
b9d31704 | 6848 | M: Amitkumar Karwar <akarwar@marvell.com> |
550795fc | 6849 | M: Nishant Sarmukadam <nishants@marvell.com> |
fcad584d BZ |
6850 | L: linux-wireless@vger.kernel.org |
6851 | S: Maintained | |
277b024e | 6852 | F: drivers/net/wireless/marvell/mwifiex/ |
fcad584d | 6853 | |
a2c3f656 | 6854 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 6855 | M: Lennert Buytenhek <buytenh@wantstofly.org> |
a2c3f656 | 6856 | L: linux-wireless@vger.kernel.org |
16345910 | 6857 | S: Odd Fixes |
de60f1dc | 6858 | F: drivers/net/wireless/marvell/mwl8k.c |
a2c3f656 | 6859 | |
2a69567b | 6860 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 6861 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 6862 | S: Odd Fixes |
1fa7e547 | 6863 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 6864 | |
1da177e4 | 6865 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 6866 | L: linux-fbdev@vger.kernel.org |
52653199 | 6867 | S: Orphan |
8a61f013 | 6868 | F: drivers/video/fbdev/matrox/matroxfb_* |
c117ab84 | 6869 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 6870 | |
ca462085 GR |
6871 | MAX16065 HARDWARE MONITOR DRIVER |
6872 | M: Guenter Roeck <linux@roeck-us.net> | |
6873 | L: lm-sensors@lm-sensors.org | |
6874 | S: Maintained | |
6875 | F: Documentation/hwmon/max16065 | |
6876 | F: drivers/hwmon/max16065.c | |
6877 | ||
1f61cab8 GR |
6878 | MAX20751 HARDWARE MONITOR DRIVER |
6879 | M: Guenter Roeck <linux@roeck-us.net> | |
6880 | L: lm-sensors@lm-sensors.org | |
6881 | S: Maintained | |
6882 | F: Documentation/hwmon/max20751 | |
6883 | F: drivers/hwmon/max20751.c | |
6884 | ||
d20620de | 6885 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
6a534c9d | 6886 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
d20620de HJK |
6887 | L: lm-sensors@lm-sensors.org |
6888 | S: Maintained | |
679655da JP |
6889 | F: Documentation/hwmon/max6650 |
6890 | F: drivers/hwmon/max6650.c | |
d20620de | 6891 | |
e89ab51f GR |
6892 | MAX6697 HARDWARE MONITOR DRIVER |
6893 | M: Guenter Roeck <linux@roeck-us.net> | |
6894 | L: lm-sensors@lm-sensors.org | |
6895 | S: Maintained | |
6896 | F: Documentation/hwmon/max6697 | |
6897 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
6898 | F: drivers/hwmon/max6697.c | |
6899 | F: include/linux/platform_data/max6697.h | |
6900 | ||
f8f847b5 KK |
6901 | MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS |
6902 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> | |
6903 | L: linux-pm@vger.kernel.org | |
6904 | S: Supported | |
6905 | F: drivers/power/max14577_charger.c | |
6906 | F: drivers/power/max77693_charger.c | |
6907 | ||
3811405e JMC |
6908 | MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS |
6909 | M: Javier Martinez Canillas <javier@osg.samsung.com> | |
6910 | L: linux-kernel@vger.kernel.org | |
6911 | S: Supported | |
6912 | F: drivers/*/*max77802.c | |
6913 | F: Documentation/devicetree/bindings/*/*max77802.txt | |
6914 | F: include/dt-bindings/*/*max77802.h | |
6915 | ||
befeb596 KK |
6916 | MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS |
6917 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
6918 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> | |
6919 | L: linux-kernel@vger.kernel.org | |
6920 | S: Supported | |
6921 | F: drivers/*/max14577.c | |
6922 | F: drivers/*/max77686.c | |
6923 | F: drivers/*/max77693.c | |
6924 | F: drivers/extcon/extcon-max14577.c | |
6925 | F: drivers/extcon/extcon-max77693.c | |
6926 | F: drivers/rtc/rtc-max77686.c | |
6927 | F: drivers/clk/clk-max77686.c | |
6928 | F: Documentation/devicetree/bindings/mfd/max14577.txt | |
377452f4 | 6929 | F: Documentation/devicetree/bindings/*/max77686.txt |
befeb596 KK |
6930 | F: Documentation/devicetree/bindings/mfd/max77693.txt |
6931 | F: Documentation/devicetree/bindings/clock/maxim,max77686.txt | |
6932 | F: include/linux/mfd/max14577*.h | |
6933 | F: include/linux/mfd/max77686*.h | |
6934 | F: include/linux/mfd/max77693*.h | |
6935 | ||
9be3c9a5 HV |
6936 | MAXIRADIO FM RADIO RECEIVER DRIVER |
6937 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
6938 | L: linux-media@vger.kernel.org | |
6939 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 6940 | W: https://linuxtv.org |
9be3c9a5 HV |
6941 | S: Maintained |
6942 | F: drivers/media/radio/radio-maxiradio* | |
6943 | ||
c05dc2cc PR |
6944 | MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER |
6945 | M: Peter Rosin <peda@axentia.se> | |
6946 | L: linux-iio@vger.kernel.org | |
6947 | S: Maintained | |
6948 | F: drivers/iio/potentiometer/mcp4531.c | |
6949 | ||
6f32a8c9 LP |
6950 | MEDIA DRIVERS FOR RENESAS - VSP1 |
6951 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
6952 | L: linux-media@vger.kernel.org | |
4a121096 | 6953 | L: linux-renesas-soc@vger.kernel.org |
6f32a8c9 LP |
6954 | T: git git://linuxtv.org/media_tree.git |
6955 | S: Supported | |
6956 | F: Documentation/devicetree/bindings/media/renesas,vsp1.txt | |
6957 | F: drivers/media/platform/vsp1/ | |
6958 | ||
dacf9ce8 KS |
6959 | MEDIA DRIVERS FOR ASCOT2E |
6960 | M: Sergey Kozlov <serjk@netup.ru> | |
6961 | L: linux-media@vger.kernel.org | |
a825eaec | 6962 | W: https://linuxtv.org |
dacf9ce8 KS |
6963 | W: http://netup.tv/ |
6964 | T: git git://linuxtv.org/media_tree.git | |
6965 | S: Supported | |
6966 | F: drivers/media/dvb-frontends/ascot2e* | |
6967 | ||
a6dc60ff KS |
6968 | MEDIA DRIVERS FOR CXD2841ER |
6969 | M: Sergey Kozlov <serjk@netup.ru> | |
6970 | L: linux-media@vger.kernel.org | |
a825eaec | 6971 | W: https://linuxtv.org |
a6dc60ff KS |
6972 | W: http://netup.tv/ |
6973 | T: git git://linuxtv.org/media_tree.git | |
6974 | S: Supported | |
6975 | F: drivers/media/dvb-frontends/cxd2841er* | |
6976 | ||
a5d32b35 KS |
6977 | MEDIA DRIVERS FOR HORUS3A |
6978 | M: Sergey Kozlov <serjk@netup.ru> | |
6979 | L: linux-media@vger.kernel.org | |
a825eaec | 6980 | W: https://linuxtv.org |
a5d32b35 KS |
6981 | W: http://netup.tv/ |
6982 | T: git git://linuxtv.org/media_tree.git | |
6983 | S: Supported | |
6984 | F: drivers/media/dvb-frontends/horus3a* | |
6985 | ||
e025273b KS |
6986 | MEDIA DRIVERS FOR LNBH25 |
6987 | M: Sergey Kozlov <serjk@netup.ru> | |
6988 | L: linux-media@vger.kernel.org | |
a825eaec | 6989 | W: https://linuxtv.org |
e025273b KS |
6990 | W: http://netup.tv/ |
6991 | T: git git://linuxtv.org/media_tree.git | |
6992 | S: Supported | |
6993 | F: drivers/media/dvb-frontends/lnbh25* | |
6994 | ||
52b1eaf4 KS |
6995 | MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices |
6996 | M: Sergey Kozlov <serjk@netup.ru> | |
6997 | L: linux-media@vger.kernel.org | |
a825eaec | 6998 | W: https://linuxtv.org |
52b1eaf4 KS |
6999 | W: http://netup.tv/ |
7000 | T: git git://linuxtv.org/media_tree.git | |
7001 | S: Supported | |
7002 | F: drivers/media/pci/netup_unidvb/* | |
7003 | ||
127c49ae | 7004 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
009a5410 | 7005 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
127c49ae JP |
7006 | P: LinuxTV.org Project |
7007 | L: linux-media@vger.kernel.org | |
a825eaec | 7008 | W: https://linuxtv.org |
8a6e2535 | 7009 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 7010 | T: git git://linuxtv.org/media_tree.git |
127c49ae JP |
7011 | S: Maintained |
7012 | F: Documentation/dvb/ | |
7013 | F: Documentation/video4linux/ | |
ffe06198 | 7014 | F: Documentation/DocBook/media/ |
127c49ae | 7015 | F: drivers/media/ |
ffe06198 | 7016 | F: drivers/staging/media/ |
eb4b0ec7 | 7017 | F: include/linux/platform_data/media/ |
127c49ae | 7018 | F: include/media/ |
6c0f0359 MCC |
7019 | F: include/uapi/linux/dvb/ |
7020 | F: include/uapi/linux/videodev2.h | |
7021 | F: include/uapi/linux/media.h | |
7022 | F: include/uapi/linux/v4l2-* | |
7023 | F: include/uapi/linux/meye.h | |
7024 | F: include/uapi/linux/ivtv* | |
7025 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 7026 | |
c869f77d JK |
7027 | MEDIATEK MT7601U WIRELESS LAN DRIVER |
7028 | M: Jakub Kicinski <kubakici@wp.pl> | |
7029 | L: linux-wireless@vger.kernel.org | |
7030 | S: Maintained | |
7031 | F: drivers/net/wireless/mediatek/mt7601u/ | |
7032 | ||
e399065b SS |
7033 | MEGARAID SCSI/SAS DRIVERS |
7034 | M: Kashyap Desai <kashyap.desai@avagotech.com> | |
7035 | M: Sumit Saxena <sumit.saxena@avagotech.com> | |
7036 | M: Uday Lingala <uday.lingala@avagotech.com> | |
7037 | L: megaraidlinux.pdl@avagotech.com | |
baaea1dc | 7038 | L: linux-scsi@vger.kernel.org |
e399065b | 7039 | W: http://www.lsi.com |
ce00f85c | 7040 | S: Maintained |
679655da JP |
7041 | F: Documentation/scsi/megaraid.txt |
7042 | F: drivers/scsi/megaraid.* | |
7043 | F: drivers/scsi/megaraid/ | |
757e0108 | 7044 | |
2c46c9d5 | 7045 | MELLANOX ETHERNET DRIVER (mlx4_en) |
e7523a49 | 7046 | M: Eugenia Emantayev <eugenia@mellanox.com> |
b75f0050 | 7047 | L: netdev@vger.kernel.org |
2c46c9d5 AV |
7048 | S: Supported |
7049 | W: http://www.mellanox.com | |
7050 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
7051 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
7052 | ||
e7523a49 OG |
7053 | MELLANOX ETHERNET DRIVER (mlx5e) |
7054 | M: Saeed Mahameed <saeedm@mellanox.com> | |
7055 | L: netdev@vger.kernel.org | |
7056 | S: Supported | |
7057 | W: http://www.mellanox.com | |
7058 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
7059 | F: drivers/net/ethernet/mellanox/mlx5/core/en_* | |
7060 | ||
93c1edb2 JP |
7061 | MELLANOX ETHERNET SWITCH DRIVERS |
7062 | M: Jiri Pirko <jiri@mellanox.com> | |
7063 | M: Ido Schimmel <idosch@mellanox.com> | |
7064 | L: netdev@vger.kernel.org | |
7065 | S: Supported | |
7066 | W: http://www.mellanox.com | |
7067 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
7068 | F: drivers/net/ethernet/mellanox/mlxsw/ | |
7069 | ||
5b25b13a MD |
7070 | MEMBARRIER SUPPORT |
7071 | M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
7072 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
7073 | L: linux-kernel@vger.kernel.org | |
7074 | S: Supported | |
7075 | F: kernel/membarrier.c | |
7076 | F: include/uapi/linux/membarrier.h | |
7077 | ||
70ea91f1 SR |
7078 | MEMORY MANAGEMENT |
7079 | L: linux-mm@kvack.org | |
70ea91f1 SR |
7080 | W: http://www.linux-mm.org |
7081 | S: Maintained | |
679655da | 7082 | F: include/linux/mm.h |
551450bb CS |
7083 | F: include/linux/gfp.h |
7084 | F: include/linux/mmzone.h | |
7085 | F: include/linux/memory_hotplug.h | |
7086 | F: include/linux/vmalloc.h | |
679655da | 7087 | F: mm/ |
70ea91f1 | 7088 | |
f4e9ce66 | 7089 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 7090 | M: David Woodhouse <dwmw2@infradead.org> |
242c325e | 7091 | M: Brian Norris <computersforpeace@gmail.com> |
1da177e4 | 7092 | L: linux-mtd@lists.infradead.org |
8a6e2535 JP |
7093 | W: http://www.linux-mtd.infradead.org/ |
7094 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
242c325e | 7095 | T: git git://git.infradead.org/linux-mtd.git |
ab95eac9 | 7096 | T: git git://git.infradead.org/l2-mtd.git |
1da177e4 | 7097 | S: Maintained |
679655da JP |
7098 | F: drivers/mtd/ |
7099 | F: include/linux/mtd/ | |
c117ab84 | 7100 | F: include/uapi/mtd/ |
1da177e4 | 7101 | |
26c57ef1 | 7102 | MEN A21 WATCHDOG DRIVER |
30c7469b | 7103 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
26c57ef1 | 7104 | L: linux-watchdog@vger.kernel.org |
30c7469b | 7105 | S: Maintained |
26c57ef1 JT |
7106 | F: drivers/watchdog/mena21_wdt.c |
7107 | ||
3764e82e | 7108 | MEN CHAMELEON BUS (mcb) |
30c7469b JT |
7109 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
7110 | S: Maintained | |
3764e82e JT |
7111 | F: drivers/mcb/ |
7112 | F: include/linux/mcb.h | |
b9f2f459 | 7113 | F: Documentation/men-chameleon-bus.txt |
3764e82e | 7114 | |
48b490d2 AW |
7115 | MEN F21BMC (Board Management Controller) |
7116 | M: Andreas Werner <andreas.werner@men.de> | |
7117 | S: Supported | |
7118 | F: drivers/mfd/menf21bmc.c | |
7119 | F: drivers/watchdog/menf21bmc_wdt.c | |
7120 | F: drivers/leds/leds-menf21bmc.c | |
7121 | F: drivers/hwmon/menf21bmc_hwmon.c | |
7122 | F: Documentation/hwmon/menf21bmc | |
7123 | ||
12285945 JH |
7124 | METAG ARCHITECTURE |
7125 | M: James Hogan <james.hogan@imgtec.com> | |
d668d9ed | 7126 | L: linux-metag@vger.kernel.org |
9f273c24 | 7127 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git |
f23d0e24 | 7128 | S: Odd Fixes |
12285945 JH |
7129 | F: arch/metag/ |
7130 | F: Documentation/metag/ | |
7131 | F: Documentation/devicetree/bindings/metag/ | |
2d799dde | 7132 | F: Documentation/devicetree/bindings/interrupt-controller/img,* |
a2c5d4ed | 7133 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
7134 | F: drivers/irqchip/irq-metag.c |
7135 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 | 7136 | F: drivers/tty/metag_da.c |
12285945 | 7137 | |
c6375b0a | 7138 | MICROBLAZE ARCHITECTURE |
8b58be88 | 7139 | M: Michal Simek <monstr@monstr.eu> |
c6375b0a MS |
7140 | W: http://www.monstr.eu/fdt/ |
7141 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
7142 | S: Supported | |
0a8c7914 | 7143 | F: arch/microblaze/ |
1da177e4 | 7144 | |
2508a45a CY |
7145 | MICROSOFT SURFACE PRO 3 BUTTON DRIVER |
7146 | M: Chen Yu <yu.c.chen@intel.com> | |
7147 | L: platform-driver-x86@vger.kernel.org | |
7148 | S: Supported | |
7149 | F: drivers/platform/x86/surfacepro3_button.c | |
7150 | ||
1da177e4 | 7151 | MICROTEK X6 SCANNER |
61eee9a7 | 7152 | M: Oliver Neukum <oliver@neukum.org> |
1da177e4 | 7153 | S: Maintained |
679655da | 7154 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
7155 | |
7156 | MIPS | |
8b58be88 | 7157 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 7158 | L: linux-mips@linux-mips.org |
6097050d | 7159 | W: http://www.linux-mips.org/ |
b05e988e | 7160 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 7161 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 7162 | S: Supported |
679655da JP |
7163 | F: Documentation/mips/ |
7164 | F: arch/mips/ | |
1da177e4 | 7165 | |
08b7620a HV |
7166 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
7167 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7168 | L: linux-media@vger.kernel.org | |
7169 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 7170 | W: https://linuxtv.org |
08b7620a HV |
7171 | S: Odd Fixes |
7172 | F: drivers/media/radio/radio-miropcm20* | |
7173 | ||
c09befcb OG |
7174 | MELLANOX MLX4 core VPI driver |
7175 | M: Yishai Hadas <yishaih@mellanox.com> | |
e126ba97 EC |
7176 | L: netdev@vger.kernel.org |
7177 | L: linux-rdma@vger.kernel.org | |
7178 | W: http://www.mellanox.com | |
7179 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
c09befcb OG |
7180 | S: Supported |
7181 | F: drivers/net/ethernet/mellanox/mlx4/ | |
7182 | F: include/linux/mlx4/ | |
7183 | ||
7184 | MELLANOX MLX4 IB driver | |
7185 | M: Yishai Hadas <yishaih@mellanox.com> | |
7186 | L: linux-rdma@vger.kernel.org | |
7187 | W: http://www.mellanox.com | |
e126ba97 | 7188 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
c09befcb OG |
7189 | S: Supported |
7190 | F: drivers/infiniband/hw/mlx4/ | |
7191 | F: include/linux/mlx4/ | |
7192 | ||
595a4d8f OG |
7193 | MELLANOX MLX5 core VPI driver |
7194 | M: Matan Barak <matanb@mellanox.com> | |
7195 | M: Leon Romanovsky <leonro@mellanox.com> | |
e126ba97 EC |
7196 | L: netdev@vger.kernel.org |
7197 | L: linux-rdma@vger.kernel.org | |
7198 | W: http://www.mellanox.com | |
7199 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
e126ba97 EC |
7200 | S: Supported |
7201 | F: drivers/net/ethernet/mellanox/mlx5/core/ | |
7202 | F: include/linux/mlx5/ | |
7203 | ||
595a4d8f OG |
7204 | MELLANOX MLX5 IB driver |
7205 | M: Matan Barak <matanb@mellanox.com> | |
7206 | M: Leon Romanovsky <leonro@mellanox.com> | |
b75f0050 JP |
7207 | L: linux-rdma@vger.kernel.org |
7208 | W: http://www.mellanox.com | |
7209 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
b75f0050 | 7210 | S: Supported |
b75f0050 | 7211 | F: drivers/infiniband/hw/mlx5/ |
595a4d8f | 7212 | F: include/linux/mlx5/ |
e126ba97 | 7213 | |
764589b6 CM |
7214 | MELEXIS MLX90614 DRIVER |
7215 | M: Crt Mori <cmo@melexis.com> | |
7216 | L: linux-iio@vger.kernel.org | |
7217 | W: http://www.melexis.com | |
7218 | S: Supported | |
7219 | F: drivers/iio/temperature/mlx90614.c | |
7220 | ||
0ce277e4 AP |
7221 | MN88472 MEDIA DRIVER |
7222 | M: Antti Palosaari <crope@iki.fi> | |
7223 | L: linux-media@vger.kernel.org | |
a825eaec | 7224 | W: https://linuxtv.org |
0ce277e4 AP |
7225 | W: http://palosaari.fi/linux/ |
7226 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7227 | T: git git://linuxtv.org/anttip/media_tree.git | |
7228 | S: Maintained | |
7229 | F: drivers/staging/media/mn88472/ | |
7230 | F: drivers/media/dvb-frontends/mn88472.h | |
7231 | ||
4f4d238f AP |
7232 | MN88473 MEDIA DRIVER |
7233 | M: Antti Palosaari <crope@iki.fi> | |
7234 | L: linux-media@vger.kernel.org | |
a825eaec | 7235 | W: https://linuxtv.org |
4f4d238f AP |
7236 | W: http://palosaari.fi/linux/ |
7237 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7238 | T: git git://linuxtv.org/anttip/media_tree.git | |
7239 | S: Maintained | |
7240 | F: drivers/staging/media/mn88473/ | |
7241 | F: drivers/media/dvb-frontends/mn88473.h | |
7242 | ||
1da177e4 | 7243 | MODULE SUPPORT |
8b58be88 | 7244 | M: Rusty Russell <rusty@rustcorp.com.au> |
1da177e4 | 7245 | S: Maintained |
679655da JP |
7246 | F: include/linux/module.h |
7247 | F: kernel/module.c | |
1da177e4 LT |
7248 | |
7249 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 7250 | W: http://popies.net/meye/ |
b7788e13 | 7251 | S: Orphan |
679655da | 7252 | F: Documentation/video4linux/meye.txt |
90d72ac6 | 7253 | F: drivers/media/pci/meye/ |
6c0f0359 | 7254 | F: include/uapi/linux/meye.h |
1da177e4 | 7255 | |
b9705b60 | 7256 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 7257 | M: Jiri Slaby <jirislaby@gmail.com> |
d735410a | 7258 | S: Maintained |
679655da | 7259 | F: Documentation/serial/moxa-smartio |
c897401b | 7260 | F: drivers/tty/mxser.* |
d735410a | 7261 | |
889b2f87 AK |
7262 | MR800 AVERMEDIA USB FM RADIO DRIVER |
7263 | M: Alexey Klimov <klimov.linux@gmail.com> | |
7264 | L: linux-media@vger.kernel.org | |
7265 | T: git git://linuxtv.org/media_tree.git | |
7266 | S: Maintained | |
7267 | F: drivers/media/radio/radio-mr800.c | |
7268 | ||
d7155691 AO |
7269 | MRF24J40 IEEE 802.15.4 RADIO DRIVER |
7270 | M: Alan Ott <alan@signal11.us> | |
7271 | L: linux-wpan@vger.kernel.org | |
7272 | S: Maintained | |
7273 | F: drivers/net/ieee802154/mrf24j40.c | |
2e6fd648 | 7274 | F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt |
d7155691 | 7275 | |
8c4c731a | 7276 | MSI LAPTOP SUPPORT |
182ae55c | 7277 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 7278 | L: platform-driver-x86@vger.kernel.org |
8c4c731a | 7279 | S: Maintained |
679655da | 7280 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 7281 | |
0f1006b1 | 7282 | MSI WMI SUPPORT |
d0944853 | 7283 | L: platform-driver-x86@vger.kernel.org |
5ee7041e | 7284 | S: Orphan |
0f1006b1 AA |
7285 | F: drivers/platform/x86/msi-wmi.c |
7286 | ||
19a628a0 AP |
7287 | MSI001 MEDIA DRIVER |
7288 | M: Antti Palosaari <crope@iki.fi> | |
7289 | L: linux-media@vger.kernel.org | |
a825eaec | 7290 | W: https://linuxtv.org |
19a628a0 AP |
7291 | W: http://palosaari.fi/linux/ |
7292 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7293 | T: git git://linuxtv.org/anttip/media_tree.git | |
7294 | S: Maintained | |
0185e197 | 7295 | F: drivers/media/tuners/msi001* |
19a628a0 | 7296 | |
7570589d | 7297 | MSI2500 MEDIA DRIVER |
2c57213f AP |
7298 | M: Antti Palosaari <crope@iki.fi> |
7299 | L: linux-media@vger.kernel.org | |
a825eaec | 7300 | W: https://linuxtv.org |
2c57213f AP |
7301 | W: http://palosaari.fi/linux/ |
7302 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7303 | T: git git://linuxtv.org/anttip/media_tree.git | |
7304 | S: Maintained | |
7570589d | 7305 | F: drivers/media/usb/msi2500/ |
2c57213f | 7306 | |
159eeea4 RJ |
7307 | MSYSTEMS DISKONCHIP G3 MTD DRIVER |
7308 | M: Robert Jarzmik <robert.jarzmik@free.fr> | |
7309 | L: linux-mtd@lists.infradead.org | |
7310 | S: Maintained | |
7311 | F: drivers/mtd/devices/docg3* | |
7312 | ||
62a37dc7 | 7313 | MT9M032 APTINA SENSOR DRIVER |
0e837fb9 LP |
7314 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7315 | L: linux-media@vger.kernel.org | |
7316 | T: git git://linuxtv.org/media_tree.git | |
7317 | S: Maintained | |
7318 | F: drivers/media/i2c/mt9m032.c | |
b5dcee22 | 7319 | F: include/media/i2c/mt9m032.h |
0e837fb9 | 7320 | |
62a37dc7 | 7321 | MT9P031 APTINA CAMERA SENSOR |
0e837fb9 LP |
7322 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7323 | L: linux-media@vger.kernel.org | |
7324 | T: git git://linuxtv.org/media_tree.git | |
7325 | S: Maintained | |
7326 | F: drivers/media/i2c/mt9p031.c | |
b5dcee22 | 7327 | F: include/media/i2c/mt9p031.h |
0e837fb9 | 7328 | |
62a37dc7 | 7329 | MT9T001 APTINA CAMERA SENSOR |
0e837fb9 LP |
7330 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7331 | L: linux-media@vger.kernel.org | |
7332 | T: git git://linuxtv.org/media_tree.git | |
7333 | S: Maintained | |
7334 | F: drivers/media/i2c/mt9t001.c | |
b5dcee22 | 7335 | F: include/media/i2c/mt9t001.h |
0e837fb9 | 7336 | |
62a37dc7 | 7337 | MT9V032 APTINA CAMERA SENSOR |
0e837fb9 LP |
7338 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7339 | L: linux-media@vger.kernel.org | |
7340 | T: git git://linuxtv.org/media_tree.git | |
7341 | S: Maintained | |
f2272e13 | 7342 | F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt |
0e837fb9 | 7343 | F: drivers/media/i2c/mt9v032.c |
b5dcee22 | 7344 | F: include/media/i2c/mt9v032.h |
0e837fb9 | 7345 | |
4e0d13cb | 7346 | MULTIFUNCTION DEVICES (MFD) |
f7d3210e | 7347 | M: Lee Jones <lee.jones@linaro.org> |
7caa7991 | 7348 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git |
4e0d13cb | 7349 | S: Supported |
679655da | 7350 | F: drivers/mfd/ |
55b5940d | 7351 | F: include/linux/mfd/ |
4e0d13cb | 7352 | |
5c4e6f13 | 7353 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
e18eaf8f | 7354 | M: Ulf Hansson <ulf.hansson@linaro.org> |
b2503a94 | 7355 | L: linux-mmc@vger.kernel.org |
708dce3f | 7356 | T: git git://git.linaro.org/people/ulf.hansson/mmc.git |
245feaa6 | 7357 | S: Maintained |
679655da JP |
7358 | F: drivers/mmc/ |
7359 | F: include/linux/mmc/ | |
c117ab84 | 7360 | F: include/uapi/linux/mmc/ |
baca2da4 | 7361 | |
15a0580c | 7362 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 7363 | S: Orphan |
679655da JP |
7364 | F: drivers/mmc/host/mmc_spi.c |
7365 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 7366 | |
1da177e4 | 7367 | MULTISOUND SOUND DRIVER |
8b58be88 | 7368 | M: Andrew Veliath <andrewtv@usa.net> |
1da177e4 | 7369 | S: Maintained |
679655da JP |
7370 | F: Documentation/sound/oss/MultiSound |
7371 | F: sound/oss/msnd* | |
1da177e4 | 7372 | |
d735410a | 7373 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 7374 | S: Orphan |
c897401b | 7375 | F: drivers/tty/isicom.c |
679655da | 7376 | F: include/linux/isicom.h |
d735410a | 7377 | |
550a7375 | 7378 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
3b243519 | 7379 | M: Bin Liu <b-liu@ti.com> |
795fb7e7 | 7380 | L: linux-usb@vger.kernel.org |
43b416e5 | 7381 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 7382 | S: Maintained |
679655da | 7383 | F: drivers/usb/musb/ |
550a7375 | 7384 | |
ea0af5f6 MK |
7385 | MXL5007T MEDIA DRIVER |
7386 | M: Michael Krufky <mkrufky@linuxtv.org> | |
7387 | L: linux-media@vger.kernel.org | |
a825eaec | 7388 | W: https://linuxtv.org |
ea0af5f6 MK |
7389 | W: http://github.com/mkrufky |
7390 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7391 | T: git git://linuxtv.org/mkrufky/tuners.git | |
7392 | S: Maintained | |
7393 | F: drivers/media/tuners/mxl5007t.* | |
7394 | ||
2d3cf588 | 7395 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
205057ae | 7396 | M: Hyong-Youb Kim <hykim@myri.com> |
2d3cf588 | 7397 | L: netdev@vger.kernel.org |
205057ae | 7398 | W: https://www.myricom.com/support/downloads/myri10ge.html |
2d3cf588 | 7399 | S: Supported |
93f7848b | 7400 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 7401 | |
1da177e4 | 7402 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 7403 | S: Orphan |
d9fb9f38 | 7404 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 7405 | |
23dc05a3 DM |
7406 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
7407 | M: Daniel Mack <zonque@gmail.com> | |
7408 | S: Maintained | |
e5747e40 | 7409 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
23dc05a3 DM |
7410 | W: http://www.native-instruments.com |
7411 | F: sound/usb/caiaq/ | |
7412 | ||
1da177e4 | 7413 | NCP FILESYSTEM |
52653199 PV |
7414 | M: Petr Vandrovec <petr@vandrovec.name> |
7415 | S: Odd Fixes | |
679655da | 7416 | F: fs/ncpfs/ |
1da177e4 | 7417 | |
a79b0322 FT |
7418 | NCR 5380 SCSI DRIVERS |
7419 | M: Finn Thain <fthain@telegraphics.com.au> | |
7420 | M: Michael Schmitz <schmitzmic@gmail.com> | |
7421 | L: linux-scsi@vger.kernel.org | |
7422 | S: Maintained | |
7423 | F: Documentation/scsi/g_NCR5380.txt | |
7424 | F: drivers/scsi/NCR5380.* | |
7425 | F: drivers/scsi/arm/cumana_1.c | |
7426 | F: drivers/scsi/arm/oak.c | |
7427 | F: drivers/scsi/atari_NCR5380.c | |
7428 | F: drivers/scsi/atari_scsi.* | |
7429 | F: drivers/scsi/dmx3191d.c | |
7430 | F: drivers/scsi/dtc.* | |
7431 | F: drivers/scsi/g_NCR5380.* | |
7432 | F: drivers/scsi/g_NCR5380_mmio.c | |
7433 | F: drivers/scsi/mac_scsi.* | |
7434 | F: drivers/scsi/pas16.* | |
a79b0322 FT |
7435 | F: drivers/scsi/sun3_scsi.* |
7436 | F: drivers/scsi/sun3_scsi_vme.c | |
7437 | F: drivers/scsi/t128.* | |
7438 | ||
1da177e4 | 7439 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
8b58be88 | 7440 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
7441 | L: linux-scsi@vger.kernel.org |
7442 | S: Maintained | |
679655da | 7443 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 7444 | |
4aa3eb4c GR |
7445 | NCT6775 HARDWARE MONITOR DRIVER |
7446 | M: Guenter Roeck <linux@roeck-us.net> | |
7447 | L: lm-sensors@lm-sensors.org | |
7448 | S: Maintained | |
7449 | F: Documentation/hwmon/nct6775 | |
7450 | F: drivers/hwmon/nct6775.c | |
7451 | ||
3c2d774c | 7452 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 7453 | M: Faisal Latif <faisal.latif@intel.com> |
e6cc0fd1 | 7454 | L: linux-rdma@vger.kernel.org |
e3d33cb1 | 7455 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
7456 | S: Supported |
7457 | F: drivers/infiniband/hw/nes/ | |
7458 | ||
be2f2e84 | 7459 | NETEM NETWORK EMULATOR |
adbbf69d | 7460 | M: Stephen Hemminger <stephen@networkplumber.org> |
f318a63b | 7461 | L: netem@lists.linux-foundation.org |
be2f2e84 | 7462 | S: Maintained |
679655da | 7463 | F: net/sched/sch_netem.c |
be2f2e84 | 7464 | |
b2f5a051 | 7465 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 7466 | M: Jon Mason <jdmason@kudzu.us> |
4a58448b | 7467 | L: netdev@vger.kernel.org |
4a58448b | 7468 | S: Supported |
679655da | 7469 | F: Documentation/networking/s2io.txt |
b2f5a051 | 7470 | F: Documentation/networking/vxge.txt |
86387e1a | 7471 | F: drivers/net/ethernet/neterion/ |
4a58448b | 7472 | |
db9cf3a3 | 7473 | NETFILTER ({IP,IP6,ARP,EB,NF}TABLES) |
0e05e192 | 7474 | M: Pablo Neira Ayuso <pablo@netfilter.org> |
8b58be88 | 7475 | M: Patrick McHardy <kaber@trash.net> |
42010ed0 | 7476 | M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> |
1a03b81d | 7477 | L: netfilter-devel@vger.kernel.org |
82b98543 | 7478 | L: coreteam@netfilter.org |
1da177e4 LT |
7479 | W: http://www.netfilter.org/ |
7480 | W: http://www.iptables.org/ | |
42010ed0 PNA |
7481 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
7482 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
7483 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1da177e4 | 7484 | S: Supported |
679655da JP |
7485 | F: include/linux/netfilter* |
7486 | F: include/linux/netfilter/ | |
7487 | F: include/net/netfilter/ | |
c117ab84 CEB |
7488 | F: include/uapi/linux/netfilter* |
7489 | F: include/uapi/linux/netfilter/ | |
679655da JP |
7490 | F: net/*/netfilter.c |
7491 | F: net/*/netfilter/ | |
7492 | F: net/netfilter/ | |
91c269a0 | 7493 | F: net/bridge/br_netfilter*.c |
1da177e4 | 7494 | |
4cc67735 | 7495 | NETLABEL |
87a0874c | 7496 | M: Paul Moore <paul@paul-moore.com> |
4cc67735 PM |
7497 | W: http://netlabel.sf.net |
7498 | L: netdev@vger.kernel.org | |
87a0874c | 7499 | S: Maintained |
80811493 | 7500 | F: Documentation/netlabel/ |
679655da JP |
7501 | F: include/net/netlabel.h |
7502 | F: net/netlabel/ | |
4cc67735 | 7503 | |
1da177e4 | 7504 | NETROM NETWORK LAYER |
8b58be88 | 7505 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 7506 | L: linux-hams@vger.kernel.org |
d34cb28a | 7507 | W: http://www.linux-ax25.org/ |
1da177e4 | 7508 | S: Maintained |
679655da | 7509 | F: include/net/netrom.h |
c117ab84 | 7510 | F: include/uapi/linux/netrom.h |
679655da | 7511 | F: net/netrom/ |
1da177e4 | 7512 | |
4c352362 JK |
7513 | NETRONOME ETHERNET DRIVERS |
7514 | M: Jakub Kicinski <jakub.kicinski@netronome.com> | |
7515 | M: Rolf Neugebauer <rolf.neugebauer@netronome.com> | |
7516 | L: oss-drivers@netronome.com | |
7517 | S: Maintained | |
7518 | F: drivers/net/ethernet/netronome/ | |
7519 | ||
5ddb88c0 | 7520 | NETWORK BLOCK DEVICE (NBD) |
4ca5829a | 7521 | M: Markus Pargmann <mpa@pengutronix.de> |
1da177e4 | 7522 | S: Maintained |
5e4b269b | 7523 | L: nbd-general@lists.sourceforge.net |
4ca5829a | 7524 | T: git git://git.pengutronix.de/git/mpa/linux-nbd.git |
679655da JP |
7525 | F: Documentation/blockdev/nbd.txt |
7526 | F: drivers/block/nbd.c | |
c117ab84 | 7527 | F: include/uapi/linux/nbd.h |
1da177e4 | 7528 | |
6e43650c NH |
7529 | NETWORK DROP MONITOR |
7530 | M: Neil Horman <nhorman@tuxdriver.com> | |
7531 | L: netdev@vger.kernel.org | |
7532 | S: Maintained | |
7533 | W: https://fedorahosted.org/dropwatch/ | |
7534 | F: net/core/drop_monitor.c | |
7535 | ||
1da177e4 | 7536 | NETWORKING [GENERAL] |
8b58be88 | 7537 | M: "David S. Miller" <davem@davemloft.net> |
979b6c13 | 7538 | L: netdev@vger.kernel.org |
b1e8fd54 | 7539 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 7540 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
7541 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
7542 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 7543 | S: Maintained |
679655da JP |
7544 | F: net/ |
7545 | F: include/net/ | |
018d21ed JP |
7546 | F: include/linux/in.h |
7547 | F: include/linux/net.h | |
7548 | F: include/linux/netdevice.h | |
c117ab84 CEB |
7549 | F: include/uapi/linux/in.h |
7550 | F: include/uapi/linux/net.h | |
7551 | F: include/uapi/linux/netdevice.h | |
0c7aecd4 | 7552 | F: include/uapi/linux/net_namespace.h |
7e814a6c | 7553 | F: tools/net/ |
f4e53f9a | 7554 | F: tools/testing/selftests/net/ |
335a67d2 | 7555 | F: lib/random32.c |
a101ccd1 | 7556 | F: lib/test_bpf.c |
1da177e4 LT |
7557 | |
7558 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
7559 | M: "David S. Miller" <davem@davemloft.net> |
7560 | M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> | |
8b58be88 JP |
7561 | M: James Morris <jmorris@namei.org> |
7562 | M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> | |
7563 | M: Patrick McHardy <kaber@trash.net> | |
979b6c13 | 7564 | L: netdev@vger.kernel.org |
08deed1e | 7565 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 7566 | S: Maintained |
679655da JP |
7567 | F: net/ipv4/ |
7568 | F: net/ipv6/ | |
7569 | F: include/net/ip* | |
0a14842f | 7570 | F: arch/x86/net/* |
1da177e4 | 7571 | |
73b7656c DM |
7572 | NETWORKING [IPSEC] |
7573 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
7574 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
7575 | M: "David S. Miller" <davem@davemloft.net> | |
7576 | L: netdev@vger.kernel.org | |
d1fc5024 SK |
7577 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git |
7578 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git | |
73b7656c | 7579 | S: Maintained |
5826bdd1 | 7580 | F: net/core/flow.c |
73b7656c DM |
7581 | F: net/xfrm/ |
7582 | F: net/key/ | |
7583 | F: net/ipv4/xfrm* | |
d1fc5024 SK |
7584 | F: net/ipv4/esp4.c |
7585 | F: net/ipv4/ah4.c | |
7586 | F: net/ipv4/ipcomp.c | |
7587 | F: net/ipv4/ip_vti.c | |
73b7656c | 7588 | F: net/ipv6/xfrm* |
d1fc5024 SK |
7589 | F: net/ipv6/esp6.c |
7590 | F: net/ipv6/ah6.c | |
7591 | F: net/ipv6/ipcomp6.c | |
7592 | F: net/ipv6/ip6_vti.c | |
73b7656c DM |
7593 | F: include/uapi/linux/xfrm.h |
7594 | F: include/net/xfrm.h | |
7595 | ||
10e2ff1c | 7596 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 7597 | M: Paul Moore <paul@paul-moore.com> |
10e2ff1c JM |
7598 | L: netdev@vger.kernel.org |
7599 | S: Maintained | |
7600 | ||
29f8f632 | 7601 | NETWORKING [WIRELESS] |
2cb4abd1 | 7602 | L: linux-wireless@vger.kernel.org |
8a6e2535 | 7603 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
29f8f632 | 7604 | |
788873ac JP |
7605 | NETWORKING DRIVERS |
7606 | L: netdev@vger.kernel.org | |
7607 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 7608 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
7609 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
7610 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac JP |
7611 | S: Odd Fixes |
7612 | F: drivers/net/ | |
018d21ed | 7613 | F: include/linux/if_* |
0b63bf1f | 7614 | F: include/linux/netdevice.h |
0b63bf1f JD |
7615 | F: include/linux/etherdevice.h |
7616 | F: include/linux/fcdevice.h | |
7617 | F: include/linux/fddidevice.h | |
7618 | F: include/linux/hippidevice.h | |
7619 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
7620 | F: include/uapi/linux/if_* |
7621 | F: include/uapi/linux/netdevice.h | |
788873ac | 7622 | |
0e324cf6 JL |
7623 | NETWORKING DRIVERS (WIRELESS) |
7624 | M: Kalle Valo <kvalo@codeaurora.org> | |
7625 | L: linux-wireless@vger.kernel.org | |
7626 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ | |
9f273c24 FW |
7627 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git |
7628 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git | |
0e324cf6 JL |
7629 | S: Maintained |
7630 | F: drivers/net/wireless/ | |
7631 | ||
3d396eb1 | 7632 | NETXEN (1/10) GbE SUPPORT |
8622315e | 7633 | M: Manish Chopra <manish.chopra@qlogic.com> |
83c07dde AKS |
7634 | M: Sony Chacko <sony.chacko@qlogic.com> |
7635 | M: Rajesh Borundia <rajesh.borundia@qlogic.com> | |
3d396eb1 | 7636 | L: netdev@vger.kernel.org |
9c2b5bde | 7637 | W: http://www.qlogic.com |
3d396eb1 | 7638 | S: Supported |
aa43c215 | 7639 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 7640 | |
6423d30f AAJ |
7641 | NFC SUBSYSTEM |
7642 | M: Lauro Ramos Venancio <lauro.venancio@openbossa.org> | |
7643 | M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org> | |
7644 | M: Samuel Ortiz <sameo@linux.intel.com> | |
7645 | L: linux-wireless@vger.kernel.org | |
1eb3b216 | 7646 | L: linux-nfc@lists.01.org (subscribers-only) |
0293ba20 | 7647 | S: Supported |
6423d30f | 7648 | F: net/nfc/ |
55eb94f9 | 7649 | F: include/net/nfc/ |
c117ab84 | 7650 | F: include/uapi/linux/nfc.h |
6423d30f | 7651 | F: drivers/nfc/ |
397d6497 CR |
7652 | F: include/linux/platform_data/microread.h |
7653 | F: include/linux/platform_data/nfcmrvl.h | |
7654 | F: include/linux/platform_data/nxp-nci.h | |
08eaa1e0 | 7655 | F: include/linux/platform_data/pn544.h |
397d6497 CR |
7656 | F: include/linux/platform_data/st21nfca.h |
7657 | F: include/linux/platform_data/st-nci.h | |
7ebb88e5 | 7658 | F: Documentation/devicetree/bindings/net/nfc/ |
3d396eb1 | 7659 | |
e8b43555 | 7660 | NFS, SUNRPC, AND LOCKD CLIENTS |
cd7b996a | 7661 | M: Trond Myklebust <trond.myklebust@primarydata.com> |
0e3b137f | 7662 | M: Anna Schumaker <anna.schumaker@netapp.com> |
78f58153 TM |
7663 | L: linux-nfs@vger.kernel.org |
7664 | W: http://client.linux-nfs.org | |
cd7b996a | 7665 | T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git |
1da177e4 | 7666 | S: Maintained |
679655da JP |
7667 | F: fs/lockd/ |
7668 | F: fs/nfs/ | |
7669 | F: fs/nfs_common/ | |
7670 | F: net/sunrpc/ | |
7671 | F: include/linux/lockd/ | |
7672 | F: include/linux/nfs* | |
7673 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
7674 | F: include/uapi/linux/nfs* |
7675 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 7676 | |
85ef9cea | 7677 | NILFS2 FILESYSTEM |
e2126935 | 7678 | M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> |
6aff43f8 | 7679 | L: linux-nilfs@vger.kernel.org |
f9472265 | 7680 | W: http://nilfs.sourceforge.net/ |
e2126935 | 7681 | T: git git://github.com/konis/nilfs2.git |
85ef9cea | 7682 | S: Supported |
679655da JP |
7683 | F: Documentation/filesystems/nilfs2.txt |
7684 | F: fs/nilfs2/ | |
7685 | F: include/linux/nilfs2_fs.h | |
c35c7ac5 | 7686 | F: include/trace/events/nilfs2.h |
85ef9cea | 7687 | |
1da177e4 | 7688 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 7689 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
1da177e4 LT |
7690 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
7691 | S: Maintained | |
679655da JP |
7692 | F: Documentation/scsi/NinjaSCSI.txt |
7693 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
7694 | |
7695 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
7696 | M: GOTO Masanori <gotom@debian.or.jp> |
7697 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> | |
1da177e4 LT |
7698 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
7699 | S: Maintained | |
679655da JP |
7700 | F: Documentation/scsi/NinjaSCSI.txt |
7701 | F: drivers/scsi/nsp32* | |
1da177e4 | 7702 | |
383b8fb9 LFT |
7703 | NIOS2 ARCHITECTURE |
7704 | M: Ley Foon Tan <lftan@altera.com> | |
7705 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
0094dc40 | 7706 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git |
383b8fb9 LFT |
7707 | S: Maintained |
7708 | F: arch/nios2/ | |
7709 | ||
2a6afddb | 7710 | NOKIA N900 POWER SUPPLY DRIVERS |
e35a49b1 | 7711 | R: Pali RohĂ¡r <pali.rohar@gmail.com> |
2a6afddb | 7712 | F: include/linux/power/bq2415x_charger.h |
081bab21 | 7713 | F: include/linux/power/bq27xxx_battery.h |
2a6afddb PR |
7714 | F: include/linux/power/isp1704_charger.h |
7715 | F: drivers/power/bq2415x_charger.c | |
081bab21 | 7716 | F: drivers/power/bq27xxx_battery.c |
e35a49b1 | 7717 | F: drivers/power/bq27xxx_battery_i2c.c |
2a6afddb PR |
7718 | F: drivers/power/isp1704_charger.c |
7719 | F: drivers/power/rx51_battery.c | |
7720 | ||
a1bd3bae | 7721 | NTB DRIVER CORE |
9ef6bf6c JM |
7722 | M: Jon Mason <jdmason@kudzu.us> |
7723 | M: Dave Jiang <dave.jiang@intel.com> | |
a1bd3bae | 7724 | M: Allen Hubbe <Allen.Hubbe@emc.com> |
5e9fd733 | 7725 | L: linux-ntb@googlegroups.com |
fce8a7bb | 7726 | S: Supported |
2984411f JM |
7727 | W: https://github.com/jonmason/ntb/wiki |
7728 | T: git git://github.com/jonmason/ntb.git | |
fce8a7bb | 7729 | F: drivers/ntb/ |
548c237c | 7730 | F: drivers/net/ntb_netdev.c |
fce8a7bb | 7731 | F: include/linux/ntb.h |
a1bd3bae | 7732 | F: include/linux/ntb_transport.h |
fce8a7bb | 7733 | |
e26a5843 AH |
7734 | NTB INTEL DRIVER |
7735 | M: Jon Mason <jdmason@kudzu.us> | |
7736 | M: Dave Jiang <dave.jiang@intel.com> | |
5e9fd733 | 7737 | L: linux-ntb@googlegroups.com |
e26a5843 AH |
7738 | S: Supported |
7739 | W: https://github.com/jonmason/ntb/wiki | |
7740 | T: git git://github.com/jonmason/ntb.git | |
7741 | F: drivers/ntb/hw/intel/ | |
fce8a7bb | 7742 | |
a1b36958 XY |
7743 | NTB AMD DRIVER |
7744 | M: Xiangliang Yu <Xiangliang.Yu@amd.com> | |
7745 | L: linux-ntb@googlegroups.com | |
7746 | S: Supported | |
7747 | F: drivers/ntb/hw/amd/ | |
7748 | ||
1da177e4 | 7749 | NTFS FILESYSTEM |
2818ef50 | 7750 | M: Anton Altaparmakov <anton@tuxera.com> |
1da177e4 | 7751 | L: linux-ntfs-dev@lists.sourceforge.net |
2818ef50 | 7752 | W: http://www.tuxera.com/ |
e6f4dee7 | 7753 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 7754 | S: Supported |
679655da JP |
7755 | F: Documentation/filesystems/ntfs.txt |
7756 | F: fs/ntfs/ | |
1da177e4 | 7757 | |
9eb8ef74 | 7758 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 7759 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 7760 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 7761 | S: Maintained |
8a61f013 JH |
7762 | F: drivers/video/fbdev/riva/ |
7763 | F: drivers/video/fbdev/nvidia/ | |
1da177e4 | 7764 | |
79461681 | 7765 | NVM EXPRESS DRIVER |
b3975e94 JF |
7766 | M: Keith Busch <keith.busch@intel.com> |
7767 | M: Jens Axboe <axboe@fb.com> | |
79461681 | 7768 | L: linux-nvme@lists.infradead.org |
b3975e94 JF |
7769 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
7770 | W: https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/ | |
79461681 | 7771 | S: Supported |
57dacad5 | 7772 | F: drivers/nvme/host/ |
79461681 MW |
7773 | F: include/linux/nvme.h |
7774 | ||
aee4b9bd SK |
7775 | NVMEM FRAMEWORK |
7776 | M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> | |
7777 | M: Maxime Ripard <maxime.ripard@free-electrons.com> | |
7778 | S: Maintained | |
7779 | F: drivers/nvmem/ | |
7780 | F: Documentation/devicetree/bindings/nvmem/ | |
7781 | F: include/linux/nvmem-consumer.h | |
7782 | F: include/linux/nvmem-provider.h | |
7783 | ||
dece4585 CP |
7784 | NXP-NCI NFC DRIVER |
7785 | M: Clément Perrochaud <clement.perrochaud@effinnov.com> | |
7786 | R: Charles Gorand <charles.gorand@effinnov.com> | |
7787 | L: linux-nfc@lists.01.org (moderated for non-subscribers) | |
7788 | S: Supported | |
7789 | F: drivers/nfc/nxp-nci | |
7790 | ||
f50d7146 RK |
7791 | NXP TDA998X DRM DRIVER |
7792 | M: Russell King <rmk+kernel@arm.linux.org.uk> | |
7793 | S: Supported | |
7794 | F: drivers/gpu/drm/i2c/tda998x_drv.c | |
7795 | F: include/drm/i2c/tda998x.h | |
7796 | ||
fbace43e PR |
7797 | NXP TFA9879 DRIVER |
7798 | M: Peter Rosin <peda@axentia.se> | |
7799 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
7800 | S: Maintained | |
7801 | F: sound/soc/codecs/tfa9879* | |
7802 | ||
f5525786 | 7803 | OMAP SUPPORT |
0e24bdd4 | 7804 | M: Tony Lindgren <tony@atomide.com> |
f5525786 TL |
7805 | L: linux-omap@vger.kernel.org |
7806 | W: http://www.muru.com/linux/omap/ | |
7807 | W: http://linux.omap.com/ | |
8a6e2535 | 7808 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 7809 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 7810 | S: Maintained |
4e04d5a3 | 7811 | F: arch/arm/*omap*/ |
026da812 FB |
7812 | F: arch/arm/configs/omap1_defconfig |
7813 | F: arch/arm/configs/omap2plus_defconfig | |
046d0a37 | 7814 | F: drivers/i2c/busses/i2c-omap.c |
dc68cd11 FB |
7815 | F: drivers/irqchip/irq-omap-intc.c |
7816 | F: drivers/mfd/*omap*.c | |
7817 | F: drivers/mfd/menelaus.c | |
7818 | F: drivers/mfd/palmas.c | |
7819 | F: drivers/mfd/tps65217.c | |
7820 | F: drivers/mfd/tps65218.c | |
7821 | F: drivers/mfd/tps65910.c | |
7822 | F: drivers/mfd/twl-core.[ch] | |
7823 | F: drivers/mfd/twl4030*.c | |
7824 | F: drivers/mfd/twl6030*.c | |
7825 | F: drivers/mfd/twl6040*.c | |
7826 | F: drivers/regulator/palmas-regulator*.c | |
7827 | F: drivers/regulator/pbias-regulator.c | |
7828 | F: drivers/regulator/tps65217-regulator.c | |
7829 | F: drivers/regulator/tps65218-regulator.c | |
7830 | F: drivers/regulator/tps65910-regulator.c | |
7831 | F: drivers/regulator/twl-regulator.c | |
046d0a37 | 7832 | F: include/linux/i2c-omap.h |
f5525786 | 7833 | |
50f29fbd | 7834 | OMAP DEVICE TREE SUPPORT |
cdb55ab0 | 7835 | M: Benoît Cousson <bcousson@baylibre.com> |
50f29fbd TL |
7836 | M: Tony Lindgren <tony@atomide.com> |
7837 | L: linux-omap@vger.kernel.org | |
d0fb18c5 | 7838 | L: devicetree@vger.kernel.org |
50f29fbd TL |
7839 | S: Maintained |
7840 | F: arch/arm/boot/dts/*omap* | |
7841 | F: arch/arm/boot/dts/*am3* | |
05eb20fa NM |
7842 | F: arch/arm/boot/dts/*am4* |
7843 | F: arch/arm/boot/dts/*am5* | |
7844 | F: arch/arm/boot/dts/*dra7* | |
50f29fbd | 7845 | |
f5525786 | 7846 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 7847 | M: Paul Walmsley <paul@pwsan.com> |
f5525786 TL |
7848 | L: linux-omap@vger.kernel.org |
7849 | S: Maintained | |
7850 | F: arch/arm/*omap*/*clock* | |
7851 | ||
7852 | OMAP POWER MANAGEMENT SUPPORT | |
c69d72ae | 7853 | M: Kevin Hilman <khilman@deeprootsystems.com> |
f5525786 TL |
7854 | L: linux-omap@vger.kernel.org |
7855 | S: Maintained | |
7856 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 7857 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 7858 | |
d21db568 | 7859 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
692ab1f3 PW |
7860 | M: Rajendra Nayak <rnayak@ti.com> |
7861 | M: Paul Walmsley <paul@pwsan.com> | |
7862 | L: linux-omap@vger.kernel.org | |
7863 | S: Maintained | |
d21db568 | 7864 | F: arch/arm/mach-omap2/prm* |
692ab1f3 | 7865 | |
f5525786 | 7866 | OMAP AUDIO SUPPORT |
6c284903 | 7867 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
7ec41ee5 | 7868 | M: Jarkko Nikula <jarkko.nikula@bitmer.com> |
e5747e40 | 7869 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
f5525786 TL |
7870 | L: linux-omap@vger.kernel.org |
7871 | S: Maintained | |
7872 | F: sound/soc/omap/ | |
7873 | ||
18640193 TL |
7874 | OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT |
7875 | M: Roger Quadros <rogerq@ti.com> | |
7876 | M: Tony Lindgren <tony@atomide.com> | |
7877 | L: linux-omap@vger.kernel.org | |
7878 | S: Maintained | |
7879 | F: drivers/memory/omap-gpmc.c | |
7880 | F: arch/arm/mach-omap2/*gpmc* | |
7881 | ||
f5525786 | 7882 | OMAP FRAMEBUFFER SUPPORT |
830e6384 | 7883 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
c69f677c | 7884 | L: linux-fbdev@vger.kernel.org |
f5525786 TL |
7885 | L: linux-omap@vger.kernel.org |
7886 | S: Maintained | |
8a61f013 | 7887 | F: drivers/video/fbdev/omap/ |
f5525786 | 7888 | |
676eec0d | 7889 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 7890 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
178ff4c9 | 7891 | L: linux-omap@vger.kernel.org |
676eec0d | 7892 | L: linux-fbdev@vger.kernel.org |
178ff4c9 | 7893 | S: Maintained |
8a61f013 | 7894 | F: drivers/video/fbdev/omap2/ |
178ff4c9 TV |
7895 | F: Documentation/arm/OMAP/DSS |
7896 | ||
8b37fcfc OBC |
7897 | OMAP HARDWARE SPINLOCK SUPPORT |
7898 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
7899 | L: linux-omap@vger.kernel.org | |
7900 | S: Maintained | |
7901 | F: drivers/hwspinlock/omap_hwspinlock.c | |
8b37fcfc | 7902 | |
f5525786 | 7903 | OMAP MMC SUPPORT |
8b58be88 | 7904 | M: Jarkko Lavinen <jarkko.lavinen@nokia.com> |
f5525786 TL |
7905 | L: linux-omap@vger.kernel.org |
7906 | S: Maintained | |
653f41b5 MC |
7907 | F: drivers/mmc/host/omap.c |
7908 | ||
7909 | OMAP HS MMC SUPPORT | |
0a4585c6 | 7910 | L: linux-mmc@vger.kernel.org |
653f41b5 | 7911 | L: linux-omap@vger.kernel.org |
dfa5d196 | 7912 | S: Orphan |
653f41b5 | 7913 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
7914 | |
7915 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 7916 | M: Deepak Saxena <dsaxena@plexity.net> |
f5525786 TL |
7917 | S: Maintained |
7918 | F: drivers/char/hw_random/omap-rng.c | |
7919 | ||
f400c82e | 7920 | OMAP HWMOD SUPPORT |
cdb55ab0 | 7921 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
7922 | M: Paul Walmsley <paul@pwsan.com> |
7923 | L: linux-omap@vger.kernel.org | |
7924 | S: Maintained | |
8fc8b12b | 7925 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e | 7926 | |
8633fb30 PW |
7927 | OMAP HWMOD DATA |
7928 | M: Paul Walmsley <paul@pwsan.com> | |
7929 | L: linux-omap@vger.kernel.org | |
7930 | S: Maintained | |
7931 | F: arch/arm/mach-omap2/omap_hwmod*data* | |
7932 | ||
f400c82e | 7933 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES |
cdb55ab0 | 7934 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
7935 | L: linux-omap@vger.kernel.org |
7936 | S: Maintained | |
7937 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
7938 | ||
0db83ced | 7939 | OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS) |
7e8970e1 LP |
7940 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
7941 | L: linux-media@vger.kernel.org | |
7942 | S: Maintained | |
7eec52db | 7943 | F: Documentation/devicetree/bindings/media/ti,omap3isp.txt |
90d72ac6 | 7944 | F: drivers/media/platform/omap3isp/ |
0db83ced | 7945 | F: drivers/staging/media/omap4iss/ |
7e8970e1 | 7946 | |
f5525786 | 7947 | OMAP USB SUPPORT |
f5525786 TL |
7948 | L: linux-usb@vger.kernel.org |
7949 | L: linux-omap@vger.kernel.org | |
3b243519 | 7950 | S: Orphan |
a16fbd65 JP |
7951 | F: drivers/usb/*/*omap* |
7952 | F: arch/arm/*omap*/usb* | |
f5525786 | 7953 | |
6d994710 | 7954 | OMAP GPIO DRIVER |
fe643528 | 7955 | M: Grygorii Strashko <grygorii.strashko@ti.com> |
97215800 | 7956 | M: Santosh Shilimkar <ssantosh@kernel.org> |
c69d72ae | 7957 | M: Kevin Hilman <khilman@deeprootsystems.com> |
6d994710 KH |
7958 | L: linux-omap@vger.kernel.org |
7959 | S: Maintained | |
fe643528 | 7960 | F: Documentation/devicetree/bindings/gpio/gpio-omap.txt |
6d994710 KH |
7961 | F: drivers/gpio/gpio-omap.c |
7962 | ||
c351e290 MJ |
7963 | OMAP/NEWFLOW NANOBONE MACHINE SUPPORT |
7964 | M: Mark Jackson <mpfj@newflow.co.uk> | |
7965 | L: linux-omap@vger.kernel.org | |
7966 | S: Maintained | |
7967 | F: arch/arm/boot/dts/am335x-nano.dts | |
7968 | ||
0ad122d9 | 7969 | OMFS FILESYSTEM |
8b58be88 | 7970 | M: Bob Copeland <me@bobcopeland.com> |
0ad122d9 BC |
7971 | L: linux-karma-devel@lists.sourceforge.net |
7972 | S: Maintained | |
679655da JP |
7973 | F: Documentation/filesystems/omfs.txt |
7974 | F: fs/omfs/ | |
0ad122d9 | 7975 | |
c1986ee9 | 7976 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 7977 | M: Harald Welte <laforge@gnumonks.org> |
c1986ee9 | 7978 | S: Maintained |
679655da JP |
7979 | F: drivers/char/pcmcia/cm4000_cs.c |
7980 | F: include/linux/cm4000_cs.h | |
c117ab84 | 7981 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 7982 | |
77c44ab1 | 7983 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 7984 | M: Harald Welte <laforge@gnumonks.org> |
77c44ab1 | 7985 | S: Maintained |
679655da | 7986 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 7987 | |
77d5140f | 7988 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 7989 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 7990 | L: linux-media@vger.kernel.org |
275ffde4 | 7991 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 7992 | S: Maintained |
90d72ac6 | 7993 | F: drivers/media/i2c/ov7670.c |
77d5140f | 7994 | |
431bca73 | 7995 | ONENAND FLASH DRIVER |
8b58be88 | 7996 | M: Kyungmin Park <kyungmin.park@samsung.com> |
431bca73 TG |
7997 | L: linux-mtd@lists.infradead.org |
7998 | S: Maintained | |
679655da JP |
7999 | F: drivers/mtd/onenand/ |
8000 | F: include/linux/mtd/onenand*.h | |
431bca73 | 8001 | |
1da177e4 | 8002 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 8003 | M: Willem Riede <osst@riede.org> |
1da177e4 LT |
8004 | L: osst-users@lists.sourceforge.net |
8005 | L: linux-scsi@vger.kernel.org | |
8006 | S: Maintained | |
f7269cfc JD |
8007 | F: Documentation/scsi/osst.txt |
8008 | F: drivers/scsi/osst.* | |
8009 | F: drivers/scsi/osst_*.h | |
8010 | F: drivers/scsi/st.h | |
1da177e4 | 8011 | |
e2d1d6c0 | 8012 | OPENCORES I2C BUS DRIVER |
8b58be88 | 8013 | M: Peter Korsgaard <jacmet@sunsite.dk> |
846557d3 | 8014 | L: linux-i2c@vger.kernel.org |
e2d1d6c0 | 8015 | S: Maintained |
679655da JP |
8016 | F: Documentation/i2c/busses/i2c-ocores |
8017 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 8018 | |
860c44c1 | 8019 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
5d3ad8a6 | 8020 | M: Rob Herring <robh+dt@kernel.org> |
c8fb70a3 GL |
8021 | M: Frank Rowand <frowand.list@gmail.com> |
8022 | M: Grant Likely <grant.likely@linaro.org> | |
d0fb18c5 | 8023 | L: devicetree@vger.kernel.org |
a7fefe9f RH |
8024 | W: http://www.devicetree.org/ |
8025 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git | |
860c44c1 | 8026 | S: Maintained |
f8828205 | 8027 | F: drivers/of/ |
860c44c1 | 8028 | F: include/linux/of*.h |
f8828205 | 8029 | F: scripts/dtc/ |
860c44c1 | 8030 | |
f8828205 | 8031 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
5d3ad8a6 | 8032 | M: Rob Herring <robh+dt@kernel.org> |
f8828205 GL |
8033 | M: Pawel Moll <pawel.moll@arm.com> |
8034 | M: Mark Rutland <mark.rutland@arm.com> | |
de80963e | 8035 | M: Ian Campbell <ijc+devicetree@hellion.org.uk> |
bdbff6ba | 8036 | M: Kumar Gala <galak@codeaurora.org> |
f8828205 | 8037 | L: devicetree@vger.kernel.org |
9f273c24 | 8038 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git |
f8828205 GL |
8039 | S: Maintained |
8040 | F: Documentation/devicetree/ | |
8041 | F: arch/*/boot/dts/ | |
8042 | F: include/dt-bindings/ | |
8043 | ||
2bb65f56 PA |
8044 | OPEN FIRMWARE AND DEVICE TREE OVERLAYS |
8045 | M: Pantelis Antoniou <pantelis.antoniou@konsulko.com> | |
8046 | L: devicetree@vger.kernel.org | |
8047 | S: Maintained | |
8048 | F: Documentation/devicetree/dynamic-resolution-notes.txt | |
8049 | F: Documentation/devicetree/overlay-notes.txt | |
8050 | F: drivers/of/overlay.c | |
8051 | F: drivers/of/resolver.c | |
8052 | ||
19f9d392 JB |
8053 | OPENRISC ARCHITECTURE |
8054 | M: Jonas Bonn <jonas@southpole.se> | |
8055 | W: http://openrisc.net | |
eab7c1c0 | 8056 | L: linux@lists.openrisc.net (moderated for non-subscribers) |
19f9d392 JB |
8057 | S: Maintained |
8058 | T: git git://openrisc.net/~jonas/linux | |
14430813 | 8059 | F: arch/openrisc/ |
19f9d392 | 8060 | |
ccb1352e | 8061 | OPENVSWITCH |
4f337ed5 | 8062 | M: Pravin Shelar <pshelar@nicira.com> |
b422da7c | 8063 | L: netdev@vger.kernel.org |
ccb1352e JG |
8064 | L: dev@openvswitch.org |
8065 | W: http://openvswitch.org | |
ccb1352e JG |
8066 | S: Maintained |
8067 | F: net/openvswitch/ | |
b422da7c | 8068 | F: include/uapi/linux/openvswitch.h |
ccb1352e | 8069 | |
875fa6fb VK |
8070 | OPERATING PERFORMANCE POINTS (OPP) |
8071 | M: Viresh Kumar <vireshk@kernel.org> | |
8072 | M: Nishanth Menon <nm@ti.com> | |
8073 | M: Stephen Boyd <sboyd@codeaurora.org> | |
8074 | L: linux-pm@vger.kernel.org | |
8075 | S: Maintained | |
8076 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git | |
8077 | F: drivers/base/power/opp/ | |
8078 | F: include/linux/pm_opp.h | |
8079 | F: Documentation/power/opp.txt | |
8080 | F: Documentation/devicetree/bindings/opp/ | |
8081 | ||
af39917d CL |
8082 | OPL4 DRIVER |
8083 | M: Clemens Ladisch <clemens@ladisch.de> | |
8084 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
8085 | T: git git://git.alsa-project.org/alsa-kernel.git | |
8086 | S: Maintained | |
8087 | F: sound/drivers/opl4/ | |
8088 | ||
1da177e4 | 8089 | OPROFILE |
4cf7e718 | 8090 | M: Robert Richter <rric@kernel.org> |
1da177e4 LT |
8091 | L: oprofile-list@lists.sf.net |
8092 | S: Maintained | |
81c4a8a6 | 8093 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
8094 | F: arch/*/oprofile/ |
8095 | F: drivers/oprofile/ | |
8096 | F: include/linux/oprofile.h | |
1da177e4 | 8097 | |
e2d1d6c0 | 8098 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
8b58be88 | 8099 | M: Mark Fasheh <mfasheh@suse.com> |
d6351db2 | 8100 | M: Joel Becker <jlbec@evilplan.org> |
e2d1d6c0 | 8101 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
01945fa2 | 8102 | W: http://ocfs2.wiki.kernel.org |
e2d1d6c0 | 8103 | S: Supported |
679655da JP |
8104 | F: Documentation/filesystems/ocfs2.txt |
8105 | F: Documentation/filesystems/dlmfs.txt | |
8106 | F: fs/ocfs2/ | |
e2d1d6c0 | 8107 | |
1da177e4 | 8108 | ORINOCO DRIVER |
724c6b35 | 8109 | L: linux-wireless@vger.kernel.org |
491b26b4 | 8110 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 8111 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 8112 | S: Orphan |
2be45b66 | 8113 | F: drivers/net/wireless/intersil/orinoco/ |
1da177e4 | 8114 | |
42c55aa8 | 8115 | OSD LIBRARY and FILESYSTEM |
fadc0752 | 8116 | M: Boaz Harrosh <ooo@electrozaur.com> |
f1f6630b | 8117 | M: Benny Halevy <bhalevy@primarydata.com> |
68274794 BH |
8118 | L: osd-dev@open-osd.org |
8119 | W: http://open-osd.org | |
54e5881d | 8120 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 8121 | S: Maintained |
42c55aa8 | 8122 | F: drivers/scsi/osd/ |
6b6f0b6c | 8123 | F: include/scsi/osd_* |
42c55aa8 | 8124 | F: fs/exofs/ |
68274794 | 8125 | |
ef94b186 | 8126 | OVERLAY FILESYSTEM |
7c37fbda | 8127 | M: Miklos Szeredi <miklos@szeredi.hu> |
1d113735 MS |
8128 | L: linux-unionfs@vger.kernel.org |
8129 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git | |
7c37fbda | 8130 | S: Supported |
1d113735 | 8131 | F: fs/overlayfs/ |
7c37fbda NB |
8132 | F: Documentation/filesystems/overlayfs.txt |
8133 | ||
e2d1d6c0 | 8134 | P54 WIRELESS DRIVER |
084cb0fe | 8135 | M: Christian Lamparter <chunkeey@googlemail.com> |
e2d1d6c0 | 8136 | L: linux-wireless@vger.kernel.org |
084cb0fe | 8137 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 8138 | S: Maintained |
d3466830 | 8139 | F: drivers/net/wireless/intersil/p54/ |
e2d1d6c0 | 8140 | |
f5cd7872 | 8141 | PA SEMI ETHERNET DRIVER |
8b58be88 | 8142 | M: Olof Johansson <olof@lixom.net> |
f5cd7872 OJ |
8143 | L: netdev@vger.kernel.org |
8144 | S: Maintained | |
ded19add | 8145 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 8146 | |
beb58aa3 | 8147 | PA SEMI SMBUS DRIVER |
8b58be88 | 8148 | M: Olof Johansson <olof@lixom.net> |
846557d3 | 8149 | L: linux-i2c@vger.kernel.org |
beb58aa3 | 8150 | S: Maintained |
679655da | 8151 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 8152 | |
48fc267e SK |
8153 | PADATA PARALLEL EXECUTION MECHANISM |
8154 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
48fc267e SK |
8155 | L: linux-crypto@vger.kernel.org |
8156 | S: Maintained | |
8157 | F: kernel/padata.c | |
8158 | F: include/linux/padata.h | |
8159 | F: Documentation/padata.txt | |
8160 | ||
709ee531 | 8161 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 8162 | M: Harald Welte <laforge@gnumonks.org> |
d0944853 | 8163 | L: platform-driver-x86@vger.kernel.org |
709ee531 | 8164 | S: Maintained |
679655da | 8165 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 8166 | |
368dd5ac | 8167 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 JP |
8168 | M: David Howells <dhowells@redhat.com> |
8169 | M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com> | |
4fa97181 DH |
8170 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
8171 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
8172 | S: Maintained | |
679655da JP |
8173 | F: Documentation/mn10300/ |
8174 | F: arch/mn10300/ | |
4fa97181 | 8175 | |
64dfff03 SM |
8176 | PARALLEL PORT SUBSYSTEM |
8177 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
8178 | M: Sudip Mukherjee <sudip@vectorindia.org> | |
3dd1a329 | 8179 | L: linux-parport@lists.infradead.org (subscribers-only) |
64dfff03 | 8180 | S: Maintained |
679655da JP |
8181 | F: drivers/parport/ |
8182 | F: include/linux/parport*.h | |
8183 | F: drivers/char/ppdev.c | |
c117ab84 | 8184 | F: include/uapi/linux/ppdev.h |
64dfff03 | 8185 | F: Documentation/parport*.txt |
1da177e4 | 8186 | |
4cdf6bc2 | 8187 | PARAVIRT_OPS INTERFACE |
d633180c | 8188 | M: Jeremy Fitzhardinge <jeremy@goop.org> |
8b58be88 JP |
8189 | M: Chris Wright <chrisw@sous-sol.org> |
8190 | M: Alok Kataria <akataria@vmware.com> | |
8191 | M: Rusty Russell <rusty@rustcorp.com.au> | |
c996d8b9 | 8192 | L: virtualization@lists.linux-foundation.org |
4cdf6bc2 | 8193 | S: Supported |
a2e19991 | 8194 | F: Documentation/virtual/paravirt_ops.txt |
679655da JP |
8195 | F: arch/*/kernel/paravirt* |
8196 | F: arch/*/include/asm/paravirt.h | |
4cdf6bc2 | 8197 | |
e2d1d6c0 | 8198 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 8199 | M: Tim Waugh <tim@cyberelk.net> |
e2d1d6c0 | 8200 | L: linux-parport@lists.infradead.org (subscribers-only) |
e2d1d6c0 | 8201 | S: Maintained |
679655da JP |
8202 | F: Documentation/blockdev/paride.txt |
8203 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
8204 | |
8205 | PARISC ARCHITECTURE | |
b8828770 | 8206 | M: "James E.J. Bottomley" <jejb@parisc-linux.org> |
b38a03b8 | 8207 | M: Helge Deller <deller@gmx.de> |
e2d1d6c0 RD |
8208 | L: linux-parisc@vger.kernel.org |
8209 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 8210 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 8211 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 8212 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 8213 | S: Maintained |
679655da | 8214 | F: arch/parisc/ |
2b6bac9e | 8215 | F: Documentation/parisc/ |
679655da | 8216 | F: drivers/parisc/ |
2b6bac9e HD |
8217 | F: drivers/char/agp/parisc-agp.c |
8218 | F: drivers/input/serio/gscps2.c | |
8219 | F: drivers/parport/parport_gsc.* | |
8220 | F: drivers/tty/serial/8250/8250_gsc.c | |
8a61f013 | 8221 | F: drivers/video/fbdev/sti* |
2b6bac9e HD |
8222 | F: drivers/video/console/sti* |
8223 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 8224 | |
1662d32c | 8225 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 8226 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c JC |
8227 | L: lm-sensors@lm-sensors.org |
8228 | S: Maintained | |
679655da JP |
8229 | F: Documentation/hwmon/pc87360 |
8230 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
8231 | |
8232 | PC8736x GPIO DRIVER | |
8b58be88 | 8233 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 8234 | S: Maintained |
679655da | 8235 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 8236 | |
1ad107fd | 8237 | PC87427 HARDWARE MONITORING DRIVER |
d8130624 | 8238 | M: Jean Delvare <jdelvare@suse.com> |
1ad107fd JD |
8239 | L: lm-sensors@lm-sensors.org |
8240 | S: Maintained | |
8241 | F: Documentation/hwmon/pc87427 | |
8242 | F: drivers/hwmon/pc87427.c | |
8243 | ||
b26e0ed4 | 8244 | PCA9532 LED DRIVER |
8b58be88 | 8245 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 | 8246 | S: Maintained |
d5ca6918 JP |
8247 | F: drivers/leds/leds-pca9532.c |
8248 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 8249 | |
5ce914a8 | 8250 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 8251 | M: Guenter Roeck <linux@roeck-us.net> |
5ce914a8 GR |
8252 | L: linux-i2c@vger.kernel.org |
8253 | S: Maintained | |
b4f0b74e | 8254 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 8255 | |
3971dae5 | 8256 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 8257 | M: Khalid Aziz <khalid@gonehiking.org> |
3971dae5 KA |
8258 | S: Maintained |
8259 | F: drivers/firmware/pcdp.* | |
8260 | ||
065c6359 | 8261 | PCI ERROR RECOVERY |
6305902c | 8262 | M: Linas Vepstas <linasvepstas@gmail.com> |
c1f69db7 | 8263 | L: linux-pci@vger.kernel.org |
065c6359 | 8264 | S: Supported |
679655da | 8265 | F: Documentation/PCI/pci-error-recovery.txt |
065c6359 | 8266 | |
1da177e4 | 8267 | PCI SUBSYSTEM |
5ac3a6d2 | 8268 | M: Bjorn Helgaas <bhelgaas@google.com> |
2905474d | 8269 | L: linux-pci@vger.kernel.org |
99662dd1 | 8270 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 8271 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 8272 | S: Supported |
679655da JP |
8273 | F: Documentation/PCI/ |
8274 | F: drivers/pci/ | |
8275 | F: include/linux/pci* | |
6b49ee49 | 8276 | F: arch/x86/pci/ |
cad01f91 | 8277 | F: arch/x86/kernel/quirks.c |
1da177e4 | 8278 | |
eaa6111b LFT |
8279 | PCI DRIVER FOR ALTERA PCIE IP |
8280 | M: Ley Foon Tan <lftan@altera.com> | |
8281 | L: rfi@lists.rocketboards.org (moderated for non-subscribers) | |
8282 | L: linux-pci@vger.kernel.org | |
8283 | S: Supported | |
8284 | F: Documentation/devicetree/bindings/pci/altera-pcie.txt | |
8285 | F: drivers/pci/host/pcie-altera.c | |
8286 | ||
b7e78170 RH |
8287 | PCI DRIVER FOR ARM VERSATILE PLATFORM |
8288 | M: Rob Herring <robh@kernel.org> | |
8289 | L: linux-pci@vger.kernel.org | |
8290 | L: linux-arm-kernel@lists.infradead.org | |
8291 | S: Maintained | |
8292 | F: Documentation/devicetree/bindings/pci/versatile.txt | |
8293 | F: drivers/pci/host/pci-versatile.c | |
8294 | ||
5f6b6ccd TI |
8295 | PCI DRIVER FOR APPLIEDMICRO XGENE |
8296 | M: Tanmay Inamdar <tinamdar@apm.com> | |
8297 | L: linux-pci@vger.kernel.org | |
8298 | L: linux-arm-kernel@lists.infradead.org | |
8299 | S: Maintained | |
8300 | F: Documentation/devicetree/bindings/pci/xgene-pci.txt | |
8301 | F: drivers/pci/host/pci-xgene.c | |
8302 | ||
62d0ff83 ML |
8303 | PCI DRIVER FOR FREESCALE LAYERSCAPE |
8304 | M: Minghuan Lian <minghuan.Lian@freescale.com> | |
8305 | M: Mingkai Hu <mingkai.hu@freescale.com> | |
8306 | M: Roy Zang <tie-fei.zang@freescale.com> | |
8307 | L: linuxppc-dev@lists.ozlabs.org | |
8308 | L: linux-pci@vger.kernel.org | |
8309 | L: linux-arm-kernel@lists.infradead.org | |
8310 | S: Maintained | |
8311 | F: drivers/pci/host/*layerscape* | |
8312 | ||
f0b75693 | 8313 | PCI DRIVER FOR IMX6 |
f175aa2c | 8314 | M: Richard Zhu <Richard.Zhu@freescale.com> |
1ba55f55 | 8315 | M: Lucas Stach <l.stach@pengutronix.de> |
f0b75693 BH |
8316 | L: linux-pci@vger.kernel.org |
8317 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8318 | S: Maintained | |
8319 | F: drivers/pci/host/*imx6* | |
8320 | ||
0c4ffcfe MK |
8321 | PCI DRIVER FOR TI KEYSTONE |
8322 | M: Murali Karicheri <m-karicheri2@ti.com> | |
8323 | L: linux-pci@vger.kernel.org | |
8324 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8325 | S: Maintained | |
8326 | F: drivers/pci/host/*keystone* | |
8327 | ||
f0b75693 BH |
8328 | PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support) |
8329 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
8330 | M: Jason Cooper <jason@lakedaemon.net> | |
8331 | L: linux-pci@vger.kernel.org | |
8332 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8333 | S: Maintained | |
8334 | F: drivers/pci/host/*mvebu* | |
8335 | ||
0447cfd7 TR |
8336 | PCI DRIVER FOR NVIDIA TEGRA |
8337 | M: Thierry Reding <thierry.reding@gmail.com> | |
8338 | L: linux-tegra@vger.kernel.org | |
f0b75693 | 8339 | L: linux-pci@vger.kernel.org |
0447cfd7 TR |
8340 | S: Supported |
8341 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt | |
8342 | F: drivers/pci/host/pci-tegra.c | |
8343 | ||
47ff3de9 KVA |
8344 | PCI DRIVER FOR TI DRA7XX |
8345 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
8346 | L: linux-omap@vger.kernel.org | |
8347 | L: linux-pci@vger.kernel.org | |
8348 | S: Supported | |
8349 | F: Documentation/devicetree/bindings/pci/ti-pci.txt | |
8350 | F: drivers/pci/host/pci-dra7xx.c | |
8351 | ||
f0b75693 BH |
8352 | PCI DRIVER FOR RENESAS R-CAR |
8353 | M: Simon Horman <horms@verge.net.au> | |
8354 | L: linux-pci@vger.kernel.org | |
4a121096 | 8355 | L: linux-renesas-soc@vger.kernel.org |
f0b75693 BH |
8356 | S: Maintained |
8357 | F: drivers/pci/host/*rcar* | |
8358 | ||
4af82255 | 8359 | PCI DRIVER FOR SAMSUNG EXYNOS |
b7701755 | 8360 | M: Jingoo Han <jingoohan1@gmail.com> |
4af82255 | 8361 | L: linux-pci@vger.kernel.org |
f0b75693 BH |
8362 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
8363 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
4af82255 JH |
8364 | S: Maintained |
8365 | F: drivers/pci/host/pci-exynos.c | |
8366 | ||
f0b75693 | 8367 | PCI DRIVER FOR SYNOPSIS DESIGNWARE |
b7701755 | 8368 | M: Jingoo Han <jingoohan1@gmail.com> |
110baab1 | 8369 | M: Pratyush Anand <pratyush.anand@gmail.com> |
f0b75693 BH |
8370 | L: linux-pci@vger.kernel.org |
8371 | S: Maintained | |
8372 | F: drivers/pci/host/*designware* | |
8373 | ||
cf28855b WD |
8374 | PCI DRIVER FOR GENERIC OF HOSTS |
8375 | M: Will Deacon <will.deacon@arm.com> | |
8376 | L: linux-pci@vger.kernel.org | |
8377 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8378 | S: Maintained | |
8379 | F: Documentation/devicetree/bindings/pci/host-generic-pci.txt | |
8380 | F: drivers/pci/host/pci-host-generic.c | |
8381 | ||
185a383a KB |
8382 | PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD) |
8383 | M: Keith Busch <keith.busch@intel.com> | |
8384 | L: linux-pci@vger.kernel.org | |
8385 | S: Supported | |
8386 | F: arch/x86/pci/vmd.c | |
8387 | ||
51b66a6c | 8388 | PCIE DRIVER FOR ST SPEAR13XX |
110baab1 | 8389 | M: Pratyush Anand <pratyush.anand@gmail.com> |
51b66a6c | 8390 | L: linux-pci@vger.kernel.org |
110baab1 | 8391 | S: Maintained |
51b66a6c PA |
8392 | F: drivers/pci/host/*spear* |
8393 | ||
af1169b4 LFT |
8394 | PCI MSI DRIVER FOR ALTERA MSI IP |
8395 | M: Ley Foon Tan <lftan@altera.com> | |
8396 | L: rfi@lists.rocketboards.org (moderated for non-subscribers) | |
8397 | L: linux-pci@vger.kernel.org | |
8398 | S: Supported | |
8399 | F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt | |
8400 | F: drivers/pci/host/pcie-altera-msi.c | |
51b66a6c | 8401 | |
dcd19de3 DD |
8402 | PCI MSI DRIVER FOR APPLIEDMICRO XGENE |
8403 | M: Duc Dang <dhdang@apm.com> | |
8404 | L: linux-pci@vger.kernel.org | |
8405 | L: linux-arm-kernel@lists.infradead.org | |
8406 | S: Maintained | |
8407 | F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt | |
8408 | F: drivers/pci/host/pci-xgene-msi.c | |
8409 | ||
500a1d9a ZW |
8410 | PCIE DRIVER FOR HISILICON |
8411 | M: Zhou Wang <wangzhou1@hisilicon.com> | |
5930fe4e | 8412 | M: Gabriele Paoloni <gabriele.paoloni@huawei.com> |
500a1d9a ZW |
8413 | L: linux-pci@vger.kernel.org |
8414 | S: Maintained | |
8415 | F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt | |
8416 | F: drivers/pci/host/pcie-hisi.c | |
8417 | ||
82a82383 SV |
8418 | PCIE DRIVER FOR QUALCOMM MSM |
8419 | M: Stanimir Varbanov <svarbanov@mm-sol.com> | |
8420 | L: linux-pci@vger.kernel.org | |
8421 | L: linux-arm-msm@vger.kernel.org | |
8422 | S: Maintained | |
8423 | F: drivers/pci/host/*qcom* | |
8424 | ||
1da177e4 | 8425 | PCMCIA SUBSYSTEM |
4230dfc9 | 8426 | P: Linux PCMCIA Team |
f5df5881 | 8427 | L: linux-pcmcia@lists.infradead.org |
6650e0a5 | 8428 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
9f273c24 | 8429 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git |
4230dfc9 | 8430 | S: Maintained |
679655da JP |
8431 | F: Documentation/pcmcia/ |
8432 | F: drivers/pcmcia/ | |
8433 | F: include/pcmcia/ | |
1da177e4 LT |
8434 | |
8435 | PCNET32 NETWORK DRIVER | |
227fb925 | 8436 | M: Don Fry <pcnet32@frontier.com> |
979b6c13 | 8437 | L: netdev@vger.kernel.org |
1da177e4 | 8438 | S: Maintained |
b955f6ca | 8439 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 8440 | |
48fc267e SK |
8441 | PCRYPT PARALLEL CRYPTO ENGINE |
8442 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
8443 | L: linux-crypto@vger.kernel.org | |
8444 | S: Maintained | |
8445 | F: crypto/pcrypt.c | |
8446 | F: include/crypto/pcrypt.h | |
8447 | ||
e72df0b8 TH |
8448 | PER-CPU MEMORY ALLOCATOR |
8449 | M: Tejun Heo <tj@kernel.org> | |
8450 | M: Christoph Lameter <cl@linux-foundation.org> | |
e72df0b8 TH |
8451 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
8452 | S: Maintained | |
8453 | F: include/linux/percpu*.h | |
8454 | F: mm/percpu*.c | |
8455 | F: arch/*/include/asm/percpu.h | |
8456 | ||
ad4ecbcb | 8457 | PER-TASK DELAY ACCOUNTING |
185e595f | 8458 | M: Balbir Singh <bsingharora@gmail.com> |
ad4ecbcb | 8459 | S: Maintained |
679655da JP |
8460 | F: include/linux/delayacct.h |
8461 | F: kernel/delayacct.c | |
ad4ecbcb | 8462 | |
57c0c15b | 8463 | PERFORMANCE EVENTS SUBSYSTEM |
daecbd26 | 8464 | M: Peter Zijlstra <peterz@infradead.org> |
dd9b238c | 8465 | M: Ingo Molnar <mingo@redhat.com> |
f80c5393 | 8466 | M: Arnaldo Carvalho de Melo <acme@kernel.org> |
981c3a4f | 8467 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 8468 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 8469 | S: Supported |
d53e8365 | 8470 | F: kernel/events/* |
a003236c | 8471 | F: include/linux/perf_event.h |
c117ab84 | 8472 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
8473 | F: arch/*/kernel/perf_event*.c |
8474 | F: arch/*/kernel/*/perf_event*.c | |
8475 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 8476 | F: arch/*/include/asm/perf_event.h |
a003236c VL |
8477 | F: arch/*/kernel/perf_callchain.c |
8478 | F: tools/perf/ | |
6c0b3244 | 8479 | |
dd49d0f5 | 8480 | PERSONALITY HANDLING |
8b58be88 | 8481 | M: Christoph Hellwig <hch@infradead.org> |
dd49d0f5 JC |
8482 | L: linux-abi-devel@lists.sourceforge.net |
8483 | S: Maintained | |
679655da | 8484 | F: include/linux/personality.h |
c117ab84 | 8485 | F: include/uapi/linux/personality.h |
dd49d0f5 | 8486 | |
838e7a03 | 8487 | PHONET PROTOCOL |
2a06b40f | 8488 | M: Remi Denis-Courmont <courmisch@gmail.com> |
838e7a03 RDC |
8489 | S: Supported |
8490 | F: Documentation/networking/phonet.txt | |
8491 | F: include/linux/phonet.h | |
8492 | F: include/net/phonet/ | |
c117ab84 | 8493 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
8494 | F: net/phonet/ |
8495 | ||
1da177e4 | 8496 | PHRAM MTD DRIVER |
8b58be88 | 8497 | M: Joern Engel <joern@lazybastard.org> |
1da177e4 LT |
8498 | L: linux-mtd@lists.infradead.org |
8499 | S: Maintained | |
679655da | 8500 | F: drivers/mtd/devices/phram.c |
1da177e4 | 8501 | |
efdbb10e BP |
8502 | PICOLCD HID DRIVER |
8503 | M: Bruno Prémont <bonbons@linux-vserver.org> | |
8504 | L: linux-input@vger.kernel.org | |
8505 | S: Maintained | |
8506 | F: drivers/hid/hid-picolcd* | |
8507 | ||
a53bfa07 JI |
8508 | PICOXCELL SUPPORT |
8509 | M: Jamie Iles <jamie@jamieiles.com> | |
8510 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8511 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
8512 | S: Supported | |
b8733987 | 8513 | F: arch/arm/boot/dts/picoxcell* |
14430813 | 8514 | F: arch/arm/mach-picoxcell/ |
b8733987 | 8515 | F: drivers/crypto/picoxcell* |
a53bfa07 | 8516 | |
2744e8af LW |
8517 | PIN CONTROL SUBSYSTEM |
8518 | M: Linus Walleij <linus.walleij@linaro.org> | |
c11f042b | 8519 | L: linux-gpio@vger.kernel.org |
dbe752a3 | 8520 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git |
2744e8af | 8521 | S: Maintained |
07f29ba6 | 8522 | F: drivers/pinctrl/ |
8e406fe4 | 8523 | F: include/linux/pinctrl/ |
2744e8af | 8524 | |
2201bbb8 JCPV |
8525 | PIN CONTROLLER - ATMEL AT91 |
8526 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> | |
8527 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8528 | S: Maintained | |
c654b6bf | 8529 | F: drivers/pinctrl/pinctrl-at91.* |
2201bbb8 | 8530 | |
33d3690c LD |
8531 | PIN CONTROLLER - ATMEL AT91 PIO4 |
8532 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
8533 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8534 | L: linux-gpio@vger.kernel.org | |
8535 | S: Supported | |
8536 | F: drivers/pinctrl/pinctrl-at91-pio4.* | |
8537 | ||
cbd1b652 MW |
8538 | PIN CONTROLLER - INTEL |
8539 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
8540 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> | |
8541 | S: Maintained | |
8542 | F: drivers/pinctrl/intel/ | |
2201bbb8 | 8543 | |
9963b536 LP |
8544 | PIN CONTROLLER - RENESAS |
8545 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
1a4ca6dd | 8546 | M: Geert Uytterhoeven <geert+renesas@glider.be> |
4a121096 | 8547 | L: linux-renesas-soc@vger.kernel.org |
9963b536 LP |
8548 | S: Maintained |
8549 | F: drivers/pinctrl/sh-pfc/ | |
8550 | ||
b75e60d6 | 8551 | PIN CONTROLLER - SAMSUNG |
fea685e9 | 8552 | M: Tomasz Figa <tomasz.figa@gmail.com> |
b75e60d6 DA |
8553 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
8554 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
8555 | S: Maintained | |
9b5b33f6 | 8556 | F: drivers/pinctrl/samsung/ |
b75e60d6 | 8557 | |
13cbd906 TL |
8558 | PIN CONTROLLER - SINGLE |
8559 | M: Tony Lindgren <tony@atomide.com> | |
8560 | M: Haojian Zhuang <haojian.zhuang@linaro.org> | |
8561 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8562 | L: linux-omap@vger.kernel.org | |
8563 | S: Maintained | |
8564 | F: drivers/pinctrl/pinctrl-single.c | |
8565 | ||
deda8287 | 8566 | PIN CONTROLLER - ST SPEAR |
da89947b | 8567 | M: Viresh Kumar <vireshk@kernel.org> |
deda8287 VK |
8568 | L: spear-devel@list.st.com |
8569 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8570 | W: http://www.st.com/spear | |
8571 | S: Maintained | |
8e406fe4 | 8572 | F: drivers/pinctrl/spear/ |
deda8287 | 8573 | |
249a6771 | 8574 | PKTCDVD DRIVER |
e5f6450c | 8575 | M: Jiri Kosina <jikos@kernel.org> |
249a6771 | 8576 | S: Maintained |
679655da JP |
8577 | F: drivers/block/pktcdvd.c |
8578 | F: include/linux/pktcdvd.h | |
c117ab84 | 8579 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 8580 | |
b31d8273 G |
8581 | PKUNITY SOC DRIVERS |
8582 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
8583 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
8584 | S: Maintained | |
ceebf4d5 | 8585 | T: git git://github.com/gxt/linux.git |
b31d8273 | 8586 | F: drivers/input/serio/i8042-unicore32io.h |
d10e4a66 | 8587 | F: drivers/i2c/busses/i2c-puv3.c |
8a61f013 | 8588 | F: drivers/video/fbdev/fb-puv3.c |
2809e80b | 8589 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 8590 | |
9d2ecfb7 | 8591 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 8592 | M: Guenter Roeck <linux@roeck-us.net> |
9d2ecfb7 GR |
8593 | L: lm-sensors@lm-sensors.org |
8594 | W: http://www.lm-sensors.org/ | |
8595 | W: http://www.roeck-us.net/linux/drivers/ | |
8596 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
8597 | S: Maintained | |
8598 | F: Documentation/hwmon/pmbus | |
8599 | F: drivers/hwmon/pmbus/ | |
8600 | F: include/linux/i2c/pmbus.h | |
8601 | ||
89a36810 | 8602 | PMC SIERRA MaxRAID DRIVER |
89a36810 AR |
8603 | L: linux-scsi@vger.kernel.org |
8604 | W: http://www.pmc-sierra.com/ | |
3cdea4d7 | 8605 | S: Orphan |
89a36810 AR |
8606 | F: drivers/scsi/pmcraid.* |
8607 | ||
dbf9bfe6 | 8608 | PMC SIERRA PM8001 DRIVER |
d32477e2 | 8609 | M: Jack Wang <jinpu.wang@profitbricks.com> |
dbf9bfe6 | 8610 | M: lindar_liu@usish.com |
f5a7b525 | 8611 | L: pmchba@pmcs.com |
dbf9bfe6 | 8612 | L: linux-scsi@vger.kernel.org |
8613 | S: Supported | |
8614 | F: drivers/scsi/pm8001/ | |
8615 | ||
1da177e4 | 8616 | POSIX CLOCKS and TIMERS |
8b58be88 | 8617 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 8618 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 8619 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
5cee9645 | 8620 | S: Maintained |
679655da JP |
8621 | F: fs/timerfd.c |
8622 | F: include/linux/timer* | |
5cee9645 | 8623 | F: kernel/time/*timer* |
1da177e4 | 8624 | |
7b06a6d7 RW |
8625 | POWER MANAGEMENT CORE |
8626 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> | |
8627 | L: linux-pm@vger.kernel.org | |
8628 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
8629 | S: Supported | |
8630 | F: drivers/base/power/ | |
8631 | F: include/linux/pm.h | |
8632 | F: include/linux/pm_* | |
8633 | F: include/linux/powercap.h | |
8634 | F: drivers/powercap/ | |
8635 | ||
3be86148 | 8636 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
ad8464a2 | 8637 | M: Sebastian Reichel <sre@kernel.org> |
57318935 | 8638 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
8b58be88 | 8639 | M: David Woodhouse <dwmw2@infradead.org> |
ad8464a2 | 8640 | L: linux-pm@vger.kernel.org |
54e5881d | 8641 | T: git git://git.infradead.org/battery-2.6.git |
3be86148 | 8642 | S: Maintained |
679655da | 8643 | F: include/linux/power_supply.h |
8cd725a1 | 8644 | F: drivers/power/ |
26305022 | 8645 | X: drivers/power/avs/ |
3be86148 | 8646 | |
514f161a MR |
8647 | POWER STATE COORDINATION INTERFACE (PSCI) |
8648 | M: Mark Rutland <mark.rutland@arm.com> | |
8649 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
8650 | L: linux-arm-kernel@lists.infradead.org | |
8651 | S: Maintained | |
8652 | F: drivers/firmware/psci.c | |
8653 | F: include/linux/psci.h | |
8654 | F: include/uapi/linux/psci.h | |
8655 | ||
1da177e4 | 8656 | PNP SUPPORT |
9c3646d1 | 8657 | M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> |
1da177e4 | 8658 | S: Maintained |
679655da | 8659 | F: drivers/pnp/ |
1da177e4 LT |
8660 | |
8661 | PPP PROTOCOL DRIVERS AND COMPRESSORS | |
8b58be88 | 8662 | M: Paul Mackerras <paulus@samba.org> |
1da177e4 LT |
8663 | L: linux-ppp@vger.kernel.org |
8664 | S: Maintained | |
224cf5ad | 8665 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
8666 | |
8667 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 8668 | M: Mitchell Blank Jr <mitch@sfgoth.com> |
1da177e4 | 8669 | S: Maintained |
679655da | 8670 | F: net/atm/pppoatm.c |
c117ab84 | 8671 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
8672 | |
8673 | PPP OVER ETHERNET | |
8b58be88 | 8674 | M: Michal Ostrowski <mostrows@earthlink.net> |
1da177e4 | 8675 | S: Maintained |
224cf5ad JK |
8676 | F: drivers/net/ppp/pppoe.c |
8677 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 8678 | |
a6d2370b | 8679 | PPP OVER L2TP |
8b58be88 | 8680 | M: James Chapman <jchapman@katalix.com> |
a6d2370b | 8681 | S: Maintained |
90ca28d1 | 8682 | F: net/l2tp/l2tp_ppp.c |
679655da | 8683 | F: include/linux/if_pppol2tp.h |
c117ab84 | 8684 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 8685 | |
eae9d2ba | 8686 | PPS SUPPORT |
8b58be88 | 8687 | M: Rodolfo Giometti <giometti@enneenne.com> |
eae9d2ba RG |
8688 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
8689 | L: linuxpps@ml.enneenne.com (subscribers-only) | |
8690 | S: Maintained | |
cabaaf41 JP |
8691 | F: Documentation/pps/ |
8692 | F: drivers/pps/ | |
8693 | F: include/linux/pps*.h | |
eae9d2ba | 8694 | |
71a6d0af HW |
8695 | PPTP DRIVER |
8696 | M: Dmitry Kozlov <xeb@mail.ru> | |
8697 | L: netdev@vger.kernel.org | |
8698 | S: Maintained | |
224cf5ad | 8699 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
8700 | W: http://sourceforge.net/projects/accel-pptp |
8701 | ||
1da177e4 | 8702 | PREEMPTIBLE KERNEL |
8b58be88 | 8703 | M: Robert Love <rml@tech9.net> |
1da177e4 LT |
8704 | L: kpreempt-tech@lists.sourceforge.net |
8705 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
8706 | S: Supported | |
679655da JP |
8707 | F: Documentation/preempt-locking.txt |
8708 | F: include/linux/preempt.h | |
1da177e4 LT |
8709 | |
8710 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 8711 | M: "Luis R. Rodriguez" <mcgrof@gmail.com> |
724c6b35 | 8712 | L: linux-wireless@vger.kernel.org |
9ef80804 | 8713 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 8714 | S: Obsolete |
c12edfe2 | 8715 | F: drivers/net/wireless/intersil/prism54/ |
1da177e4 | 8716 | |
02c18891 | 8717 | PS3 NETWORK SUPPORT |
b809b9ca | 8718 | M: Geoff Levand <geoff@infradead.org> |
02c18891 | 8719 | L: netdev@vger.kernel.org |
a14ab6b6 | 8720 | L: linuxppc-dev@lists.ozlabs.org |
b809b9ca | 8721 | S: Maintained |
8df158ac | 8722 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 8723 | |
f58a9d17 | 8724 | PS3 PLATFORM SUPPORT |
b809b9ca | 8725 | M: Geoff Levand <geoff@infradead.org> |
a4724ed6 | 8726 | L: linuxppc-dev@lists.ozlabs.org |
b809b9ca | 8727 | S: Maintained |
679655da JP |
8728 | F: arch/powerpc/boot/ps3* |
8729 | F: arch/powerpc/include/asm/lv1call.h | |
8730 | F: arch/powerpc/include/asm/ps3*.h | |
8731 | F: arch/powerpc/platforms/ps3/ | |
8732 | F: drivers/*/ps3* | |
8733 | F: drivers/ps3/ | |
fec629b8 | 8734 | F: drivers/rtc/rtc-ps3.c |
679655da | 8735 | F: drivers/usb/host/*ps3.c |
fec629b8 | 8736 | F: sound/ppc/snd_ps3* |
f58a9d17 | 8737 | |
cffb4add | 8738 | PS3VRAM DRIVER |
8b58be88 | 8739 | M: Jim Paris <jim@jtan.com> |
3715a5d0 | 8740 | M: Geoff Levand <geoff@infradead.org> |
a14ab6b6 | 8741 | L: linuxppc-dev@lists.ozlabs.org |
cffb4add | 8742 | S: Maintained |
8a3977cb | 8743 | F: drivers/block/ps3vram.c |
cffb4add | 8744 | |
8defe599 | 8745 | PSTORE FILESYSTEM |
9d5e2a02 | 8746 | M: Anton Vorontsov <anton@enomsg.org> |
8defe599 AV |
8747 | M: Colin Cross <ccross@android.com> |
8748 | M: Kees Cook <keescook@chromium.org> | |
8749 | M: Tony Luck <tony.luck@intel.com> | |
8750 | S: Maintained | |
9f273c24 | 8751 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
8defe599 AV |
8752 | F: fs/pstore/ |
8753 | F: include/linux/pstore* | |
04851772 | 8754 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 AV |
8755 | F: drivers/acpi/apei/erst.c |
8756 | ||
7fbc415d RC |
8757 | PTP HARDWARE CLOCK SUPPORT |
8758 | M: Richard Cochran <richardcochran@gmail.com> | |
e7333e3c | 8759 | L: netdev@vger.kernel.org |
7fbc415d RC |
8760 | S: Maintained |
8761 | W: http://linuxptp.sourceforge.net/ | |
8762 | F: Documentation/ABI/testing/sysfs-ptp | |
8763 | F: Documentation/ptp/* | |
0ecb3cdd | 8764 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
8765 | F: drivers/net/phy/dp83640* |
8766 | F: drivers/ptp/* | |
8767 | F: include/linux/ptp_cl* | |
8768 | ||
cf94a4d1 | 8769 | PTRACE SUPPORT |
e846ee5f | 8770 | M: Roland McGrath <roland@hack.frob.com> |
8b58be88 | 8771 | M: Oleg Nesterov <oleg@redhat.com> |
cf94a4d1 CH |
8772 | S: Maintained |
8773 | F: include/asm-generic/syscall.h | |
8774 | F: include/linux/ptrace.h | |
8775 | F: include/linux/regset.h | |
8776 | F: include/linux/tracehook.h | |
c117ab84 | 8777 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
8778 | F: kernel/ptrace.c |
8779 | ||
8320204a | 8780 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 8781 | M: Mike Isely <isely@pobox.com> |
16e9495d | 8782 | L: pvrusb2@isely.net (subscribers-only) |
661263b5 | 8783 | L: linux-media@vger.kernel.org |
8320204a | 8784 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 8785 | T: git git://linuxtv.org/media_tree.git |
8320204a | 8786 | S: Maintained |
679655da | 8787 | F: Documentation/video4linux/README.pvrusb2 |
0c0d06ca | 8788 | F: drivers/media/usb/pvrusb2/ |
8320204a | 8789 | |
39532e6c HG |
8790 | PWC WEBCAM DRIVER |
8791 | M: Hans de Goede <hdegoede@redhat.com> | |
8792 | L: linux-media@vger.kernel.org | |
8793 | T: git git://linuxtv.org/media_tree.git | |
8794 | S: Maintained | |
8795 | F: drivers/media/usb/pwc/* | |
8796 | ||
93c090b3 KD |
8797 | PWM FAN DRIVER |
8798 | M: Kamil Debski <k.debski@samsung.com> | |
8799 | L: lm-sensors@lm-sensors.org | |
8800 | S: Supported | |
8801 | F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt | |
8802 | F: Documentation/hwmon/pwm-fan | |
8803 | F: drivers/hwmon/pwm-fan.c | |
8804 | ||
200efedd | 8805 | PWM SUBSYSTEM |
aa3495f7 TR |
8806 | M: Thierry Reding <thierry.reding@gmail.com> |
8807 | L: linux-pwm@vger.kernel.org | |
0c2498f1 | 8808 | S: Maintained |
006e854f | 8809 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git |
200efedd TR |
8810 | F: Documentation/pwm.txt |
8811 | F: Documentation/devicetree/bindings/pwm/ | |
8812 | F: include/linux/pwm.h | |
0c2498f1 | 8813 | F: drivers/pwm/ |
a140b98d TR |
8814 | F: drivers/video/backlight/pwm_bl.c |
8815 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 8816 | |
30ec261e | 8817 | PXA2xx/PXA3xx SUPPORT |
8da5e302 | 8818 | M: Daniel Mack <daniel@zonque.org> |
a323f664 | 8819 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
8da5e302 | 8820 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 8821 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 | 8822 | T: git git://github.com/hzhuang1/linux.git |
8da5e302 | 8823 | T: git git://github.com/rjarzmik/linux.git |
1da177e4 | 8824 | S: Maintained |
e68d7c14 | 8825 | F: arch/arm/boot/dts/pxa* |
679655da | 8826 | F: arch/arm/mach-pxa/ |
820439f1 | 8827 | F: drivers/dma/pxa* |
679655da | 8828 | F: drivers/pcmcia/pxa2xx* |
1403ead9 | 8829 | F: drivers/pinctrl/pxa/ |
9df92e6c | 8830 | F: drivers/spi/spi-pxa2xx* |
faf2e1db | 8831 | F: drivers/usb/gadget/udc/pxa2* |
679655da | 8832 | F: include/sound/pxa2xx-lib.h |
bec4c99e | 8833 | F: sound/arm/pxa* |
14430813 | 8834 | F: sound/soc/pxa/ |
1da177e4 | 8835 | |
f3154a46 RJ |
8836 | PXA GPIO DRIVER |
8837 | M: Robert Jarzmik <robert.jarzmik@free.fr> | |
8838 | L: linux-gpio@vger.kernel.org | |
8839 | S: Maintained | |
8840 | F: drivers/gpio/gpio-pxa.c | |
8841 | ||
ec64d3bf EG |
8842 | PXA3xx NAND FLASH DRIVER |
8843 | M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> | |
8844 | L: linux-mtd@lists.infradead.org | |
8845 | S: Maintained | |
9a67f099 | 8846 | F: drivers/mtd/nand/pxa3xx_nand.c |
ec64d3bf | 8847 | |
3f640c61 | 8848 | MMP SUPPORT |
8b58be88 | 8849 | M: Eric Miao <eric.y.miao@gmail.com> |
a323f664 | 8850 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
e8e6cb32 | 8851 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 HZ |
8852 | T: git git://github.com/hzhuang1/linux.git |
8853 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 8854 | S: Maintained |
e68d7c14 | 8855 | F: arch/arm/boot/dts/mmp* |
3f640c61 | 8856 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 8857 | |
272f133a PO |
8858 | PXA MMCI DRIVER |
8859 | S: Orphan | |
8860 | ||
57f63bc8 | 8861 | PXA RTC DRIVER |
8b58be88 | 8862 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
57f63bc8 RJ |
8863 | L: rtc-linux@googlegroups.com |
8864 | S: Maintained | |
8865 | ||
cea4001a | 8866 | QAT DRIVER |
49e7d9df JP |
8867 | M: Tadeusz Struk <tadeusz.struk@intel.com> |
8868 | L: qat-linux@intel.com | |
8869 | S: Supported | |
8870 | F: drivers/crypto/qat/ | |
cea4001a | 8871 | |
52a09a04 | 8872 | QIB DRIVER |
8473c603 | 8873 | M: Mike Marciniszyn <infinipath@intel.com> |
52a09a04 MM |
8874 | L: linux-rdma@vger.kernel.org |
8875 | S: Supported | |
8876 | F: drivers/infiniband/hw/qib/ | |
8877 | ||
5e9772b9 JS |
8878 | QLOGIC QLA1280 SCSI DRIVER |
8879 | M: Michael Reed <mdr@sgi.com> | |
8880 | L: linux-scsi@vger.kernel.org | |
8881 | S: Maintained | |
8882 | F: drivers/scsi/qla1280.[ch] | |
8883 | ||
1da177e4 | 8884 | QLOGIC QLA2XXX FC-SCSI DRIVER |
2c804eb0 | 8885 | M: qla2xxx-upstream@qlogic.com |
1da177e4 LT |
8886 | L: linux-scsi@vger.kernel.org |
8887 | S: Supported | |
679655da JP |
8888 | F: Documentation/scsi/LICENSE.qla2xxx |
8889 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 8890 | |
883c98fe | 8891 | QLOGIC QLA4XXX iSCSI DRIVER |
1018b8b9 | 8892 | M: QLogic-Storage-Upstream@qlogic.com |
883c98fe RA |
8893 | L: linux-scsi@vger.kernel.org |
8894 | S: Supported | |
bacfb81b | 8895 | F: Documentation/scsi/LICENSE.qla4xxx |
883c98fe RA |
8896 | F: drivers/scsi/qla4xxx/ |
8897 | ||
5a4faa87 | 8898 | QLOGIC QLA3XXX NETWORK DRIVER |
0a955c3a | 8899 | M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> |
8b58be88 | 8900 | M: Ron Mercer <ron.mercer@qlogic.com> |
5a4faa87 RM |
8901 | M: linux-driver@qlogic.com |
8902 | L: netdev@vger.kernel.org | |
8903 | S: Supported | |
679655da | 8904 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 8905 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 8906 | |
0ec00f03 | 8907 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
9f35a3cc | 8908 | M: Dept-GELinuxNICDev@qlogic.com |
0ec00f03 AKS |
8909 | L: netdev@vger.kernel.org |
8910 | S: Supported | |
aa43c215 | 8911 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 8912 | |
c4e84bde | 8913 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
c9b1a5b5 HP |
8914 | M: Harish Patil <harish.patil@qlogic.com> |
8915 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> | |
8916 | M: Dept-GELinuxNICDev@qlogic.com | |
4cbfbe25 | 8917 | M: linux-driver@qlogic.com |
c4e84bde RM |
8918 | L: netdev@vger.kernel.org |
8919 | S: Supported | |
aa43c215 | 8920 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 8921 | |
fe56b9e6 YM |
8922 | QLOGIC QL4xxx ETHERNET DRIVER |
8923 | M: Yuval Mintz <Yuval.Mintz@qlogic.com> | |
8924 | M: Ariel Elior <Ariel.Elior@qlogic.com> | |
8925 | M: everest-linux-l2@qlogic.com | |
8926 | L: netdev@vger.kernel.org | |
8927 | S: Supported | |
8928 | F: drivers/net/ethernet/qlogic/qed/ | |
8929 | F: include/linux/qed/ | |
8930 | F: drivers/net/ethernet/qlogic/qede/ | |
8931 | ||
1da177e4 | 8932 | QNX4 FILESYSTEM |
8b58be88 | 8933 | M: Anders Larsen <al@alarsen.net> |
1da177e4 LT |
8934 | W: http://www.alarsen.net/linux/qnx4fs/ |
8935 | S: Maintained | |
80811493 | 8936 | F: fs/qnx4/ |
c117ab84 CEB |
8937 | F: include/uapi/linux/qnx4_fs.h |
8938 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 8939 | |
91952bc0 AP |
8940 | QT1010 MEDIA DRIVER |
8941 | M: Antti Palosaari <crope@iki.fi> | |
8942 | L: linux-media@vger.kernel.org | |
a825eaec | 8943 | W: https://linuxtv.org |
91952bc0 AP |
8944 | W: http://palosaari.fi/linux/ |
8945 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8946 | T: git git://linuxtv.org/anttip/media_tree.git | |
8947 | S: Maintained | |
8948 | F: drivers/media/tuners/qt1010* | |
8949 | ||
966fb5ec SM |
8950 | QUALCOMM ATHEROS ATH9K WIRELESS DRIVER |
8951 | M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com> | |
8952 | L: linux-wireless@vger.kernel.org | |
8953 | L: ath9k-devel@lists.ath9k.org | |
8954 | W: http://wireless.kernel.org/en/users/Drivers/ath9k | |
8955 | S: Supported | |
8956 | F: drivers/net/wireless/ath/ath9k/ | |
8957 | ||
2ea0ffcb KV |
8958 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
8959 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
8960 | L: ath10k@lists.infradead.org | |
8961 | W: http://wireless.kernel.org/en/users/Drivers/ath10k | |
9f273c24 | 8962 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git |
2ea0ffcb KV |
8963 | S: Supported |
8964 | F: drivers/net/wireless/ath/ath10k/ | |
8965 | ||
4f4567cf RK |
8966 | QUALCOMM HEXAGON ARCHITECTURE |
8967 | M: Richard Kuo <rkuo@codeaurora.org> | |
8968 | L: linux-hexagon@vger.kernel.org | |
9f273c24 | 8969 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git |
4f4567cf RK |
8970 | S: Supported |
8971 | F: arch/hexagon/ | |
8972 | ||
8e84c258 EK |
8973 | QUALCOMM WCN36XX WIRELESS DRIVER |
8974 | M: Eugene Krasnikov <k.eugene.e@gmail.com> | |
8975 | L: wcn36xx@lists.infradead.org | |
8976 | W: http://wireless.kernel.org/en/users/Drivers/wcn36xx | |
8977 | T: git git://github.com/KrasnikovEugene/wcn36xx.git | |
8978 | S: Supported | |
8979 | F: drivers/net/wireless/ath/wcn36xx/ | |
8980 | ||
602adf40 | 8981 | RADOS BLOCK DEVICE (RBD) |
0f5417ce SW |
8982 | M: Ilya Dryomov <idryomov@gmail.com> |
8983 | M: Sage Weil <sage@redhat.com> | |
527a88b9 | 8984 | M: Alex Elder <elder@kernel.org> |
398ecff5 | 8985 | L: ceph-devel@vger.kernel.org |
09d90327 SW |
8986 | W: http://ceph.com/ |
8987 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
6e67b7ae | 8988 | T: git git://github.com/ceph/ceph-client.git |
602adf40 | 8989 | S: Supported |
398ecff5 | 8990 | F: Documentation/ABI/testing/sysfs-bus-rbd |
602adf40 YS |
8991 | F: drivers/block/rbd.c |
8992 | F: drivers/block/rbd_types.h | |
8993 | ||
1da177e4 | 8994 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 8995 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
c69f677c | 8996 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 8997 | S: Maintained |
8a61f013 | 8998 | F: drivers/video/fbdev/aty/radeon* |
c117ab84 | 8999 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 9000 | |
c6c9b34c HG |
9001 | RADIOSHARK RADIO DRIVER |
9002 | M: Hans de Goede <hdegoede@redhat.com> | |
9003 | L: linux-media@vger.kernel.org | |
9004 | T: git git://linuxtv.org/media_tree.git | |
9005 | S: Maintained | |
9006 | F: drivers/media/radio/radio-shark.c | |
9007 | ||
9008 | RADIOSHARK2 RADIO DRIVER | |
9009 | M: Hans de Goede <hdegoede@redhat.com> | |
9010 | L: linux-media@vger.kernel.org | |
9011 | T: git git://linuxtv.org/media_tree.git | |
9012 | S: Maintained | |
9013 | F: drivers/media/radio/radio-shark2.c | |
9014 | F: drivers/media/radio/radio-tea5777.c | |
9015 | ||
1da177e4 | 9016 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 9017 | M: Paul Mackerras <paulus@samba.org> |
c69f677c | 9018 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 9019 | S: Maintained |
8a61f013 | 9020 | F: drivers/video/fbdev/aty/aty128fb.c |
1da177e4 | 9021 | |
a0fd81a9 JC |
9022 | RALINK MIPS ARCHITECTURE |
9023 | M: John Crispin <blogic@openwrt.org> | |
9024 | L: linux-mips@linux-mips.org | |
9025 | S: Maintained | |
9026 | F: arch/mips/ralink | |
9027 | ||
e7839f25 | 9028 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 9029 | P: rt2x00 project |
b182427e | 9030 | M: Stanislaw Gruszka <sgruszka@redhat.com> |
f198f98e | 9031 | M: Helmut Schaa <helmut.schaa@googlemail.com> |
95ea3627 | 9032 | L: linux-wireless@vger.kernel.org |
95ea3627 | 9033 | S: Maintained |
33aca94d | 9034 | F: drivers/net/wireless/ralink/rt2x00/ |
95ea3627 | 9035 | |
9db5579b | 9036 | RAMDISK RAM BLOCK DEVICE DRIVER |
ea7618ec | 9037 | M: Jens Axboe <axboe@kernel.dk> |
9db5579b | 9038 | S: Maintained |
679655da JP |
9039 | F: Documentation/blockdev/ramdisk.txt |
9040 | F: drivers/block/brd.c | |
9db5579b | 9041 | |
9e95ce27 | 9042 | RANDOM NUMBER DRIVER |
0624bcaa | 9043 | M: "Theodore Ts'o" <tytso@mit.edu> |
9e95ce27 | 9044 | S: Maintained |
679655da | 9045 | F: drivers/char/random.c |
9e95ce27 | 9046 | |
394b701c | 9047 | RAPIDIO SUBSYSTEM |
8b58be88 | 9048 | M: Matt Porter <mporter@kernel.crashing.org> |
b8bc1dd3 | 9049 | M: Alexandre Bounine <alexandre.bounine@idt.com> |
394b701c | 9050 | S: Maintained |
679655da | 9051 | F: drivers/rapidio/ |
394b701c | 9052 | |
e2d1d6c0 | 9053 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 9054 | L: linux-wireless@vger.kernel.org |
f52a5490 | 9055 | S: Orphan |
679655da | 9056 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
9057 | |
9058 | RCUTORTURE MODULE | |
e0198b29 | 9059 | M: Josh Triplett <josh@joshtriplett.org> |
8b58be88 | 9060 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
981c3a4f | 9061 | L: linux-kernel@vger.kernel.org |
f9094d8e | 9062 | S: Supported |
08deed1e | 9063 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da | 9064 | F: Documentation/RCU/torture.txt |
34e2d560 | 9065 | F: kernel/rcu/rcutorture.c |
e2d1d6c0 | 9066 | |
c87b9c60 PM |
9067 | RCUTORTURE TEST FRAMEWORK |
9068 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
ab0afd6c | 9069 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
9070 | R: Steven Rostedt <rostedt@goodmis.org> |
9071 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
96a39bc4 | 9072 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
981c3a4f | 9073 | L: linux-kernel@vger.kernel.org |
c87b9c60 PM |
9074 | S: Supported |
9075 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
9076 | F: tools/testing/selftests/rcutorture | |
9077 | ||
c1f766b5 | 9078 | RDC R-321X SoC |
8b58be88 | 9079 | M: Florian Fainelli <florian@openwrt.org> |
c1f766b5 FF |
9080 | S: Maintained |
9081 | ||
db17f395 | 9082 | RDC R6040 FAST ETHERNET DRIVER |
8b58be88 | 9083 | M: Florian Fainelli <florian@openwrt.org> |
db17f395 FF |
9084 | L: netdev@vger.kernel.org |
9085 | S: Maintained | |
58565a35 | 9086 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 9087 | |
a09ed661 | 9088 | RDS - RELIABLE DATAGRAM SOCKETS |
8a85ac4b | 9089 | M: Chien Yen <chien.yen@oracle.com> |
fbb5a558 | 9090 | L: rds-devel@oss.oracle.com (moderated for non-subscribers) |
a09ed661 | 9091 | S: Supported |
679655da | 9092 | F: net/rds/ |
a09ed661 | 9093 | |
595182bc | 9094 | READ-COPY UPDATE (RCU) |
8b58be88 | 9095 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
ab0afd6c | 9096 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
9097 | R: Steven Rostedt <rostedt@goodmis.org> |
9098 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
96a39bc4 | 9099 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
981c3a4f | 9100 | L: linux-kernel@vger.kernel.org |
9fab9787 | 9101 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 9102 | S: Supported |
08deed1e | 9103 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 9104 | F: Documentation/RCU/ |
9fab9787 | 9105 | X: Documentation/RCU/torture.txt |
f9094d8e | 9106 | F: include/linux/rcu* |
4102adab PM |
9107 | X: include/linux/srcu.h |
9108 | F: kernel/rcu/ | |
34e2d560 | 9109 | X: kernel/torture.c |
595182bc | 9110 | |
0c86edc0 | 9111 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 9112 | M: Alessandro Zummo <a.zummo@towertech.it> |
7c6f84f8 | 9113 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
76465493 | 9114 | L: rtc-linux@googlegroups.com |
8a6e2535 | 9115 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
4733f397 | 9116 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git |
0c86edc0 | 9117 | S: Maintained |
679655da JP |
9118 | F: Documentation/rtc.txt |
9119 | F: drivers/rtc/ | |
9120 | F: include/linux/rtc.h | |
c117ab84 | 9121 | F: include/uapi/linux/rtc.h |
0c86edc0 | 9122 | |
0e400c53 MB |
9123 | REALTEK AUDIO CODECS |
9124 | M: Bard Liao <bardliao@realtek.com> | |
9125 | M: Oder Chiou <oder_chiou@realtek.com> | |
9126 | S: Maintained | |
9127 | F: sound/soc/codecs/rt* | |
9128 | F: include/sound/rt*.h | |
9129 | ||
1da177e4 | 9130 | REISERFS FILE SYSTEM |
76c4e5ea | 9131 | L: reiserfs-devel@vger.kernel.org |
1da177e4 | 9132 | S: Supported |
679655da | 9133 | F: fs/reiserfs/ |
1da177e4 | 9134 | |
b83a313b | 9135 | REGISTER MAP ABSTRACTION |
b02e48f2 | 9136 | M: Mark Brown <broonie@kernel.org> |
dd060bc9 | 9137 | L: linux-kernel@vger.kernel.org |
b83a313b MB |
9138 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
9139 | S: Supported | |
9140 | F: drivers/base/regmap/ | |
9141 | F: include/linux/regmap.h | |
9142 | ||
400e64df OBC |
9143 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
9144 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
6bb697b6 | 9145 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df OBC |
9146 | S: Maintained |
9147 | F: drivers/remoteproc/ | |
9148 | F: Documentation/remoteproc.txt | |
6fc26488 | 9149 | F: include/linux/remoteproc.h |
400e64df | 9150 | |
d8115db5 OBC |
9151 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
9152 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
9153 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git | |
9154 | S: Maintained | |
9155 | F: drivers/rpmsg/ | |
9156 | F: Documentation/rpmsg.txt | |
9157 | F: include/linux/rpmsg.h | |
9158 | ||
8e6569af SS |
9159 | RENESAS ETHERNET DRIVERS |
9160 | R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> | |
9161 | L: netdev@vger.kernel.org | |
4a121096 | 9162 | L: linux-renesas-soc@vger.kernel.org |
8e6569af SS |
9163 | F: drivers/net/ethernet/renesas/ |
9164 | F: include/linux/sh_eth.h | |
9165 | ||
3e46c397 YS |
9166 | RENESAS USB2 PHY DRIVER |
9167 | M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> | |
4a121096 | 9168 | L: linux-renesas-soc@vger.kernel.org |
3e46c397 YS |
9169 | S: Maintained |
9170 | F: drivers/phy/phy-rcar-gen3-usb2.c | |
9171 | ||
1b0fe6be PZ |
9172 | RESET CONTROLLER FRAMEWORK |
9173 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
9f273c24 | 9174 | T: git git://git.pengutronix.de/git/pza/linux |
1b0fe6be PZ |
9175 | S: Maintained |
9176 | F: drivers/reset/ | |
9177 | F: Documentation/devicetree/bindings/reset/ | |
b2f6dd7b | 9178 | F: include/dt-bindings/reset/ |
1b0fe6be PZ |
9179 | F: include/linux/reset.h |
9180 | F: include/linux/reset-controller.h | |
9181 | ||
e0897645 | 9182 | RFKILL |
8b58be88 | 9183 | M: Johannes Berg <johannes@sipsolutions.net> |
19d337df | 9184 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
9185 | W: http://wireless.kernel.org/ |
9186 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
9187 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 9188 | S: Maintained |
505c9247 | 9189 | F: Documentation/rfkill.txt |
80811493 | 9190 | F: net/rfkill/ |
e0897645 | 9191 | |
933685ca TG |
9192 | RHASHTABLE |
9193 | M: Thomas Graf <tgraf@suug.ch> | |
9194 | L: netdev@vger.kernel.org | |
9195 | S: Maintained | |
9196 | F: lib/rhashtable.c | |
9197 | F: include/linux/rhashtable.h | |
9198 | ||
67e054e9 ML |
9199 | RICOH SMARTMEDIA/XD DRIVER |
9200 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
9201 | S: Maintained | |
21c26f50 JP |
9202 | F: drivers/mtd/nand/r852.c |
9203 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 9204 | |
92634125 ML |
9205 | RICOH R5C592 MEMORYSTICK DRIVER |
9206 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
9207 | S: Maintained | |
9208 | F: drivers/memstick/host/r592.* | |
9209 | ||
27f1d2f9 SA |
9210 | ROCCAT DRIVERS |
9211 | M: Stefan Achatz <erazor_de@users.sourceforge.net> | |
9212 | W: http://sourceforge.net/projects/roccat/ | |
9213 | S: Maintained | |
9214 | F: drivers/hid/hid-roccat* | |
9215 | F: include/linux/hid-roccat* | |
9216 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* | |
9217 | ||
4b8ac966 JP |
9218 | ROCKER DRIVER |
9219 | M: Jiri Pirko <jiri@resnulli.us> | |
9220 | M: Scott Feldman <sfeldma@gmail.com> | |
9221 | L: netdev@vger.kernel.org | |
9222 | S: Supported | |
9223 | F: drivers/net/ethernet/rocker/ | |
9224 | ||
1da177e4 LT |
9225 | ROCKETPORT DRIVER |
9226 | P: Comtrol Corp. | |
1da177e4 LT |
9227 | W: http://www.comtrol.com |
9228 | S: Maintained | |
679655da | 9229 | F: Documentation/serial/rocket.txt |
c897401b | 9230 | F: drivers/tty/rocket* |
1da177e4 | 9231 | |
7645c2f4 KC |
9232 | ROCKETPORT EXPRESS/INFINITY DRIVER |
9233 | M: Kevin Cernekee <cernekee@gmail.com> | |
9234 | L: linux-serial@vger.kernel.org | |
9235 | S: Odd Fixes | |
9236 | F: drivers/tty/serial/rp2.* | |
9237 | ||
1da177e4 | 9238 | ROSE NETWORK LAYER |
8b58be88 | 9239 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 9240 | L: linux-hams@vger.kernel.org |
d34cb28a | 9241 | W: http://www.linux-ax25.org/ |
1da177e4 | 9242 | S: Maintained |
679655da | 9243 | F: include/net/rose.h |
c117ab84 | 9244 | F: include/uapi/linux/rose.h |
679655da | 9245 | F: net/rose/ |
1da177e4 | 9246 | |
91952bc0 AP |
9247 | RTL2830 MEDIA DRIVER |
9248 | M: Antti Palosaari <crope@iki.fi> | |
9249 | L: linux-media@vger.kernel.org | |
a825eaec | 9250 | W: https://linuxtv.org |
91952bc0 AP |
9251 | W: http://palosaari.fi/linux/ |
9252 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9253 | T: git git://linuxtv.org/anttip/media_tree.git | |
9254 | S: Maintained | |
9255 | F: drivers/media/dvb-frontends/rtl2830* | |
9256 | ||
27a0aacf AP |
9257 | RTL2832 MEDIA DRIVER |
9258 | M: Antti Palosaari <crope@iki.fi> | |
9259 | L: linux-media@vger.kernel.org | |
a825eaec | 9260 | W: https://linuxtv.org |
27a0aacf AP |
9261 | W: http://palosaari.fi/linux/ |
9262 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9263 | T: git git://linuxtv.org/anttip/media_tree.git | |
9264 | S: Maintained | |
9265 | F: drivers/media/dvb-frontends/rtl2832* | |
9266 | ||
ba6e6f6e AP |
9267 | RTL2832_SDR MEDIA DRIVER |
9268 | M: Antti Palosaari <crope@iki.fi> | |
9269 | L: linux-media@vger.kernel.org | |
a825eaec | 9270 | W: https://linuxtv.org |
ba6e6f6e AP |
9271 | W: http://palosaari.fi/linux/ |
9272 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9273 | T: git git://linuxtv.org/anttip/media_tree.git | |
9274 | S: Maintained | |
b4bb1c28 | 9275 | F: drivers/media/dvb-frontends/rtl2832_sdr* |
ba6e6f6e | 9276 | |
59840488 | 9277 | RTL8180 WIRELESS DRIVER |
605bebe2 | 9278 | L: linux-wireless@vger.kernel.org |
491b26b4 | 9279 | W: http://wireless.kernel.org/ |
54e5881d | 9280 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7be6ff65 | 9281 | S: Orphan |
62141726 | 9282 | F: drivers/net/wireless/realtek/rtl818x/rtl8180/ |
605bebe2 | 9283 | |
59840488 | 9284 | RTL8187 WIRELESS DRIVER |
9f0939bf | 9285 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
8b58be88 JP |
9286 | M: Hin-Tak Leung <htl10@users.sourceforge.net> |
9287 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
7d2c86b5 | 9288 | L: linux-wireless@vger.kernel.org |
491b26b4 | 9289 | W: http://wireless.kernel.org/ |
54e5881d | 9290 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 9291 | S: Maintained |
62141726 | 9292 | F: drivers/net/wireless/realtek/rtl818x/rtl8187/ |
59840488 | 9293 | |
3cf0c8ad LF |
9294 | RTL8192CE WIRELESS DRIVER |
9295 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
9296 | M: Chaoming Li <chaoming_li@realsil.com.cn> | |
9297 | L: linux-wireless@vger.kernel.org | |
491b26b4 | 9298 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
9299 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
9300 | S: Maintained | |
62141726 KV |
9301 | F: drivers/net/wireless/realtek/rtlwifi/ |
9302 | F: drivers/net/wireless/realtek/rtlwifi/rtl8192ce/ | |
59840488 | 9303 | |
26f1fad2 JS |
9304 | RTL8XXXU WIRELESS DRIVER (rtl8xxxu) |
9305 | M: Jes Sorensen <Jes.Sorensen@redhat.com> | |
9306 | L: linux-wireless@vger.kernel.org | |
9307 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211 | |
9308 | S: Maintained | |
9309 | F: drivers/net/wireless/realtek/rtl8xxxu/ | |
9310 | ||
9eb8ef74 | 9311 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 9312 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 9313 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 9314 | S: Maintained |
8a61f013 | 9315 | F: drivers/video/fbdev/savage/ |
9eb8ef74 | 9316 | |
1da177e4 | 9317 | S390 |
8b58be88 JP |
9318 | M: Martin Schwidefsky <schwidefsky@de.ibm.com> |
9319 | M: Heiko Carstens <heiko.carstens@de.ibm.com> | |
d58140cc | 9320 | L: linux-s390@vger.kernel.org |
5238da45 | 9321 | W: http://www.ibm.com/developerworks/linux/linux390/ |
9f273c24 | 9322 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git |
5238da45 | 9323 | S: Supported |
679655da | 9324 | F: arch/s390/ |
a968cd3e | 9325 | F: drivers/s390/ |
3bfe6858 JN |
9326 | F: Documentation/s390/ |
9327 | F: Documentation/DocBook/s390* | |
5238da45 | 9328 | |
322986ca SO |
9329 | S390 COMMON I/O LAYER |
9330 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
9331 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
9332 | L: linux-s390@vger.kernel.org | |
9333 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
9334 | S: Supported | |
9335 | F: drivers/s390/cio/ | |
9336 | ||
9337 | S390 DASD DRIVER | |
9338 | M: Stefan Weinhuber <wein@de.ibm.com> | |
9339 | M: Stefan Haberland <stefan.haberland@de.ibm.com> | |
9340 | L: linux-s390@vger.kernel.org | |
9341 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
9342 | S: Supported | |
9343 | F: drivers/s390/block/dasd* | |
9344 | F: block/partitions/ibm.c | |
9345 | ||
5238da45 | 9346 | S390 NETWORK DRIVERS |
f0c59aff | 9347 | M: Ursula Braun <ubraun@linux.vnet.ibm.com> |
d58140cc | 9348 | L: linux-s390@vger.kernel.org |
5238da45 HC |
9349 | W: http://www.ibm.com/developerworks/linux/linux390/ |
9350 | S: Supported | |
679655da | 9351 | F: drivers/s390/net/ |
5238da45 | 9352 | |
322986ca SO |
9353 | S390 PCI SUBSYSTEM |
9354 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
9355 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> | |
9356 | L: linux-s390@vger.kernel.org | |
9357 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
9358 | S: Supported | |
9359 | F: arch/s390/pci/ | |
9360 | F: drivers/pci/hotplug/s390_pci_hpc.c | |
9361 | ||
feed9b62 | 9362 | S390 ZCRYPT DRIVER |
5c8d0983 | 9363 | M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com> |
feed9b62 | 9364 | L: linux-s390@vger.kernel.org |
a968cd3e | 9365 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 9366 | S: Supported |
d5ca6918 | 9367 | F: drivers/s390/crypto/ |
feed9b62 | 9368 | |
5238da45 | 9369 | S390 ZFCP DRIVER |
d38e19d0 | 9370 | M: Steffen Maier <maier@linux.vnet.ibm.com> |
d58140cc | 9371 | L: linux-s390@vger.kernel.org |
5238da45 | 9372 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 9373 | S: Supported |
679655da | 9374 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 9375 | |
dd96df2c | 9376 | S390 IUCV NETWORK LAYER |
f0c59aff | 9377 | M: Ursula Braun <ubraun@linux.vnet.ibm.com> |
dd96df2c UB |
9378 | L: linux-s390@vger.kernel.org |
9379 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
9380 | S: Supported | |
679655da JP |
9381 | F: drivers/s390/net/*iucv* |
9382 | F: include/net/iucv/ | |
9383 | F: net/iucv/ | |
dd96df2c | 9384 | |
8128f23c GS |
9385 | S390 IOMMU (PCI) |
9386 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> | |
9387 | L: linux-s390@vger.kernel.org | |
9388 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
9389 | S: Supported | |
9390 | F: drivers/iommu/s390-iommu.c | |
9391 | ||
4dde7f75 | 9392 | S3C24XX SD/MMC Driver |
8b58be88 | 9393 | M: Ben Dooks <ben-linux@fluff.org> |
efc03ecb | 9394 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4dde7f75 | 9395 | S: Supported |
679655da | 9396 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 9397 | |
1f15a229 HV |
9398 | SAA6588 RDS RECEIVER DRIVER |
9399 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9400 | L: linux-media@vger.kernel.org | |
9401 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 9402 | W: https://linuxtv.org |
1f15a229 HV |
9403 | S: Odd Fixes |
9404 | F: drivers/media/i2c/saa6588* | |
9405 | ||
98ed12e6 | 9406 | SAA7134 VIDEO4LINUX DRIVER |
009a5410 | 9407 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
98ed12e6 | 9408 | L: linux-media@vger.kernel.org |
a825eaec | 9409 | W: https://linuxtv.org |
98ed12e6 MCC |
9410 | T: git git://linuxtv.org/media_tree.git |
9411 | S: Odd fixes | |
e42bf501 | 9412 | F: Documentation/video4linux/*.saa7134 |
98ed12e6 MCC |
9413 | F: drivers/media/pci/saa7134/ |
9414 | ||
1da177e4 | 9415 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 9416 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 9417 | L: linux-media@vger.kernel.org |
275ffde4 | 9418 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 9419 | S: Maintained |
90d72ac6 MCC |
9420 | F: drivers/media/common/saa7146/ |
9421 | F: drivers/media/pci/saa7146/ | |
9422 | F: include/media/saa7146* | |
1da177e4 | 9423 | |
92304a40 | 9424 | SAMSUNG LAPTOP DRIVER |
5909c654 | 9425 | M: Corentin Chary <corentin.chary@gmail.com> |
92304a40 CC |
9426 | L: platform-driver-x86@vger.kernel.org |
9427 | S: Maintained | |
9428 | F: drivers/platform/x86/samsung-laptop.c | |
9429 | ||
4a109cc0 | 9430 | SAMSUNG AUDIO (ASoC) DRIVERS |
250b6851 | 9431 | M: Sangbeom Kim <sbkim73@samsung.com> |
4a109cc0 MB |
9432 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
9433 | S: Supported | |
14430813 | 9434 | F: sound/soc/samsung/ |
4a109cc0 | 9435 | |
0d89a28b | 9436 | SAMSUNG FRAMEBUFFER DRIVER |
b7701755 | 9437 | M: Jingoo Han <jingoohan1@gmail.com> |
0d89a28b JH |
9438 | L: linux-fbdev@vger.kernel.org |
9439 | S: Maintained | |
8a61f013 | 9440 | F: drivers/video/fbdev/s3c-fb.c |
0d89a28b | 9441 | |
b40f0632 | 9442 | SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS |
f69d3a17 | 9443 | M: Sangbeom Kim <sbkim73@samsung.com> |
b40f0632 | 9444 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> |
f69d3a17 | 9445 | L: linux-kernel@vger.kernel.org |
b40f0632 | 9446 | L: linux-samsung-soc@vger.kernel.org |
f69d3a17 SK |
9447 | S: Supported |
9448 | F: drivers/mfd/sec*.c | |
9449 | F: drivers/regulator/s2m*.c | |
9450 | F: drivers/regulator/s5m*.c | |
b40f0632 KK |
9451 | F: drivers/clk/clk-s2mps11.c |
9452 | F: drivers/rtc/rtc-s5m.c | |
f69d3a17 | 9453 | F: include/linux/mfd/samsung/ |
a13c7c51 KK |
9454 | F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt |
9455 | F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt | |
27383ca9 | 9456 | F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt |
a13c7c51 | 9457 | F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt |
f69d3a17 | 9458 | |
038f5c4b SN |
9459 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
9460 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
9461 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> | |
9462 | L: linux-media@vger.kernel.org | |
9463 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
9464 | S: Supported | |
9465 | F: drivers/media/platform/exynos4-is/ | |
038f5c4b | 9466 | |
6fd86ab2 SN |
9467 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
9468 | M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com> | |
9469 | L: linux-media@vger.kernel.org | |
9470 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
9471 | S: Maintained | |
9472 | F: drivers/media/platform/s3c-camif/ | |
d647f0b7 | 9473 | F: include/media/drv-intf/s3c_camif.h |
6fd86ab2 | 9474 | |
b84ef24e AH |
9475 | SAMSUNG S5C73M3 CAMERA DRIVER |
9476 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
9477 | M: Andrzej Hajda <a.hajda@samsung.com> | |
9478 | L: linux-media@vger.kernel.org | |
9479 | S: Supported | |
9480 | F: drivers/media/i2c/s5c73m3/* | |
9481 | ||
7d459937 AH |
9482 | SAMSUNG S5K5BAF CAMERA DRIVER |
9483 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
9484 | M: Andrzej Hajda <a.hajda@samsung.com> | |
9485 | L: linux-media@vger.kernel.org | |
9486 | S: Supported | |
9487 | F: drivers/media/i2c/s5k5baf.c | |
9488 | ||
c04c674f RB |
9489 | SAMSUNG S3FWRN5 NFC DRIVER |
9490 | M: Robert Baldyga <r.baldyga@samsung.com> | |
9491 | L: linux-nfc@lists.01.org (moderated for non-subscribers) | |
9492 | S: Supported | |
9493 | F: drivers/nfc/s3fwrn5 | |
9494 | ||
310e39c9 | 9495 | SAMSUNG SOC CLOCK DRIVERS |
fea685e9 TF |
9496 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
9497 | M: Tomasz Figa <tomasz.figa@gmail.com> | |
310e39c9 TF |
9498 | S: Supported |
9499 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
9500 | F: drivers/clk/samsung/ | |
9501 | ||
66890ed6 BA |
9502 | SAMSUNG SXGBE DRIVERS |
9503 | M: Byungho An <bh74.an@samsung.com> | |
9504 | M: Girish K S <ks.giri@samsung.com> | |
66890ed6 BA |
9505 | M: Vipul Pandya <vipul.pandya@samsung.com> |
9506 | S: Supported | |
9507 | L: netdev@vger.kernel.org | |
9508 | F: drivers/net/ethernet/samsung/sxgbe/ | |
9509 | ||
93c537af LM |
9510 | SAMSUNG THERMAL DRIVER |
9511 | M: Lukasz Majewski <l.majewski@samsung.com> | |
9512 | L: linux-pm@vger.kernel.org | |
9513 | L: linux-samsung-soc@vger.kernel.org | |
9514 | S: Supported | |
9f273c24 | 9515 | T: git https://github.com/lmajewski/linux-samsung-thermal.git |
93c537af LM |
9516 | F: drivers/thermal/samsung/ |
9517 | ||
e296cd32 KD |
9518 | SAMSUNG USB2 PHY DRIVER |
9519 | M: Kamil Debski <k.debski@samsung.com> | |
9520 | L: linux-kernel@vger.kernel.org | |
9521 | S: Supported | |
9522 | F: Documentation/devicetree/bindings/phy/samsung-phy.txt | |
9523 | F: Documentation/phy/samsung-usb2.txt | |
9524 | F: drivers/phy/phy-exynos4210-usb2.c | |
9525 | F: drivers/phy/phy-exynos4x12-usb2.c | |
9526 | F: drivers/phy/phy-exynos5250-usb2.c | |
9527 | F: drivers/phy/phy-s5pv210-usb2.c | |
9528 | F: drivers/phy/phy-samsung-usb2.c | |
9529 | F: drivers/phy/phy-samsung-usb2.h | |
9530 | ||
ca749e2a | 9531 | SERIAL DRIVERS |
5e30bbb7 | 9532 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
ca749e2a | 9533 | L: linux-serial@vger.kernel.org |
5e30bbb7 | 9534 | S: Maintained |
14430813 | 9535 | F: drivers/tty/serial/ |
ca749e2a | 9536 | |
aecb7b64 | 9537 | SYNOPSYS DESIGNWARE DMAC DRIVER |
da89947b | 9538 | M: Viresh Kumar <vireshk@kernel.org> |
337ae47c | 9539 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
aecb7b64 | 9540 | S: Maintained |
1fb200d6 | 9541 | F: include/linux/dma/dw.h |
3d598f47 | 9542 | F: include/linux/platform_data/dma-dw.h |
61a76496 | 9543 | F: drivers/dma/dw/ |
aecb7b64 | 9544 | |
058999cc LP |
9545 | SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver |
9546 | M: Lars Persson <lars.persson@axis.com> | |
9547 | L: netdev@vger.kernel.org | |
9548 | S: Supported | |
9549 | F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt | |
9550 | F: drivers/net/ethernet/synopsys/dwc_eth_qos.c | |
9551 | ||
fc531d98 WS |
9552 | SYNOPSYS DESIGNWARE I2C DRIVER |
9553 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> | |
9554 | M: Jarkko Nikula <jarkko.nikula@linux.intel.com> | |
9555 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
9556 | L: linux-i2c@vger.kernel.org | |
9557 | S: Maintained | |
9558 | F: drivers/i2c/busses/i2c-designware-* | |
9559 | F: include/linux/platform_data/i2c-designware.h | |
9560 | ||
f9e37137 | 9561 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
f9e37137 SJ |
9562 | M: Jaehoon Chung <jh80.chung@samsung.com> |
9563 | L: linux-mmc@vger.kernel.org | |
9564 | S: Maintained | |
9565 | F: include/linux/mmc/dw_mmc.h | |
9566 | F: drivers/mmc/host/dw_mmc* | |
9567 | ||
a961e698 AS |
9568 | SYSTEM TRACE MODULE CLASS |
9569 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> | |
9570 | S: Maintained | |
9571 | F: Documentation/trace/stm.txt | |
9572 | F: drivers/hwtracing/stm/ | |
9573 | F: include/linux/stm.h | |
9574 | F: include/uapi/linux/stm.h | |
9575 | ||
1db121d6 AN |
9576 | THUNDERBOLT DRIVER |
9577 | M: Andreas Noever <andreas.noever@gmail.com> | |
9578 | S: Maintained | |
9579 | F: drivers/thunderbolt/ | |
9580 | ||
e35a49b1 SR |
9581 | TI BQ27XXX POWER SUPPLY DRIVER |
9582 | R: Andrew F. Davis <afd@ti.com> | |
9583 | F: include/linux/power/bq27xxx_battery.h | |
9584 | F: drivers/power/bq27xxx_battery.c | |
9585 | F: drivers/power/bq27xxx_battery_i2c.c | |
9586 | ||
34db37c6 | 9587 | TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER |
50363737 | 9588 | M: John Stultz <john.stultz@linaro.org> |
88606e80 | 9589 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 9590 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 9591 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
9592 | S: Supported |
9593 | F: include/linux/clocksource.h | |
9594 | F: include/linux/time.h | |
9595 | F: include/linux/timex.h | |
c117ab84 CEB |
9596 | F: include/uapi/linux/time.h |
9597 | F: include/uapi/linux/timex.h | |
88606e80 TG |
9598 | F: kernel/time/clocksource.c |
9599 | F: kernel/time/time*.c | |
34db37c6 | 9600 | F: kernel/time/alarmtimer.c |
88606e80 | 9601 | F: kernel/time/ntp.c |
7fe5f1c1 | 9602 | F: tools/testing/selftests/timers/ |
88606e80 | 9603 | |
1da177e4 | 9604 | SC1200 WDT DRIVER |
b300645a | 9605 | M: Zwane Mwaikambo <zwanem@gmail.com> |
1da177e4 | 9606 | S: Maintained |
679655da | 9607 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
9608 | |
9609 | SCHEDULER | |
dd9b238c | 9610 | M: Ingo Molnar <mingo@redhat.com> |
8b58be88 | 9611 | M: Peter Zijlstra <peterz@infradead.org> |
981c3a4f | 9612 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 9613 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 9614 | S: Maintained |
95c0d71d | 9615 | F: kernel/sched/ |
679655da | 9616 | F: include/linux/sched.h |
c117ab84 | 9617 | F: include/uapi/linux/sched.h |
c2eb505b | 9618 | F: include/linux/wait.h |
1da177e4 | 9619 | |
6bcf6737 | 9620 | SCORE ARCHITECTURE |
ed38665e | 9621 | M: Chen Liqin <liqin.linux@gmail.com> |
a2681a75 | 9622 | M: Lennox Wu <lennox.wu@gmail.com> |
ed38665e | 9623 | W: http://www.sunplus.com |
6bcf6737 | 9624 | S: Supported |
a2681a75 | 9625 | F: arch/score/ |
6bcf6737 | 9626 | |
80f390ea SH |
9627 | SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers |
9628 | M: Sudeep Holla <sudeep.holla@arm.com> | |
9629 | L: linux-arm-kernel@lists.infradead.org | |
9630 | S: Maintained | |
9631 | F: Documentation/devicetree/bindings/arm/arm,scpi.txt | |
cd52c2a4 | 9632 | F: drivers/clk/clk-scpi.c |
8def3103 | 9633 | F: drivers/cpufreq/scpi-cpufreq.c |
8cb7cf56 SH |
9634 | F: drivers/firmware/arm_scpi.c |
9635 | F: include/linux/scpi_protocol.h | |
80f390ea | 9636 | |
1da177e4 | 9637 | SCSI CDROM DRIVER |
8b58be88 | 9638 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
9639 | L: linux-scsi@vger.kernel.org |
9640 | W: http://www.kernel.dk | |
9641 | S: Maintained | |
679655da | 9642 | F: drivers/scsi/sr* |
1da177e4 | 9643 | |
fb50a83d | 9644 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
3453bddb | 9645 | M: Bart Van Assche <bart.vanassche@sandisk.com> |
fb50a83d RD |
9646 | L: linux-rdma@vger.kernel.org |
9647 | S: Supported | |
9648 | W: http://www.openfabrics.org | |
9649 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
9650 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
9651 | F: drivers/infiniband/ulp/srp/ | |
9652 | F: include/scsi/srp.h | |
9653 | ||
1da177e4 | 9654 | SCSI SG DRIVER |
8b58be88 | 9655 | M: Doug Gilbert <dgilbert@interlog.com> |
1da177e4 | 9656 | L: linux-scsi@vger.kernel.org |
59ab3c93 | 9657 | W: http://sg.danny.cz/sg |
1da177e4 | 9658 | S: Maintained |
59ab3c93 | 9659 | F: Documentation/scsi/scsi-generic.txt |
679655da JP |
9660 | F: drivers/scsi/sg.c |
9661 | F: include/scsi/sg.h | |
1da177e4 LT |
9662 | |
9663 | SCSI SUBSYSTEM | |
0351b8f8 | 9664 | M: "James E.J. Bottomley" <JBottomley@odin.com> |
0351b8f8 | 9665 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git |
f4ab421b MP |
9666 | M: "Martin K. Petersen" <martin.petersen@oracle.com> |
9667 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git | |
9668 | L: linux-scsi@vger.kernel.org | |
1da177e4 | 9669 | S: Maintained |
679655da JP |
9670 | F: drivers/scsi/ |
9671 | F: include/scsi/ | |
1da177e4 LT |
9672 | |
9673 | SCSI TAPE DRIVER | |
8b58be88 | 9674 | M: Kai Mäkisara <Kai.Makisara@kolumbus.fi> |
1da177e4 LT |
9675 | L: linux-scsi@vger.kernel.org |
9676 | S: Maintained | |
679655da | 9677 | F: Documentation/scsi/st.txt |
f7269cfc JD |
9678 | F: drivers/scsi/st.* |
9679 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
9680 | |
9681 | SCTP PROTOCOL | |
8b6efb75 | 9682 | M: Vlad Yasevich <vyasevich@gmail.com> |
02c38d0a | 9683 | M: Neil Horman <nhorman@tuxdriver.com> |
1a418796 | 9684 | L: linux-sctp@vger.kernel.org |
5f85813c | 9685 | W: http://lksctp.sourceforge.net |
8b6efb75 | 9686 | S: Maintained |
679655da JP |
9687 | F: Documentation/networking/sctp.txt |
9688 | F: include/linux/sctp.h | |
4d58c025 | 9689 | F: include/uapi/linux/sctp.h |
679655da JP |
9690 | F: include/net/sctp/ |
9691 | F: net/sctp/ | |
1da177e4 LT |
9692 | |
9693 | SCx200 CPU SUPPORT | |
8b58be88 | 9694 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 9695 | S: Odd Fixes |
679655da | 9696 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 9697 | F: arch/x86/platform/scx200/ |
679655da JP |
9698 | F: drivers/watchdog/scx200_wdt.c |
9699 | F: drivers/i2c/busses/scx200* | |
9700 | F: drivers/mtd/maps/scx200_docflash.c | |
9701 | F: include/linux/scx200.h | |
1662d32c JC |
9702 | |
9703 | SCx200 GPIO DRIVER | |
8b58be88 | 9704 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 9705 | S: Maintained |
679655da JP |
9706 | F: drivers/char/scx200_gpio.c |
9707 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
9708 | |
9709 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 9710 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 9711 | S: Maintained |
679655da | 9712 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 9713 | |
6a36913a | 9714 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 9715 | M: Sascha Sommer <saschasommer@freenet.de> |
6a36913a SS |
9716 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
9717 | S: Maintained | |
679655da | 9718 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 9719 | |
e7839f25 | 9720 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
7a241d6e | 9721 | L: linux-mmc@vger.kernel.org |
a1cb1d11 | 9722 | S: Orphan |
7a241d6e | 9723 | F: drivers/mmc/host/sdhci.* |
d4a45787 | 9724 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 9725 | |
c04f9d61 KC |
9726 | SECURE COMPUTING |
9727 | M: Kees Cook <keescook@chromium.org> | |
a0cfd75f KC |
9728 | R: Andy Lutomirski <luto@amacapital.net> |
9729 | R: Will Drewry <wad@chromium.org> | |
c04f9d61 KC |
9730 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp |
9731 | S: Supported | |
9732 | F: kernel/seccomp.c | |
9733 | F: include/uapi/linux/seccomp.h | |
9734 | F: include/linux/seccomp.h | |
c99ee51a | 9735 | F: tools/testing/selftests/seccomp/* |
c04f9d61 KC |
9736 | K: \bsecure_computing |
9737 | K: \bTIF_SECCOMP\b | |
9738 | ||
0d1bb41a | 9739 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 9740 | M: Ben Dooks <ben-linux@fluff.org> |
dc524882 | 9741 | M: Jaehoon Chung <jh80.chung@samsung.com> |
7a241d6e | 9742 | L: linux-mmc@vger.kernel.org |
0d1bb41a | 9743 | S: Maintained |
dc524882 | 9744 | F: drivers/mmc/host/sdhci-s3c* |
0d1bb41a | 9745 | |
c63b3cba | 9746 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
da89947b | 9747 | M: Viresh Kumar <vireshk@kernel.org> |
fbfa0748 | 9748 | L: spear-devel@list.st.com |
c63b3cba VK |
9749 | L: linux-mmc@vger.kernel.org |
9750 | S: Maintained | |
9751 | F: drivers/mmc/host/sdhci-spear.c | |
9752 | ||
8711cca2 | 9753 | SECURITY SUBSYSTEM |
9b45c0d2 | 9754 | M: James Morris <james.l.morris@oracle.com> |
9c3646d1 | 9755 | M: "Serge E. Hallyn" <serge@hallyn.com> |
8711cca2 | 9756 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
89879a7e | 9757 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 9758 | W: http://kernsec.org/ |
8711cca2 | 9759 | S: Supported |
7d2c86b5 | 9760 | F: security/ |
8711cca2 | 9761 | |
1da177e4 | 9762 | SECURITY CONTACT |
8b58be88 | 9763 | M: Security Officers <security@kernel.org> |
1da177e4 LT |
9764 | S: Supported |
9765 | ||
9766 | SELINUX SECURITY MODULE | |
e0238b4c | 9767 | M: Paul Moore <paul@paul-moore.com> |
8b58be88 | 9768 | M: Stephen Smalley <sds@tycho.nsa.gov> |
8b58be88 | 9769 | M: Eric Paris <eparis@parisplace.org> |
e0238b4c | 9770 | L: selinux@tycho.nsa.gov (moderated for non-subscribers) |
f058925b | 9771 | W: http://selinuxproject.org |
5a5f2acf | 9772 | T: git git://git.infradead.org/users/pcmoore/selinux |
1da177e4 | 9773 | S: Supported |
679655da JP |
9774 | F: include/linux/selinux* |
9775 | F: security/selinux/ | |
6bde95ce | 9776 | F: scripts/selinux/ |
1da177e4 | 9777 | |
c1c124e9 JJ |
9778 | APPARMOR SECURITY MODULE |
9779 | M: John Johansen <john.johansen@canonical.com> | |
9780 | L: apparmor@lists.ubuntu.com (subscribers-only, general discussion) | |
9781 | W: apparmor.wiki.kernel.org | |
9782 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
9783 | S: Supported | |
9784 | F: security/apparmor/ | |
9785 | ||
730daa16 KC |
9786 | YAMA SECURITY MODULE |
9787 | M: Kees Cook <keescook@chromium.org> | |
9788 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip | |
9789 | S: Supported | |
9790 | F: security/yama/ | |
9791 | ||
cef2cf07 | 9792 | SENSABLE PHANTOM |
8b58be88 | 9793 | M: Jiri Slaby <jirislaby@gmail.com> |
cef2cf07 | 9794 | S: Maintained |
679655da | 9795 | F: drivers/misc/phantom.c |
c117ab84 | 9796 | F: include/uapi/linux/phantom.h |
cef2cf07 | 9797 | |
6733b39a | 9798 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
4627de93 | 9799 | M: Jayamohan Kallickal <jayamohan.kallickal@avagotech.com> |
9d27e216 KM |
9800 | M: Ketan Mukadam <ketan.mukadam@avagotech.com> |
9801 | M: John Soni Jose <sony.john@avagotech.com> | |
3387f656 | 9802 | L: linux-scsi@vger.kernel.org |
4627de93 | 9803 | W: http://www.avagotech.com |
3387f656 JP |
9804 | S: Supported |
9805 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 9806 | |
6938f855 | 9807 | Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER |
aa7b4537 SP |
9808 | M: Sathya Perla <sathya.perla@broadcom.com> |
9809 | M: Ajit Khaparde <ajit.khaparde@broadcom.com> | |
9810 | M: Padmanabh Ratnakar <padmanabh.ratnakar@broadcom.com> | |
9811 | M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com> | |
9812 | M: Somnath Kotur <somnath.kotur@broadcom.com> | |
7d2c86b5 | 9813 | L: netdev@vger.kernel.org |
fea3af67 | 9814 | W: http://www.emulex.com |
7d2c86b5 | 9815 | S: Supported |
9aebddd1 | 9816 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 9817 | |
d2928a8c | 9818 | EMULEX ONECONNECT ROCE DRIVER |
2b8e7333 LN |
9819 | M: Selvin Xavier <selvin.xavier@avagotech.com> |
9820 | M: Devesh Sharma <devesh.sharma@avagotech.com> | |
9821 | M: Mitesh Ahuja <mitesh.ahuja@avagotech.com> | |
d2928a8c SX |
9822 | L: linux-rdma@vger.kernel.org |
9823 | W: http://www.emulex.com | |
9824 | S: Supported | |
9825 | F: drivers/infiniband/hw/ocrdma/ | |
9826 | ||
8ceee660 | 9827 | SFC NETWORK DRIVER |
c06f51ea | 9828 | M: Solarflare linux maintainers <linux-net-drivers@solarflare.com> |
8533ccf3 | 9829 | M: Shradha Shah <sshah@solarflare.com> |
c06f51ea | 9830 | L: netdev@vger.kernel.org |
8ceee660 | 9831 | S: Supported |
874aeea5 | 9832 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 9833 | |
e2d1d6c0 | 9834 | SGI GRU DRIVER |
cc883afc | 9835 | M: Dimitri Sivanich <sivanich@sgi.com> |
e2d1d6c0 | 9836 | S: Maintained |
679655da | 9837 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
9838 | |
9839 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 9840 | M: Pat Gefre <pfg@sgi.com> |
e2d1d6c0 RD |
9841 | L: linux-ia64@vger.kernel.org |
9842 | S: Supported | |
679655da | 9843 | F: Documentation/ia64/serial.txt |
df621252 | 9844 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 9845 | F: include/linux/ioc?.h |
e2d1d6c0 | 9846 | |
75312619 | 9847 | SGI XP/XPC/XPNET DRIVER |
e180383f RH |
9848 | M: Cliff Whickman <cpw@sgi.com> |
9849 | M: Robin Holt <robinmholt@gmail.com> | |
75312619 | 9850 | S: Maintained |
679655da | 9851 | F: drivers/misc/sgi-xp/ |
75312619 | 9852 | |
46eacf3b AP |
9853 | SI2157 MEDIA DRIVER |
9854 | M: Antti Palosaari <crope@iki.fi> | |
9855 | L: linux-media@vger.kernel.org | |
a825eaec | 9856 | W: https://linuxtv.org |
46eacf3b AP |
9857 | W: http://palosaari.fi/linux/ |
9858 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9859 | T: git git://linuxtv.org/anttip/media_tree.git | |
9860 | S: Maintained | |
9861 | F: drivers/media/tuners/si2157* | |
9862 | ||
75e2d5ba AP |
9863 | SI2168 MEDIA DRIVER |
9864 | M: Antti Palosaari <crope@iki.fi> | |
9865 | L: linux-media@vger.kernel.org | |
a825eaec | 9866 | W: https://linuxtv.org |
75e2d5ba AP |
9867 | W: http://palosaari.fi/linux/ |
9868 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9869 | T: git git://linuxtv.org/anttip/media_tree.git | |
9870 | S: Maintained | |
9871 | F: drivers/media/dvb-frontends/si2168* | |
9872 | ||
49cc629d HV |
9873 | SI470X FM RADIO RECEIVER I2C DRIVER |
9874 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9875 | L: linux-media@vger.kernel.org | |
9876 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 9877 | W: https://linuxtv.org |
49cc629d HV |
9878 | S: Odd Fixes |
9879 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
9880 | ||
9881 | SI470X FM RADIO RECEIVER USB DRIVER | |
9882 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9883 | L: linux-media@vger.kernel.org | |
9884 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 9885 | W: https://linuxtv.org |
49cc629d HV |
9886 | S: Maintained |
9887 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
9888 | F: drivers/media/radio/si470x/radio-si470x.h | |
9889 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
9890 | ||
c937ca03 EV |
9891 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
9892 | M: Eduardo Valentin <edubezval@gmail.com> | |
9893 | L: linux-media@vger.kernel.org | |
9894 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 9895 | W: https://linuxtv.org |
c937ca03 | 9896 | S: Odd Fixes |
99995ded | 9897 | F: drivers/media/radio/si4713/si4713.? |
c937ca03 EV |
9898 | |
9899 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
9900 | M: Eduardo Valentin <edubezval@gmail.com> | |
9901 | L: linux-media@vger.kernel.org | |
9902 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 9903 | W: https://linuxtv.org |
c937ca03 | 9904 | S: Odd Fixes |
99995ded DR |
9905 | F: drivers/media/radio/si4713/radio-platform-si4713.c |
9906 | ||
9907 | SI4713 FM RADIO TRANSMITTER USB DRIVER | |
9908 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9909 | L: linux-media@vger.kernel.org | |
9910 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 9911 | W: https://linuxtv.org |
99995ded DR |
9912 | S: Maintained |
9913 | F: drivers/media/radio/si4713/radio-usb-si4713.c | |
c937ca03 | 9914 | |
beb91d46 | 9915 | SIANO DVB DRIVER |
009a5410 | 9916 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
beb91d46 | 9917 | L: linux-media@vger.kernel.org |
a825eaec | 9918 | W: https://linuxtv.org |
beb91d46 MCC |
9919 | T: git git://linuxtv.org/media_tree.git |
9920 | S: Odd fixes | |
9921 | F: drivers/media/common/siano/ | |
beb91d46 | 9922 | F: drivers/media/usb/siano/ |
beb91d46 | 9923 | F: drivers/media/usb/siano/ |
14430813 | 9924 | F: drivers/media/mmc/siano/ |
beb91d46 | 9925 | |
6f15b602 HG |
9926 | SIMPLEFB FB DRIVER |
9927 | M: Hans de Goede <hdegoede@redhat.com> | |
9928 | L: linux-fbdev@vger.kernel.org | |
9929 | S: Maintained | |
2d799dde | 9930 | F: Documentation/devicetree/bindings/display/simple-framebuffer.txt |
6f15b602 HG |
9931 | F: drivers/video/fbdev/simplefb.c |
9932 | F: include/linux/platform_data/simplefb.h | |
9933 | ||
b618b69c | 9934 | SH_VEU V4L2 MEM2MEM DRIVER |
b618b69c | 9935 | L: linux-media@vger.kernel.org |
bb60fcb2 | 9936 | S: Orphan |
b618b69c | 9937 | F: drivers/media/platform/sh_veu.c |
b618b69c GL |
9938 | |
9939 | SH_VOU V4L2 OUTPUT DRIVER | |
b618b69c | 9940 | L: linux-media@vger.kernel.org |
bb60fcb2 | 9941 | S: Orphan |
b618b69c | 9942 | F: drivers/media/platform/sh_vou.c |
d647f0b7 | 9943 | F: include/media/drv-intf/sh_vou.h |
b618b69c | 9944 | |
6349d997 | 9945 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 9946 | M: Len Brown <lenb@kernel.org> |
6349d997 LB |
9947 | L: sfi-devel@simplefirmware.org |
9948 | W: http://simplefirmware.org/ | |
9949 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 9950 | S: Supported |
943fc810 | 9951 | F: arch/x86/platform/sfi/ |
6349d997 LB |
9952 | F: drivers/sfi/ |
9953 | F: include/linux/sfi*.h | |
e2d1d6c0 | 9954 | |
1da177e4 LT |
9955 | SIMTEC EB110ATX (Chalice CATS) |
9956 | P: Ben Dooks | |
b16957c6 BD |
9957 | P: Vincent Sanders <vince@simtec.co.uk> |
9958 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
9959 | W: http://www.simtec.co.uk/products/EB110ATX/ |
9960 | S: Supported | |
9961 | ||
9962 | SIMTEC EB2410ITX (BAST) | |
9963 | P: Ben Dooks | |
b16957c6 BD |
9964 | P: Vincent Sanders <vince@simtec.co.uk> |
9965 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
9966 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
9967 | S: Supported | |
15dba387 JP |
9968 | F: arch/arm/mach-s3c24xx/mach-bast.c |
9969 | F: arch/arm/mach-s3c24xx/bast-ide.c | |
9970 | F: arch/arm/mach-s3c24xx/bast-irq.c | |
1da177e4 | 9971 | |
4c5adde7 | 9972 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 | 9973 | M: Sekhar Nori <nsekhar@ti.com> |
c69d72ae | 9974 | M: Kevin Hilman <khilman@deeprootsystems.com> |
c9f46a85 | 9975 | T: git git://gitorious.org/linux-davinci/linux-davinci.git |
8a6e2535 | 9976 | Q: http://patchwork.kernel.org/project/linux-davinci/list/ |
4c5adde7 | 9977 | S: Supported |
14430813 | 9978 | F: arch/arm/mach-davinci/ |
046d0a37 | 9979 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 9980 | |
8d4b3f08 | 9981 | TI DAVINCI SERIES MEDIA DRIVER |
e43cdb56 | 9982 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
8d4b3f08 | 9983 | L: linux-media@vger.kernel.org |
a825eaec | 9984 | W: https://linuxtv.org |
8d4b3f08 LP |
9985 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
9986 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9ce5eca7 | 9987 | S: Maintained |
8d4b3f08 LP |
9988 | F: drivers/media/platform/davinci/ |
9989 | F: include/media/davinci/ | |
9990 | ||
417d2e50 | 9991 | TI AM437X VPFE DRIVER |
e43cdb56 | 9992 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
417d2e50 | 9993 | L: linux-media@vger.kernel.org |
a825eaec | 9994 | W: https://linuxtv.org |
417d2e50 BP |
9995 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
9996 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9997 | S: Maintained | |
9998 | F: drivers/media/platform/am437x/ | |
9999 | ||
c4c0283a | 10000 | OV2659 OMNIVISION SENSOR DRIVER |
e43cdb56 | 10001 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
c4c0283a | 10002 | L: linux-media@vger.kernel.org |
a825eaec | 10003 | W: https://linuxtv.org |
c4c0283a BP |
10004 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
10005 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
10006 | S: Maintained | |
10007 | F: drivers/media/i2c/ov2659.c | |
b5dcee22 | 10008 | F: include/media/i2c/ov2659.h |
c4c0283a | 10009 | |
3a6779f5 SM |
10010 | SILICON MOTION SM712 FRAME BUFFER DRIVER |
10011 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
10012 | M: Teddy Wang <teddy.wang@siliconmotion.com> | |
10013 | M: Sudip Mukherjee <sudip@vectorindia.org> | |
10014 | L: linux-fbdev@vger.kernel.org | |
10015 | S: Maintained | |
10016 | F: drivers/video/fbdev/sm712* | |
10017 | F: Documentation/fb/sm712fb.txt | |
10018 | ||
92aab3c0 | 10019 | SIS 190 ETHERNET DRIVER |
8b58be88 | 10020 | M: Francois Romieu <romieu@fr.zoreil.com> |
92aab3c0 FR |
10021 | L: netdev@vger.kernel.org |
10022 | S: Maintained | |
8c7de408 | 10023 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 10024 | |
1da177e4 | 10025 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 10026 | M: Daniele Venzano <venza@brownhat.org> |
1da177e4 | 10027 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 10028 | L: netdev@vger.kernel.org |
1da177e4 | 10029 | S: Maintained |
8c7de408 | 10030 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
10031 | |
10032 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 10033 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 | 10034 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 10035 | S: Maintained |
679655da | 10036 | F: Documentation/fb/sisfb.txt |
8a61f013 | 10037 | F: drivers/video/fbdev/sis/ |
679655da | 10038 | F: include/video/sisfb.h |
1da177e4 LT |
10039 | |
10040 | SIS USB2VGA DRIVER | |
8b58be88 | 10041 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 LT |
10042 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
10043 | S: Maintained | |
679655da | 10044 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 10045 | |
415ad26d | 10046 | SLAB ALLOCATOR |
16e943bf | 10047 | M: Christoph Lameter <cl@linux.com> |
2ed1c525 | 10048 | M: Pekka Enberg <penberg@kernel.org> |
16e943bf CL |
10049 | M: David Rientjes <rientjes@google.com> |
10050 | M: Joonsoo Kim <iamjoonsoo.kim@lge.com> | |
10051 | M: Andrew Morton <akpm@linux-foundation.org> | |
415ad26d CL |
10052 | L: linux-mm@kvack.org |
10053 | S: Maintained | |
679655da | 10054 | F: include/linux/sl?b*.h |
16e943bf | 10055 | F: mm/sl?b* |
415ad26d | 10056 | |
9fab9787 | 10057 | SLEEPABLE READ-COPY UPDATE (SRCU) |
96a39bc4 | 10058 | M: Lai Jiangshan <jiangshanlai@gmail.com> |
9fab9787 | 10059 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
ab0afd6c | 10060 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
10061 | R: Steven Rostedt <rostedt@goodmis.org> |
10062 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
981c3a4f | 10063 | L: linux-kernel@vger.kernel.org |
9fab9787 PM |
10064 | W: http://www.rdrop.com/users/paulmck/RCU/ |
10065 | S: Supported | |
10066 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
4102adab PM |
10067 | F: include/linux/srcu.h |
10068 | F: kernel/rcu/srcu.c | |
9fab9787 | 10069 | |
66372841 CS |
10070 | SMACK SECURITY MODULE |
10071 | M: Casey Schaufler <casey@schaufler-ca.com> | |
10072 | L: linux-security-module@vger.kernel.org | |
10073 | W: http://schaufler-ca.com | |
10074 | T: git git://git.gitorious.org/smack-next/kernel.git | |
10075 | S: Maintained | |
10076 | F: Documentation/security/Smack.txt | |
10077 | F: security/smack/ | |
10078 | ||
20651e0b | 10079 | DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
68ace3e1 KH |
10080 | M: Kevin Hilman <khilman@kernel.org> |
10081 | M: Nishanth Menon <nm@ti.com> | |
10082 | S: Maintained | |
20651e0b | 10083 | F: drivers/power/avs/ |
68ace3e1 KH |
10084 | F: include/linux/power/smartreflex.h |
10085 | L: linux-pm@vger.kernel.org | |
10086 | ||
1da177e4 | 10087 | SMC91x ETHERNET DRIVER |
2f82af08 | 10088 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 10089 | S: Odd Fixes |
ae150435 | 10090 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 10091 | |
e8e31622 SA |
10092 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
10093 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
10094 | L: linux-media@vger.kernel.org | |
10095 | S: Maintained | |
14430813 | 10096 | F: drivers/media/i2c/smiapp/ |
b5dcee22 | 10097 | F: include/media/i2c/smiapp.h |
e8e31622 SA |
10098 | F: drivers/media/i2c/smiapp-pll.c |
10099 | F: drivers/media/i2c/smiapp-pll.h | |
fd2bfdc8 | 10100 | F: include/uapi/linux/smiapp.h |
a2cec3c0 | 10101 | F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt |
e8e31622 | 10102 | |
920fa1ff GR |
10103 | SMM665 HARDWARE MONITOR DRIVER |
10104 | M: Guenter Roeck <linux@roeck-us.net> | |
10105 | L: lm-sensors@lm-sensors.org | |
10106 | S: Maintained | |
10107 | F: Documentation/hwmon/smm665 | |
10108 | F: drivers/hwmon/smm665.c | |
10109 | ||
9df7305b | 10110 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 10111 | M: Steve Glendinning <steve.glendinning@shawell.net> |
9df7305b | 10112 | L: lm-sensors@lm-sensors.org |
90b24cfb | 10113 | S: Maintained |
9df7305b SG |
10114 | F: Documentation/hwmon/emc2103 |
10115 | F: drivers/hwmon/emc2103.c | |
10116 | ||
a98d506c HG |
10117 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
10118 | M: Hans de Goede <hdegoede@redhat.com> | |
10119 | L: lm-sensors@lm-sensors.org | |
10120 | S: Supported | |
10121 | F: Documentation/hwmon/sch5627 | |
10122 | F: drivers/hwmon/sch5627.c | |
10123 | ||
6ea884db | 10124 | SMSC47B397 HARDWARE MONITOR DRIVER |
d8130624 | 10125 | M: Jean Delvare <jdelvare@suse.com> |
6ea884db MH |
10126 | L: lm-sensors@lm-sensors.org |
10127 | S: Maintained | |
679655da JP |
10128 | F: Documentation/hwmon/smsc47b397 |
10129 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 10130 | |
fd9abb3d | 10131 | SMSC911x ETHERNET DRIVER |
90b24cfb | 10132 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2cb37728 | 10133 | L: netdev@vger.kernel.org |
90b24cfb | 10134 | S: Maintained |
679655da | 10135 | F: include/linux/smsc911x.h |
ae150435 | 10136 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
10137 | |
10138 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 10139 | M: Steve Glendinning <steve.glendinning@shawell.net> |
fd9abb3d | 10140 | L: netdev@vger.kernel.org |
90b24cfb | 10141 | S: Maintained |
ae150435 | 10142 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 10143 | |
3c8a63e2 | 10144 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 10145 | M: Steve Glendinning <steve.glendinning@shawell.net> |
3c8a63e2 | 10146 | L: linux-fbdev@vger.kernel.org |
90b24cfb | 10147 | S: Maintained |
8a61f013 | 10148 | F: drivers/video/fbdev/smscufx.c |
3c8a63e2 | 10149 | |
668acf32 | 10150 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 10151 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
661263b5 | 10152 | L: linux-media@vger.kernel.org |
275ffde4 | 10153 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 10154 | S: Maintained |
90d72ac6 MCC |
10155 | F: include/media/soc* |
10156 | F: drivers/media/i2c/soc_camera/ | |
10157 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 10158 | |
e2d1d6c0 | 10159 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 10160 | M: Chris Boot <bootc@bootc.net> |
e2d1d6c0 | 10161 | S: Maintained |
679655da | 10162 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 10163 | |
e3994db1 | 10164 | SOFTLOGIC 6x10 MPEG CODEC |
9661975d AU |
10165 | M: Bluecherry Maintainers <maintainers@bluecherrydvr.com> |
10166 | M: Andrey Utkin <andrey.utkin@corp.bluecherry.net> | |
10167 | M: Andrey Utkin <andrey.krieger.utkin@gmail.com> | |
1f141f6b | 10168 | M: Ismael Luceno <ismael@iodev.co.uk> |
e3994db1 JP |
10169 | L: linux-media@vger.kernel.org |
10170 | S: Supported | |
10171 | F: drivers/media/pci/solo6x10/ | |
10172 | ||
1da177e4 | 10173 | SOFTWARE RAID (Multiple Disks) SUPPORT |
c2f662eb | 10174 | M: Shaohua Li <shli@kernel.org> |
1da177e4 | 10175 | L: linux-raid@vger.kernel.org |
9f273c24 | 10176 | T: git git://neil.brown.name/md |
524418bb | 10177 | S: Supported |
679655da JP |
10178 | F: drivers/md/ |
10179 | F: include/linux/raid/ | |
c117ab84 | 10180 | F: include/uapi/linux/raid/ |
1da177e4 | 10181 | |
1da177e4 | 10182 | SONIC NETWORK DRIVER |
8b58be88 | 10183 | M: Thomas Bogendoerfer <tsbogend@alpha.franken.de> |
979b6c13 | 10184 | L: netdev@vger.kernel.org |
1da177e4 | 10185 | S: Maintained |
d9fb9f38 | 10186 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 10187 | |
61e115a5 | 10188 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 10189 | M: Michael Buesch <m@bues.ch> |
e7828b28 | 10190 | L: linux-wireless@vger.kernel.org |
61e115a5 | 10191 | S: Maintained |
679655da JP |
10192 | F: drivers/ssb/ |
10193 | F: include/linux/ssb/ | |
61e115a5 | 10194 | |
1da177e4 | 10195 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 10196 | M: Mattia Dongili <malattia@linux.it> |
d0944853 | 10197 | L: platform-driver-x86@vger.kernel.org |
5b18167d | 10198 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 10199 | S: Maintained |
679655da JP |
10200 | F: Documentation/laptops/sony-laptop.txt |
10201 | F: drivers/char/sonypi.c | |
10202 | F: drivers/platform/x86/sony-laptop.c | |
10203 | F: include/linux/sony-laptop.h | |
1da177e4 | 10204 | |
baf8532a | 10205 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 10206 | M: Alex Dubov <oakad@yahoo.com> |
baf8532a AD |
10207 | W: http://tifmxx.berlios.de/ |
10208 | S: Maintained | |
679655da | 10209 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 10210 | |
0ab30494 ML |
10211 | SONY MEMORYSTICK STANDARD SUPPORT |
10212 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
10213 | S: Maintained | |
10214 | F: drivers/memstick/core/ms_block.* | |
10215 | ||
1da177e4 | 10216 | SOUND |
8b58be88 | 10217 | M: Jaroslav Kysela <perex@perex.cz> |
d8130624 | 10218 | M: Takashi Iwai <tiwai@suse.com> |
93711660 | 10219 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
3126a179 | 10220 | W: http://www.alsa-project.org/ |
dde7ad8d | 10221 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 10222 | T: git git://git.alsa-project.org/alsa-kernel.git |
ff4a8f32 | 10223 | Q: http://patchwork.kernel.org/project/alsa-devel/list/ |
1da177e4 | 10224 | S: Maintained |
3126a179 JP |
10225 | F: Documentation/sound/ |
10226 | F: include/sound/ | |
c117ab84 | 10227 | F: include/uapi/sound/ |
679655da | 10228 | F: sound/ |
1da177e4 | 10229 | |
33bbe149 MB |
10230 | SOUND - COMPRESSED AUDIO |
10231 | M: Vinod Koul <vinod.koul@intel.com> | |
10232 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
10233 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git | |
10234 | S: Supported | |
f672f31a | 10235 | F: Documentation/sound/alsa/compress_offload.txt |
33bbe149 | 10236 | F: include/sound/compress_driver.h |
f672f31a | 10237 | F: include/uapi/sound/compress_* |
33bbe149 MB |
10238 | F: sound/core/compress_offload.c |
10239 | F: sound/soc/soc-compress.c | |
10240 | ||
bd903bde | 10241 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 10242 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 10243 | M: Mark Brown <broonie@kernel.org> |
86f14df8 | 10244 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 10245 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
b0b8daf7 | 10246 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 10247 | S: Supported |
2820f615 | 10248 | F: Documentation/sound/alsa/soc/ |
679655da | 10249 | F: sound/soc/ |
e6e55122 | 10250 | F: include/sound/soc* |
eb1a6af3 | 10251 | |
d7f8761b MB |
10252 | SOUND - DMAENGINE HELPERS |
10253 | M: Lars-Peter Clausen <lars@metafoo.de> | |
10254 | S: Supported | |
10255 | F: include/sound/dmaengine_pcm.h | |
10256 | F: sound/core/pcm_dmaengine.c | |
10257 | F: sound/soc/soc-generic-dmaengine-pcm.c | |
10258 | ||
990a6a99 OS |
10259 | SP2 MEDIA DRIVER |
10260 | M: Olli Salonen <olli.salonen@iki.fi> | |
10261 | L: linux-media@vger.kernel.org | |
a825eaec | 10262 | W: https://linuxtv.org |
990a6a99 OS |
10263 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
10264 | S: Maintained | |
10265 | F: drivers/media/dvb-frontends/sp2* | |
10266 | ||
473321fc | 10267 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 10268 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 10269 | L: sparclinux@vger.kernel.org |
8a6e2535 | 10270 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
10271 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
10272 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 10273 | S: Maintained |
679655da | 10274 | F: arch/sparc/ |
7765b8bb | 10275 | F: drivers/sbus/ |
1da177e4 | 10276 | |
6404fcca DM |
10277 | SPARC SERIAL DRIVERS |
10278 | M: "David S. Miller" <davem@davemloft.net> | |
10279 | L: sparclinux@vger.kernel.org | |
08deed1e JP |
10280 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
10281 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 10282 | S: Maintained |
6816383a | 10283 | F: include/linux/sunserialcore.h |
df621252 | 10284 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
10285 | F: drivers/tty/serial/sunhv.c |
10286 | F: drivers/tty/serial/sunsab.c | |
10287 | F: drivers/tty/serial/sunsab.h | |
10288 | F: drivers/tty/serial/sunsu.c | |
10289 | F: drivers/tty/serial/sunzilog.c | |
10290 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 10291 | |
389325b4 CL |
10292 | SPARSE CHECKER |
10293 | M: "Christopher Li" <sparse@chrisli.org> | |
10294 | L: linux-sparse@vger.kernel.org | |
10295 | W: https://sparse.wiki.kernel.org/ | |
10296 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
10297 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
10298 | S: Maintained | |
10299 | F: include/linux/compiler.h | |
10300 | ||
fc0c195a | 10301 | SPEAR PLATFORM SUPPORT |
da89947b | 10302 | M: Viresh Kumar <vireshk@kernel.org> |
9cc23682 | 10303 | M: Shiraz Hashim <shiraz.linux.kernel@gmail.com> |
fbfa0748 VK |
10304 | L: spear-devel@list.st.com |
10305 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
fc0c195a VK |
10306 | W: http://www.st.com/spear |
10307 | S: Maintained | |
e68d7c14 | 10308 | F: arch/arm/boot/dts/spear* |
281e192f | 10309 | F: arch/arm/mach-spear/ |
fc0c195a VK |
10310 | |
10311 | SPEAR CLOCK FRAMEWORK SUPPORT | |
da89947b | 10312 | M: Viresh Kumar <vireshk@kernel.org> |
fbfa0748 VK |
10313 | L: spear-devel@list.st.com |
10314 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
fc0c195a VK |
10315 | W: http://www.st.com/spear |
10316 | S: Maintained | |
5df33a62 | 10317 | F: drivers/clk/spear/ |
fc0c195a | 10318 | |
e2d1d6c0 | 10319 | SPI SUBSYSTEM |
b02e48f2 | 10320 | M: Mark Brown <broonie@kernel.org> |
dfbe403c | 10321 | L: linux-spi@vger.kernel.org |
e7e4e13c | 10322 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 10323 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 10324 | S: Maintained |
679655da JP |
10325 | F: Documentation/spi/ |
10326 | F: drivers/spi/ | |
10327 | F: include/linux/spi/ | |
c117ab84 | 10328 | F: include/uapi/linux/spi/ |
e2d1d6c0 | 10329 | |
2752e401 | 10330 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 | 10331 | M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp> |
2752e401 JL |
10332 | L: netdev@vger.kernel.org |
10333 | S: Supported | |
679655da | 10334 | F: Documentation/networking/spider_net.txt |
8df158ac | 10335 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 10336 | |
e2d1d6c0 | 10337 | SPU FILE SYSTEM |
8b58be88 | 10338 | M: Jeremy Kerr <jk@ozlabs.org> |
a4724ed6 | 10339 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 RD |
10340 | W: http://www.ibm.com/developerworks/power/cell/ |
10341 | S: Supported | |
679655da JP |
10342 | F: Documentation/filesystems/spufs.txt |
10343 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 10344 | |
fc555841 | 10345 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 10346 | M: Phillip Lougher <phillip@squashfs.org.uk> |
fc555841 PL |
10347 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
10348 | W: http://squashfs.org.uk | |
9f273c24 | 10349 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git |
fc555841 | 10350 | S: Maintained |
679655da JP |
10351 | F: Documentation/filesystems/squashfs.txt |
10352 | F: fs/squashfs/ | |
fc555841 | 10353 | |
1da177e4 | 10354 | SRM (Alpha) environment access |
8b58be88 | 10355 | M: Jan-Benedict Glaw <jbglaw@lug-owl.de> |
1da177e4 | 10356 | S: Maintained |
679655da | 10357 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 10358 | |
26e9a397 | 10359 | STABLE BRANCH |
879a5a00 | 10360 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
bc7a2f3a | 10361 | L: stable@vger.kernel.org |
879a5a00 | 10362 | S: Supported |
7b175c46 | 10363 | F: Documentation/stable_kernel_rules.txt |
e2d1d6c0 | 10364 | |
26e9a397 | 10365 | STAGING SUBSYSTEM |
879a5a00 | 10366 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
630081fd | 10367 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 10368 | L: devel@driverdev.osuosl.org |
879a5a00 | 10369 | S: Supported |
679655da | 10370 | F: drivers/staging/ |
dbc6c2cc | 10371 | |
ebd3d010 JP |
10372 | STAGING - COMEDI |
10373 | M: Ian Abbott <abbotti@mev.co.uk> | |
81b884c9 | 10374 | M: H Hartley Sweeten <hsweeten@visionengravers.com> |
ebd3d010 JP |
10375 | S: Odd Fixes |
10376 | F: drivers/staging/comedi/ | |
10377 | ||
a0138163 JP |
10378 | STAGING - FLARION FT1000 DRIVERS |
10379 | M: Marek Belisko <marek.belisko@gmail.com> | |
10380 | S: Odd Fixes | |
10381 | F: drivers/staging/ft1000/ | |
10382 | ||
6c1bb424 | 10383 | STAGING - INDUSTRIAL IO |
030a13d7 | 10384 | M: Jonathan Cameron <jic23@kernel.org> |
a0138163 | 10385 | L: linux-iio@vger.kernel.org |
6c1bb424 JP |
10386 | S: Odd Fixes |
10387 | F: drivers/staging/iio/ | |
10388 | ||
a0138163 JP |
10389 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
10390 | M: Jarod Wilson <jarod@wilsonet.com> | |
10391 | W: http://www.lirc.org/ | |
10392 | S: Odd Fixes | |
b2b0186d | 10393 | F: drivers/staging/media/lirc/ |
a0138163 | 10394 | |
f5e5de1e OD |
10395 | STAGING - LUSTRE PARALLEL FILESYSTEM |
10396 | M: Oleg Drokin <oleg.drokin@intel.com> | |
10397 | M: Andreas Dilger <andreas.dilger@intel.com> | |
d98229f0 AD |
10398 | L: lustre-devel@lists.lustre.org (moderated for non-subscribers) |
10399 | W: http://wiki.lustre.org/ | |
f5e5de1e OD |
10400 | S: Maintained |
10401 | F: drivers/staging/lustre | |
10402 | ||
7c6b6c71 MD |
10403 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
10404 | M: Marc Dietrich <marvin24@gmx.de> | |
10405 | L: ac100@lists.launchpad.net (moderated for non-subscribers) | |
5d96bf4d | 10406 | L: linux-tegra@vger.kernel.org |
7c6b6c71 MD |
10407 | S: Maintained |
10408 | F: drivers/staging/nvec/ | |
10409 | ||
a0138163 | 10410 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
3140b458 JF |
10411 | M: Jens Frederich <jfrederich@gmail.com> |
10412 | M: Daniel Drake <dsd@laptop.org> | |
a0138163 JP |
10413 | M: Jon Nettleton <jon.nettleton@gmail.com> |
10414 | W: http://wiki.laptop.org/go/DCON | |
3140b458 | 10415 | S: Maintained |
a0138163 JP |
10416 | F: drivers/staging/olpc_dcon/ |
10417 | ||
10418 | STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER | |
29e7017b JP |
10419 | M: Willy Tarreau <willy@meta-x.org> |
10420 | S: Odd Fixes | |
10421 | F: drivers/staging/panel/ | |
10422 | ||
a0138163 JP |
10423 | STAGING - REALTEK RTL8712U DRIVERS |
10424 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
10425 | M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>. | |
10426 | S: Odd Fixes | |
10427 | F: drivers/staging/rtl8712/ | |
10428 | ||
7591ba8b JS |
10429 | STAGING - REALTEK RTL8723U WIRELESS DRIVER |
10430 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
10431 | M: Jes Sorensen <Jes.Sorensen@redhat.com> | |
10432 | L: linux-wireless@vger.kernel.org | |
10433 | S: Maintained | |
10434 | F: drivers/staging/rtl8723au/ | |
10435 | ||
980ac4d7 SM |
10436 | STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER |
10437 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
10438 | M: Teddy Wang <teddy.wang@siliconmotion.com> | |
10439 | M: Sudip Mukherjee <sudip@vectorindia.org> | |
10440 | L: linux-fbdev@vger.kernel.org | |
10441 | S: Maintained | |
10442 | F: drivers/staging/sm750fb/ | |
10443 | ||
510fa408 JP |
10444 | STAGING - SLICOSS |
10445 | M: Lior Dotan <liodot@gmail.com> | |
10446 | M: Christopher Harrer <charrer@alacritech.com> | |
10447 | S: Odd Fixes | |
10448 | F: drivers/staging/slicoss/ | |
10449 | ||
a0138163 JP |
10450 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER |
10451 | M: William Hubbs <w.d.hubbs@gmail.com> | |
10452 | M: Chris Brannon <chris@the-brannons.com> | |
d33bce31 | 10453 | M: Kirk Reiser <kirk@reisers.ca> |
a0138163 | 10454 | M: Samuel Thibault <samuel.thibault@ens-lyon.org> |
e6a152ef | 10455 | L: speakup@linux-speakup.org |
a0138163 JP |
10456 | W: http://www.linux-speakup.org/ |
10457 | S: Odd Fixes | |
10458 | F: drivers/staging/speakup/ | |
10459 | ||
b3e871ce JP |
10460 | STAGING - VIA VT665X DRIVERS |
10461 | M: Forest Bond <forest@alittletooquiet.net> | |
10462 | S: Odd Fixes | |
10463 | F: drivers/staging/vt665?/ | |
10464 | ||
a30baec1 JK |
10465 | STAGING - WILC1000 WIFI DRIVER |
10466 | M: Johnny Kim <johnny.kim@atmel.com> | |
0c9dbce8 | 10467 | M: Austin Shin <austin.shin@atmel.com> |
a30baec1 | 10468 | M: Chris Park <chris.park@atmel.com> |
06b54863 TC |
10469 | M: Tony Cho <tony.cho@atmel.com> |
10470 | M: Glen Lee <glen.lee@atmel.com> | |
10471 | M: Leo Kim <leo.kim@atmel.com> | |
a30baec1 JK |
10472 | L: linux-wireless@vger.kernel.org |
10473 | S: Supported | |
10474 | F: drivers/staging/wilc1000/ | |
10475 | ||
709bcb07 | 10476 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 10477 | M: Arnaud Patard <arnaud.patard@rtp-net.org> |
709bcb07 JP |
10478 | S: Odd Fixes |
10479 | F: drivers/staging/xgifb/ | |
10480 | ||
77241056 MM |
10481 | HFI1 DRIVER |
10482 | M: Mike Marciniszyn <infinipath@intel.com> | |
10483 | L: linux-rdma@vger.kernel.org | |
10484 | S: Supported | |
10485 | F: drivers/staging/rdma/hfi1 | |
10486 | ||
1da177e4 | 10487 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 10488 | M: Ion Badulescu <ionut@badula.org> |
b4f90189 | 10489 | S: Odd Fixes |
9bba23b0 | 10490 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 10491 | |
e2d1d6c0 | 10492 | SUN3/3X |
8b58be88 | 10493 | M: Sam Creasey <sammy@sammy.net> |
e2d1d6c0 RD |
10494 | W: http://sammy.net/sun3/ |
10495 | S: Maintained | |
679655da JP |
10496 | F: arch/m68k/kernel/*sun3* |
10497 | F: arch/m68k/sun3*/ | |
10498 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 10499 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 10500 | |
af6a5af8 HG |
10501 | SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER |
10502 | M: Hans de Goede <hdegoede@redhat.com> | |
10503 | L: linux-input@vger.kernel.org | |
10504 | S: Maintained | |
10505 | F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt | |
10506 | F: drivers/input/keyboard/sun4i-lradc-keys.c | |
10507 | ||
2bc9ff01 DK |
10508 | SUNDANCE NETWORK DRIVER |
10509 | M: Denis Kirjanov <kda@linux-powerpc.org> | |
10510 | L: netdev@vger.kernel.org | |
10511 | S: Maintained | |
10512 | F: drivers/net/ethernet/dlink/sundance.c | |
10513 | ||
2cbb12a4 | 10514 | SUPERH |
114bf37e RF |
10515 | M: Yoshinori Sato <ysato@users.sourceforge.jp> |
10516 | M: Rich Felker <dalias@libc.org> | |
2cbb12a4 | 10517 | L: linux-sh@vger.kernel.org |
8a6e2535 | 10518 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
114bf37e | 10519 | S: Maintained |
066069e1 | 10520 | F: Documentation/sh/ |
679655da | 10521 | F: arch/sh/ |
066069e1 | 10522 | F: drivers/sh/ |
1da177e4 | 10523 | |
4480f15b | 10524 | SUSPEND TO RAM |
7fb06082 | 10525 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
8b58be88 JP |
10526 | M: Len Brown <len.brown@intel.com> |
10527 | M: Pavel Machek <pavel@ucw.cz> | |
bf1c138e | 10528 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 10529 | S: Supported |
679655da JP |
10530 | F: Documentation/power/ |
10531 | F: arch/x86/kernel/acpi/ | |
10532 | F: drivers/base/power/ | |
10533 | F: kernel/power/ | |
10534 | F: include/linux/suspend.h | |
10535 | F: include/linux/freezer.h | |
10536 | F: include/linux/pm.h | |
1da177e4 LT |
10537 | |
10538 | SVGA HANDLING | |
8b58be88 | 10539 | M: Martin Mares <mj@ucw.cz> |
1da177e4 LT |
10540 | L: linux-video@atrey.karlin.mff.cuni.cz |
10541 | S: Maintained | |
679655da JP |
10542 | F: Documentation/svga.txt |
10543 | F: arch/x86/boot/video* | |
1da177e4 | 10544 | |
6e28b761 KRW |
10545 | SWIOTLB SUBSYSTEM |
10546 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
10547 | L: linux-kernel@vger.kernel.org | |
9f273c24 | 10548 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git |
6e28b761 KRW |
10549 | S: Supported |
10550 | F: lib/swiotlb.c | |
10551 | F: arch/*/kernel/pci-swiotlb.c | |
10552 | F: include/linux/swiotlb.h | |
10553 | ||
007f790c JP |
10554 | SWITCHDEV |
10555 | M: Jiri Pirko <jiri@resnulli.us> | |
10556 | L: netdev@vger.kernel.org | |
10557 | S: Supported | |
10558 | F: net/switchdev/ | |
10559 | F: include/net/switchdev.h | |
10560 | ||
db8e35d5 VG |
10561 | SYNOPSYS ARC ARCHITECTURE |
10562 | M: Vineet Gupta <vgupta@synopsys.com> | |
30b9dbee | 10563 | L: linux-snps-arc@lists.infradead.org |
db8e35d5 VG |
10564 | S: Supported |
10565 | F: arch/arc/ | |
9b28829d | 10566 | F: Documentation/devicetree/bindings/arc/* |
2d799dde | 10567 | F: Documentation/devicetree/bindings/interrupt-controller/snps,arc* |
c6a0fe4a | 10568 | F: drivers/tty/serial/arc_uart.c |
b7182d1a | 10569 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git |
db8e35d5 | 10570 | |
556cc1c5 AB |
10571 | SYNOPSYS ARC SDP platform support |
10572 | M: Alexey Brodkin <abrodkin@synopsys.com> | |
10573 | S: Supported | |
10574 | F: arch/arc/plat-axs10x | |
10575 | F: arch/arc/boot/dts/ax* | |
10576 | F: Documentation/devicetree/bindings/arc/axs10* | |
10577 | ||
6c284c9a LJ |
10578 | SYSTEM CONFIGURATION (SYSCON) |
10579 | M: Lee Jones <lee.jones@linaro.org> | |
10580 | M: Arnd Bergmann <arnd@arndb.de> | |
10581 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git | |
10582 | S: Supported | |
10583 | F: drivers/mfd/syscon.c | |
10584 | ||
1da177e4 | 10585 | SYSV FILESYSTEM |
8b58be88 | 10586 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 | 10587 | S: Maintained |
679655da JP |
10588 | F: Documentation/filesystems/sysv-fs.txt |
10589 | F: fs/sysv/ | |
10590 | F: include/linux/sysv_fs.h | |
1da177e4 | 10591 | |
86cfa7fc | 10592 | TARGET SUBSYSTEM |
9c3646d1 | 10593 | M: "Nicholas A. Bellinger" <nab@linux-iscsi.org> |
86cfa7fc | 10594 | L: linux-scsi@vger.kernel.org |
b9f5edc2 | 10595 | L: target-devel@vger.kernel.org |
86cfa7fc | 10596 | W: http://www.linux-iscsi.org |
cf015e9f | 10597 | W: http://groups.google.com/group/linux-iscsi-target-dev |
452cf324 | 10598 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
10599 | S: Supported |
10600 | F: drivers/target/ | |
10601 | F: include/target/ | |
10602 | F: Documentation/target/ | |
10603 | ||
4e68852d | 10604 | TASKSTATS STATISTICS INTERFACE |
185e595f | 10605 | M: Balbir Singh <bsingharora@gmail.com> |
4e68852d | 10606 | S: Maintained |
679655da JP |
10607 | F: Documentation/accounting/taskstats* |
10608 | F: include/linux/taskstats* | |
10609 | F: kernel/taskstats.c | |
4e68852d | 10610 | |
781b456a | 10611 | TC CLASSIFIER |
f935f3f8 | 10612 | M: Jamal Hadi Salim <jhs@mojatatu.com> |
781b456a SH |
10613 | L: netdev@vger.kernel.org |
10614 | S: Maintained | |
679655da | 10615 | F: include/net/pkt_cls.h |
c117ab84 | 10616 | F: include/uapi/linux/pkt_cls.h |
679655da | 10617 | F: net/sched/ |
781b456a | 10618 | |
5067f08a | 10619 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
10620 | M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com> |
10621 | M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com> | |
5067f08a WHSE |
10622 | W: http://tcp-lp-mod.sourceforge.net/ |
10623 | S: Maintained | |
679655da | 10624 | F: net/ipv4/tcp_lp.c |
5067f08a | 10625 | |
91952bc0 AP |
10626 | TDA10071 MEDIA DRIVER |
10627 | M: Antti Palosaari <crope@iki.fi> | |
10628 | L: linux-media@vger.kernel.org | |
a825eaec | 10629 | W: https://linuxtv.org |
91952bc0 AP |
10630 | W: http://palosaari.fi/linux/ |
10631 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10632 | T: git git://linuxtv.org/anttip/media_tree.git | |
10633 | S: Maintained | |
10634 | F: drivers/media/dvb-frontends/tda10071* | |
10635 | ||
10636 | TDA18212 MEDIA DRIVER | |
10637 | M: Antti Palosaari <crope@iki.fi> | |
10638 | L: linux-media@vger.kernel.org | |
a825eaec | 10639 | W: https://linuxtv.org |
91952bc0 AP |
10640 | W: http://palosaari.fi/linux/ |
10641 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10642 | T: git git://linuxtv.org/anttip/media_tree.git | |
10643 | S: Maintained | |
10644 | F: drivers/media/tuners/tda18212* | |
10645 | ||
10646 | TDA18218 MEDIA DRIVER | |
10647 | M: Antti Palosaari <crope@iki.fi> | |
10648 | L: linux-media@vger.kernel.org | |
a825eaec | 10649 | W: https://linuxtv.org |
91952bc0 AP |
10650 | W: http://palosaari.fi/linux/ |
10651 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10652 | T: git git://linuxtv.org/anttip/media_tree.git | |
10653 | S: Maintained | |
10654 | F: drivers/media/tuners/tda18218* | |
10655 | ||
3b2f6aba MK |
10656 | TDA18271 MEDIA DRIVER |
10657 | M: Michael Krufky <mkrufky@linuxtv.org> | |
10658 | L: linux-media@vger.kernel.org | |
a825eaec | 10659 | W: https://linuxtv.org |
3b2f6aba MK |
10660 | W: http://github.com/mkrufky |
10661 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10662 | T: git git://linuxtv.org/mkrufky/tuners.git | |
10663 | S: Maintained | |
10664 | F: drivers/media/tuners/tda18271* | |
10665 | ||
e48307a9 MK |
10666 | TDA827x MEDIA DRIVER |
10667 | M: Michael Krufky <mkrufky@linuxtv.org> | |
10668 | L: linux-media@vger.kernel.org | |
a825eaec | 10669 | W: https://linuxtv.org |
e48307a9 MK |
10670 | W: http://github.com/mkrufky |
10671 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10672 | T: git git://linuxtv.org/mkrufky/tuners.git | |
10673 | S: Maintained | |
10674 | F: drivers/media/tuners/tda8290.* | |
10675 | ||
66cf9212 MK |
10676 | TDA8290 MEDIA DRIVER |
10677 | M: Michael Krufky <mkrufky@linuxtv.org> | |
10678 | L: linux-media@vger.kernel.org | |
a825eaec | 10679 | W: https://linuxtv.org |
66cf9212 MK |
10680 | W: http://github.com/mkrufky |
10681 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10682 | T: git git://linuxtv.org/mkrufky/tuners.git | |
10683 | S: Maintained | |
10684 | F: drivers/media/tuners/tda8290.* | |
10685 | ||
4b9fba30 HV |
10686 | TDA9840 MEDIA DRIVER |
10687 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10688 | L: linux-media@vger.kernel.org | |
10689 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10690 | W: https://linuxtv.org |
4b9fba30 HV |
10691 | S: Maintained |
10692 | F: drivers/media/i2c/tda9840* | |
10693 | ||
2cb654fd | 10694 | TEA5761 TUNER DRIVER |
009a5410 | 10695 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
2cb654fd | 10696 | L: linux-media@vger.kernel.org |
a825eaec | 10697 | W: https://linuxtv.org |
2cb654fd MCC |
10698 | T: git git://linuxtv.org/media_tree.git |
10699 | S: Odd fixes | |
10700 | F: drivers/media/tuners/tea5761.* | |
10701 | ||
10702 | TEA5767 TUNER DRIVER | |
009a5410 | 10703 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
2cb654fd | 10704 | L: linux-media@vger.kernel.org |
a825eaec | 10705 | W: https://linuxtv.org |
2cb654fd MCC |
10706 | T: git git://linuxtv.org/media_tree.git |
10707 | S: Maintained | |
10708 | F: drivers/media/tuners/tea5767.* | |
10709 | ||
4b9fba30 HV |
10710 | TEA6415C MEDIA DRIVER |
10711 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10712 | L: linux-media@vger.kernel.org | |
10713 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10714 | W: https://linuxtv.org |
4b9fba30 HV |
10715 | S: Maintained |
10716 | F: drivers/media/i2c/tea6415c* | |
10717 | ||
10718 | TEA6420 MEDIA DRIVER | |
10719 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10720 | L: linux-media@vger.kernel.org | |
10721 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10722 | W: https://linuxtv.org |
4b9fba30 HV |
10723 | S: Maintained |
10724 | F: drivers/media/i2c/tea6420* | |
10725 | ||
3d249d4c | 10726 | TEAM DRIVER |
dca9ab92 | 10727 | M: Jiri Pirko <jiri@resnulli.us> |
3d249d4c JP |
10728 | L: netdev@vger.kernel.org |
10729 | S: Supported | |
10730 | F: drivers/net/team/ | |
10731 | F: include/linux/if_team.h | |
c117ab84 | 10732 | F: include/uapi/linux/if_team.h |
3d249d4c | 10733 | |
7d029125 | 10734 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
9c3646d1 | 10735 | M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com> |
7d029125 VD |
10736 | S: Maintained |
10737 | F: arch/x86/platform/ts5500/ | |
10738 | ||
40ad4a30 SY |
10739 | TECHNOTREND USB IR RECEIVER |
10740 | M: Sean Young <sean@mess.org> | |
10741 | L: linux-media@vger.kernel.org | |
10742 | S: Maintained | |
10743 | F: drivers/media/rc/ttusbir.c | |
10744 | ||
adabdb0c | 10745 | TEGRA ARCHITECTURE SUPPORT |
243d58ec | 10746 | M: Stephen Warren <swarren@wwwdotorg.org> |
adabdb0c | 10747 | M: Thierry Reding <thierry.reding@gmail.com> |
554077c5 | 10748 | M: Alexandre Courbot <gnurou@gmail.com> |
84b9414b | 10749 | L: linux-tegra@vger.kernel.org |
fd117cd1 | 10750 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
b779b88d | 10751 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git |
84b9414b | 10752 | S: Supported |
bbbe96ed | 10753 | N: [^a-z]tegra |
84b9414b | 10754 | |
adabdb0c SW |
10755 | TEGRA CLOCK DRIVER |
10756 | M: Peter De Schrijver <pdeschrijver@nvidia.com> | |
10757 | M: Prashant Gaikwad <pgaikwad@nvidia.com> | |
10758 | S: Supported | |
10759 | F: drivers/clk/tegra/ | |
10760 | ||
10761 | TEGRA DMA DRIVER | |
10762 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
10763 | S: Supported | |
10764 | F: drivers/dma/tegra20-apb-dma.c | |
10765 | ||
adabdb0c SW |
10766 | TEGRA I2C DRIVER |
10767 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
10768 | S: Supported | |
10769 | F: drivers/i2c/busses/i2c-tegra.c | |
10770 | ||
10771 | TEGRA IOMMU DRIVERS | |
10772 | M: Hiroshi Doyu <hdoyu@nvidia.com> | |
10773 | S: Supported | |
10774 | F: drivers/iommu/tegra* | |
10775 | ||
10776 | TEGRA KBC DRIVER | |
10777 | M: Rakesh Iyer <riyer@nvidia.com> | |
10778 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
10779 | S: Supported | |
10780 | F: drivers/input/keyboard/tegra-kbc.c | |
10781 | ||
adabdb0c SW |
10782 | TEGRA PWM DRIVER |
10783 | M: Thierry Reding <thierry.reding@gmail.com> | |
10784 | S: Supported | |
10785 | F: drivers/pwm/pwm-tegra.c | |
10786 | ||
10787 | TEGRA SERIAL DRIVER | |
10788 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
10789 | S: Supported | |
10790 | F: drivers/tty/serial/serial-tegra.c | |
10791 | ||
10792 | TEGRA SPI DRIVER | |
10793 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
10794 | S: Supported | |
10795 | F: drivers/spi/spi-tegra* | |
10796 | ||
1a348ccc | 10797 | TEHUTI ETHERNET DRIVER |
8b58be88 | 10798 | M: Andy Gospodarek <andy@greyhouse.net> |
1a348ccc AG |
10799 | L: netdev@vger.kernel.org |
10800 | S: Supported | |
ef7f5429 | 10801 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 10802 | |
4e68852d | 10803 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 10804 | M: Mark Gross <mark.gross@intel.com> |
4e68852d | 10805 | S: Supported |
679655da | 10806 | F: drivers/char/tlclk.c |
4e68852d | 10807 | |
4480f15b | 10808 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 10809 | M: Chris Zankel <chris@zankel.net> |
f959ed2f CZ |
10810 | M: Max Filippov <jcmvbkbc@gmail.com> |
10811 | L: linux-xtensa@linux-xtensa.org | |
9f273c24 | 10812 | T: git git://github.com/czankel/xtensa-linux.git |
4e68852d | 10813 | S: Maintained |
679655da | 10814 | F: arch/xtensa/ |
3dc99857 | 10815 | F: drivers/irqchip/irq-xtensa-* |
4e68852d | 10816 | |
5313ba66 HV |
10817 | THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER |
10818 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10819 | L: linux-media@vger.kernel.org | |
10820 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10821 | W: https://linuxtv.org |
5313ba66 HV |
10822 | S: Maintained |
10823 | F: drivers/media/radio/radio-raremono.c | |
10824 | ||
d3fb6955 | 10825 | THERMAL |
b75f0050 | 10826 | M: Zhang Rui <rui.zhang@intel.com> |
f14d1c24 | 10827 | M: Eduardo Valentin <edubezval@gmail.com> |
b75f0050 JP |
10828 | L: linux-pm@vger.kernel.org |
10829 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
10830 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git | |
10831 | Q: https://patchwork.kernel.org/project/linux-pm/list/ | |
10832 | S: Supported | |
10833 | F: drivers/thermal/ | |
10834 | F: include/linux/thermal.h | |
af6c9f16 | 10835 | F: include/uapi/linux/thermal.h |
b75f0050 JP |
10836 | F: include/linux/cpu_cooling.h |
10837 | F: Documentation/devicetree/bindings/thermal/ | |
d3fb6955 | 10838 | |
64e05d8b VK |
10839 | THERMAL/CPU_COOLING |
10840 | M: Amit Daniel Kachhap <amit.kachhap@gmail.com> | |
10841 | M: Viresh Kumar <viresh.kumar@linaro.org> | |
10842 | M: Javi Merino <javi.merino@arm.com> | |
10843 | L: linux-pm@vger.kernel.org | |
10844 | S: Supported | |
10845 | F: Documentation/thermal/cpu-cooling-api.txt | |
10846 | F: drivers/thermal/cpu_cooling.c | |
10847 | F: include/linux/cpu_cooling.h | |
10848 | ||
30ba2fbd VD |
10849 | THINGM BLINK(1) USB RGB LED DRIVER |
10850 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> | |
10851 | S: Maintained | |
10852 | F: drivers/hid/hid-thingm.c | |
10853 | ||
4e68852d | 10854 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 10855 | M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br> |
4e68852d | 10856 | L: ibm-acpi-devel@lists.sourceforge.net |
d0944853 | 10857 | L: platform-driver-x86@vger.kernel.org |
4e68852d AC |
10858 | W: http://ibm-acpi.sourceforge.net |
10859 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 10860 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 10861 | S: Maintained |
679655da | 10862 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 10863 | |
1b46f2a2 | 10864 | TI BANDGAP AND THERMAL DRIVER |
f14d1c24 | 10865 | M: Eduardo Valentin <edubezval@gmail.com> |
1b46f2a2 | 10866 | L: linux-pm@vger.kernel.org |
531ff13e | 10867 | L: linux-omap@vger.kernel.org |
5a723e81 | 10868 | S: Maintained |
794b2e25 | 10869 | F: drivers/thermal/ti-soc-thermal/ |
1b46f2a2 | 10870 | |
0c7665c3 MF |
10871 | TI CDCE706 CLOCK DRIVER |
10872 | M: Max Filippov <jcmvbkbc@gmail.com> | |
10873 | S: Maintained | |
10874 | F: drivers/clk/clk-cdce706.c | |
10875 | ||
49b6a5e3 TK |
10876 | TI CLOCK DRIVER |
10877 | M: Tero Kristo <t-kristo@ti.com> | |
10878 | L: linux-omap@vger.kernel.org | |
10879 | S: Maintained | |
10880 | F: drivers/clk/ti/ | |
10881 | F: include/linux/clk/ti.h | |
10882 | ||
4020f2d7 | 10883 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 10884 | M: Alex Dubov <oakad@yahoo.com> |
795fb7e7 | 10885 | S: Maintained |
679655da JP |
10886 | F: drivers/misc/tifm* |
10887 | F: drivers/mmc/host/tifm_sd.c | |
10888 | F: include/linux/tifm.h | |
4020f2d7 | 10889 | |
e0c52404 | 10890 | TI KEYSTONE MULTICORE NAVIGATOR DRIVERS |
97215800 | 10891 | M: Santosh Shilimkar <ssantosh@kernel.org> |
e0c52404 SS |
10892 | L: linux-kernel@vger.kernel.org |
10893 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
10894 | S: Maintained | |
10895 | F: drivers/soc/ti/* | |
10896 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git | |
10897 | ||
10898 | ||
152ad442 SR |
10899 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
10900 | M: M R Swami Reddy <mr.swami.reddy@ti.com> | |
d392dead | 10901 | M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com> |
152ad442 SR |
10902 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
10903 | S: Maintained | |
10904 | F: sound/soc/codecs/lm49453* | |
d392dead | 10905 | F: sound/soc/codecs/isabelle* |
152ad442 | 10906 | |
0edd807d KM |
10907 | TI LP855x BACKLIGHT DRIVER |
10908 | M: Milo Kim <milo.kim@ti.com> | |
10909 | S: Maintained | |
10910 | F: Documentation/backlight/lp855x-driver.txt | |
10911 | F: drivers/video/backlight/lp855x_bl.c | |
10912 | F: include/linux/platform_data/lp855x.h | |
10913 | ||
faf13f6d KM |
10914 | TI LP8727 CHARGER DRIVER |
10915 | M: Milo Kim <milo.kim@ti.com> | |
10916 | S: Maintained | |
10917 | F: drivers/power/lp8727_charger.c | |
10918 | F: include/linux/platform_data/lp8727.h | |
10919 | ||
22f1229f KM |
10920 | TI LP8788 MFD DRIVER |
10921 | M: Milo Kim <milo.kim@ti.com> | |
10922 | S: Maintained | |
10923 | F: drivers/iio/adc/lp8788_adc.c | |
10924 | F: drivers/leds/leds-lp8788.c | |
10925 | F: drivers/mfd/lp8788*.c | |
10926 | F: drivers/power/lp8788-charger.c | |
10927 | F: drivers/regulator/lp8788-*.c | |
10928 | F: include/linux/mfd/lp8788*.h | |
10929 | ||
84640e27 KM |
10930 | TI NETCP ETHERNET DRIVER |
10931 | M: Wingman Kwok <w-kwok2@ti.com> | |
10932 | M: Murali Karicheri <m-karicheri2@ti.com> | |
10933 | L: netdev@vger.kernel.org | |
10934 | S: Maintained | |
10935 | F: drivers/net/ethernet/ti/netcp* | |
10936 | ||
217e0ca9 KC |
10937 | TI TAS571X FAMILY ASoC CODEC DRIVER |
10938 | M: Kevin Cernekee <cernekee@chromium.org> | |
10939 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
10940 | S: Odd Fixes | |
10941 | F: sound/soc/codecs/tas571x* | |
10942 | ||
dd5e8e6b | 10943 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 10944 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
dd5e8e6b PU |
10945 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
10946 | S: Maintained | |
10947 | F: sound/soc/codecs/twl4030* | |
10948 | ||
90921014 | 10949 | TI WILINK WIRELESS DRIVERS |
90921014 LC |
10950 | L: linux-wireless@vger.kernel.org |
10951 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
10952 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
10953 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
22d072f6 | 10954 | S: Orphan |
90921014 LC |
10955 | F: drivers/net/wireless/ti/ |
10956 | F: include/linux/wl12xx.h | |
10957 | ||
e86eaa3a | 10958 | TIPC NETWORK LAYER |
8b58be88 | 10959 | M: Jon Maloy <jon.maloy@ericsson.com> |
115403df | 10960 | M: Ying Xue <ying.xue@windriver.com> |
633d2bde AS |
10961 | L: netdev@vger.kernel.org (core kernel code) |
10962 | L: tipc-discussion@lists.sourceforge.net (user apps, general discussion) | |
e86eaa3a | 10963 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 10964 | S: Maintained |
c117ab84 | 10965 | F: include/uapi/linux/tipc*.h |
679655da | 10966 | F: net/tipc/ |
e86eaa3a | 10967 | |
867e359b | 10968 | TILE ARCHITECTURE |
c47b15c4 | 10969 | M: Chris Metcalf <cmetcalf@ezchip.com> |
740e1433 | 10970 | W: http://www.ezchip.com/scm/ |
7fa129cc | 10971 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git |
867e359b CM |
10972 | S: Supported |
10973 | F: arch/tile/ | |
6b940606 | 10974 | F: drivers/char/tile-srom.c |
5c770755 | 10975 | F: drivers/edac/tile_edac.c |
6b940606 CM |
10976 | F: drivers/net/ethernet/tile/ |
10977 | F: drivers/rtc/rtc-tile.c | |
10978 | F: drivers/tty/hvc/hvc_tile.c | |
b5c6c1a7 | 10979 | F: drivers/tty/serial/tilegx.c |
6b940606 CM |
10980 | F: drivers/usb/host/*-tilegx.c |
10981 | F: include/linux/usb/tilegx.h | |
867e359b | 10982 | |
1da177e4 | 10983 | TLAN NETWORK DRIVER |
8b58be88 | 10984 | M: Samuel Chessman <chessman@tux.org> |
88c07dde | 10985 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
1da177e4 LT |
10986 | W: http://sourceforge.net/projects/tlan/ |
10987 | S: Maintained | |
679655da | 10988 | F: Documentation/networking/tlan.txt |
b544dbac | 10989 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 10990 | |
d74db3b2 | 10991 | TOMOYO SECURITY MODULE |
8b58be88 JP |
10992 | M: Kentaro Takeda <takedakn@nttdata.co.jp> |
10993 | M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> | |
d03a5d88 TH |
10994 | L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English) |
10995 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English) | |
d74db3b2 KT |
10996 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
10997 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) | |
10998 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 10999 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 11000 | S: Maintained |
679655da | 11001 | F: security/tomoyo/ |
d74db3b2 | 11002 | |
9caeb532 | 11003 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 11004 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
d0944853 | 11005 | L: platform-driver-x86@vger.kernel.org |
9caeb532 HRK |
11006 | S: Maintained |
11007 | F: drivers/platform/x86/topstar-laptop.c | |
11008 | ||
1da177e4 | 11009 | TOSHIBA ACPI EXTRAS DRIVER |
0a63ca11 | 11010 | M: Azael Avalos <coproscefalo@gmail.com> |
d0944853 | 11011 | L: platform-driver-x86@vger.kernel.org |
0a63ca11 | 11012 | S: Maintained |
679655da | 11013 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 | 11014 | |
0a63ca11 AA |
11015 | TOSHIBA BLUETOOTH DRIVER |
11016 | M: Azael Avalos <coproscefalo@gmail.com> | |
11017 | L: platform-driver-x86@vger.kernel.org | |
11018 | S: Maintained | |
11019 | F: drivers/platform/x86/toshiba_bluetooth.c | |
11020 | ||
11021 | TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER | |
11022 | M: Azael Avalos <coproscefalo@gmail.com> | |
11023 | L: platform-driver-x86@vger.kernel.org | |
11024 | S: Maintained | |
11025 | F: drivers/platform/x86/toshiba_haps.c | |
11026 | ||
14991fc7 AA |
11027 | TOSHIBA WMI HOTKEYS DRIVER |
11028 | M: Azael Avalos <coproscefalo@gmail.com> | |
11029 | L: platform-driver-x86@vger.kernel.org | |
11030 | S: Maintained | |
11031 | F: drivers/platform/x86/toshiba-wmi.c | |
11032 | ||
1da177e4 | 11033 | TOSHIBA SMM DRIVER |
8b58be88 | 11034 | M: Jonathan Buzzard <jonathan@buzzard.org.uk> |
1da177e4 LT |
11035 | W: http://www.buzzard.org.uk/toshiba/ |
11036 | S: Maintained | |
679655da JP |
11037 | F: drivers/char/toshiba.c |
11038 | F: include/linux/toshiba.h | |
c117ab84 | 11039 | F: include/uapi/linux/toshiba.h |
1da177e4 | 11040 | |
d32d9864 MR |
11041 | TOSHIBA TC358743 DRIVER |
11042 | M: Mats Randgaard <matrandg@cisco.com> | |
11043 | L: linux-media@vger.kernel.org | |
11044 | S: Maintained | |
11045 | F: drivers/media/i2c/tc358743* | |
b5dcee22 | 11046 | F: include/media/i2c/tc358743.h |
d32d9864 | 11047 | |
d719f900 | 11048 | TMIO MMC DRIVER |
c4b13fb0 | 11049 | M: Ian Molton <ian@mnementh.co.uk> |
d1057c40 | 11050 | L: linux-mmc@vger.kernel.org |
d719f900 | 11051 | S: Maintained |
d1057c40 GL |
11052 | F: drivers/mmc/host/tmio_mmc* |
11053 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
11054 | F: include/linux/mmc/tmio.h | |
11055 | F: include/linux/mmc/sh_mobile_sdhi.h | |
d719f900 | 11056 | |
917cc4e6 GR |
11057 | TMP401 HARDWARE MONITOR DRIVER |
11058 | M: Guenter Roeck <linux@roeck-us.net> | |
11059 | L: lm-sensors@lm-sensors.org | |
11060 | S: Maintained | |
11061 | F: Documentation/hwmon/tmp401 | |
11062 | F: drivers/hwmon/tmp401.c | |
11063 | ||
98f32602 | 11064 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 11065 | M: Hugh Dickins <hughd@google.com> |
98f32602 HD |
11066 | L: linux-mm@kvack.org |
11067 | S: Maintained | |
11068 | F: include/linux/shmem_fs.h | |
11069 | F: mm/shmem.c | |
11070 | ||
45f95b53 | 11071 | TM6000 VIDEO4LINUX DRIVER |
009a5410 | 11072 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
45f95b53 | 11073 | L: linux-media@vger.kernel.org |
a825eaec | 11074 | W: https://linuxtv.org |
45f95b53 MCC |
11075 | T: git git://linuxtv.org/media_tree.git |
11076 | S: Odd fixes | |
11077 | F: drivers/media/usb/tm6000/ | |
11078 | ||
c65fde19 HV |
11079 | TW68 VIDEO4LINUX DRIVER |
11080 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11081 | L: linux-media@vger.kernel.org | |
11082 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11083 | W: https://linuxtv.org |
c65fde19 HV |
11084 | S: Odd Fixes |
11085 | F: drivers/media/pci/tw68/ | |
11086 | ||
4e68852d | 11087 | TPM DEVICE DRIVER |
901486b8 | 11088 | M: Peter Huewe <peterhuewe@gmx.de> |
cbb2d5e4 | 11089 | M: Marcel Selhorst <tpmdd@selhorst.net> |
89adb83c | 11090 | M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> |
ce93b4b0 | 11091 | R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> |
383dec1f | 11092 | W: http://tpmdd.sourceforge.net |
63a10dfd | 11093 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
f78c81b4 | 11094 | Q: git git://github.com/PeterHuewe/linux-tpmdd.git |
9f273c24 | 11095 | T: git https://github.com/PeterHuewe/linux-tpmdd |
4e68852d | 11096 | S: Maintained |
679655da | 11097 | F: drivers/char/tpm/ |
4e68852d | 11098 | |
1a0f1b27 AL |
11099 | TPM IBM_VTPM DEVICE DRIVER |
11100 | M: Ashley Lai <ashleydlai@gmail.com> | |
11101 | W: http://tpmdd.sourceforge.net | |
11102 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) | |
11103 | S: Maintained | |
11104 | F: drivers/char/tpm/tpm_ibmvtpm* | |
11105 | ||
d6f005a1 JP |
11106 | TRACING |
11107 | M: Steven Rostedt <rostedt@goodmis.org> | |
d6f005a1 | 11108 | M: Ingo Molnar <mingo@redhat.com> |
75fc2d37 | 11109 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
11110 | S: Maintained |
11111 | F: Documentation/trace/ftrace.txt | |
11112 | F: arch/*/*/*/ftrace.h | |
11113 | F: arch/*/kernel/ftrace.c | |
11114 | F: include/*/ftrace.h | |
11115 | F: include/linux/trace*.h | |
11116 | F: include/trace/ | |
11117 | F: kernel/trace/ | |
6e68e6c5 | 11118 | F: tools/testing/selftests/ftrace/ |
d6f005a1 | 11119 | |
1da177e4 | 11120 | TRIVIAL PATCHES |
8b58be88 | 11121 | M: Jiri Kosina <trivial@kernel.org> |
54e5881d | 11122 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 11123 | S: Maintained |
86ef925f | 11124 | K: ^Subject:.*(?i)trivial |
1da177e4 | 11125 | |
4e68852d | 11126 | TTY LAYER |
879a5a00 | 11127 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
d8130624 | 11128 | M: Jiri Slaby <jslaby@suse.com> |
879a5a00 | 11129 | S: Supported |
08deed1e | 11130 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
84e1eb83 | 11131 | F: Documentation/serial/ |
8dd5d2f1 | 11132 | F: drivers/tty/ |
df621252 | 11133 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
11134 | F: include/linux/serial_core.h |
11135 | F: include/linux/serial.h | |
11136 | F: include/linux/tty.h | |
c117ab84 CEB |
11137 | F: include/uapi/linux/serial_core.h |
11138 | F: include/uapi/linux/serial.h | |
11139 | F: include/uapi/linux/tty.h | |
4e68852d | 11140 | |
91952bc0 AP |
11141 | TUA9001 MEDIA DRIVER |
11142 | M: Antti Palosaari <crope@iki.fi> | |
11143 | L: linux-media@vger.kernel.org | |
a825eaec | 11144 | W: https://linuxtv.org |
91952bc0 AP |
11145 | W: http://palosaari.fi/linux/ |
11146 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11147 | T: git git://linuxtv.org/anttip/media_tree.git | |
11148 | S: Maintained | |
11149 | F: drivers/media/tuners/tua9001* | |
11150 | ||
740db6d7 | 11151 | TULIP NETWORK DRIVERS |
740db6d7 | 11152 | L: netdev@vger.kernel.org |
cf869eb1 GG |
11153 | L: linux-parisc@vger.kernel.org |
11154 | S: Orphan | |
0f04e2aa | 11155 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
11156 | |
11157 | TUN/TAP driver | |
ba57b6f2 | 11158 | M: Maxim Krasnyansky <maxk@qti.qualcomm.com> |
1da177e4 LT |
11159 | W: http://vtun.sourceforge.net/tun |
11160 | S: Maintained | |
679655da JP |
11161 | F: Documentation/networking/tuntap.txt |
11162 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 11163 | |
b454cc66 | 11164 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 11165 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
c406339c RB |
11166 | M: Ralf Baechle <ralf@linux-mips.org> |
11167 | L: linux-mips@linux-mips.org | |
11168 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ | |
b454cc66 | 11169 | S: Maintained |
679655da JP |
11170 | F: drivers/tc/ |
11171 | F: include/linux/tc.h | |
b454cc66 | 11172 | |
1da177e4 | 11173 | U14-34F SCSI DRIVER |
8b58be88 | 11174 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
11175 | L: linux-scsi@vger.kernel.org |
11176 | S: Maintained | |
679655da | 11177 | F: drivers/scsi/u14-34f.c |
1da177e4 | 11178 | |
e2d1d6c0 | 11179 | UBI FILE SYSTEM (UBIFS) |
949cb623 | 11180 | M: Artem Bityutskiy <dedekind1@gmail.com> |
cc8f9b99 | 11181 | M: Adrian Hunter <adrian.hunter@intel.com> |
e2d1d6c0 | 11182 | L: linux-mtd@lists.infradead.org |
e2966cbe | 11183 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 RD |
11184 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
11185 | S: Maintained | |
679655da JP |
11186 | F: Documentation/filesystems/ubifs.txt |
11187 | F: fs/ubifs/ | |
e2d1d6c0 | 11188 | |
e1632fa2 | 11189 | UCLINUX (M68KNOMMU AND COLDFIRE) |
8b58be88 | 11190 | M: Greg Ungerer <gerg@uclinux.org> |
cc2020e6 | 11191 | W: http://www.uclinux.org/ |
e1632fa2 | 11192 | L: linux-m68k@lists.linux-m68k.org |
cc2020e6 | 11193 | L: uclinux-dev@uclinux.org (subscribers-only) |
e1632fa2 | 11194 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git |
cc2020e6 | 11195 | S: Maintained |
e1632fa2 GU |
11196 | F: arch/m68k/coldfire/ |
11197 | F: arch/m68k/68*/ | |
61bc02bb JP |
11198 | F: arch/m68k/*/*_no.* |
11199 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 11200 | |
1da177e4 | 11201 | UDF FILESYSTEM |
d8130624 | 11202 | M: Jan Kara <jack@suse.com> |
1da177e4 | 11203 | S: Maintained |
679655da JP |
11204 | F: Documentation/filesystems/udf.txt |
11205 | F: fs/udf/ | |
1da177e4 | 11206 | |
cc2020e6 | 11207 | UFS FILESYSTEM |
8b58be88 | 11208 | M: Evgeniy Dushistov <dushistov@mail.ru> |
cc2020e6 | 11209 | S: Maintained |
679655da JP |
11210 | F: Documentation/filesystems/ufs.txt |
11211 | F: fs/ufs/ | |
cc2020e6 | 11212 | |
0a09d3ab DH |
11213 | UHID USERSPACE HID IO DRIVER: |
11214 | M: David Herrmann <dh.herrmann@googlemail.com> | |
11215 | L: linux-input@vger.kernel.org | |
11216 | S: Maintained | |
11217 | F: drivers/hid/uhid.c | |
c117ab84 | 11218 | F: include/uapi/linux/uhid.h |
0a09d3ab | 11219 | |
18332a80 | 11220 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 11221 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 11222 | S: Orphan |
355ffe69 | 11223 | F: drivers/uwb/ |
679655da JP |
11224 | F: include/linux/uwb.h |
11225 | F: include/linux/uwb/ | |
18332a80 | 11226 | |
b31d8273 G |
11227 | UNICORE32 ARCHITECTURE: |
11228 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
11229 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
11230 | S: Maintained | |
ceebf4d5 | 11231 | T: git git://github.com/gxt/linux.git |
b31d8273 G |
11232 | F: arch/unicore32/ |
11233 | ||
d8379ab1 TF |
11234 | UNIFDEF |
11235 | M: Tony Finch <dot@dotat.at> | |
11236 | W: http://dotat.at/prog/unifdef | |
11237 | S: Maintained | |
11238 | F: scripts/unifdef.c | |
11239 | ||
1da177e4 | 11240 | UNIFORM CDROM DRIVER |
8b58be88 | 11241 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
11242 | W: http://www.kernel.dk |
11243 | S: Maintained | |
679655da JP |
11244 | F: Documentation/cdrom/ |
11245 | F: drivers/cdrom/cdrom.c | |
11246 | F: include/linux/cdrom.h | |
c117ab84 | 11247 | F: include/uapi/linux/cdrom.h |
1da177e4 | 11248 | |
56df0122 | 11249 | UNISYS S-PAR DRIVERS |
49e7d9df JP |
11250 | M: Benjamin Romer <benjamin.romer@unisys.com> |
11251 | M: David Kershner <david.kershner@unisys.com> | |
11252 | L: sparmaintainer@unisys.com (Unisys internal) | |
11253 | S: Supported | |
11254 | F: drivers/staging/unisys/ | |
56df0122 | 11255 | |
9941fa6e VH |
11256 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
11257 | M: Vinayak Holikatti <vinholikatti@gmail.com> | |
9941fa6e VH |
11258 | L: linux-scsi@vger.kernel.org |
11259 | S: Supported | |
11260 | F: Documentation/scsi/ufs.txt | |
11261 | F: drivers/scsi/ufs/ | |
11262 | ||
e2d1d6c0 | 11263 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 11264 | M: Artem Bityutskiy <dedekind1@gmail.com> |
346be9bc | 11265 | M: Richard Weinberger <richard@nod.at> |
e2d1d6c0 RD |
11266 | W: http://www.linux-mtd.infradead.org/ |
11267 | L: linux-mtd@lists.infradead.org | |
b6b44e0a | 11268 | T: git git://git.infradead.org/ubifs-2.6.git |
346be9bc | 11269 | S: Supported |
80811493 | 11270 | F: drivers/mtd/ubi/ |
679655da | 11271 | F: include/linux/mtd/ubi.h |
c117ab84 | 11272 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 11273 | |
1da177e4 | 11274 | USB ACM DRIVER |
61eee9a7 | 11275 | M: Oliver Neukum <oliver@neukum.org> |
6372594a | 11276 | L: linux-usb@vger.kernel.org |
1da177e4 | 11277 | S: Maintained |
679655da JP |
11278 | F: Documentation/usb/acm.txt |
11279 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 11280 | |
b7d572e1 PF |
11281 | USB AR5523 WIRELESS DRIVER |
11282 | M: Pontus Fuchs <pontus.fuchs@gmail.com> | |
11283 | L: linux-wireless@vger.kernel.org | |
11284 | S: Maintained | |
11285 | F: drivers/net/wireless/ath/ar5523/ | |
11286 | ||
115bb1ff | 11287 | USB ATTACHED SCSI |
f50a4968 | 11288 | M: Hans de Goede <hdegoede@redhat.com> |
8eae0fb7 | 11289 | M: Gerd Hoffmann <kraxel@redhat.com> |
115bb1ff MW |
11290 | L: linux-usb@vger.kernel.org |
11291 | L: linux-scsi@vger.kernel.org | |
8eae0fb7 | 11292 | S: Maintained |
115bb1ff MW |
11293 | F: drivers/usb/storage/uas.c |
11294 | ||
1da177e4 | 11295 | USB CDC ETHERNET DRIVER |
61eee9a7 | 11296 | M: Oliver Neukum <oliver@neukum.org> |
795fb7e7 | 11297 | L: linux-usb@vger.kernel.org |
1da177e4 | 11298 | S: Maintained |
679655da | 11299 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 11300 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 11301 | |
66e3e591 KP |
11302 | USB CHAOSKEY DRIVER |
11303 | M: Keith Packard <keithp@keithp.com> | |
11304 | L: linux-usb@vger.kernel.org | |
11305 | S: Maintained | |
11306 | F: drivers/usb/misc/chaoskey.c | |
11307 | ||
b02b371e | 11308 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 11309 | M: Peter Korsgaard <jacmet@sunsite.dk> |
b02b371e PK |
11310 | L: linux-usb@vger.kernel.org |
11311 | S: Maintained | |
679655da | 11312 | F: drivers/usb/c67x00/ |
b02b371e | 11313 | |
d0374f4f | 11314 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 11315 | M: Peter Korsgaard <jacmet@sunsite.dk> |
043600a6 | 11316 | L: netdev@vger.kernel.org |
d0374f4f PK |
11317 | W: http://www.linux-usb.org/usbnet |
11318 | S: Maintained | |
679655da | 11319 | F: drivers/net/usb/dm9601.c |
d0374f4f | 11320 | |
cc2020e6 | 11321 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 11322 | M: Cesar Miquel <miquel@df.uba.ar> |
cc2020e6 AC |
11323 | L: rio500-users@lists.sourceforge.net |
11324 | W: http://rio500.sourceforge.net | |
11325 | S: Maintained | |
679655da | 11326 | F: drivers/usb/misc/rio500* |
cc2020e6 | 11327 | |
1da177e4 | 11328 | USB EHCI DRIVER |
578333ab | 11329 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 11330 | L: linux-usb@vger.kernel.org |
578333ab | 11331 | S: Maintained |
679655da JP |
11332 | F: Documentation/usb/ehci.txt |
11333 | F: drivers/usb/host/ehci* | |
1da177e4 | 11334 | |
69ae9e3e | 11335 | USB GADGET/PERIPHERAL SUBSYSTEM |
a55f6286 | 11336 | M: Felipe Balbi <balbi@kernel.org> |
795fb7e7 | 11337 | L: linux-usb@vger.kernel.org |
69ae9e3e | 11338 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
11339 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
11340 | S: Maintained | |
679655da JP |
11341 | F: drivers/usb/gadget/ |
11342 | F: include/linux/usb/gadget* | |
69ae9e3e | 11343 | |
2dea64b4 | 11344 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
e5f6450c | 11345 | M: Jiri Kosina <jikos@kernel.org> |
406df153 | 11346 | R: Benjamin Tissoires <benjamin.tissoires@redhat.com> |
795fb7e7 | 11347 | L: linux-usb@vger.kernel.org |
54e5881d | 11348 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 11349 | S: Maintained |
c2f01971 | 11350 | F: Documentation/hid/hiddev.txt |
679655da | 11351 | F: drivers/hid/usbhid/ |
1da177e4 | 11352 | |
959eea21 | 11353 | USB ISP116X DRIVER |
8b58be88 | 11354 | M: Olav Kongas <ok@artecdesign.ee> |
795fb7e7 | 11355 | L: linux-usb@vger.kernel.org |
959eea21 | 11356 | S: Maintained |
679655da JP |
11357 | F: drivers/usb/host/isp116x* |
11358 | F: include/linux/usb/isp116x.h | |
959eea21 | 11359 | |
1da177e4 | 11360 | USB MASS STORAGE DRIVER |
8b58be88 | 11361 | M: Matthew Dharm <mdharm-usb@one-eyed-alien.net> |
795fb7e7 | 11362 | L: linux-usb@vger.kernel.org |
8836aeb8 | 11363 | L: usb-storage@lists.one-eyed-alien.net |
1da177e4 LT |
11364 | S: Maintained |
11365 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 11366 | F: drivers/usb/storage/ |
1da177e4 | 11367 | |
af39917d CL |
11368 | USB MIDI DRIVER |
11369 | M: Clemens Ladisch <clemens@ladisch.de> | |
11370 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
11371 | T: git git://git.alsa-project.org/alsa-kernel.git | |
11372 | S: Maintained | |
11373 | F: sound/usb/midi.* | |
11374 | ||
444ce9d4 JP |
11375 | USB NETWORKING DRIVERS |
11376 | L: linux-usb@vger.kernel.org | |
11377 | S: Odd Fixes | |
11378 | F: drivers/net/usb/ | |
11379 | ||
1da177e4 | 11380 | USB OHCI DRIVER |
578333ab | 11381 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 11382 | L: linux-usb@vger.kernel.org |
578333ab | 11383 | S: Maintained |
679655da JP |
11384 | F: Documentation/usb/ohci.txt |
11385 | F: drivers/usb/host/ohci* | |
1da177e4 | 11386 | |
963ffa3e | 11387 | USB OTG FSM (Finite State Machine) |
60d77b3d | 11388 | M: Peter Chen <Peter.Chen@nxp.com> |
8373856d | 11389 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
963ffa3e PC |
11390 | L: linux-usb@vger.kernel.org |
11391 | S: Maintained | |
11392 | F: drivers/usb/common/usb-otg-fsm.c | |
11393 | ||
563da3a9 VM |
11394 | USB OVER IP DRIVER |
11395 | M: Valentina Manea <valentina.manea.m@gmail.com> | |
11396 | M: Shuah Khan <shuah.kh@samsung.com> | |
11397 | L: linux-usb@vger.kernel.org | |
11398 | S: Maintained | |
11399 | F: drivers/usb/usbip/ | |
11400 | F: tools/usb/usbip/ | |
11401 | ||
1da177e4 | 11402 | USB PEGASUS DRIVER |
a16b945c | 11403 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 11404 | L: linux-usb@vger.kernel.org |
043600a6 | 11405 | L: netdev@vger.kernel.org |
052e3128 PM |
11406 | T: git git://github.com/petkan/pegasus.git |
11407 | W: https://github.com/petkan/pegasus | |
1da177e4 | 11408 | S: Maintained |
679655da | 11409 | F: drivers/net/usb/pegasus.* |
1da177e4 | 11410 | |
d3ad558f | 11411 | USB PHY LAYER |
a55f6286 | 11412 | M: Felipe Balbi <balbi@kernel.org> |
d3ad558f FB |
11413 | L: linux-usb@vger.kernel.org |
11414 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
11415 | S: Maintained | |
11416 | F: drivers/usb/phy/ | |
d3ad558f | 11417 | |
73e4fb3f | 11418 | USB PRINTER DRIVER (usblp) |
8b58be88 | 11419 | M: Pete Zaitcev <zaitcev@redhat.com> |
795fb7e7 | 11420 | L: linux-usb@vger.kernel.org |
73e4fb3f | 11421 | S: Supported |
679655da | 11422 | F: drivers/usb/class/usblp.c |
1da177e4 | 11423 | |
4521b477 BM |
11424 | USB QMI WWAN NETWORK DRIVER |
11425 | M: Bjørn Mork <bjorn@mork.no> | |
11426 | L: netdev@vger.kernel.org | |
11427 | S: Maintained | |
11428 | F: Documentation/ABI/testing/sysfs-class-net-qmi | |
11429 | F: drivers/net/usb/qmi_wwan.c | |
11430 | ||
1da177e4 | 11431 | USB RTL8150 DRIVER |
a16b945c | 11432 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 11433 | L: linux-usb@vger.kernel.org |
043600a6 | 11434 | L: netdev@vger.kernel.org |
052e3128 PM |
11435 | T: git git://github.com/petkan/rtl8150.git |
11436 | W: https://github.com/petkan/rtl8150 | |
1da177e4 | 11437 | S: Maintained |
679655da | 11438 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 11439 | |
f896b796 | 11440 | USB SERIAL SUBSYSTEM |
66085694 | 11441 | M: Johan Hovold <johan@kernel.org> |
795fb7e7 | 11442 | L: linux-usb@vger.kernel.org |
4e68852d | 11443 | S: Maintained |
679655da | 11444 | F: Documentation/usb/usb-serial.txt |
f896b796 | 11445 | F: drivers/usb/serial/ |
679655da | 11446 | F: include/linux/usb/serial.h |
1da177e4 | 11447 | |
b3f0db1c SG |
11448 | USB SMSC75XX ETHERNET DRIVER |
11449 | M: Steve Glendinning <steve.glendinning@shawell.net> | |
11450 | L: netdev@vger.kernel.org | |
11451 | S: Maintained | |
11452 | F: drivers/net/usb/smsc75xx.* | |
11453 | ||
2f7ca802 | 11454 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 11455 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2f7ca802 | 11456 | L: netdev@vger.kernel.org |
90b24cfb | 11457 | S: Maintained |
679655da | 11458 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 11459 | |
1da177e4 | 11460 | USB SUBSYSTEM |
879a5a00 | 11461 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
795fb7e7 | 11462 | L: linux-usb@vger.kernel.org |
1da177e4 | 11463 | W: http://www.linux-usb.org |
08deed1e | 11464 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 11465 | S: Supported |
679655da | 11466 | F: Documentation/usb/ |
679655da JP |
11467 | F: drivers/usb/ |
11468 | F: include/linux/usb.h | |
11469 | F: include/linux/usb/ | |
1da177e4 LT |
11470 | |
11471 | USB UHCI DRIVER | |
8b58be88 | 11472 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 11473 | L: linux-usb@vger.kernel.org |
1da177e4 | 11474 | S: Maintained |
679655da | 11475 | F: drivers/usb/host/uhci* |
1da177e4 | 11476 | |
69ae9e3e | 11477 | USB "USBNET" DRIVER FRAMEWORK |
d8130624 | 11478 | M: Oliver Neukum <oneukum@suse.com> |
043600a6 | 11479 | L: netdev@vger.kernel.org |
69ae9e3e | 11480 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 11481 | S: Maintained |
679655da JP |
11482 | F: drivers/net/usb/usbnet.c |
11483 | F: include/linux/usb/usbnet.h | |
1da177e4 | 11484 | |
c0efd232 | 11485 | USB VIDEO CLASS |
c53ac071 | 11486 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
616bd4e2 | 11487 | L: linux-uvc-devel@lists.sourceforge.net (subscribers-only) |
661263b5 | 11488 | L: linux-media@vger.kernel.org |
275ffde4 | 11489 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 11490 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 11491 | S: Maintained |
0c0d06ca | 11492 | F: drivers/media/usb/uvc/ |
6c0f0359 | 11493 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 11494 | |
b60b9c45 HV |
11495 | USB VISION DRIVER |
11496 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11497 | L: linux-media@vger.kernel.org | |
11498 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11499 | W: https://linuxtv.org |
b60b9c45 HV |
11500 | S: Odd Fixes |
11501 | F: drivers/media/usb/usbvision/ | |
11502 | ||
8282da47 LP |
11503 | USB WEBCAM GADGET |
11504 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
11505 | L: linux-usb@vger.kernel.org | |
11506 | S: Maintained | |
3a83c16e | 11507 | F: drivers/usb/gadget/function/*uvc* |
faf2e1db | 11508 | F: drivers/usb/gadget/legacy/webcam.c |
8282da47 | 11509 | |
bf164cc0 | 11510 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 11511 | M: Jussi Kivilinna <jussi.kivilinna@iki.fi> |
bf164cc0 JK |
11512 | L: linux-wireless@vger.kernel.org |
11513 | S: Maintained | |
679655da | 11514 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 11515 | |
eb6bab13 | 11516 | USB XHCI DRIVER |
03d85053 | 11517 | M: Mathias Nyman <mathias.nyman@intel.com> |
eb6bab13 SS |
11518 | L: linux-usb@vger.kernel.org |
11519 | S: Supported | |
36d0344c SS |
11520 | F: drivers/usb/host/xhci* |
11521 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 11522 | |
1da177e4 | 11523 | USB ZD1201 DRIVER |
4086b9ca | 11524 | L: linux-wireless@vger.kernel.org |
1da177e4 | 11525 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 11526 | S: Orphan |
ed0ad06f | 11527 | F: drivers/net/wireless/zydas/zd1201.* |
1da177e4 | 11528 | |
b7eee616 | 11529 | USB ZR364XX DRIVER |
8b58be88 | 11530 | M: Antoine Jacquet <royale@zerezo.com> |
795fb7e7 | 11531 | L: linux-usb@vger.kernel.org |
661263b5 | 11532 | L: linux-media@vger.kernel.org |
275ffde4 | 11533 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
11534 | W: http://royale.zerezo.com/zr364xx/ |
11535 | S: Maintained | |
679655da | 11536 | F: Documentation/video4linux/zr364xx.txt |
90d72ac6 | 11537 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 11538 | |
289fcff4 HK |
11539 | ULPI BUS |
11540 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> | |
11541 | L: linux-usb@vger.kernel.org | |
11542 | S: Maintained | |
11543 | F: drivers/usb/common/ulpi.c | |
11544 | F: include/linux/ulpi/ | |
11545 | ||
e7839f25 | 11546 | USER-MODE LINUX (UML) |
8b58be88 | 11547 | M: Jeff Dike <jdike@addtoit.com> |
b15194b7 | 11548 | M: Richard Weinberger <richard@nod.at> |
1da177e4 LT |
11549 | L: user-mode-linux-devel@lists.sourceforge.net |
11550 | L: user-mode-linux-user@lists.sourceforge.net | |
11551 | W: http://user-mode-linux.sourceforge.net | |
9f273c24 | 11552 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git |
1da177e4 | 11553 | S: Maintained |
61516587 | 11554 | F: Documentation/virtual/uml/ |
679655da | 11555 | F: arch/um/ |
b070989a | 11556 | F: arch/x86/um/ |
679655da JP |
11557 | F: fs/hostfs/ |
11558 | F: fs/hppfs/ | |
b7eee616 | 11559 | |
e5f114e9 | 11560 | USERSPACE I/O (UIO) |
6a534c9d | 11561 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
879a5a00 | 11562 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
e5f114e9 | 11563 | S: Maintained |
3d3fecbd | 11564 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
679655da JP |
11565 | F: Documentation/DocBook/uio-howto.tmpl |
11566 | F: drivers/uio/ | |
11567 | F: include/linux/uio*.h | |
e5f114e9 | 11568 | |
256cccbe | 11569 | UTIL-LINUX PACKAGE |
8b58be88 | 11570 | M: Karel Zak <kzak@redhat.com> |
256cccbe KZ |
11571 | L: util-linux@vger.kernel.org |
11572 | W: http://en.wikipedia.org/wiki/Util-linux | |
11573 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
11574 | S: Maintained |
11575 | ||
c1fd1c07 | 11576 | UVESAFB DRIVER |
8b58be88 | 11577 | M: Michal Januszewski <spock@gentoo.org> |
c69f677c | 11578 | L: linux-fbdev@vger.kernel.org |
c1fd1c07 MJ |
11579 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
11580 | S: Maintained | |
679655da | 11581 | F: Documentation/fb/uvesafb.txt |
8a61f013 | 11582 | F: drivers/video/fbdev/uvesafb.* |
c1fd1c07 | 11583 | |
456930d8 SA |
11584 | VF610 NAND DRIVER |
11585 | M: Stefan Agner <stefan@agner.ch> | |
11586 | L: linux-mtd@lists.infradead.org | |
11587 | S: Supported | |
11588 | F: drivers/mtd/nand/vf610_nfc.c | |
11589 | ||
4480f15b | 11590 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 11591 | M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> |
1da177e4 | 11592 | S: Maintained |
679655da JP |
11593 | F: Documentation/filesystems/vfat.txt |
11594 | F: fs/fat/ | |
1da177e4 | 11595 | |
cba3345c AW |
11596 | VFIO DRIVER |
11597 | M: Alex Williamson <alex.williamson@redhat.com> | |
11598 | L: kvm@vger.kernel.org | |
9f273c24 | 11599 | T: git git://github.com/awilliam/linux-vfio.git |
cba3345c AW |
11600 | S: Maintained |
11601 | F: Documentation/vfio.txt | |
11602 | F: drivers/vfio/ | |
11603 | F: include/linux/vfio.h | |
c117ab84 | 11604 | F: include/uapi/linux/vfio.h |
cba3345c | 11605 | |
a714ea5f AW |
11606 | VFIO PLATFORM DRIVER |
11607 | M: Baptiste Reynal <b.reynal@virtualopensystems.com> | |
11608 | L: kvm@vger.kernel.org | |
11609 | S: Maintained | |
11610 | F: drivers/vfio/platform/ | |
11611 | ||
9e6f3438 PO |
11612 | VIDEOBUF2 FRAMEWORK |
11613 | M: Pawel Osciak <pawel@osciak.com> | |
11614 | M: Marek Szyprowski <m.szyprowski@samsung.com> | |
e76e4706 | 11615 | M: Kyungmin Park <kyungmin.park@samsung.com> |
9e6f3438 PO |
11616 | L: linux-media@vger.kernel.org |
11617 | S: Maintained | |
90d72ac6 | 11618 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
11619 | F: include/media/videobuf2-* |
11620 | ||
5523662e SCP |
11621 | VIRTUAL SERIO DEVICE DRIVER |
11622 | M: Stephen Chandler Paul <thatslyude@gmail.com> | |
11623 | S: Maintained | |
11624 | F: drivers/input/serio/userio.c | |
11625 | F: include/uapi/linux/userio.h | |
11626 | ||
9a82446b AS |
11627 | VIRTIO CONSOLE DRIVER |
11628 | M: Amit Shah <amit.shah@redhat.com> | |
11629 | L: virtualization@lists.linux-foundation.org | |
11630 | S: Maintained | |
11631 | F: drivers/char/virtio_console.c | |
11632 | F: include/linux/virtio_console.h | |
c117ab84 | 11633 | F: include/uapi/linux/virtio_console.h |
9a82446b | 11634 | |
2426ec8f | 11635 | VIRTIO CORE, NET AND BLOCK DRIVERS |
2426ec8f MT |
11636 | M: "Michael S. Tsirkin" <mst@redhat.com> |
11637 | L: virtualization@lists.linux-foundation.org | |
11638 | S: Maintained | |
11639 | F: drivers/virtio/ | |
c893c8d7 | 11640 | F: tools/virtio/ |
2426ec8f MT |
11641 | F: drivers/net/virtio_net.c |
11642 | F: drivers/block/virtio_blk.c | |
11643 | F: include/linux/virtio_*.h | |
916cdabc | 11644 | F: include/uapi/linux/virtio_*.h |
2426ec8f | 11645 | |
f2dbda3b CH |
11646 | VIRTIO DRIVERS FOR S390 |
11647 | M: Christian Borntraeger <borntraeger@de.ibm.com> | |
11648 | M: Cornelia Huck <cornelia.huck@de.ibm.com> | |
11649 | L: linux-s390@vger.kernel.org | |
11650 | L: virtualization@lists.linux-foundation.org | |
11651 | L: kvm@vger.kernel.org | |
11652 | S: Supported | |
1b568d93 | 11653 | F: drivers/s390/virtio/ |
f2dbda3b | 11654 | |
4ad6ee91 GH |
11655 | VIRTIO GPU DRIVER |
11656 | M: David Airlie <airlied@linux.ie> | |
11657 | M: Gerd Hoffmann <kraxel@redhat.com> | |
11658 | L: dri-devel@lists.freedesktop.org | |
11659 | L: virtualization@lists.linux-foundation.org | |
11660 | S: Maintained | |
11661 | F: drivers/gpu/drm/virtio/ | |
11662 | F: include/uapi/linux/virtio_gpu.h | |
11663 | ||
3a4d5c94 MT |
11664 | VIRTIO HOST (VHOST) |
11665 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
11666 | L: kvm@vger.kernel.org | |
c996d8b9 | 11667 | L: virtualization@lists.linux-foundation.org |
3a4d5c94 | 11668 | L: netdev@vger.kernel.org |
9f273c24 | 11669 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git |
3a4d5c94 MT |
11670 | S: Maintained |
11671 | F: drivers/vhost/ | |
c117ab84 | 11672 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 11673 | |
271c8651 GH |
11674 | VIRTIO INPUT DRIVER |
11675 | M: Gerd Hoffmann <kraxel@redhat.com> | |
11676 | S: Maintained | |
11677 | F: drivers/virtio/virtio_input.c | |
11678 | F: include/uapi/linux/virtio_input.h | |
11679 | ||
1da177e4 | 11680 | VIA RHINE NETWORK DRIVER |
210347e1 | 11681 | S: Orphan |
f2148a47 | 11682 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 11683 | |
f0bf7f61 | 11684 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 11685 | M: Bruce Chang <brucechang@via.com.tw> |
8b58be88 | 11686 | M: Harald Welte <HaraldWelte@viatech.com> |
f0bf7f61 HW |
11687 | S: Maintained |
11688 | F: drivers/mmc/host/via-sdmmc.c | |
11689 | ||
69e4a7c2 | 11690 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 11691 | M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> |
c69f677c | 11692 | L: linux-fbdev@vger.kernel.org |
69e4a7c2 | 11693 | S: Maintained |
c7babebd FTS |
11694 | F: include/linux/via-core.h |
11695 | F: include/linux/via-gpio.h | |
11696 | F: include/linux/via_i2c.h | |
8a61f013 | 11697 | F: drivers/video/fbdev/via/ |
69e4a7c2 | 11698 | |
01f20734 | 11699 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 11700 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 FR |
11701 | L: netdev@vger.kernel.org |
11702 | S: Maintained | |
f2148a47 | 11703 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 11704 | |
f73f8173 AW |
11705 | VIRT LIB |
11706 | M: Alex Williamson <alex.williamson@redhat.com> | |
11707 | M: Paolo Bonzini <pbonzini@redhat.com> | |
11708 | L: kvm@vger.kernel.org | |
11709 | S: Supported | |
11710 | F: virt/lib/ | |
11711 | ||
77911fd2 | 11712 | VIVID VIRTUAL VIDEO DRIVER |
0b7bc1fa HV |
11713 | M: Hans Verkuil <hverkuil@xs4all.nl> |
11714 | L: linux-media@vger.kernel.org | |
11715 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11716 | W: https://linuxtv.org |
0b7bc1fa | 11717 | S: Maintained |
77911fd2 | 11718 | F: drivers/media/platform/vivid/* |
0b7bc1fa | 11719 | |
be7f8273 | 11720 | VLAN (802.1Q) |
8b58be88 | 11721 | M: Patrick McHardy <kaber@trash.net> |
be7f8273 PM |
11722 | L: netdev@vger.kernel.org |
11723 | S: Maintained | |
679655da JP |
11724 | F: drivers/net/macvlan.c |
11725 | F: include/linux/if_*vlan.h | |
11726 | F: net/8021q/ | |
be7f8273 | 11727 | |
55e331cf | 11728 | VLYNQ BUS |
8b58be88 | 11729 | M: Florian Fainelli <florian@openwrt.org> |
8578d7af | 11730 | L: openwrt-devel@lists.openwrt.org (subscribers-only) |
55e331cf FF |
11731 | S: Maintained |
11732 | F: drivers/vlynq/vlynq.c | |
11733 | F: include/linux/vlynq.h | |
11734 | ||
390beae4 | 11735 | VME SUBSYSTEM |
74c600e3 | 11736 | M: Martyn Welch <martyn@welchs.me.uk> |
1bd289d1 | 11737 | M: Manohar Vanga <manohar.vanga@gmail.com> |
390beae4 MW |
11738 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
11739 | L: devel@driverdev.osuosl.org | |
11740 | S: Maintained | |
11741 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
11742 | F: Documentation/vme_api.txt | |
11743 | F: drivers/staging/vme/ | |
11744 | F: drivers/vme/ | |
11745 | F: include/linux/vme* | |
11746 | ||
4488e09b AK |
11747 | VMWARE HYPERVISOR INTERFACE |
11748 | M: Alok Kataria <akataria@vmware.com> | |
11749 | L: virtualization@lists.linux-foundation.org | |
11750 | S: Supported | |
11751 | F: arch/x86/kernel/cpu/vmware.c | |
11752 | ||
73b35d07 DT |
11753 | VMWARE BALLOON DRIVER |
11754 | M: Xavier Deguillard <xdeguillard@vmware.com> | |
11755 | M: Philip Moltmann <moltmann@vmware.com> | |
11756 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
11757 | L: linux-kernel@vger.kernel.org | |
11758 | S: Maintained | |
11759 | F: drivers/misc/vmw_balloon.c | |
11760 | ||
8b8be51b TH |
11761 | VMWARE VMMOUSE SUBDRIVER |
11762 | M: "VMware Graphics" <linux-graphics-maintainer@vmware.com> | |
11763 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
11764 | L: linux-input@vger.kernel.org | |
11765 | S: Maintained | |
11766 | F: drivers/input/mouse/vmmouse.c | |
11767 | F: drivers/input/mouse/vmmouse.h | |
11768 | ||
d1a890fa | 11769 | VMWARE VMXNET3 ETHERNET DRIVER |
04e1b734 | 11770 | M: Shrikrishna Khare <skhare@vmware.com> |
65c8bb5b JP |
11771 | M: "VMware, Inc." <pv-drivers@vmware.com> |
11772 | L: netdev@vger.kernel.org | |
11773 | S: Maintained | |
11774 | F: drivers/net/vmxnet3/ | |
d1a890fa | 11775 | |
851b1642 | 11776 | VMware PVSCSI driver |
f2d7e40e | 11777 | M: Arvind Kumar <arvindkumar@vmware.com> |
851b1642 AK |
11778 | M: VMware PV-Drivers <pv-drivers@vmware.com> |
11779 | L: linux-scsi@vger.kernel.org | |
11780 | S: Maintained | |
11781 | F: drivers/scsi/vmw_pvscsi.c | |
11782 | F: drivers/scsi/vmw_pvscsi.h | |
11783 | ||
e53e86c7 | 11784 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 11785 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 11786 | M: Mark Brown <broonie@kernel.org> |
5cdeb2c8 | 11787 | L: linux-kernel@vger.kernel.org |
1dd68f01 | 11788 | W: http://www.slimlogic.co.uk/?p=48 |
6febb5ab | 11789 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
e53e86c7 | 11790 | S: Supported |
679655da JP |
11791 | F: drivers/regulator/ |
11792 | F: include/linux/regulator/ | |
e53e86c7 | 11793 | |
081958eb DA |
11794 | VRF |
11795 | M: David Ahern <dsa@cumulusnetworks.com> | |
11796 | M: Shrijeet Mukherjee <shm@cumulusnetworks.com> | |
11797 | L: netdev@vger.kernel.org | |
11798 | S: Maintained | |
11799 | F: drivers/net/vrf.c | |
562d897d | 11800 | F: Documentation/networking/vrf.txt |
081958eb | 11801 | |
ab41319e | 11802 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 11803 | M: Juerg Haefliger <juergh@gmail.com> |
ab41319e JH |
11804 | L: lm-sensors@lm-sensors.org |
11805 | S: Maintained | |
679655da JP |
11806 | F: Documentation/hwmon/vt1211 |
11807 | F: drivers/hwmon/vt1211.c | |
ab41319e | 11808 | |
1de9e371 | 11809 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 11810 | M: Roger Lucas <vt8231@hiddenengine.co.uk> |
1de9e371 RL |
11811 | L: lm-sensors@lm-sensors.org |
11812 | S: Maintained | |
679655da | 11813 | F: drivers/hwmon/vt8231.c |
1de9e371 | 11814 | |
88095e7b TO |
11815 | VUB300 USB to SDIO/SD/MMC bridge chip |
11816 | M: Tony Olech <tony.olech@elandigitalsystems.com> | |
11817 | L: linux-mmc@vger.kernel.org | |
11818 | L: linux-usb@vger.kernel.org | |
11819 | S: Supported | |
11820 | F: drivers/mmc/host/vub300.c | |
11821 | ||
1da177e4 | 11822 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 11823 | M: Evgeniy Polyakov <zbr@ioremap.net> |
1da177e4 | 11824 | S: Maintained |
679655da JP |
11825 | F: Documentation/w1/ |
11826 | F: drivers/w1/ | |
1da177e4 | 11827 | |
13927079 | 11828 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 11829 | M: Marc Hulsman <m.hulsman@tudelft.nl> |
13927079 | 11830 | L: lm-sensors@lm-sensors.org |
25845c22 | 11831 | S: Maintained |
679655da JP |
11832 | F: Documentation/hwmon/w83791d |
11833 | F: drivers/hwmon/w83791d.c | |
13927079 | 11834 | |
61db011d | 11835 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 11836 | M: Rudolf Marek <r.marek@assembler.cz> |
61db011d RM |
11837 | L: lm-sensors@lm-sensors.org |
11838 | S: Maintained | |
679655da JP |
11839 | F: Documentation/hwmon/w83793 |
11840 | F: drivers/hwmon/w83793.c | |
61db011d | 11841 | |
e3760b43 | 11842 | W83795 HARDWARE MONITORING DRIVER |
d8130624 | 11843 | M: Jean Delvare <jdelvare@suse.com> |
e3760b43 JD |
11844 | L: lm-sensors@lm-sensors.org |
11845 | S: Maintained | |
11846 | F: drivers/hwmon/w83795.c | |
11847 | ||
1da177e4 | 11848 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 11849 | M: Pierre Ossman <pierre@ossman.eu> |
1da177e4 | 11850 | S: Maintained |
679655da | 11851 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 11852 | |
b4e05923 HG |
11853 | WACOM PROTOCOL 4 SERIAL TABLETS |
11854 | M: Julian Squires <julian@cipht.net> | |
11855 | M: Hans de Goede <hdegoede@redhat.com> | |
11856 | L: linux-input@vger.kernel.org | |
11857 | S: Maintained | |
11858 | F: drivers/input/tablet/wacom_serial4.c | |
11859 | ||
3527761c | 11860 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 11861 | M: Wim Van Sebroeck <wim@iguana.be> |
1f32f83e | 11862 | R: Guenter Roeck <linux@roeck-us.net> |
230a5cef WVS |
11863 | L: linux-watchdog@vger.kernel.org |
11864 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 11865 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 11866 | S: Maintained |
679655da JP |
11867 | F: Documentation/watchdog/ |
11868 | F: drivers/watchdog/ | |
11869 | F: include/linux/watchdog.h | |
c117ab84 | 11870 | F: include/uapi/linux/watchdog.h |
3527761c | 11871 | |
1da177e4 | 11872 | WD7000 SCSI DRIVER |
8b58be88 | 11873 | M: Miroslav Zagorac <zaga@fly.cc.fer.hr> |
1da177e4 LT |
11874 | L: linux-scsi@vger.kernel.org |
11875 | S: Maintained | |
679655da | 11876 | F: drivers/scsi/wd7000.c |
1da177e4 | 11877 | |
b22e00f3 DH |
11878 | WIIMOTE HID DRIVER |
11879 | M: David Herrmann <dh.herrmann@googlemail.com> | |
11880 | L: linux-input@vger.kernel.org | |
11881 | S: Maintained | |
11882 | F: drivers/hid/hid-wiimote* | |
11883 | ||
e258b80e | 11884 | WINBOND CIR DRIVER |
364e9e18 | 11885 | M: David Härdeman <david@hardeman.nu> |
e258b80e | 11886 | S: Maintained |
116ab806 | 11887 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 11888 | |
8a70da82 | 11889 | WIMAX STACK |
8b58be88 | 11890 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 11891 | M: linux-wimax@intel.com |
49e7d9df | 11892 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
11893 | S: Supported |
11894 | W: http://linuxwimax.org | |
315987dc | 11895 | F: Documentation/wimax/README.wimax |
315987dc JP |
11896 | F: include/linux/wimax/debug.h |
11897 | F: include/net/wimax.h | |
c117ab84 | 11898 | F: include/uapi/linux/wimax.h |
315987dc | 11899 | F: net/wimax/ |
8a70da82 | 11900 | |
5fc14680 | 11901 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 11902 | M: Miloslav Trmac <mitr@volny.cz> |
5fc14680 | 11903 | S: Maintained |
679655da | 11904 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 11905 | |
1da177e4 | 11906 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 11907 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
724c6b35 | 11908 | L: linux-wireless@vger.kernel.org |
926554c4 | 11909 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 11910 | S: Maintained |
679655da | 11911 | F: drivers/net/wireless/wl3501* |
1da177e4 | 11912 | |
055bcbcb | 11913 | WOLFSON MICROELECTRONICS DRIVERS |
fef95164 | 11914 | L: patches@opensource.wolfsonmicro.com |
f0e03dbd RF |
11915 | T: git https://github.com/CirrusLogic/linux-drivers.git |
11916 | W: https://github.com/CirrusLogic/linux-drivers/wiki | |
b75ea16a | 11917 | S: Supported |
3768f0b1 | 11918 | F: Documentation/hwmon/wm83?? |
f494993f CK |
11919 | F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt |
11920 | F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt | |
11921 | F: Documentation/devicetree/bindings/mfd/arizona.txt | |
af1c5386 | 11922 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 11923 | F: drivers/clk/clk-wm83*.c |
9c309598 | 11924 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 11925 | F: drivers/leds/leds-wm83*.c |
25b273ba | 11926 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 11927 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 11928 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
11929 | F: drivers/input/misc/wm831x-on.c |
11930 | F: drivers/input/touchscreen/wm831x-ts.c | |
11931 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
11932 | F: drivers/mfd/arizona* |
11933 | F: drivers/mfd/wm*.c | |
12ebc137 | 11934 | F: drivers/mfd/cs47l24* |
b75ea16a MB |
11935 | F: drivers/power/wm83*.c |
11936 | F: drivers/rtc/rtc-wm83*.c | |
11937 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 11938 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 11939 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 11940 | F: include/linux/mfd/arizona/ |
3860e6c4 | 11941 | F: include/linux/mfd/wm831x/ |
b75ea16a | 11942 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 11943 | F: include/linux/mfd/wm8400* |
59ec6da2 | 11944 | F: include/linux/wm97xx.h |
055bcbcb | 11945 | F: include/sound/wm????.h |
9c309598 | 11946 | F: sound/soc/codecs/arizona.? |
055bcbcb | 11947 | F: sound/soc/codecs/wm* |
12ebc137 | 11948 | F: sound/soc/codecs/cs47l24* |
b75ea16a | 11949 | |
3e6cd7a4 TH |
11950 | WORKQUEUE |
11951 | M: Tejun Heo <tj@kernel.org> | |
badb7f5e | 11952 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
3e6cd7a4 TH |
11953 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
11954 | S: Maintained | |
11955 | F: include/linux/workqueue.h | |
11956 | F: kernel/workqueue.c | |
11957 | F: Documentation/workqueue.txt | |
11958 | ||
1da177e4 | 11959 | X.25 NETWORK LAYER |
8bf28059 | 11960 | M: Andrew Hendry <andrew.hendry@gmail.com> |
1da177e4 | 11961 | L: linux-x25@vger.kernel.org |
8bf28059 | 11962 | S: Odd Fixes |
679655da JP |
11963 | F: Documentation/networking/x25* |
11964 | F: include/net/x25* | |
11965 | F: net/x25/ | |
1da177e4 | 11966 | |
e2d1d6c0 | 11967 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
11968 | M: Thomas Gleixner <tglx@linutronix.de> |
11969 | M: Ingo Molnar <mingo@redhat.com> | |
11970 | M: "H. Peter Anvin" <hpa@zytor.com> | |
bcde563c | 11971 | M: x86@kernel.org |
981c3a4f | 11972 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 11973 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 11974 | S: Maintained |
679655da JP |
11975 | F: Documentation/x86/ |
11976 | F: arch/x86/ | |
e2d1d6c0 | 11977 | |
d0944853 | 11978 | X86 PLATFORM DRIVERS |
e181ba15 | 11979 | M: Darren Hart <dvhart@infradead.org> |
d0944853 | 11980 | L: platform-driver-x86@vger.kernel.org |
e181ba15 | 11981 | T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git |
d0944853 | 11982 | S: Maintained |
14430813 | 11983 | F: drivers/platform/x86/ |
3a4bceef | 11984 | F: drivers/platform/olpc/ |
d0944853 | 11985 | |
c1f5c54b IM |
11986 | X86 MCE INFRASTRUCTURE |
11987 | M: Tony Luck <tony.luck@intel.com> | |
487ba8e8 | 11988 | M: Borislav Petkov <bp@alien8.de> |
c1f5c54b IM |
11989 | L: linux-edac@vger.kernel.org |
11990 | S: Maintained | |
11991 | F: arch/x86/kernel/cpu/mcheck/* | |
11992 | ||
79ebdc95 BP |
11993 | X86 MICROCODE UPDATE SUPPORT |
11994 | M: Borislav Petkov <bp@alien8.de> | |
11995 | S: Maintained | |
11996 | F: arch/x86/kernel/cpu/microcode/* | |
11997 | ||
f0905c5a AL |
11998 | X86 VDSO |
11999 | M: Andy Lutomirski <luto@amacapital.net> | |
12000 | L: linux-kernel@vger.kernel.org | |
12001 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso | |
12002 | S: Maintained | |
d603c8e1 | 12003 | F: arch/x86/entry/vdso/ |
f0905c5a | 12004 | |
d6fad502 | 12005 | XC2028/3028 TUNER DRIVER |
009a5410 | 12006 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
d6fad502 | 12007 | L: linux-media@vger.kernel.org |
a825eaec | 12008 | W: https://linuxtv.org |
d6fad502 MCC |
12009 | T: git git://linuxtv.org/media_tree.git |
12010 | S: Maintained | |
12011 | F: drivers/media/tuners/tuner-xc2028.* | |
12012 | ||
c4468085 | 12013 | XEN HYPERVISOR INTERFACE |
c4468085 | 12014 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
3eeef8f7 KRW |
12015 | M: Boris Ostrovsky <boris.ostrovsky@oracle.com> |
12016 | M: David Vrabel <david.vrabel@citrix.com> | |
11dbb52b | 12017 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
ea70ba3a | 12018 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git |
c4468085 IC |
12019 | S: Supported |
12020 | F: arch/x86/xen/ | |
12021 | F: drivers/*/xen-*front.c | |
12022 | F: drivers/xen/ | |
12023 | F: arch/x86/include/asm/xen/ | |
12024 | F: include/xen/ | |
c117ab84 | 12025 | F: include/uapi/xen/ |
c4468085 | 12026 | |
77bfb479 SS |
12027 | XEN HYPERVISOR ARM |
12028 | M: Stefano Stabellini <stefano.stabellini@eu.citrix.com> | |
11dbb52b | 12029 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
77bfb479 SS |
12030 | S: Supported |
12031 | F: arch/arm/xen/ | |
12032 | F: arch/arm/include/asm/xen/ | |
12033 | ||
b475e83f SS |
12034 | XEN HYPERVISOR ARM64 |
12035 | M: Stefano Stabellini <stefano.stabellini@eu.citrix.com> | |
11dbb52b | 12036 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
b475e83f SS |
12037 | S: Supported |
12038 | F: arch/arm64/xen/ | |
12039 | F: arch/arm64/include/asm/xen/ | |
12040 | ||
9b57e1a7 | 12041 | XEN NETWORK BACKEND DRIVER |
8386040b | 12042 | M: Wei Liu <wei.liu2@citrix.com> |
11dbb52b | 12043 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
9b57e1a7 IC |
12044 | L: netdev@vger.kernel.org |
12045 | S: Supported | |
12046 | F: drivers/net/xen-netback/* | |
12047 | ||
c5f8e29d KRW |
12048 | XEN PCI SUBSYSTEM |
12049 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 12050 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
12051 | S: Supported |
12052 | F: arch/x86/pci/*xen* | |
12053 | F: drivers/pci/*xen* | |
12054 | ||
a2c5ae65 KRW |
12055 | XEN BLOCK SUBSYSTEM |
12056 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
bcadb699 | 12057 | M: Roger Pau Monné <roger.pau@citrix.com> |
a2c5ae65 KRW |
12058 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
12059 | S: Supported | |
12060 | F: drivers/block/xen-blkback/* | |
12061 | F: drivers/block/xen* | |
12062 | ||
15d03609 JG |
12063 | XEN PVSCSI DRIVERS |
12064 | M: Juergen Gross <jgross@suse.com> | |
12065 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) | |
12066 | L: linux-scsi@vger.kernel.org | |
12067 | S: Supported | |
12068 | F: drivers/scsi/xen-scsifront.c | |
12069 | F: drivers/xen/xen-scsiback.c | |
12070 | F: include/xen/interface/io/vscsiif.h | |
12071 | ||
c5f8e29d KRW |
12072 | XEN SWIOTLB SUBSYSTEM |
12073 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 12074 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
12075 | S: Supported |
12076 | F: arch/x86/xen/*swiotlb* | |
12077 | F: drivers/xen/*swiotlb* | |
12078 | ||
1da177e4 LT |
12079 | XFS FILESYSTEM |
12080 | P: Silicon Graphics Inc | |
809625ca | 12081 | M: Dave Chinner <david@fromorbit.com> |
18caa67a | 12082 | M: xfs@oss.sgi.com |
d7ede1aa | 12083 | L: xfs@oss.sgi.com |
1da177e4 | 12084 | W: http://oss.sgi.com/projects/xfs |
9f273c24 | 12085 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git |
1da177e4 | 12086 | S: Supported |
679655da JP |
12087 | F: Documentation/filesystems/xfs.txt |
12088 | F: fs/xfs/ | |
1da177e4 | 12089 | |
8a3b7a25 | 12090 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
12091 | M: Anirudha Sarangi <anirudh@xilinx.com> |
12092 | M: John Linn <John.Linn@xilinx.com> | |
8a3b7a25 | 12093 | S: Maintained |
12094 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
12095 | ||
238b8721 | 12096 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 12097 | M: Peter Korsgaard <jacmet@sunsite.dk> |
238b8721 PK |
12098 | L: linux-serial@vger.kernel.org |
12099 | S: Maintained | |
df621252 | 12100 | F: drivers/tty/serial/uartlite.c |
238b8721 | 12101 | |
df330515 LP |
12102 | XILINX VIDEO IP CORES |
12103 | M: Hyun Kwon <hyun.kwon@xilinx.com> | |
12104 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
12105 | L: linux-media@vger.kernel.org | |
12106 | T: git git://linuxtv.org/media_tree.git | |
12107 | S: Supported | |
12108 | F: Documentation/devicetree/bindings/media/xilinx/ | |
12109 | F: drivers/media/platform/xilinx/ | |
a5562f65 | 12110 | F: include/uapi/linux/xilinx-v4l2-controls.h |
df330515 | 12111 | |
74316949 EB |
12112 | XILLYBUS DRIVER |
12113 | M: Eli Billauer <eli.billauer@gmail.com> | |
12114 | L: linux-kernel@vger.kernel.org | |
12115 | S: Supported | |
12116 | F: drivers/char/xillybus/ | |
12117 | ||
f620e4b8 MF |
12118 | XTENSA XTFPGA PLATFORM SUPPORT |
12119 | M: Max Filippov <jcmvbkbc@gmail.com> | |
12120 | L: linux-xtensa@linux-xtensa.org | |
12121 | S: Maintained | |
12122 | F: drivers/spi/spi-xtensa-xtfpga.c | |
57b7068d | 12123 | F: sound/soc/xtensa/xtfpga-i2s.c |
f620e4b8 | 12124 | |
1da177e4 | 12125 | YAM DRIVER FOR AX.25 |
8b58be88 | 12126 | M: Jean-Paul Roubelat <jpr@f6fbb.org> |
1da177e4 LT |
12127 | L: linux-hams@vger.kernel.org |
12128 | S: Maintained | |
679655da JP |
12129 | F: drivers/net/hamradio/yam* |
12130 | F: include/linux/yam.h | |
1da177e4 | 12131 | |
af64a5eb | 12132 | YEALINK PHONE DRIVER |
8b58be88 | 12133 | M: Henk Vergonet <Henk.Vergonet@gmail.com> |
af64a5eb HV |
12134 | L: usbb2k-api-dev@nongnu.org |
12135 | S: Maintained | |
679655da JP |
12136 | F: Documentation/input/yealink.txt |
12137 | F: drivers/input/misc/yealink.* | |
af64a5eb | 12138 | |
1da177e4 | 12139 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 12140 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
12141 | W: http://yaina.de/jreuter/ |
12142 | W: http://www.qsl.net/dl1bke/ | |
12143 | L: linux-hams@vger.kernel.org | |
12144 | S: Maintained | |
679655da JP |
12145 | F: Documentation/networking/z8530drv.txt |
12146 | F: drivers/net/hamradio/*scc.c | |
12147 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 12148 | |
0cf31ec1 | 12149 | ZBUD COMPRESSED PAGE ALLOCATOR |
0bb181c7 | 12150 | M: Seth Jennings <sjenning@redhat.com> |
0cf31ec1 SJ |
12151 | L: linux-mm@kvack.org |
12152 | S: Maintained | |
12153 | F: mm/zbud.c | |
12154 | F: include/linux/zbud.h | |
12155 | ||
7c0c3afb | 12156 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
12157 | M: Daniel Drake <dsd@gentoo.org> |
12158 | M: Ulrich Kunitz <kune@deine-taler.de> | |
7c0c3afb | 12159 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 12160 | L: linux-wireless@vger.kernel.org |
7c0c3afb DD |
12161 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
12162 | S: Maintained | |
6948300c | 12163 | F: drivers/net/wireless/zydas/zd1211rw/ |
7c0c3afb | 12164 | |
20263029 DS |
12165 | ZPOOL COMPRESSED PAGE STORAGE API |
12166 | M: Dan Streetman <ddstreet@ieee.org> | |
12167 | L: linux-mm@kvack.org | |
12168 | S: Maintained | |
12169 | F: mm/zpool.c | |
12170 | F: include/linux/zpool.h | |
12171 | ||
1da177e4 | 12172 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 12173 | L: mjpeg-users@lists.sourceforge.net |
f63145e2 | 12174 | L: linux-media@vger.kernel.org |
1da177e4 | 12175 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
a825eaec | 12176 | T: hg https://linuxtv.org/hg/v4l-dvb |
f63145e2 | 12177 | S: Odd Fixes |
90d72ac6 | 12178 | F: drivers/media/pci/zoran/ |
1da177e4 | 12179 | |
6920f2cc MK |
12180 | ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER |
12181 | M: Minchan Kim <minchan@kernel.org> | |
12182 | M: Nitin Gupta <ngupta@vflare.org> | |
74f3037c | 12183 | R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
6920f2cc MK |
12184 | L: linux-kernel@vger.kernel.org |
12185 | S: Maintained | |
12186 | F: drivers/block/zram/ | |
12187 | F: Documentation/blockdev/zram.txt | |
12188 | ||
8b4a4080 | 12189 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 12190 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
8b4a4080 | 12191 | S: Maintained |
df621252 | 12192 | F: drivers/tty/serial/zs.* |
8b4a4080 | 12193 | |
eae70d06 MK |
12194 | ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR |
12195 | M: Minchan Kim <minchan@kernel.org> | |
12196 | M: Nitin Gupta <ngupta@vflare.org> | |
41192a2d | 12197 | R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
eae70d06 MK |
12198 | L: linux-mm@kvack.org |
12199 | S: Maintained | |
12200 | F: mm/zsmalloc.c | |
12201 | F: include/linux/zsmalloc.h | |
d02be50d | 12202 | F: Documentation/vm/zsmalloc.txt |
eae70d06 | 12203 | |
0cf31ec1 | 12204 | ZSWAP COMPRESSED SWAP CACHING |
0bb181c7 | 12205 | M: Seth Jennings <sjenning@redhat.com> |
0cf31ec1 SJ |
12206 | L: linux-mm@kvack.org |
12207 | S: Maintained | |
12208 | F: mm/zswap.c | |
12209 | ||
1da177e4 | 12210 | THE REST |
8b58be88 | 12211 | M: Linus Torvalds <torvalds@linux-foundation.org> |
34d03cc1 | 12212 | L: linux-kernel@vger.kernel.org |
8a6e2535 | 12213 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 12214 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 12215 | S: Buried alive in reporters |
34d03cc1 JP |
12216 | F: * |
12217 | F: */ |