]>
Commit | Line | Data |
---|---|---|
1da177e4 | 1 | |
cc8f9b99 | 2 | |
1da177e4 LT |
3 | List of maintainers and how to submit kernel changes |
4 | ||
5 | Please try to follow the guidelines below. This will make things | |
6 | easier on the maintainers. Not all of these guidelines matter for every | |
7 | trivial patch so apply some common sense. | |
8 | ||
9 | 1. Always _test_ your changes, however small, on at least 4 or | |
10 | 5 people, preferably many more. | |
11 | ||
12 | 2. Try to release a few ALPHA test versions to the net. Announce | |
13 | them onto the kernel channel and await results. This is especially | |
14 | important for device drivers, because often that's the only way | |
15 | you will find things like the fact version 3 firmware needs | |
16 | a magic fix you didn't know about, or some clown changed the | |
17 | chips on a board and not its name. (Don't laugh! Look at the | |
18 | SMC etherpower for that.) | |
19 | ||
20 | 3. Make sure your changes compile correctly in multiple | |
21 | configurations. In particular check that changes work both as a | |
22 | module and built into the kernel. | |
23 | ||
24 | 4. When you are happy with a change make it generally available for | |
25 | testing and await feedback. | |
26 | ||
27 | 5. Make a patch available to the relevant maintainer in the list. Use | |
28 | 'diff -u' to make the patch easy to merge. Be prepared to get your | |
29 | changes sent back with seemingly silly requests about formatting | |
30 | and variable names. These aren't as silly as they seem. One | |
31 | job the maintainers (and especially Linus) do is to keep things | |
32 | looking the same. Sometimes this means that the clever hack in | |
33 | your driver to get around a problem actually needs to become a | |
0a920b5b AW |
34 | generalized kernel feature ready for next time. |
35 | ||
36 | PLEASE check your patch with the automated style checker | |
6f9e2456 | 37 | (scripts/checkpatch.pl) to catch trivial style violations. |
0a920b5b | 38 | See Documentation/CodingStyle for guidance here. |
1da177e4 | 39 | |
f70f873b JP |
40 | PLEASE CC: the maintainers and mailing lists that are generated |
41 | by scripts/get_maintainer.pl. The results returned by the | |
42 | script will be best if you have git installed and are making | |
43 | your changes in a branch derived from Linus' latest git tree. | |
44 | See Documentation/SubmittingPatches for details. | |
45 | ||
1da177e4 LT |
46 | PLEASE try to include any credit lines you want added with the |
47 | patch. It avoids people being missed off by mistake and makes | |
48 | it easier to know who wants adding and who doesn't. | |
49 | ||
50 | PLEASE document known bugs. If it doesn't work for everything | |
51 | or does something very odd once a month document it. | |
52 | ||
c9ee133b | 53 | PLEASE remember that submissions must be made under the terms |
08602d74 SH |
54 | of the Linux Foundation certificate of contribution and should |
55 | include a Signed-off-by: line. The current version of this | |
56 | "Developer's Certificate of Origin" (DCO) is listed in the file | |
4500371e | 57 | Documentation/SubmittingPatches. |
c9ee133b | 58 | |
1da177e4 LT |
59 | 6. Make sure you have the right to send any changes you make. If you |
60 | do changes at work you may find your employer owns the patch | |
61 | not you. | |
62 | ||
c9ee133b AC |
63 | 7. When sending security related changes or reports to a maintainer |
64 | please Cc: security@kernel.org, especially if the maintainer | |
65 | does not respond. | |
66 | ||
67 | 8. Happy hacking. | |
1da177e4 | 68 | |
c7c4fb18 JP |
69 | Descriptions of section entries: |
70 | ||
71 | P: Person (obsolete) | |
72 | M: Mail patches to: FullName <address@domain> | |
eafbaac3 PM |
73 | R: Designated reviewer: FullName <address@domain> |
74 | These reviewers should be CCed on patches. | |
c7c4fb18 JP |
75 | L: Mailing list that is relevant to this area |
76 | W: Web-page with status/info | |
8a6e2535 | 77 | Q: Patchwork web based patch tracking system site |
cea8321c JP |
78 | T: SCM tree type and location. |
79 | Type is one of: git, hg, quilt, stgit, topgit | |
c7c4fb18 JP |
80 | S: Status, one of the following: |
81 | Supported: Someone is actually paid to look after this. | |
82 | Maintained: Someone actually looks after it. | |
83 | Odd Fixes: It has a maintainer but they don't have time to do | |
84 | much other than throw the odd patch in. See below.. | |
85 | Orphan: No current maintainer [but maybe you could take the | |
86 | role as you write your new code]. | |
87 | Obsolete: Old code. Something tagged obsolete generally means | |
88 | it has been replaced by a better system and you | |
89 | should be using that. | |
90 | F: Files and directories with wildcard patterns. | |
91 | A trailing slash includes all files and subdirectory files. | |
92 | F: drivers/net/ all files in and below drivers/net | |
93 | F: drivers/net/* all files in drivers/net, but not below | |
94 | F: */net/* all files in "any top level directory"/net | |
95 | One pattern per line. Multiple F: lines acceptable. | |
bbbe96ed SW |
96 | N: Files and directories with regex patterns. |
97 | N: [^a-z]tegra all files whose path contains the word tegra | |
98 | One pattern per line. Multiple N: lines acceptable. | |
6ab88e00 JP |
99 | scripts/get_maintainer.pl has different behavior for files that |
100 | match F: pattern and matches of N: patterns. By default, | |
101 | get_maintainer will not look at git log history when an F: pattern | |
102 | match occurs. When an N: match occurs, git log history is used | |
103 | to also notify the people that have git commit signatures. | |
c7c4fb18 JP |
104 | X: Files and directories that are NOT maintained, same rules as F: |
105 | Files exclusions are tested before file matches. | |
106 | Can be useful for excluding a specific subdirectory, for instance: | |
107 | F: net/ | |
108 | X: net/ipv6/ | |
109 | matches all files in and below net excluding net/ipv6/ | |
110 | K: Keyword perl extended regex pattern to match content in a | |
bbbe96ed | 111 | patch or file. For instance: |
c7c4fb18 | 112 | K: of_get_profile |
bbbe96ed | 113 | matches patches or files that contain "of_get_profile" |
c7c4fb18 | 114 | K: \b(printk|pr_(info|err))\b |
bbbe96ed SW |
115 | matches patches or files that contain one or more of the words |
116 | printk, pr_info or pr_err | |
c7c4fb18 | 117 | One regex pattern per line. Multiple K: lines acceptable. |
1da177e4 LT |
118 | |
119 | Note: For the hard of thinking, this list is meant to remain in alphabetical | |
120 | order. If you could add yourselves to it in alphabetical order that would be | |
121 | so much easier [Ed] | |
122 | ||
c7c4fb18 | 123 | Maintainers List (try to look for most precise areas first) |
1da177e4 | 124 | |
c7c4fb18 | 125 | ----------------------------------- |
679655da | 126 | |
a6d89915 | 127 | 3C59X NETWORK DRIVER |
8b58be88 | 128 | M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de> |
a6d89915 SK |
129 | L: netdev@vger.kernel.org |
130 | S: Maintained | |
679655da | 131 | F: Documentation/networking/vortex.txt |
ca7a8e85 | 132 | F: drivers/net/ethernet/3com/3c59x.c |
a6d89915 | 133 | |
1da177e4 | 134 | 3CR990 NETWORK DRIVER |
8b58be88 | 135 | M: David Dillow <dave@thedillows.org> |
979b6c13 | 136 | L: netdev@vger.kernel.org |
1da177e4 | 137 | S: Maintained |
ca7a8e85 | 138 | F: drivers/net/ethernet/3com/typhoon* |
1da177e4 | 139 | |
c4de0ceb AR |
140 | 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) |
141 | M: Adam Radford <linuxraid@lsi.com> | |
1da177e4 | 142 | L: linux-scsi@vger.kernel.org |
c4de0ceb | 143 | W: http://www.lsi.com |
1da177e4 | 144 | S: Supported |
c4de0ceb | 145 | F: drivers/scsi/3w-* |
1da177e4 LT |
146 | |
147 | 53C700 AND 53C700-66 SCSI DRIVER | |
8b58be88 | 148 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
149 | L: linux-scsi@vger.kernel.org |
150 | S: Maintained | |
679655da | 151 | F: drivers/scsi/53c700* |
1da177e4 | 152 | |
68d96dcf | 153 | 6LOWPAN GENERIC (BTLE/IEEE 802.15.4) |
aff3eaa0 | 154 | M: Alexander Aring <aar@pengutronix.de> |
6970c34c | 155 | M: Jukka Rissanen <jukka.rissanen@linux.intel.com> |
68d96dcf | 156 | L: linux-bluetooth@vger.kernel.org |
ebef9c12 | 157 | L: linux-wpan@vger.kernel.org |
68d96dcf AA |
158 | S: Maintained |
159 | F: net/6lowpan/ | |
6304f8fc | 160 | F: include/net/6lowpan.h |
ea9eb698 | 161 | F: Documentation/networking/6lowpan.txt |
68d96dcf | 162 | |
1da177e4 | 163 | 6PACK NETWORK DRIVER FOR AX.25 |
8b58be88 | 164 | M: Andreas Koensgen <ajk@comnets.uni-bremen.de> |
1da177e4 LT |
165 | L: linux-hams@vger.kernel.org |
166 | S: Maintained | |
679655da | 167 | F: drivers/net/hamradio/6pack.c |
1da177e4 | 168 | |
1da177e4 | 169 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
c8a75b34 | 170 | M: Realtek linux nic maintainers <nic_swsd@realtek.com> |
979b6c13 | 171 | L: netdev@vger.kernel.org |
1da177e4 | 172 | S: Maintained |
a8fe65b8 | 173 | F: drivers/net/ethernet/realtek/r8169.c |
1da177e4 LT |
174 | |
175 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER | |
879a5a00 | 176 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
1da177e4 | 177 | L: linux-serial@vger.kernel.org |
8ee16a1b | 178 | S: Maintained |
08deed1e | 179 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
df621252 | 180 | F: drivers/tty/serial/8250* |
679655da | 181 | F: include/linux/serial_8250.h |
1da177e4 LT |
182 | |
183 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] | |
979b6c13 | 184 | L: netdev@vger.kernel.org |
0cf445ce | 185 | S: Orphan / Obsolete |
644570b8 | 186 | F: drivers/net/ethernet/8390/ |
1da177e4 | 187 | |
67543e50 | 188 | 9P FILE SYSTEM |
8b58be88 JP |
189 | M: Eric Van Hensbergen <ericvh@gmail.com> |
190 | M: Ron Minnich <rminnich@sandia.gov> | |
191 | M: Latchesar Ionkov <lucho@ionkov.net> | |
ce00f85c | 192 | L: v9fs-developer@lists.sourceforge.net |
27a2a5ff | 193 | W: http://swik.net/v9fs |
8a6e2535 | 194 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
eeba444a | 195 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
ce00f85c | 196 | S: Maintained |
679655da JP |
197 | F: Documentation/filesystems/9p.txt |
198 | F: fs/9p/ | |
2315cb14 RL |
199 | F: net/9p/ |
200 | F: include/net/9p/ | |
201 | F: include/uapi/linux/virtio_9p.h | |
202 | F: include/trace/events/9p.h | |
203 | ||
67543e50 | 204 | |
91952bc0 AP |
205 | A8293 MEDIA DRIVER |
206 | M: Antti Palosaari <crope@iki.fi> | |
207 | L: linux-media@vger.kernel.org | |
a825eaec | 208 | W: https://linuxtv.org |
91952bc0 AP |
209 | W: http://palosaari.fi/linux/ |
210 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
211 | T: git git://linuxtv.org/anttip/media_tree.git | |
212 | S: Maintained | |
213 | F: drivers/media/dvb-frontends/a8293* | |
214 | ||
e2d1d6c0 | 215 | AACRAID SCSI RAID DRIVER |
2a81ffdd | 216 | M: Adaptec OEM Raid Solutions <aacraid@microsemi.com> |
e2d1d6c0 RD |
217 | L: linux-scsi@vger.kernel.org |
218 | W: http://www.adaptec.com/ | |
1da177e4 | 219 | S: Supported |
679655da JP |
220 | F: Documentation/scsi/aacraid.txt |
221 | F: drivers/scsi/aacraid/ | |
1da177e4 | 222 | |
ea8f8fc8 JT |
223 | ABI/API |
224 | L: linux-api@vger.kernel.org | |
ea8f8fc8 | 225 | F: include/linux/syscalls.h |
ea8f8fc8 JT |
226 | F: kernel/sys_ni.c |
227 | ||
249e3c85 | 228 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
93d0cc58 | 229 | M: Hans de Goede <hdegoede@redhat.com> |
968ce1b1 | 230 | L: linux-hwmon@vger.kernel.org |
f2b84bbc | 231 | S: Maintained |
679655da | 232 | F: drivers/hwmon/abituguru.c |
f2b84bbc | 233 | |
249e3c85 | 234 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
8b58be88 | 235 | M: Alistair John Strachan <alistair@devzero.co.uk> |
968ce1b1 | 236 | L: linux-hwmon@vger.kernel.org |
249e3c85 | 237 | S: Maintained |
679655da | 238 | F: drivers/hwmon/abituguru3.c |
249e3c85 | 239 | |
1b06d64f WBG |
240 | ACCES 104-DIO-48E GPIO DRIVER |
241 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
242 | L: linux-gpio@vger.kernel.org | |
243 | S: Maintained | |
244 | F: drivers/gpio/gpio-104-dio-48e.c | |
245 | ||
6ddcf9b4 WBG |
246 | ACCES 104-IDI-48 GPIO DRIVER |
247 | M: "William Breathitt Gray" <vilhelm.gray@gmail.com> | |
248 | L: linux-gpio@vger.kernel.org | |
249 | S: Maintained | |
250 | F: drivers/gpio/gpio-104-idi-48.c | |
251 | ||
e2558989 WBG |
252 | ACCES 104-IDIO-16 GPIO DRIVER |
253 | M: "William Breathitt Gray" <vilhelm.gray@gmail.com> | |
254 | L: linux-gpio@vger.kernel.org | |
255 | S: Maintained | |
256 | F: drivers/gpio/gpio-104-idio-16.c | |
257 | ||
1da177e4 | 258 | ACENIC DRIVER |
8b58be88 | 259 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
260 | L: linux-acenic@sunsite.dk |
261 | S: Maintained | |
531c4f89 | 262 | F: drivers/net/ethernet/alteon/acenic* |
1da177e4 | 263 | |
e86435eb | 264 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 265 | M: Peter Feuerer <peter@piie.net> |
d0944853 | 266 | L: platform-driver-x86@vger.kernel.org |
4fc26e36 JP |
267 | W: http://piie.net/?section=acerhdf |
268 | S: Maintained | |
269 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 270 | |
745a5d21 | 271 | ACER WMI LAPTOP EXTRAS |
182ae55c | 272 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 273 | L: platform-driver-x86@vger.kernel.org |
745a5d21 | 274 | S: Maintained |
679655da | 275 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 276 | |
1da177e4 | 277 | ACPI |
9c3646d1 | 278 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 279 | M: Len Brown <lenb@kernel.org> |
6968e50c | 280 | L: linux-acpi@vger.kernel.org |
360818b8 RW |
281 | W: https://01.org/linux-acpi |
282 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
283 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
8b59a454 | 284 | S: Supported |
679655da JP |
285 | F: drivers/acpi/ |
286 | F: drivers/pnp/pnpacpi/ | |
287 | F: include/linux/acpi.h | |
43368e74 | 288 | F: include/acpi/ |
3a75ef0c | 289 | F: Documentation/acpi/ |
89ca78a0 | 290 | F: Documentation/ABI/testing/sysfs-bus-acpi |
0bf54fcd | 291 | F: Documentation/ABI/testing/configfs-acpi |
15fd830d BH |
292 | F: drivers/pci/*acpi* |
293 | F: drivers/pci/*/*acpi* | |
294 | F: drivers/pci/*/*/*acpi* | |
3a75ef0c | 295 | F: tools/power/acpi/ |
8b59a454 | 296 | |
3774929d RW |
297 | ACPI COMPONENT ARCHITECTURE (ACPICA) |
298 | M: Robert Moore <robert.moore@intel.com> | |
299 | M: Lv Zheng <lv.zheng@intel.com> | |
9c3646d1 | 300 | M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> |
3774929d RW |
301 | L: linux-acpi@vger.kernel.org |
302 | L: devel@acpica.org | |
303 | W: https://acpica.org/ | |
304 | W: https://github.com/acpica/acpica/ | |
305 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
306 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
307 | S: Supported | |
308 | F: drivers/acpi/acpica/ | |
309 | F: include/acpi/ | |
2754c447 | 310 | F: tools/power/acpi/ |
3774929d | 311 | |
8b59a454 | 312 | ACPI FAN DRIVER |
8b58be88 | 313 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 314 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 315 | W: https://01.org/linux-acpi |
8b59a454 | 316 | S: Supported |
679655da | 317 | F: drivers/acpi/fan.c |
1da177e4 | 318 | |
daeb2016 LP |
319 | ACPI FOR ARM64 (ACPI/arm64) |
320 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
321 | M: Hanjun Guo <hanjun.guo@linaro.org> | |
322 | M: Sudeep Holla <sudeep.holla@arm.com> | |
323 | L: linux-acpi@vger.kernel.org | |
324 | S: Maintained | |
325 | F: drivers/acpi/arm64 | |
326 | ||
8b59a454 | 327 | ACPI THERMAL DRIVER |
8b58be88 | 328 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 329 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 330 | W: https://01.org/linux-acpi |
8b59a454 | 331 | S: Supported |
679655da | 332 | F: drivers/acpi/*thermal* |
998be20f | 333 | |
359acec8 | 334 | ACPI VIDEO DRIVER |
8b58be88 | 335 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 336 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 337 | W: https://01.org/linux-acpi |
8b59a454 | 338 | S: Supported |
86f98a3a | 339 | F: drivers/acpi/acpi_video.c |
998be20f | 340 | |
bff431e4 | 341 | ACPI WMI DRIVER |
d0944853 | 342 | L: platform-driver-x86@vger.kernel.org |
5b927259 | 343 | S: Orphan |
679655da | 344 | F: drivers/platform/x86/wmi.c |
bff431e4 | 345 | |
2f39d519 | 346 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 347 | M: Thibaut Varene <T-Bone@parisc-linux.org> |
795fb7e7 JD |
348 | W: http://wiki.parisc-linux.org/AD1889 |
349 | L: linux-parisc@vger.kernel.org | |
350 | S: Maintained | |
679655da | 351 | F: sound/pci/ad1889.* |
2f39d519 | 352 | |
527a1a83 MH |
353 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
354 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 355 | W: http://wiki.analog.com/AD5254 |
a4edbc10 | 356 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
357 | S: Supported |
358 | F: drivers/misc/ad525x_dpot.c | |
359 | ||
360 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
361 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 362 | W: http://wiki.analog.com/AD5398 |
a4edbc10 | 363 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
364 | S: Supported |
365 | F: drivers/regulator/ad5398.c | |
366 | ||
367 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
368 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 369 | W: http://wiki.analog.com/AD7142 |
a4edbc10 | 370 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
371 | S: Supported |
372 | F: drivers/input/misc/ad714x.c | |
373 | ||
374 | AD7877 TOUCHSCREEN DRIVER | |
375 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 376 | W: http://wiki.analog.com/AD7877 |
a4edbc10 | 377 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
378 | S: Supported |
379 | F: drivers/input/touchscreen/ad7877.c | |
380 | ||
381 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
382 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 383 | W: http://wiki.analog.com/AD7879 |
a4edbc10 | 384 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
385 | S: Supported |
386 | F: drivers/input/touchscreen/ad7879.c | |
387 | ||
1330b0dc | 388 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
e5f6450c | 389 | M: Jiri Kosina <jikos@kernel.org> |
1330b0dc JK |
390 | S: Maintained |
391 | ||
7302b9d9 MH |
392 | ADF7242 IEEE 802.15.4 RADIO DRIVER |
393 | M: Michael Hennerich <michael.hennerich@analog.com> | |
394 | W: https://wiki.analog.com/ADF7242 | |
395 | W: http://ez.analog.com/community/linux-device-drivers | |
396 | L: linux-wpan@vger.kernel.org | |
397 | S: Supported | |
398 | F: drivers/net/ieee802154/adf7242.c | |
399 | F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt | |
400 | ||
1da177e4 | 401 | ADM1025 HARDWARE MONITOR DRIVER |
d8130624 | 402 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 403 | L: linux-hwmon@vger.kernel.org |
1da177e4 | 404 | S: Maintained |
679655da JP |
405 | F: Documentation/hwmon/adm1025 |
406 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 407 | |
cae2caae | 408 | ADM1029 HARDWARE MONITOR DRIVER |
fce8ffa3 | 409 | M: Corentin Labbe <clabbe.montjoie@gmail.com> |
968ce1b1 | 410 | L: linux-hwmon@vger.kernel.org |
cae2caae | 411 | S: Maintained |
679655da | 412 | F: drivers/hwmon/adm1029.c |
cae2caae | 413 | |
cc0b88cf | 414 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 415 | L: linux-wireless@vger.kernel.org |
491b26b4 | 416 | W: http://wireless.kernel.org/ |
e71bcbd0 | 417 | S: Orphan |
d4a17304 | 418 | F: drivers/net/wireless/admtek/adm8211.* |
cc0b88cf | 419 | |
e8e31622 SA |
420 | ADP1653 FLASH CONTROLLER DRIVER |
421 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
422 | L: linux-media@vger.kernel.org | |
423 | S: Maintained | |
424 | F: drivers/media/i2c/adp1653.c | |
b5dcee22 | 425 | F: include/media/i2c/adp1653.h |
e8e31622 | 426 | |
527a1a83 MH |
427 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
428 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 429 | W: http://wiki.analog.com/ADP5520 |
a4edbc10 | 430 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
431 | S: Supported |
432 | F: drivers/mfd/adp5520.c | |
433 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 434 | F: drivers/leds/leds-adp5520.c |
77278d50 | 435 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
436 | F: drivers/input/keyboard/adp5520-keys.c |
437 | ||
438 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
439 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 440 | W: http://wiki.analog.com/ADP5588 |
a4edbc10 | 441 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
442 | S: Supported |
443 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 444 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
445 | |
446 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
447 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 448 | W: http://wiki.analog.com/ADP8860 |
a4edbc10 | 449 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
450 | S: Supported |
451 | F: drivers/video/backlight/adp8860_bl.c | |
452 | ||
8c22a8f5 DE |
453 | ADS1015 HARDWARE MONITOR DRIVER |
454 | M: Dirk Eibach <eibach@gdsys.de> | |
968ce1b1 | 455 | L: linux-hwmon@vger.kernel.org |
8c22a8f5 DE |
456 | S: Maintained |
457 | F: Documentation/hwmon/ads1015 | |
458 | F: drivers/hwmon/ads1015.c | |
459 | F: include/linux/i2c/ads1015.h | |
460 | ||
1da177e4 | 461 | ADT746X FAN DRIVER |
8b58be88 | 462 | M: Colin Leroy <colin@colino.net> |
1da177e4 | 463 | S: Maintained |
679655da | 464 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 465 | |
b058b859 | 466 | ADT7475 HARDWARE MONITOR DRIVER |
d8130624 | 467 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 468 | L: linux-hwmon@vger.kernel.org |
b058b859 JD |
469 | S: Maintained |
470 | F: Documentation/hwmon/adt7475 | |
471 | F: drivers/hwmon/adt7475.c | |
472 | ||
527a1a83 MH |
473 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
474 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 475 | W: http://wiki.analog.com/ADXL345 |
a4edbc10 | 476 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
477 | S: Supported |
478 | F: drivers/input/misc/adxl34x.c | |
479 | ||
8c6af9e1 | 480 | ADVANSYS SCSI DRIVER |
8b58be88 | 481 | M: Matthew Wilcox <matthew@wil.cx> |
d8130624 | 482 | M: Hannes Reinecke <hare@suse.com> |
8c6af9e1 MW |
483 | L: linux-scsi@vger.kernel.org |
484 | S: Maintained | |
679655da JP |
485 | F: Documentation/scsi/advansys.txt |
486 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 487 | |
1da177e4 | 488 | AEDSP16 DRIVER |
8b58be88 | 489 | M: Riccardo Facchetti <fizban@tin.it> |
1da177e4 | 490 | S: Maintained |
679655da | 491 | F: sound/oss/aedsp16.c |
1da177e4 | 492 | |
91952bc0 AP |
493 | AF9013 MEDIA DRIVER |
494 | M: Antti Palosaari <crope@iki.fi> | |
495 | L: linux-media@vger.kernel.org | |
a825eaec | 496 | W: https://linuxtv.org |
91952bc0 AP |
497 | W: http://palosaari.fi/linux/ |
498 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
499 | T: git git://linuxtv.org/anttip/media_tree.git | |
500 | S: Maintained | |
501 | F: drivers/media/dvb-frontends/af9013* | |
502 | ||
503 | AF9033 MEDIA DRIVER | |
504 | M: Antti Palosaari <crope@iki.fi> | |
505 | L: linux-media@vger.kernel.org | |
a825eaec | 506 | W: https://linuxtv.org |
91952bc0 AP |
507 | W: http://palosaari.fi/linux/ |
508 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
509 | T: git git://linuxtv.org/anttip/media_tree.git | |
510 | S: Maintained | |
511 | F: drivers/media/dvb-frontends/af9033* | |
512 | ||
1da177e4 | 513 | AFFS FILE SYSTEM |
6cf515e1 GU |
514 | L: linux-fsdevel@vger.kernel.org |
515 | S: Orphan | |
679655da JP |
516 | F: Documentation/filesystems/affs.txt |
517 | F: fs/affs/ | |
1da177e4 | 518 | |
e2d1d6c0 | 519 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 520 | M: David Howells <dhowells@redhat.com> |
e2d1d6c0 RD |
521 | L: linux-afs@lists.infradead.org |
522 | S: Supported | |
679655da JP |
523 | F: fs/afs/ |
524 | F: include/net/af_rxrpc.h | |
525 | F: net/rxrpc/af_rxrpc.c | |
e2d1d6c0 | 526 | |
1da177e4 | 527 | AGPGART DRIVER |
8b58be88 | 528 | M: David Airlie <airlied@linux.ie> |
878eaf61 | 529 | T: git git://people.freedesktop.org/~airlied/linux (part of drm maint) |
1da177e4 | 530 | S: Maintained |
679655da JP |
531 | F: drivers/char/agp/ |
532 | F: include/linux/agp* | |
c117ab84 | 533 | F: include/uapi/linux/agp* |
1da177e4 LT |
534 | |
535 | AHA152X SCSI DRIVER | |
8b58be88 | 536 | M: "Juergen E. Fischer" <fischer@norbit.de> |
1da177e4 LT |
537 | L: linux-scsi@vger.kernel.org |
538 | S: Maintained | |
679655da JP |
539 | F: drivers/scsi/aha152x* |
540 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 541 | |
64624d4f | 542 | AIC7XXX / AIC79XX SCSI DRIVER |
d8130624 | 543 | M: Hannes Reinecke <hare@suse.com> |
64624d4f | 544 | L: linux-scsi@vger.kernel.org |
1da177e4 | 545 | S: Maintained |
679655da | 546 | F: drivers/scsi/aic7xxx/ |
1da177e4 | 547 | |
450500ad HV |
548 | AIMSLAB FM RADIO RECEIVER DRIVER |
549 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
550 | L: linux-media@vger.kernel.org | |
551 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 552 | W: https://linuxtv.org |
450500ad HV |
553 | S: Maintained |
554 | F: drivers/media/radio/radio-aimslab* | |
555 | ||
e2d1d6c0 | 556 | AIO |
8b58be88 | 557 | M: Benjamin LaHaise <bcrl@kvack.org> |
e2d1d6c0 RD |
558 | L: linux-aio@kvack.org |
559 | S: Supported | |
679655da JP |
560 | F: fs/aio.c |
561 | F: include/linux/*aio*.h | |
e2d1d6c0 | 562 | |
469d4ec8 AP |
563 | AIRSPY MEDIA DRIVER |
564 | M: Antti Palosaari <crope@iki.fi> | |
565 | L: linux-media@vger.kernel.org | |
a825eaec | 566 | W: https://linuxtv.org |
469d4ec8 AP |
567 | W: http://palosaari.fi/linux/ |
568 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
569 | T: git git://linuxtv.org/anttip/media_tree.git | |
570 | S: Maintained | |
571 | F: drivers/media/usb/airspy/ | |
572 | ||
1da177e4 | 573 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 574 | M: Duncan Sands <duncan.sands@free.fr> |
6372594a | 575 | L: linux-usb@vger.kernel.org |
1da177e4 LT |
576 | W: http://www.linux-usb.org/SpeedTouch/ |
577 | S: Maintained | |
679655da JP |
578 | F: drivers/usb/atm/speedtch.c |
579 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 580 | |
272f133a | 581 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 582 | M: Manuel Lauss <manuel.lauss@gmail.com> |
08fcb720 | 583 | S: Maintained |
679655da | 584 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 585 | |
4a4e5787 | 586 | ALI1563 I2C DRIVER |
8b58be88 | 587 | M: Rudolf Marek <r.marek@assembler.cz> |
846557d3 | 588 | L: linux-i2c@vger.kernel.org |
4a4e5787 | 589 | S: Maintained |
679655da JP |
590 | F: Documentation/i2c/busses/i2c-ali1563 |
591 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 592 | |
bc368798 LC |
593 | ALLWINNER SECURITY SYSTEM |
594 | M: Corentin Labbe <clabbe.montjoie@gmail.com> | |
595 | L: linux-crypto@vger.kernel.org | |
596 | S: Maintained | |
597 | F: drivers/crypto/sunxi-ss/ | |
598 | ||
1da177e4 | 599 | ALPHA PORT |
8b58be88 | 600 | M: Richard Henderson <rth@twiddle.net> |
8b58be88 | 601 | M: Ivan Kokshaysky <ink@jurassic.park.msu.ru> |
abd4d609 | 602 | M: Matt Turner <mattst88@gmail.com> |
c89f4f9a | 603 | S: Odd Fixes |
a9406699 | 604 | L: linux-alpha@vger.kernel.org |
679655da | 605 | F: arch/alpha/ |
1da177e4 | 606 | |
30172936 PR |
607 | ALPS PS/2 TOUCHPAD DRIVER |
608 | R: Pali Rohár <pali.rohar@gmail.com> | |
609 | F: drivers/input/mouse/alps.* | |
610 | ||
f62092f6 LFT |
611 | ALTERA MAILBOX DRIVER |
612 | M: Ley Foon Tan <lftan@altera.com> | |
613 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
614 | S: Maintained | |
615 | F: drivers/mailbox/mailbox-altera.c | |
616 | ||
c5abbba9 THL |
617 | ALTERA PIO DRIVER |
618 | M: Tien Hock Loh <thloh@altera.com> | |
619 | L: linux-gpio@vger.kernel.org | |
620 | S: Maintained | |
621 | F: drivers/gpio/gpio-altera.c | |
622 | ||
8ce064bf TT |
623 | ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT |
624 | M: Thor Thayer <tthayer@opensource.altera.com> | |
625 | S: Maintained | |
626 | F: drivers/gpio/gpio-altera-a10sr.c | |
627 | F: drivers/mfd/altera-a10sr.c | |
628 | F: include/linux/mfd/altera-a10sr.h | |
629 | ||
16b8b922 | 630 | ALTERA TRIPLE SPEED ETHERNET DRIVER |
c53fed07 | 631 | M: Vince Bridgers <vbridger@opensource.altera.com> |
16b8b922 VB |
632 | L: netdev@vger.kernel.org |
633 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
634 | S: Maintained | |
635 | F: drivers/net/ethernet/altera/ | |
636 | ||
adf9251f TK |
637 | ALTERA UART/JTAG UART SERIAL DRIVERS |
638 | M: Tobias Klauser <tklauser@distanz.ch> | |
639 | L: linux-serial@vger.kernel.org | |
61bd0943 | 640 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
adf9251f TK |
641 | S: Maintained |
642 | F: drivers/tty/serial/altera_uart.c | |
643 | F: drivers/tty/serial/altera_jtaguart.c | |
644 | F: include/linux/altera_uart.h | |
645 | F: include/linux/altera_jtaguart.h | |
646 | ||
1738cd3e NB |
647 | AMAZON ETHERNET DRIVERS |
648 | M: Netanel Belgazal <netanel@annapurnalabs.com> | |
649 | R: Saeed Bishara <saeed@annapurnalabs.com> | |
650 | R: Zorik Machulsky <zorik@annapurnalabs.com> | |
651 | L: netdev@vger.kernel.org | |
652 | S: Supported | |
653 | F: Documentation/networking/ena.txt | |
654 | F: drivers/net/ethernet/amazon/ | |
655 | ||
f4875e12 TL |
656 | AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER |
657 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
29e9330f | 658 | M: Gary Hook <gary.hook@amd.com> |
f4875e12 TL |
659 | L: linux-crypto@vger.kernel.org |
660 | S: Supported | |
661 | F: drivers/crypto/ccp/ | |
662 | F: include/linux/ccp.h | |
663 | ||
512d1027 | 664 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
96818b58 | 665 | M: Huang Rui <ray.huang@amd.com> |
968ce1b1 | 666 | L: linux-hwmon@vger.kernel.org |
96818b58 | 667 | S: Supported |
512d1027 AH |
668 | F: Documentation/hwmon/fam15h_power |
669 | F: drivers/hwmon/fam15h_power.c | |
670 | ||
167a675a | 671 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
67d76710 | 672 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
b4731977 | 673 | S: Orphan |
faf2e1db | 674 | F: drivers/usb/gadget/udc/amd5536udc.* |
167a675a | 675 | |
f90b8116 | 676 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 677 | P: Andres Salomon <dilinger@queued.net> |
67d76710 | 678 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
f90b8116 JC |
679 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
680 | S: Supported | |
679655da JP |
681 | F: drivers/char/hw_random/geode-rng.c |
682 | F: drivers/crypto/geode* | |
8a61f013 | 683 | F: drivers/video/fbdev/geode/ |
679655da | 684 | F: arch/x86/include/asm/geode.h |
f90b8116 | 685 | |
919ee7dd | 686 | AMD IOMMU (AMD-VI) |
e4110568 | 687 | M: Joerg Roedel <joro@8bytes.org> |
919ee7dd | 688 | L: iommu@lists.linux-foundation.org |
525b233c | 689 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 690 | S: Maintained |
b2c16391 JP |
691 | F: drivers/iommu/amd_iommu*.[ch] |
692 | F: include/linux/amd-iommu.h | |
919ee7dd | 693 | |
16423d67 | 694 | AMD KFD |
1241e0b4 | 695 | M: Oded Gabbay <oded.gabbay@gmail.com> |
49e7d9df JP |
696 | L: dri-devel@lists.freedesktop.org |
697 | T: git git://people.freedesktop.org/~gabbayo/linux.git | |
698 | S: Supported | |
130e0371 OG |
699 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c |
700 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h | |
32c22e99 | 701 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c |
ff758a12 | 702 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c |
49e7d9df | 703 | F: drivers/gpu/drm/amd/amdkfd/ |
04df25d1 OG |
704 | F: drivers/gpu/drm/amd/include/cik_structs.h |
705 | F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h | |
ff758a12 | 706 | F: drivers/gpu/drm/amd/include/vi_structs.h |
49e7d9df JP |
707 | F: drivers/gpu/drm/radeon/radeon_kfd.c |
708 | F: drivers/gpu/drm/radeon/radeon_kfd.h | |
709 | F: include/uapi/linux/kfd_ioctl.h | |
16423d67 | 710 | |
2510eb74 SS |
711 | AMD SEATTLE DEVICE TREE SUPPORT |
712 | M: Brijesh Singh <brijeshkumar.singh@amd.com> | |
713 | M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com> | |
714 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
715 | S: Supported | |
716 | F: arch/arm64/boot/dts/amd/ | |
717 | ||
45198c7b LT |
718 | AMD XGBE DRIVER |
719 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
720 | L: netdev@vger.kernel.org | |
721 | S: Supported | |
722 | F: drivers/net/ethernet/amd/xgbe/ | |
08b8940e | 723 | F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi |
45198c7b | 724 | |
284f42b6 | 725 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 | 726 | M: Michael Hanselmann <linux-kernel@hansmi.ch> |
284f42b6 | 727 | S: Supported |
bd5f47ec | 728 | F: drivers/macintosh/ams/ |
284f42b6 | 729 | |
531fca16 HV |
730 | ANALOG DEVICES INC AD9389B DRIVER |
731 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
732 | L: linux-media@vger.kernel.org | |
733 | S: Maintained | |
734 | F: drivers/media/i2c/ad9389b* | |
735 | ||
614b4384 LPC |
736 | ANALOG DEVICES INC ADV7180 DRIVER |
737 | M: Lars-Peter Clausen <lars@metafoo.de> | |
738 | L: linux-media@vger.kernel.org | |
739 | W: http://ez.analog.com/community/linux-device-drivers | |
740 | S: Supported | |
741 | F: drivers/media/i2c/adv7180.c | |
742 | ||
c40ddfa3 HV |
743 | ANALOG DEVICES INC ADV7511 DRIVER |
744 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
745 | L: linux-media@vger.kernel.org | |
746 | S: Maintained | |
747 | F: drivers/media/i2c/adv7511* | |
748 | ||
531fca16 HV |
749 | ANALOG DEVICES INC ADV7604 DRIVER |
750 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
751 | L: linux-media@vger.kernel.org | |
752 | S: Maintained | |
753 | F: drivers/media/i2c/adv7604* | |
754 | ||
c40ddfa3 HV |
755 | ANALOG DEVICES INC ADV7842 DRIVER |
756 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
757 | L: linux-media@vger.kernel.org | |
758 | S: Maintained | |
759 | F: drivers/media/i2c/adv7842* | |
760 | ||
527a1a83 | 761 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 762 | M: Lars-Peter Clausen <lars@metafoo.de> |
4bdef3bd | 763 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a3f531ac | 764 | W: http://wiki.analog.com/ |
a4edbc10 | 765 | W: http://ez.analog.com/community/linux-device-drivers |
4bdef3bd | 766 | S: Supported |
39c9d199 | 767 | F: sound/soc/codecs/adau* |
cc52688a | 768 | F: sound/soc/codecs/adav* |
4bdef3bd | 769 | F: sound/soc/codecs/ad1* |
ae48f5ef | 770 | F: sound/soc/codecs/ad7* |
4bdef3bd | 771 | F: sound/soc/codecs/ssm* |
40216ce7 | 772 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 773 | |
527a1a83 | 774 | ANALOG DEVICES INC ASOC DRIVERS |
b3fe92b0 | 775 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
527a1a83 MH |
776 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
777 | W: http://blackfin.uclinux.org/ | |
778 | S: Supported | |
779 | F: sound/soc/blackfin/* | |
7d1f9018 | 780 | |
4ce72abc LPC |
781 | ANALOG DEVICES INC IIO DRIVERS |
782 | M: Lars-Peter Clausen <lars@metafoo.de> | |
783 | M: Michael Hennerich <Michael.Hennerich@analog.com> | |
784 | W: http://wiki.analog.com/ | |
785 | W: http://ez.analog.com/community/linux-device-drivers | |
786 | S: Supported | |
787 | F: drivers/iio/*/ad* | |
788 | X: drivers/iio/*/adjd* | |
789 | F: drivers/staging/iio/*/ad* | |
790 | F: staging/iio/trigger/iio-trig-bfin-timer.c | |
527a1a83 | 791 | |
0e3b67b3 LPC |
792 | ANALOG DEVICES INC DMA DRIVERS |
793 | M: Lars-Peter Clausen <lars@metafoo.de> | |
794 | W: http://ez.analog.com/community/linux-device-drivers | |
795 | S: Supported | |
796 | F: drivers/dma/dma-axi-dmac.c | |
797 | ||
27eb6622 RH |
798 | ANDROID CONFIG FRAGMENTS |
799 | M: Rob Herring <robh@kernel.org> | |
800 | S: Supported | |
801 | F: kernel/configs/android* | |
802 | ||
41c9e95d GK |
803 | ANDROID DRIVERS |
804 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
27682407 | 805 | M: Arve Hjønnevåg <arve@android.com> |
41c9e95d | 806 | M: Riley Andrews <riandrews@android.com> |
0e4a566b | 807 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
41c9e95d GK |
808 | L: devel@driverdev.osuosl.org |
809 | S: Supported | |
810 | F: drivers/android/ | |
811 | F: drivers/staging/android/ | |
812 | ||
d03c023e LA |
813 | ANDROID ION DRIVER |
814 | M: Laura Abbott <labbott@redhat.com> | |
815 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
816 | L: devel@driverdev.osuosl.org | |
817 | S: Supported | |
e9d766b9 | 818 | F: Documentation/devicetree/bindings/staging/ion/ |
d03c023e LA |
819 | F: drivers/staging/android/ion |
820 | F: drivers/staging/android/uapi/ion.h | |
821 | F: drivers/staging/android/uapi/ion_test.h | |
822 | ||
42269063 | 823 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 824 | M: Johannes Berg <johannes@sipsolutions.net> |
a4724ed6 | 825 | L: linuxppc-dev@lists.ozlabs.org |
93711660 | 826 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
42269063 | 827 | S: Maintained |
679655da | 828 | F: sound/aoa/ |
42269063 | 829 | |
4075a283 | 830 | APEX EMBEDDED SYSTEMS STX104 IIO DRIVER |
97a445da WBG |
831 | M: William Breathitt Gray <vilhelm.gray@gmail.com> |
832 | L: linux-iio@vger.kernel.org | |
833 | S: Maintained | |
4075a283 | 834 | F: drivers/iio/adc/stx104.c |
97a445da | 835 | |
1da177e4 | 836 | APM DRIVER |
e5f6450c | 837 | M: Jiri Kosina <jikos@kernel.org> |
81024fc4 | 838 | S: Odd fixes |
9f273c24 | 839 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git |
679655da JP |
840 | F: arch/x86/kernel/apm_32.c |
841 | F: include/linux/apm_bios.h | |
c117ab84 | 842 | F: include/uapi/linux/apm_bios.h |
81024fc4 | 843 | F: drivers/char/apm-emulation.c |
1da177e4 | 844 | |
bd7aa4b2 | 845 | APPLE BCM5974 MULTITOUCH DRIVER |
75dd112a | 846 | M: Henrik Rydberg <rydberg@bitmath.org> |
bd7aa4b2 | 847 | L: linux-input@vger.kernel.org |
75dd112a | 848 | S: Odd fixes |
679655da | 849 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 850 | |
6f2fad74 | 851 | APPLE SMC DRIVER |
75dd112a | 852 | M: Henrik Rydberg <rydberg@bitmath.org> |
968ce1b1 | 853 | L: linux-hwmon@vger.kernel.org |
75dd112a | 854 | S: Odd fixes |
679655da | 855 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 856 | |
1da177e4 | 857 | APPLETALK NETWORK LAYER |
8b58be88 | 858 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
1da177e4 | 859 | S: Maintained |
679655da JP |
860 | F: drivers/net/appletalk/ |
861 | F: net/appletalk/ | |
1da177e4 | 862 | |
21c75328 DD |
863 | APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT |
864 | M: Duc Dang <dhdang@apm.com> | |
865 | S: Supported | |
866 | F: arch/arm64/boot/dts/apm/ | |
867 | ||
24299502 IS |
868 | APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER |
869 | M: Iyappan Subramanian <isubramanian@apm.com> | |
870 | M: Keyur Chudgar <kchudgar@apm.com> | |
24299502 IS |
871 | S: Supported |
872 | F: drivers/net/ethernet/apm/xgene/ | |
2efccc60 | 873 | F: drivers/net/phy/mdio-xgene.c |
24299502 | 874 | F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt |
2efccc60 | 875 | F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt |
24299502 | 876 | |
fd3a628e TN |
877 | APPLIED MICRO (APM) X-GENE SOC PMU |
878 | M: Tai Nguyen <ttnguyen@apm.com> | |
879 | S: Supported | |
880 | F: drivers/perf/xgene_pmu.c | |
881 | F: Documentation/perf/xgene-pmu.txt | |
882 | F: Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt | |
883 | ||
62a37dc7 LP |
884 | APTINA CAMERA SENSOR PLL |
885 | M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com> | |
886 | L: linux-media@vger.kernel.org | |
887 | S: Maintained | |
888 | F: drivers/media/i2c/aptina-pll.* | |
889 | ||
1154ea7d | 890 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 891 | M: Jaya Kumar <jayalk@intworks.biz> |
1154ea7d | 892 | S: Maintained |
8a61f013 JH |
893 | F: drivers/video/fbdev/arcfb.c |
894 | F: drivers/video/fbdev/core/fb_defio.c | |
1154ea7d | 895 | |
c38f6ac7 MG |
896 | ARCNET NETWORK LAYER |
897 | M: Michael Grzeschik <m.grzeschik@pengutronix.de> | |
898 | L: netdev@vger.kernel.org | |
899 | S: Maintained | |
900 | F: drivers/net/arcnet/ | |
901 | F: include/uapi/linux/if_arcnet.h | |
902 | ||
71d298ce AB |
903 | ARC PGU DRM DRIVER |
904 | M: Alexey Brodkin <abrodkin@synopsys.com> | |
905 | S: Supported | |
906 | F: drivers/gpu/drm/arc/ | |
907 | F: Documentation/devicetree/bindings/display/snps,arcpgu.txt | |
908 | ||
588deb61 MR |
909 | ARM ARCHITECTED TIMER DRIVER |
910 | M: Mark Rutland <mark.rutland@arm.com> | |
911 | M: Marc Zyngier <marc.zyngier@arm.com> | |
912 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
913 | S: Maintained | |
914 | F: arch/arm/include/asm/arch_timer.h | |
915 | F: arch/arm64/include/asm/arch_timer.h | |
916 | F: drivers/clocksource/arm_arch_timer.c | |
917 | ||
c5a906a5 LD |
918 | ARM HDLCD DRM DRIVER |
919 | M: Liviu Dudau <liviu.dudau@arm.com> | |
920 | S: Supported | |
59ba2422 | 921 | F: drivers/gpu/drm/arm/hdlcd_* |
c5a906a5 LD |
922 | F: Documentation/devicetree/bindings/display/arm,hdlcd.txt |
923 | ||
59ba2422 LD |
924 | ARM MALI-DP DRM DRIVER |
925 | M: Liviu Dudau <liviu.dudau@arm.com> | |
926 | M: Brian Starkey <brian.starkey@arm.com> | |
927 | M: Mali DP Maintainers <malidp@foss.arm.com> | |
928 | S: Supported | |
929 | F: drivers/gpu/drm/arm/ | |
930 | F: Documentation/devicetree/bindings/display/arm,malidp.txt | |
931 | ||
1da177e4 | 932 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 933 | M: Ian Molton <spyro@f2s.com> |
1da177e4 | 934 | S: Maintained |
679655da JP |
935 | F: arch/arm/lib/floppydma.S |
936 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 937 | |
6f96521f WD |
938 | ARM PMU PROFILING AND DEBUGGING |
939 | M: Will Deacon <will.deacon@arm.com> | |
55d5c4ab | 940 | M: Mark Rutland <mark.rutland@arm.com> |
6f96521f | 941 | S: Maintained |
55d5c4ab | 942 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
dd06a84b | 943 | F: arch/arm*/kernel/perf_* |
6f96521f | 944 | F: arch/arm/oprofile/common.c |
dd06a84b MR |
945 | F: arch/arm*/kernel/hw_breakpoint.c |
946 | F: arch/arm*/include/asm/hw_breakpoint.h | |
947 | F: arch/arm*/include/asm/perf_event.h | |
55d5c4ab | 948 | F: drivers/perf/* |
fa8ad788 | 949 | F: include/linux/perf/arm_pmu.h |
55d5c4ab | 950 | F: Documentation/devicetree/bindings/arm/pmu.txt |
6f96521f | 951 | |
d4275354 | 952 | ARM PORT |
54176cc6 | 953 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 954 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 955 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
956 | S: Maintained |
957 | F: arch/arm/ | |
958 | ||
d323c243 SB |
959 | ARM SUB-ARCHITECTURES |
960 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
56ca9d98 | 961 | S: Maintained |
d323c243 SB |
962 | F: arch/arm/mach-*/ |
963 | F: arch/arm/plat-*/ | |
964 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
965 | ||
cefbf4ea | 966 | ARM PRIMECELL AACI PL041 DRIVER |
54176cc6 | 967 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea RK |
968 | S: Maintained |
969 | F: sound/arm/aaci.* | |
970 | ||
971 | ARM PRIMECELL CLCD PL110 DRIVER | |
54176cc6 | 972 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea | 973 | S: Maintained |
8a61f013 | 974 | F: drivers/video/fbdev/amba-clcd.* |
cefbf4ea RK |
975 | |
976 | ARM PRIMECELL KMI PL050 DRIVER | |
54176cc6 | 977 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea RK |
978 | S: Maintained |
979 | F: drivers/input/serio/ambakmi.* | |
980 | F: include/linux/amba/kmi.h | |
981 | ||
2761f5c2 | 982 | ARM PRIMECELL MMCI PL180/1 DRIVER |
54176cc6 | 983 | M: Russell King <linux@armlinux.org.uk> |
08a5c9a2 | 984 | S: Maintained |
679655da | 985 | F: drivers/mmc/host/mmci.* |
2f748aaa | 986 | F: include/linux/amba/mmci.h |
2761f5c2 | 987 | |
1b4304e5 | 988 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
54176cc6 | 989 | M: Russell King <linux@armlinux.org.uk> |
1b4304e5 RK |
990 | S: Maintained |
991 | F: drivers/tty/serial/amba-pl01*.c | |
992 | F: include/linux/amba/serial.h | |
2761f5c2 | 993 | |
cefbf4ea | 994 | ARM PRIMECELL BUS SUPPORT |
54176cc6 | 995 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea RK |
996 | S: Maintained |
997 | F: drivers/amba/ | |
998 | F: include/linux/amba/bus.h | |
999 | ||
2b7a52a4 | 1000 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 1001 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1002 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1003 | S: Maintained |
1004 | ||
9c784f95 | 1005 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 1006 | M: Sergey Lapin <slapin@ossfans.org> |
efc03ecb | 1007 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9c784f95 SL |
1008 | S: Maintained |
1009 | ||
2b7a52a4 | 1010 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 1011 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1012 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1013 | S: Maintained |
1014 | ||
5c6dcd7f | 1015 | ARM/Allwinner sunXi SoC support |
1b106699 | 1016 | M: Maxime Ripard <maxime.ripard@free-electrons.com> |
5c6dcd7f | 1017 | M: Chen-Yu Tsai <wens@csie.org> |
1b106699 MR |
1018 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1019 | S: Maintained | |
5c6dcd7f | 1020 | N: sun[x456789]i |
c1efda12 | 1021 | F: arch/arm/boot/dts/ntc-gr8* |
60b0f380 MR |
1022 | |
1023 | ARM/Allwinner SoC Clock Support | |
1024 | M: Emilio López <emilio@elopez.com.ar> | |
1025 | S: Maintained | |
1026 | F: drivers/clk/sunxi/ | |
1b106699 | 1027 | |
79318452 | 1028 | ARM/Amlogic Meson SoC support |
7c1e3876 | 1029 | M: Carlo Caione <carlo@caione.org> |
6683d91c | 1030 | M: Kevin Hilman <khilman@baylibre.com> |
7c1e3876 | 1031 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
6683d91c | 1032 | L: linux-amlogic@lists.infradead.org |
79318452 | 1033 | W: http://linux-meson.com/ |
7c1e3876 | 1034 | S: Maintained |
79318452 CC |
1035 | F: arch/arm/mach-meson/ |
1036 | F: arch/arm/boot/dts/meson* | |
6683d91c KH |
1037 | F: arch/arm64/boot/dts/amlogic/ |
1038 | F: drivers/pinctrl/meson/ | |
79318452 | 1039 | N: meson |
7c1e3876 | 1040 | |
eff506fa TZ |
1041 | ARM/Annapurna Labs ALPINE ARCHITECTURE |
1042 | M: Tsahee Zidenberg <tsahee@annapurnalabs.com> | |
a9e5547b | 1043 | M: Antoine Tenart <antoine.tenart@free-electrons.com> |
4d2bf027 | 1044 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
eff506fa TZ |
1045 | S: Maintained |
1046 | F: arch/arm/mach-alpine/ | |
a9e5547b AT |
1047 | F: arch/arm/boot/dts/alpine* |
1048 | F: arch/arm64/boot/dts/al/ | |
1049 | F: drivers/*/*alpine* | |
eff506fa | 1050 | |
5255034d LP |
1051 | ARM/ARTPEC MACHINE SUPPORT |
1052 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
1053 | M: Lars Persson <lars.persson@axis.com> | |
1054 | M: Niklas Cassel <niklas.cassel@axis.com> | |
1055 | S: Maintained | |
1056 | L: linux-arm-kernel@axis.com | |
1057 | F: arch/arm/mach-artpec | |
1058 | F: arch/arm/boot/dts/artpec6* | |
33b8ac91 | 1059 | F: drivers/clk/axis |
5255034d | 1060 | |
8c2ed9bc JS |
1061 | ARM/ASPEED MACHINE SUPPORT |
1062 | M: Joel Stanley <joel@jms.id.au> | |
1063 | S: Maintained | |
1064 | F: arch/arm/mach-aspeed/ | |
1065 | F: arch/arm/boot/dts/aspeed-* | |
1066 | F: drivers/*/*aspeed* | |
1067 | ||
8dca5ce8 | 1068 | ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT |
c1fc8675 | 1069 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
d68b35f8 | 1070 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
c1fc8675 | 1071 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
efc03ecb | 1072 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
c1fc8675 | 1073 | W: http://www.linux4sam.org |
9f273c24 | 1074 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git |
c1fc8675 NF |
1075 | S: Supported |
1076 | F: arch/arm/mach-at91/ | |
f0a0a58e | 1077 | F: include/soc/at91/ |
70e389cc MB |
1078 | F: arch/arm/boot/dts/at91*.dts |
1079 | F: arch/arm/boot/dts/at91*.dtsi | |
1080 | F: arch/arm/boot/dts/sama*.dts | |
1081 | F: arch/arm/boot/dts/sama*.dtsi | |
5f58c970 | 1082 | F: arch/arm/include/debug/at91.S |
d4a89c7d | 1083 | |
6e05dd4e BB |
1084 | ARM/ATMEL AT91 Clock Support |
1085 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
1086 | S: Maintained | |
1087 | F: drivers/clk/at91 | |
1088 | ||
986cf2e9 | 1089 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
5d3ad8a6 | 1090 | M: Rob Herring <robh@kernel.org> |
986cf2e9 RH |
1091 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1092 | S: Maintained | |
1093 | F: arch/arm/mach-highbank/ | |
e68d7c14 RH |
1094 | F: arch/arm/boot/dts/highbank.dts |
1095 | F: arch/arm/boot/dts/ecx-*.dts* | |
986cf2e9 | 1096 | |
d94f944e | 1097 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
5529c2cd | 1098 | M: Krzysztof Halasa <khalasa@piap.pl> |
d94f944e AV |
1099 | S: Maintained |
1100 | F: arch/arm/mach-cns3xxx/ | |
d94f944e | 1101 | |
4863dea3 SG |
1102 | ARM/CAVIUM THUNDER NETWORK DRIVER |
1103 | M: Sunil Goutham <sgoutham@cavium.com> | |
1104 | M: Robert Richter <rric@kernel.org> | |
1105 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1106 | S: Supported | |
322e5cc5 | 1107 | F: drivers/net/ethernet/cavium/thunder/ |
4863dea3 | 1108 | |
386ab516 AS |
1109 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
1110 | M: Alexander Shiyan <shc_work@mail.ru> | |
1111 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1112 | S: Odd Fixes | |
b8ba3874 | 1113 | N: clps711x |
386ab516 | 1114 | |
2b7a52a4 | 1115 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 1116 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
1c5454ee | 1117 | M: Ryan Mallon <rmallon@gmail.com> |
efc03ecb | 1118 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 | 1119 | S: Maintained |
d19d3667 HS |
1120 | F: arch/arm/mach-ep93xx/ |
1121 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
1122 | |
1123 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 1124 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1125 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1126 | S: Maintained |
1127 | ||
d4275354 | 1128 | ARM/CLKDEV SUPPORT |
54176cc6 | 1129 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1130 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
37417046 | 1131 | S: Maintained |
d4275354 | 1132 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 1133 | F: drivers/clk/clkdev.c |
d4275354 | 1134 | |
d48134e7 | 1135 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 1136 | M: Mike Rapoport <mike@compulab.co.il> |
efc03ecb | 1137 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
a9da4f7e RK |
1138 | S: Maintained |
1139 | ||
94150095 HF |
1140 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
1141 | M: Hubert Feurstein <hubert.feurstein@contec.at> | |
1142 | S: Maintained | |
1143 | F: arch/arm/mach-ep93xx/micro9.c | |
1144 | ||
a06ae860 PP |
1145 | ARM/CORESIGHT FRAMEWORK AND DRIVERS |
1146 | M: Mathieu Poirier <mathieu.poirier@linaro.org> | |
1147 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1148 | S: Maintained | |
01081f5a | 1149 | F: drivers/hwtracing/coresight/* |
a06ae860 PP |
1150 | F: Documentation/trace/coresight.txt |
1151 | F: Documentation/devicetree/bindings/arm/coresight.txt | |
7a25ec8e | 1152 | F: Documentation/ABI/testing/sysfs-bus-coresight-devices-* |
7e21b0d5 | 1153 | F: tools/perf/arch/arm/util/pmu.c |
a818c563 MP |
1154 | F: tools/perf/arch/arm/util/auxtrace.c |
1155 | F: tools/perf/arch/arm/util/cs-etm.c | |
1156 | F: tools/perf/arch/arm/util/cs-etm.h | |
1157 | F: tools/perf/util/cs-etm.h | |
a06ae860 | 1158 | |
1da177e4 | 1159 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 1160 | M: Richard Purdie <rpurdie@rpsys.net> |
1da177e4 LT |
1161 | S: Maintained |
1162 | ||
881a95f9 | 1163 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 1164 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 1165 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
b60e23ba | 1166 | T: git git://github.com/ulli-kroll/linux.git |
162500b3 | 1167 | S: Maintained |
f49afbb5 | 1168 | F: arch/arm/mach-gemini/ |
98a9bb5b | 1169 | F: drivers/rtc/rtc-gemini.c |
881a95f9 | 1170 | |
a990cbd8 | 1171 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
5abf58bf | 1172 | M: Barry Song <baohua@kernel.org> |
a990cbd8 | 1173 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
85529d14 | 1174 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
a990cbd8 | 1175 | S: Maintained |
e68d7c14 | 1176 | F: arch/arm/boot/dts/prima2* |
a990cbd8 | 1177 | F: arch/arm/mach-prima2/ |
4a9c44f1 | 1178 | F: drivers/clk/sirf/ |
05f30e8d | 1179 | F: drivers/clocksource/timer-prima2.c |
5833ac98 | 1180 | F: drivers/clocksource/timer-atlas7.c |
f8505ef5 | 1181 | N: [^a-z]sirf |
a990cbd8 | 1182 | |
c9d862c4 BS |
1183 | ARM/CONEXANT DIGICOLOR MACHINE SUPPORT |
1184 | M: Baruch Siach <baruch@tkos.co.il> | |
1185 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1186 | S: Maintained | |
cde137aa | 1187 | F: arch/arm/boot/dts/cx92755* |
c9d862c4 BS |
1188 | N: digicolor |
1189 | ||
d4275354 | 1190 | ARM/EBSA110 MACHINE SUPPORT |
54176cc6 | 1191 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1192 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1193 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
1194 | S: Maintained |
1195 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 1196 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 1197 | |
4721f3ce UKK |
1198 | ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT |
1199 | M: Uwe Kleine-König <kernel@pengutronix.de> | |
1200 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1201 | S: Maintained | |
1202 | N: efm32 | |
1203 | ||
a9da4f7e | 1204 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
1205 | M: Daniel Ribeiro <drwyrm@gmail.com> |
1206 | M: Stefan Schmidt <stefan@openezx.org> | |
1207 | M: Harald Welte <laforge@openezx.org> | |
d66f1886 | 1208 | L: openezx-devel@lists.openezx.org (moderated for non-subscribers) |
a9da4f7e RK |
1209 | W: http://www.openezx.org/ |
1210 | S: Maintained | |
cafc2265 SS |
1211 | T: topgit git://git.openezx.org/openezx.git |
1212 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 1213 | |
6a915af9 | 1214 | ARM/FARADAY FA526 PORT |
162500b3 | 1215 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 1216 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
162500b3 | 1217 | S: Maintained |
1fa7e547 | 1218 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 1219 | F: arch/arm/mm/*-fa* |
6a915af9 | 1220 | |
d4275354 | 1221 | ARM/FOOTBRIDGE ARCHITECTURE |
54176cc6 | 1222 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1223 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1224 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
1225 | S: Maintained |
1226 | F: arch/arm/include/asm/hardware/dec21285.h | |
1227 | F: arch/arm/mach-footbridge/ | |
1228 | ||
86183a5f | 1229 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
7609ea2a | 1230 | M: Shawn Guo <shawnguo@kernel.org> |
8b58be88 | 1231 | M: Sascha Hauer <kernel@pengutronix.de> |
b046302a | 1232 | R: Fabio Estevam <fabio.estevam@nxp.com> |
efc03ecb | 1233 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
86183a5f | 1234 | S: Maintained |
f1c12837 | 1235 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
adf79292 | 1236 | F: arch/arm/mach-imx/ |
ce515a6b | 1237 | F: arch/arm/mach-mxs/ |
2a82f95c | 1238 | F: arch/arm/boot/dts/imx* |
e5dafa22 | 1239 | F: arch/arm/configs/imx*_defconfig |
cf20968a SG |
1240 | F: drivers/clk/imx/ |
1241 | F: include/soc/imx/ | |
86183a5f | 1242 | |
142109d2 | 1243 | ARM/FREESCALE VYBRID ARM ARCHITECTURE |
7609ea2a | 1244 | M: Shawn Guo <shawnguo@kernel.org> |
142109d2 SA |
1245 | M: Sascha Hauer <kernel@pengutronix.de> |
1246 | R: Stefan Agner <stefan@agner.ch> | |
1247 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1248 | S: Maintained | |
1249 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git | |
1250 | F: arch/arm/mach-imx/*vf610* | |
1251 | F: arch/arm/boot/dts/vf* | |
1252 | ||
2b7a52a4 | 1253 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 1254 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1255 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1256 | S: Maintained |
1257 | ||
90b8fc34 | 1258 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 1259 | M: Steve Sakoman <sakoman@gmail.com> |
efc03ecb | 1260 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
90b8fc34 JK |
1261 | S: Maintained |
1262 | ||
ef47d5f0 | 1263 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 1264 | M: Philipp Zabel <philipp.zabel@gmail.com> |
12a93f32 PZ |
1265 | M: Paul Parsons <lost.distance@yahoo.com> |
1266 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
ef47d5f0 PZ |
1267 | S: Maintained |
1268 | F: arch/arm/mach-pxa/hx4700.c | |
1269 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 1270 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 1271 | |
4dfad069 WX |
1272 | ARM/HISILICON SOC SUPPORT |
1273 | M: Wei Xu <xuwei5@hisilicon.com> | |
1274 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1275 | W: http://www.hisilicon.com | |
1276 | S: Supported | |
1277 | T: git git://github.com/hisilicon/linux-hisi.git | |
1278 | F: arch/arm/mach-hisi/ | |
e68d7c14 RH |
1279 | F: arch/arm/boot/dts/hi3* |
1280 | F: arch/arm/boot/dts/hip* | |
1281 | F: arch/arm/boot/dts/hisi* | |
1282 | F: arch/arm64/boot/dts/hisilicon/ | |
4dfad069 | 1283 | |
21f37bc3 | 1284 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 1285 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
795fb7e7 JD |
1286 | W: www.jlime.com |
1287 | S: Maintained | |
084bad91 KE |
1288 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
1289 | F: arch/arm/mach-sa1100/jornada720.c | |
1290 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 1291 | |
5e767ab9 JMC |
1292 | ARM/IGEP MACHINE SUPPORT |
1293 | M: Enric Balletbo i Serra <eballetbo@gmail.com> | |
1294 | M: Javier Martinez Canillas <javier@dowhile0.org> | |
1295 | L: linux-omap@vger.kernel.org | |
1296 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1297 | S: Maintained | |
06ff74fd | 1298 | F: arch/arm/boot/dts/omap3-igep* |
5e767ab9 | 1299 | |
403d2971 MV |
1300 | ARM/INCOME PXA270 SUPPORT |
1301 | M: Marek Vasut <marek.vasut@gmail.com> | |
1302 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1303 | S: Maintained | |
ec154082 | 1304 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 1305 | |
2b7a52a4 | 1306 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 1307 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1308 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1309 | S: Maintained |
e2bdb176 DW |
1310 | |
1311 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
efc03ecb | 1312 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
08223d80 | 1313 | S: Orphan |
2b7a52a4 LB |
1314 | |
1315 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 1316 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1317 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1318 | S: Maintained |
2b7a52a4 LB |
1319 | |
1320 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 1321 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1322 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1323 | S: Maintained |
2b7a52a4 | 1324 | |
2b7a52a4 | 1325 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 1326 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1327 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1328 | S: Maintained |
1329 | ||
dfdd8cc9 KH |
1330 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
1331 | M: Imre Kaloz <kaloz@openwrt.org> | |
5529c2cd | 1332 | M: Krzysztof Halasa <khalasa@piap.pl> |
baea7b94 | 1333 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
dfdd8cc9 KH |
1334 | S: Maintained |
1335 | F: arch/arm/mach-ixp4xx/ | |
1336 | ||
838553c5 | 1337 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
1338 | M: Jonathan Cameron <jic23@cam.ac.uk> |
1339 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1340 | S: Maintained | |
1341 | F: arch/arm/mach-pxa/stargate2.c | |
1342 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
1343 | ||
2b7a52a4 | 1344 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 1345 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1346 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1347 | S: Maintained |
2b7a52a4 LB |
1348 | |
1349 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 1350 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1351 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1352 | S: Maintained |
1353 | ||
1154f858 | 1354 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
97215800 | 1355 | M: Santosh Shilimkar <ssantosh@kernel.org> |
1154f858 SS |
1356 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1357 | S: Maintained | |
1358 | F: arch/arm/mach-keystone/ | |
5edafc29 | 1359 | F: arch/arm/boot/dts/keystone-* |
317929cd | 1360 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
1154f858 | 1361 | |
bc6aa566 | 1362 | ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK |
97215800 | 1363 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1364 | L: linux-kernel@vger.kernel.org |
1365 | S: Maintained | |
1366 | F: drivers/clk/keystone/ | |
1367 | ||
1368 | ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE | |
97215800 | 1369 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1370 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1371 | L: linux-kernel@vger.kernel.org | |
1372 | S: Maintained | |
1373 | F: drivers/clocksource/timer-keystone.c | |
1374 | ||
1375 | ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER | |
97215800 | 1376 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1377 | L: linux-kernel@vger.kernel.org |
1378 | S: Maintained | |
1379 | F: drivers/power/reset/keystone-reset.c | |
1380 | ||
1381 | ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS | |
97215800 | 1382 | M: Santosh Shilimkar <ssantosh@kernel.org> |
bc6aa566 SS |
1383 | L: linux-kernel@vger.kernel.org |
1384 | S: Maintained | |
1385 | F: drivers/memory/*emif* | |
1386 | ||
8cb555b6 CM |
1387 | ARM/LG1K ARCHITECTURE |
1388 | M: Chanho Min <chanho.min@lge.com> | |
1389 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1390 | S: Maintained | |
1391 | F: arch/arm64/boot/dts/lg/ | |
1392 | ||
2b7a52a4 | 1393 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
8b58be88 | 1394 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1395 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1396 | S: Maintained |
1397 | ||
3143875f JE |
1398 | ARM/LPC18XX ARCHITECTURE |
1399 | M: Joachim Eastwood <manabian@gmail.com> | |
1400 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1401 | S: Maintained | |
19c1c32c JE |
1402 | F: arch/arm/boot/dts/lpc43* |
1403 | F: drivers/clk/nxp/clk-lpc18xx* | |
1404 | F: drivers/clocksource/time-lpc32xx.c | |
1405 | F: drivers/i2c/busses/i2c-lpc2k.c | |
1406 | F: drivers/memory/pl172.c | |
1407 | F: drivers/mtd/spi-nor/nxp-spifi.c | |
1408 | F: drivers/rtc/rtc-lpc24xx.c | |
3143875f JE |
1409 | N: lpc18xx |
1410 | ||
15e4f7da | 1411 | ARM/LPC32XX SOC SUPPORT |
8d5a6b42 VZ |
1412 | M: Vladimir Zapolskiy <vz@mleia.com> |
1413 | M: Sylvain Lemieux <slemieux.tyco@gmail.com> | |
15e4f7da | 1414 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
8d5a6b42 | 1415 | T: git git://github.com/vzapolskiy/linux-lpc32xx.git |
15e4f7da | 1416 | S: Maintained |
2377f9fd | 1417 | F: arch/arm/boot/dts/lpc32* |
15e4f7da | 1418 | F: arch/arm/mach-lpc32xx/ |
2377f9fd VZ |
1419 | F: drivers/i2c/busses/i2c-pnx.c |
1420 | F: drivers/net/ethernet/nxp/lpc_eth.c | |
1421 | F: drivers/usb/host/ohci-nxp.c | |
1422 | F: drivers/watchdog/pnx4008_wdt.c | |
1423 | N: lpc32xx | |
15e4f7da | 1424 | |
3b886171 | 1425 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 1426 | M: Philipp Zabel <philipp.zabel@gmail.com> |
3b886171 PZ |
1427 | S: Maintained |
1428 | ||
1f664ab7 | 1429 | ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support |
75f41273 TP |
1430 | M: Jason Cooper <jason@lakedaemon.net> |
1431 | M: Andrew Lunn <andrew@lunn.ch> | |
1432 | M: Gregory Clement <gregory.clement@free-electrons.com> | |
dcb71503 | 1433 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
75f41273 TP |
1434 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1435 | S: Maintained | |
1436 | F: arch/arm/mach-mvebu/ | |
59ec9671 | 1437 | F: drivers/rtc/rtc-armada38x.c |
31c17ac9 GC |
1438 | F: arch/arm/boot/dts/armada* |
1439 | F: arch/arm/boot/dts/kirkwood* | |
dcc3068a | 1440 | F: arch/arm64/boot/dts/marvell/armada* |
9f123def | 1441 | F: drivers/cpufreq/mvebu-cpufreq.c |
e269777f | 1442 | F: arch/arm/configs/mvebu_*_defconfig |
75f41273 | 1443 | |
40f4978b SH |
1444 | ARM/Marvell Berlin SoC support |
1445 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> | |
1446 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1447 | S: Maintained | |
1448 | F: arch/arm/mach-berlin/ | |
31c17ac9 | 1449 | F: arch/arm/boot/dts/berlin* |
e68d7c14 | 1450 | F: arch/arm64/boot/dts/marvell/berlin* |
31c17ac9 | 1451 | |
40f4978b | 1452 | |
4cfab57e | 1453 | ARM/Marvell Dove/MV78xx0/Orion SOC support |
4f1312b0 NP |
1454 | M: Jason Cooper <jason@lakedaemon.net> |
1455 | M: Andrew Lunn <andrew@lunn.ch> | |
dcb71503 | 1456 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
bfda4031 | 1457 | M: Gregory Clement <gregory.clement@free-electrons.com> |
efc03ecb | 1458 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4f1312b0 NP |
1459 | S: Maintained |
1460 | F: arch/arm/mach-dove/ | |
54a246ff NP |
1461 | F: arch/arm/mach-mv78xx0/ |
1462 | F: arch/arm/mach-orion5x/ | |
1463 | F: arch/arm/plat-orion/ | |
31c17ac9 GC |
1464 | F: arch/arm/boot/dts/dove* |
1465 | F: arch/arm/boot/dts/orion5x* | |
1466 | ||
3b886171 | 1467 | |
d69ac131 AC |
1468 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
1469 | M: Alexander Clouter <alex@digriz.org.uk> | |
1470 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1471 | W: http://www.digriz.org.uk/ts78xx/kernel | |
1472 | S: Maintained | |
1473 | F: arch/arm/mach-orion5x/ts78xx-* | |
1474 | ||
e557959d NA |
1475 | ARM/OXNAS platform support |
1476 | M: Neil Armstrong <narmstrong@baylibre.com> | |
1477 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
d6fbd37b | 1478 | L: linux-oxnas@lists.tuxfamily.org (moderated for non-subscribers) |
e557959d NA |
1479 | S: Maintained |
1480 | F: arch/arm/mach-oxnas/ | |
1481 | F: arch/arm/boot/dts/oxnas* | |
1482 | F: arch/arm/boot/dts/wd-mbwe.dts | |
1483 | N: oxnas | |
1484 | ||
607b8fc9 EH |
1485 | ARM/Mediatek RTC DRIVER |
1486 | M: Eddie Huang <eddie.huang@mediatek.com> | |
1487 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1488 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) | |
1489 | S: Maintained | |
1490 | F: drivers/rtc/rtc-mt6397.c | |
1491 | ||
e54951c8 MB |
1492 | ARM/Mediatek SoC support |
1493 | M: Matthias Brugger <matthias.bgg@gmail.com> | |
1494 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
17b199d6 | 1495 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) |
e54951c8 MB |
1496 | S: Maintained |
1497 | F: arch/arm/boot/dts/mt6* | |
1498 | F: arch/arm/boot/dts/mt8* | |
1499 | F: arch/arm/mach-mediatek/ | |
1500 | N: mtk | |
1501 | K: mediatek | |
1502 | ||
0f8669e3 CY |
1503 | ARM/Mediatek USB3 PHY DRIVER |
1504 | M: Chunfeng Yun <chunfeng.yun@mediatek.com> | |
1505 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1506 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) | |
1507 | S: Maintained | |
1508 | F: drivers/phy/phy-mt65xx-usb3.c | |
1509 | ||
adcb079f AB |
1510 | ARM/MICREL KS8695 ARCHITECTURE |
1511 | M: Greg Ungerer <gerg@uclinux.org> | |
1512 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
14430813 | 1513 | F: arch/arm/mach-ks8695/ |
adcb079f AB |
1514 | S: Odd Fixes |
1515 | ||
d78ff0a5 | 1516 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1517 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 1518 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d78ff0a5 RJ |
1519 | F: arch/arm/mach-pxa/mioa701.c |
1520 | S: Maintained | |
1521 | ||
9624dfe6 | 1522 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1523 | M: Michael Petchkovsky <mkpetch@internode.on.net> |
9624dfe6 KE |
1524 | S: Maintained |
1525 | ||
e0ee9851 | 1526 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1527 | M: Alessandro Rubini <rubini@unipv.it> |
e4651a9f | 1528 | M: Linus Walleij <linus.walleij@linaro.org> |
28b8e8d4 JP |
1529 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1530 | S: Maintained | |
1531 | F: arch/arm/mach-nomadik/ | |
ecc265fe | 1532 | F: drivers/pinctrl/nomadik/ |
87572880 | 1533 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1534 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1535 | |
9d76295a | 1536 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1537 | M: Nelson Castillo <arhuaco@freaks-unidos.net> |
9d76295a AG |
1538 | L: openmoko-kernel@lists.openmoko.org (subscribers-only) |
1539 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1540 | S: Supported | |
1541 | ||
8459c159 | 1542 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1543 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
1544 | M: Dirk Opfer <dirk@opfer-online.de> | |
8459c159 DO |
1545 | S: Maintained |
1546 | ||
5d783a2d | 1547 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1548 | M: Marek Vasut <marek.vasut@gmail.com> |
75280787 | 1549 | L: linux-arm-kernel@lists.infradead.org |
b5e4ad57 MV |
1550 | W: http://hackndev.com |
1551 | S: Maintained | |
933d35f0 JP |
1552 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1553 | F: arch/arm/mach-pxa/palmtx.c | |
1554 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1555 | F: arch/arm/mach-pxa/palmt5.c | |
1556 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1557 | F: arch/arm/mach-pxa/palmld.c | |
1558 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1559 | F: arch/arm/mach-pxa/palmte2.c | |
1560 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1561 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1562 | |
b57fe924 | 1563 | ARM/PALM TREO SUPPORT |
d8130624 | 1564 | M: Tomas Cech <sleep_walker@suse.com> |
75280787 | 1565 | L: linux-arm-kernel@lists.infradead.org |
90af5811 TSC |
1566 | W: http://hackndev.com |
1567 | S: Maintained | |
b57fe924 JP |
1568 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1569 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1570 | |
c49e1e63 | 1571 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1572 | M: Sergey Lapin <slapin@ossfans.org> |
75280787 | 1573 | L: linux-arm-kernel@lists.infradead.org |
7d2c86b5 JP |
1574 | W: http://hackndev.com |
1575 | S: Maintained | |
933d35f0 JP |
1576 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1577 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1578 | |
1da177e4 | 1579 | ARM/PLEB SUPPORT |
8b58be88 | 1580 | M: Peter Chubb <pleb@gelato.unsw.edu.au> |
1da177e4 LT |
1581 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1582 | S: Maintained | |
1583 | ||
1584 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1585 | M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> |
efc03ecb | 1586 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1587 | W: http://www.armlinux.org.uk/ |
1da177e4 LT |
1588 | S: Maintained |
1589 | ||
8fc1b0f8 | 1590 | ARM/QUALCOMM SUPPORT |
bbeaa595 AG |
1591 | M: Andy Gross <andy.gross@linaro.org> |
1592 | M: David Brown <david.brown@linaro.org> | |
8fc1b0f8 | 1593 | L: linux-arm-msm@vger.kernel.org |
f5d3af9d | 1594 | L: linux-soc@vger.kernel.org |
8fc1b0f8 | 1595 | S: Maintained |
0ff50d60 | 1596 | F: Documentation/devicetree/bindings/soc/qcom/ |
0c4cbf9e BA |
1597 | F: arch/arm/boot/dts/qcom-*.dts |
1598 | F: arch/arm/boot/dts/qcom-*.dtsi | |
8fc1b0f8 | 1599 | F: arch/arm/mach-qcom/ |
e68d7c14 | 1600 | F: arch/arm64/boot/dts/qcom/* |
5482cefa | 1601 | F: drivers/i2c/busses/i2c-qup.c |
39a3366a | 1602 | F: drivers/clk/qcom/ |
f5d3af9d | 1603 | F: drivers/soc/qcom/ |
5482cefa | 1604 | F: drivers/spi/spi-qup.c |
c0c89faf SB |
1605 | F: drivers/tty/serial/msm_serial.h |
1606 | F: drivers/tty/serial/msm_serial.c | |
1607 | F: drivers/*/pm8???-* | |
1608 | F: drivers/mfd/ssbi.c | |
916f743d | 1609 | F: drivers/firmware/qcom_scm.c |
bbeaa595 | 1610 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git |
8fc1b0f8 | 1611 | |
2b7a52a4 | 1612 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1613 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1614 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1615 | S: Maintained |
1616 | ||
b138e119 SH |
1617 | ARM/RENESAS ARM64 ARCHITECTURE |
1618 | M: Simon Horman <horms@verge.net.au> | |
1619 | M: Magnus Damm <magnus.damm@gmail.com> | |
1926e54f SH |
1620 | L: linux-renesas-soc@vger.kernel.org |
1621 | Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/ | |
b138e119 SH |
1622 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
1623 | S: Supported | |
1624 | F: arch/arm64/boot/dts/renesas/ | |
be32bcbb GU |
1625 | F: drivers/soc/renesas/ |
1626 | F: include/linux/soc/renesas/ | |
b138e119 | 1627 | |
d4275354 | 1628 | ARM/RISCPC ARCHITECTURE |
54176cc6 | 1629 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1630 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1631 | W: http://www.armlinux.org.uk/ |
d4275354 | 1632 | S: Maintained |
d4275354 RK |
1633 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1634 | F: arch/arm/include/asm/hardware/ioc.h | |
1635 | F: arch/arm/include/asm/hardware/iomd.h | |
1636 | F: arch/arm/include/asm/hardware/memc.h | |
1637 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1638 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1639 | F: drivers/net/ethernet/i825xx/ether1* |
1640 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1641 | F: drivers/scsi/arm/ |
1642 | ||
08ddbb0a HS |
1643 | ARM/Rockchip SoC support |
1644 | M: Heiko Stuebner <heiko@sntech.de> | |
1645 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
00250b52 | 1646 | L: linux-rockchip@lists.infradead.org |
9f273c24 | 1647 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git |
08ddbb0a | 1648 | S: Maintained |
541555e9 | 1649 | F: arch/arm/boot/dts/rk3* |
08ddbb0a | 1650 | F: arch/arm/mach-rockchip/ |
541555e9 HS |
1651 | F: drivers/clk/rockchip/ |
1652 | F: drivers/i2c/busses/i2c-rk3x.c | |
08ddbb0a | 1653 | F: drivers/*/*rockchip* |
541555e9 HS |
1654 | F: drivers/*/*/*rockchip* |
1655 | F: sound/soc/rockchip/ | |
b4331b43 | 1656 | N: rockchip |
08ddbb0a | 1657 | |
5bfb937c KK |
1658 | ARM/SAMSUNG EXYNOS ARM ARCHITECTURES |
1659 | M: Kukjin Kim <kgene@kernel.org> | |
326dce07 | 1660 | M: Krzysztof Kozlowski <krzk@kernel.org> |
29617e1c | 1661 | R: Javier Martinez Canillas <javier@osg.samsung.com> |
efc03ecb | 1662 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7a549d78 | 1663 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
b21477f9 | 1664 | S: Maintained |
6f0589c8 | 1665 | F: arch/arm/boot/dts/s3c* |
e68d7c14 RH |
1666 | F: arch/arm/boot/dts/s5p* |
1667 | F: arch/arm/boot/dts/samsung* | |
6f0589c8 | 1668 | F: arch/arm/boot/dts/exynos* |
d97236e6 | 1669 | F: arch/arm64/boot/dts/exynos/ |
482ce512 | 1670 | F: arch/arm/plat-samsung/ |
769bbb63 HS |
1671 | F: arch/arm/mach-s3c24*/ |
1672 | F: arch/arm/mach-s3c64xx/ | |
5bfb937c KK |
1673 | F: arch/arm/mach-s5p*/ |
1674 | F: arch/arm/mach-exynos*/ | |
1c03274d KK |
1675 | F: drivers/*/*s3c24* |
1676 | F: drivers/*/*/*s3c24* | |
1677 | F: drivers/*/*s3c64xx* | |
1678 | F: drivers/*/*s5pv210* | |
ffd51977 | 1679 | F: drivers/memory/samsung/* |
bf50ddcd | 1680 | F: drivers/soc/samsung/* |
d6b9aea6 KK |
1681 | F: Documentation/arm/Samsung/ |
1682 | F: Documentation/devicetree/bindings/arm/samsung/ | |
1683 | F: Documentation/devicetree/bindings/sram/samsung-sram.txt | |
1684 | F: Documentation/devicetree/bindings/power/pd-samsung.txt | |
33d43cdd | 1685 | N: exynos |
f556cb07 | 1686 | |
10ffa964 KP |
1687 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1688 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1689 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1690 | S: Maintained | |
004bbd3c | 1691 | F: arch/arm/mach-s5pv210/ |
10ffa964 | 1692 | |
3ce4ccb6 KD |
1693 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1694 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
774e0362 KD |
1695 | M: Kamil Debski <kamil@wypas.org> |
1696 | M: Andrzej Hajda <a.hajda@samsung.com> | |
3ce4ccb6 KD |
1697 | L: linux-arm-kernel@lists.infradead.org |
1698 | L: linux-media@vger.kernel.org | |
1699 | S: Maintained | |
1700 | F: drivers/media/platform/s5p-g2d/ | |
1701 | ||
e6a476fd MS |
1702 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1703 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
774e0362 | 1704 | M: Kamil Debski <kamil@wypas.org> |
6305902c | 1705 | M: Jeongtae Park <jtp.park@samsung.com> |
774e0362 | 1706 | M: Andrzej Hajda <a.hajda@samsung.com> |
e6a476fd MS |
1707 | L: linux-arm-kernel@lists.infradead.org |
1708 | L: linux-media@vger.kernel.org | |
1709 | S: Maintained | |
934455d7 | 1710 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1711 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd | 1712 | |
1bcbf6f4 KD |
1713 | ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT |
1714 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1715 | L: linux-arm-kernel@lists.infradead.org | |
1716 | L: linux-media@vger.kernel.org | |
1717 | S: Maintained | |
78fc853b | 1718 | F: drivers/staging/media/platform/s5p-cec/ |
1bcbf6f4 | 1719 | |
7d9f9bf4 AP |
1720 | ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT |
1721 | M: Andrzej Pietrasiewicz <andrzej.p@samsung.com> | |
1722 | M: Jacek Anaszewski <j.anaszewski@samsung.com> | |
1723 | L: linux-arm-kernel@lists.infradead.org | |
1724 | L: linux-media@vger.kernel.org | |
1725 | S: Maintained | |
1726 | F: drivers/media/platform/s5p-jpeg/ | |
1727 | ||
d48d38e8 | 1728 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1729 | M: Simon Horman <horms@verge.net.au> |
d48d38e8 | 1730 | M: Magnus Damm <magnus.damm@gmail.com> |
4a121096 | 1731 | L: linux-renesas-soc@vger.kernel.org |
4a121096 | 1732 | Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/ |
5e212598 | 1733 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 | 1734 | S: Supported |
0b514fdb SH |
1735 | F: arch/arm/boot/dts/emev2* |
1736 | F: arch/arm/boot/dts/r7s* | |
1737 | F: arch/arm/boot/dts/r8a* | |
1738 | F: arch/arm/boot/dts/sh* | |
0b514fdb | 1739 | F: arch/arm/configs/shmobile_defconfig |
7a2071c5 | 1740 | F: arch/arm/include/debug/renesas-scif.S |
d48d38e8 | 1741 | F: arch/arm/mach-shmobile/ |
be32bcbb GU |
1742 | F: drivers/soc/renesas/ |
1743 | F: include/linux/soc/renesas/ | |
d48d38e8 | 1744 | |
66314223 | 1745 | ARM/SOCFPGA ARCHITECTURE |
ba2b7d0a | 1746 | M: Dinh Nguyen <dinguyen@opensource.altera.com> |
66314223 DN |
1747 | S: Maintained |
1748 | F: arch/arm/mach-socfpga/ | |
efadb751 DN |
1749 | F: arch/arm/boot/dts/socfpga* |
1750 | F: arch/arm/configs/socfpga_defconfig | |
e68d7c14 | 1751 | F: arch/arm64/boot/dts/altera/ |
ba2b7d0a | 1752 | W: http://www.rocketboards.org |
efadb751 | 1753 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git |
66314223 DN |
1754 | |
1755 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
ba2b7d0a | 1756 | M: Dinh Nguyen <dinguyen@opensource.altera.com> |
66314223 DN |
1757 | S: Maintained |
1758 | F: drivers/clk/socfpga/ | |
1759 | ||
71bcada8 TT |
1760 | ARM/SOCFPGA EDAC SUPPORT |
1761 | M: Thor Thayer <tthayer@opensource.altera.com> | |
1762 | S: Maintained | |
1763 | F: drivers/edac/altera_edac. | |
1764 | ||
65ebcc11 | 1765 | ARM/STI ARCHITECTURE |
a92177ea | 1766 | M: Patrice Chotard <patrice.chotard@st.com> |
65ebcc11 SK |
1767 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1768 | L: kernel@stlinux.com | |
1769 | W: http://www.stlinux.com | |
1770 | S: Maintained | |
1771 | F: arch/arm/mach-sti/ | |
a92177ea | 1772 | F: arch/arm/boot/dts/sti* |
b8e31bf3 | 1773 | F: drivers/char/hw_random/st-rng.c |
a92177ea | 1774 | F: drivers/clocksource/arm_global_timer.c |
82805d1b | 1775 | F: drivers/clocksource/clksrc_st_lpc.c |
1d4b42bc | 1776 | F: drivers/cpufreq/sti-cpufreq.c |
a92177ea | 1777 | F: drivers/i2c/busses/i2c-st.c |
346e2e4a | 1778 | F: drivers/media/rc/st_rc.c |
95d66b16 | 1779 | F: drivers/media/platform/sti/c8sectpfe/ |
f53b2bff | 1780 | F: drivers/mmc/host/sdhci-st.c |
e95cf393 PG |
1781 | F: drivers/phy/phy-miphy28lp.c |
1782 | F: drivers/phy/phy-miphy365x.c | |
6da969a5 | 1783 | F: drivers/phy/phy-stih407-usb.c |
26389c78 | 1784 | F: drivers/phy/phy-stih41x-usb.c |
346e2e4a | 1785 | F: drivers/pinctrl/pinctrl-st.c |
aac22524 | 1786 | F: drivers/remoteproc/st_remoteproc.c |
346e2e4a | 1787 | F: drivers/reset/sti/ |
db4112e6 | 1788 | F: drivers/rtc/rtc-st-lpc.c |
346e2e4a | 1789 | F: drivers/tty/serial/st-asc.c |
eb11adab | 1790 | F: drivers/usb/dwc3/dwc3-st.c |
62f6f086 PG |
1791 | F: drivers/usb/host/ehci-st.c |
1792 | F: drivers/usb/host/ohci-st.c | |
db4112e6 | 1793 | F: drivers/watchdog/st_lpc_wdt.c |
daac6f86 | 1794 | F: drivers/ata/ahci_st.c |
65ebcc11 | 1795 | |
ee6e7879 MC |
1796 | ARM/STM32 ARCHITECTURE |
1797 | M: Maxime Coquelin <mcoquelin.stm32@gmail.com> | |
8ca2cf2c | 1798 | M: Alexandre Torgue <alexandre.torgue@st.com> |
ee6e7879 MC |
1799 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1800 | S: Maintained | |
1801 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git | |
1802 | N: stm32 | |
1803 | F: drivers/clocksource/armv7m_systick.c | |
1804 | ||
d6de5b02 MG |
1805 | ARM/TANGO ARCHITECTURE |
1806 | M: Marc Gonzalez <marc_gonzalez@sigmadesigns.com> | |
1807 | L: linux-arm-kernel@lists.infradead.org | |
1808 | S: Maintained | |
e2bd0d37 | 1809 | N: tango |
d6de5b02 | 1810 | |
2b7a52a4 | 1811 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1812 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1813 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1814 | S: Maintained |
1815 | ||
1bbd7089 | 1816 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1817 | M: "Mark F. Brown" <mark.brown314@gmail.com> |
1bbd7089 MB |
1818 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1819 | S: Maintained | |
1820 | ||
2b7a52a4 | 1821 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1822 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1823 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1824 | S: Maintained |
1825 | ||
98ad6e3b | 1826 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1827 | M: Wan ZongShun <mcuos.com@gmail.com> |
efc03ecb | 1828 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7d2c86b5 JP |
1829 | W: http://www.mcuos.com |
1830 | S: Maintained | |
4e89e8f6 | 1831 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1832 | F: drivers/input/keyboard/w90p910_keypad.c |
1833 | F: drivers/input/touchscreen/w90p910_ts.c | |
1834 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1835 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1836 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1837 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1838 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 | 1839 | F: drivers/usb/host/ehci-w90x900.c |
8a61f013 | 1840 | F: drivers/video/fbdev/nuc900fb.c |
98ad6e3b | 1841 | |
54274d71 | 1842 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1843 | M: Linus Walleij <linus.walleij@linaro.org> |
54274d71 LW |
1844 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1845 | S: Supported | |
1846 | F: arch/arm/mach-u300/ | |
9affbd24 | 1847 | F: drivers/clocksource/timer-u300.c |
54274d71 LW |
1848 | F: drivers/i2c/busses/i2c-stu300.c |
1849 | F: drivers/rtc/rtc-coh901331.c | |
1850 | F: drivers/watchdog/coh901327_wdt.c | |
1851 | F: drivers/dma/coh901318* | |
87572880 LW |
1852 | F: drivers/mfd/ab3100* |
1853 | F: drivers/rtc/rtc-ab3100.c | |
1854 | F: drivers/rtc/rtc-coh901331.c | |
1855 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1856 | |
3d00d04f MY |
1857 | ARM/UNIPHIER ARCHITECTURE |
1858 | M: Masahiro Yamada <yamada.masahiro@socionext.com> | |
1859 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
becc8d3c | 1860 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git |
3d00d04f | 1861 | S: Maintained |
a3ff83d2 | 1862 | F: arch/arm/boot/dts/uniphier* |
e7ecbc05 | 1863 | F: arch/arm/include/asm/hardware/cache-uniphier.h |
3d00d04f | 1864 | F: arch/arm/mach-uniphier/ |
e7ecbc05 | 1865 | F: arch/arm/mm/cache-uniphier.c |
e1a0ebc8 | 1866 | F: arch/arm64/boot/dts/socionext/ |
4b7f48d3 | 1867 | F: drivers/bus/uniphier-system-bus.c |
734d82f4 | 1868 | F: drivers/clk/uniphier/ |
dd6fd4a3 | 1869 | F: drivers/i2c/busses/i2c-uniphier* |
a3ff83d2 | 1870 | F: drivers/pinctrl/uniphier/ |
54e991b5 | 1871 | F: drivers/reset/reset-uniphier.c |
a3ff83d2 | 1872 | F: drivers/tty/serial/8250/8250_uniphier.c |
3d00d04f MY |
1873 | N: uniphier |
1874 | ||
87572880 | 1875 | ARM/Ux500 ARM ARCHITECTURE |
e4651a9f | 1876 | M: Linus Walleij <linus.walleij@linaro.org> |
870725d9 SK |
1877 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1878 | S: Maintained | |
1879 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1880 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1881 | F: drivers/dma/ste_dma40* |
e4651a9f | 1882 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1883 | F: drivers/mfd/abx500* |
1884 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1885 | F: drivers/mfd/dbx500* |
1886 | F: drivers/mfd/db8500* | |
ecc265fe JP |
1887 | F: drivers/pinctrl/nomadik/pinctrl-ab* |
1888 | F: drivers/pinctrl/nomadik/pinctrl-nomadik* | |
87572880 | 1889 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1890 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1891 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1892 | |
e93fde28 UH |
1893 | ARM/Ux500 CLOCK FRAMEWORK SUPPORT |
1894 | M: Ulf Hansson <ulf.hansson@linaro.org> | |
1895 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1896 | T: git git://git.linaro.org/people/ulfh/clk.git | |
1897 | S: Maintained | |
1898 | F: drivers/clk/ux500/ | |
e93fde28 | 1899 | |
740d93b1 PM |
1900 | ARM/VERSATILE EXPRESS PLATFORM |
1901 | M: Liviu Dudau <liviu.dudau@arm.com> | |
1902 | M: Sudeep Holla <sudeep.holla@arm.com> | |
1903 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
1904 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1905 | S: Maintained | |
1906 | F: arch/arm/boot/dts/vexpress* | |
e68d7c14 | 1907 | F: arch/arm64/boot/dts/arm/ |
740d93b1 PM |
1908 | F: arch/arm/mach-vexpress/ |
1909 | F: */*/vexpress* | |
7e8f403f | 1910 | F: */*/*/vexpress* |
740d93b1 PM |
1911 | F: drivers/clk/versatile/clk-vexpress-osc.c |
1912 | F: drivers/clocksource/versatile.c | |
46a600ea | 1913 | N: mps2 |
740d93b1 | 1914 | |
d4275354 | 1915 | ARM/VFP SUPPORT |
54176cc6 | 1916 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1917 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1918 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
1919 | S: Maintained |
1920 | F: arch/arm/vfp/ | |
1921 | ||
e66b6d8e MV |
1922 | ARM/VOIPAC PXA270 SUPPORT |
1923 | M: Marek Vasut <marek.vasut@gmail.com> | |
1924 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1925 | S: Maintained | |
1926 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1927 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1928 | |
04529fe2 TP |
1929 | ARM/VT8500 ARM ARCHITECTURE |
1930 | M: Tony Prisk <linux@prisktech.co.nz> | |
1931 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1932 | S: Maintained | |
1933 | F: arch/arm/mach-vt8500/ | |
41fd91b4 | 1934 | F: drivers/clocksource/vt8500_timer.c |
560746eb | 1935 | F: drivers/i2c/busses/i2c-wmt.c |
41fd91b4 TP |
1936 | F: drivers/mmc/host/wmt-sdmmc.c |
1937 | F: drivers/pwm/pwm-vt8500.c | |
1938 | F: drivers/rtc/rtc-vt8500.c | |
1939 | F: drivers/tty/serial/vt8500_serial.c | |
4f31102b | 1940 | F: drivers/usb/host/ehci-platform.c |
41fd91b4 | 1941 | F: drivers/usb/host/uhci-platform.c |
8a61f013 JH |
1942 | F: drivers/video/fbdev/vt8500lcdfb.* |
1943 | F: drivers/video/fbdev/wm8505fb* | |
1944 | F: drivers/video/fbdev/wmt_ge_rops.* | |
04529fe2 | 1945 | |
e66b6d8e MV |
1946 | ARM/ZIPIT Z2 SUPPORT |
1947 | M: Marek Vasut <marek.vasut@gmail.com> | |
1948 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1949 | S: Maintained | |
1950 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1951 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1952 | |
5ecc4b53 JN |
1953 | ARM/ZTE ARCHITECTURE |
1954 | M: Jun Nie <jun.nie@linaro.org> | |
1955 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1956 | S: Maintained | |
1957 | F: arch/arm/mach-zx/ | |
1958 | F: drivers/clk/zte/ | |
1959 | F: Documentation/devicetree/bindings/arm/zte.txt | |
1960 | F: Documentation/devicetree/bindings/clock/zx296702-clk.txt | |
1961 | ||
51f29d44 MS |
1962 | ARM/ZYNQ ARCHITECTURE |
1963 | M: Michal Simek <michal.simek@xilinx.com> | |
f0fd9ad8 | 1964 | R: Sören Brinkmann <soren.brinkmann@xilinx.com> |
51f29d44 MS |
1965 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1966 | W: http://wiki.xilinx.com | |
d6448b76 | 1967 | T: git https://github.com/Xilinx/linux-xlnx.git |
51f29d44 MS |
1968 | S: Supported |
1969 | F: arch/arm/mach-zynq/ | |
bd2a337a | 1970 | F: drivers/cpuidle/cpuidle-zynq.c |
fb9d4959 | 1971 | F: drivers/block/xsysace.c |
c2fd4e38 MS |
1972 | N: zynq |
1973 | N: xilinx | |
1974 | F: drivers/clocksource/cadence_ttc_timer.c | |
df8eb569 | 1975 | F: drivers/i2c/busses/i2c-cadence.c |
e3ec3a3d | 1976 | F: drivers/mmc/host/sdhci-of-arasan.c |
ae9b56e3 | 1977 | F: drivers/edac/synopsys_edac.c |
51f29d44 | 1978 | |
48ec83bc | 1979 | ARM SMMU DRIVERS |
b8f9879e | 1980 | M: Will Deacon <will.deacon@arm.com> |
c8bff3a6 | 1981 | R: Robin Murphy <robin.murphy@arm.com> |
b8f9879e WD |
1982 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1983 | S: Maintained | |
1984 | F: drivers/iommu/arm-smmu.c | |
48ec83bc | 1985 | F: drivers/iommu/arm-smmu-v3.c |
e1d3c0fd | 1986 | F: drivers/iommu/io-pgtable-arm.c |
c8bff3a6 | 1987 | F: drivers/iommu/io-pgtable-arm-v7s.c |
b8f9879e | 1988 | |
38074229 CM |
1989 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1990 | M: Catalin Marinas <catalin.marinas@arm.com> | |
d19766ec | 1991 | M: Will Deacon <will.deacon@arm.com> |
38074229 | 1992 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9f273c24 | 1993 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git |
38074229 CM |
1994 | S: Maintained |
1995 | F: arch/arm64/ | |
d19766ec | 1996 | F: Documentation/arm64/ |
38074229 | 1997 | |
9d7005f9 LP |
1998 | AS3645A LED FLASH CONTROLLER DRIVER |
1999 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
2000 | L: linux-media@vger.kernel.org | |
2001 | T: git git://linuxtv.org/media_tree.git | |
2002 | S: Maintained | |
2003 | F: drivers/media/i2c/as3645a.c | |
b5dcee22 | 2004 | F: include/media/i2c/as3645a.h |
9d7005f9 | 2005 | |
7c94a8b2 LW |
2006 | ASAHI KASEI AK8974 DRIVER |
2007 | M: Linus Walleij <linus.walleij@linaro.org> | |
2008 | L: linux-iio@vger.kernel.org | |
2009 | W: http://www.akm.com/ | |
2010 | S: Supported | |
2011 | F: drivers/iio/magnetometer/ak8974.c | |
2012 | ||
d58de038 GJ |
2013 | ASC7621 HARDWARE MONITOR DRIVER |
2014 | M: George Joseph <george.joseph@fairview5.com> | |
968ce1b1 | 2015 | L: linux-hwmon@vger.kernel.org |
d58de038 GJ |
2016 | S: Maintained |
2017 | F: Documentation/hwmon/asc7621 | |
2018 | F: drivers/hwmon/asc7621.c | |
2019 | ||
b229ece9 | 2020 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 2021 | M: Corentin Chary <corentin.chary@gmail.com> |
1da177e4 | 2022 | L: acpi4asus-user@lists.sourceforge.net |
d0944853 | 2023 | L: platform-driver-x86@vger.kernel.org |
76593d6f | 2024 | W: http://acpi4asus.sf.net |
85091b71 | 2025 | S: Maintained |
b229ece9 CC |
2026 | F: drivers/platform/x86/asus*.c |
2027 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 2028 | |
f6a6bbae JPRV |
2029 | ASUS WIRELESS RADIO CONTROL DRIVER |
2030 | M: João Paulo Rechi Vita <jprvita@gmail.com> | |
2031 | L: platform-driver-x86@vger.kernel.org | |
2032 | S: Maintained | |
2033 | F: drivers/platform/x86/asus-wireless.c | |
2034 | ||
75aeddd1 DH |
2035 | ASYMMETRIC KEYS |
2036 | M: David Howells <dhowells@redhat.com> | |
2037 | L: keyrings@vger.kernel.org | |
2038 | S: Maintained | |
2039 | F: Documentation/crypto/asymmetric-keys.txt | |
2040 | F: include/linux/verification.h | |
2041 | F: include/crypto/public_key.h | |
2042 | F: include/crypto/pkcs7.h | |
2043 | F: crypto/asymmetric_keys/ | |
2044 | ||
953a6479 | 2045 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
08223d80 | 2046 | R: Dan Williams <dan.j.williams@intel.com> |
b3e5f263 | 2047 | W: http://sourceforge.net/projects/xscaleiop |
08223d80 | 2048 | S: Odd fixes |
679655da JP |
2049 | F: Documentation/crypto/async-tx-api.txt |
2050 | F: crypto/async_tx/ | |
2051 | F: drivers/dma/ | |
2052 | F: include/linux/dmaengine.h | |
2053 | F: include/linux/async_tx.h | |
b3e5f263 | 2054 | |
a1867d36 | 2055 | AT24 EEPROM DRIVER |
14d77c4d | 2056 | M: Wolfram Sang <wsa@the-dreams.de> |
a1867d36 WS |
2057 | L: linux-i2c@vger.kernel.org |
2058 | S: Maintained | |
2059 | F: drivers/misc/eeprom/at24.c | |
25f73ed5 | 2060 | F: include/linux/platform_data/at24.h |
a1867d36 | 2061 | |
e7839f25 | 2062 | ATA OVER ETHERNET (AOE) DRIVER |
fb903811 EC |
2063 | M: "Ed L. Cashin" <ed.cashin@acm.org> |
2064 | W: http://www.openaoe.org/ | |
1da177e4 | 2065 | S: Supported |
679655da JP |
2066 | F: Documentation/aoe/ |
2067 | F: drivers/block/aoe/ | |
1da177e4 | 2068 | |
aad7a211 AB |
2069 | ATHEROS 71XX/9XXX GPIO DRIVER |
2070 | M: Alban Bedel <albeu@free.fr> | |
2071 | W: https://github.com/AlbanBedel/linux | |
2072 | T: git git://github.com/AlbanBedel/linux | |
2073 | S: Maintained | |
2074 | F: drivers/gpio/gpio-ath79.c | |
2075 | F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt | |
2076 | ||
9a10a870 | 2077 | ATHEROS ATH GENERIC UTILITIES |
f726ee65 | 2078 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
9a10a870 JP |
2079 | L: linux-wireless@vger.kernel.org |
2080 | S: Supported | |
2081 | F: drivers/net/wireless/ath/* | |
2082 | ||
fa1c114f | 2083 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
2084 | M: Jiri Slaby <jirislaby@gmail.com> |
2085 | M: Nick Kossifidis <mickflemm@gmail.com> | |
f726ee65 | 2086 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
fa1c114f | 2087 | L: linux-wireless@vger.kernel.org |
72c706b7 | 2088 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 2089 | S: Maintained |
fa451753 | 2090 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 2091 | |
12e62d6f KV |
2092 | ATHEROS ATH6KL WIRELESS DRIVER |
2093 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
2094 | L: linux-wireless@vger.kernel.org | |
2095 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
9f273c24 | 2096 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git |
12e62d6f KV |
2097 | S: Supported |
2098 | F: drivers/net/wireless/ath/ath6kl/ | |
2099 | ||
2be7d22f | 2100 | WILOCITY WIL6210 WIRELESS DRIVER |
23ba8a66 | 2101 | M: Maya Erez <qca_merez@qca.qualcomm.com> |
2be7d22f VK |
2102 | L: linux-wireless@vger.kernel.org |
2103 | L: wil6210@qca.qualcomm.com | |
2104 | S: Supported | |
2105 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
2106 | F: drivers/net/wireless/ath/wil6210/ | |
dba4b74d | 2107 | F: include/uapi/linux/wil6210_uapi.h |
2be7d22f | 2108 | |
1d7e1e6b CL |
2109 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
2110 | M: Christian Lamparter <chunkeey@googlemail.com> | |
2111 | L: linux-wireless@vger.kernel.org | |
2112 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
2113 | S: Maintained | |
2114 | F: drivers/net/wireless/ath/carl9170/ | |
2115 | ||
2c2a6172 LT |
2116 | ATK0110 HWMON DRIVER |
2117 | M: Luca Tettamanti <kronos.it@gmail.com> | |
968ce1b1 | 2118 | L: linux-hwmon@vger.kernel.org |
2c2a6172 LT |
2119 | S: Maintained |
2120 | F: drivers/hwmon/asus_atk0110.c | |
2121 | ||
6f69a6d7 | 2122 | ATI_REMOTE2 DRIVER |
8b58be88 | 2123 | M: Ville Syrjala <syrjala@sci.fi> |
6f69a6d7 | 2124 | S: Maintained |
679655da | 2125 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 2126 | |
7ae115b4 | 2127 | ATLX ETHERNET DRIVERS |
8b58be88 | 2128 | M: Jay Cliburn <jcliburn@gmail.com> |
cb2f33e9 | 2129 | M: Chris Snook <chris.snook@gmail.com> |
e443e383 | 2130 | L: netdev@vger.kernel.org |
8d5ca6ec JC |
2131 | W: http://sourceforge.net/projects/atl1 |
2132 | W: http://atl1.sourceforge.net | |
2133 | S: Maintained | |
2b133ad6 | 2134 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 2135 | |
1da177e4 | 2136 | ATM |
366c1bd1 | 2137 | M: Chas Williams <3chas3@gmail.com> |
476604de | 2138 | L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers) |
44ae98b5 | 2139 | L: netdev@vger.kernel.org |
1da177e4 LT |
2140 | W: http://linux-atm.sourceforge.net |
2141 | S: Maintained | |
679655da JP |
2142 | F: drivers/atm/ |
2143 | F: include/linux/atm* | |
c117ab84 | 2144 | F: include/uapi/linux/atm* |
1da177e4 | 2145 | |
04ac2f46 | 2146 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 2147 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
04ac2f46 NF |
2148 | S: Maintained |
2149 | F: drivers/mmc/host/atmel-mci.c | |
04ac2f46 | 2150 | |
f80cb488 NF |
2151 | ATMEL AT91 SAMA5D2-Compatible Shutdown Controller |
2152 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
2153 | S: Supported | |
2154 | F: drivers/power/reset/at91-sama5d2_shdwc.c | |
2155 | ||
b9cd7a25 LD |
2156 | ATMEL SAMA5D2 ADC DRIVER |
2157 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
2158 | L: linux-iio@vger.kernel.org | |
2159 | S: Supported | |
2160 | F: drivers/iio/adc/at91-sama5d2_adc.c | |
2161 | ||
dfae90ed | 2162 | ATMEL Audio ALSA driver |
3a82002c | 2163 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
dfae90ed BS |
2164 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
2165 | S: Supported | |
2166 | F: sound/soc/atmel | |
2167 | ||
b414dc16 NF |
2168 | ATMEL DMA DRIVER |
2169 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
2170 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
2171 | S: Supported | |
2172 | F: drivers/dma/at_hdmac.c | |
2173 | F: drivers/dma/at_hdmac_regs.h | |
6f0d65af | 2174 | F: include/linux/platform_data/dma-atmel.h |
b414dc16 | 2175 | |
6bd0f436 LD |
2176 | ATMEL XDMA DRIVER |
2177 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
2178 | L: linux-arm-kernel@lists.infradead.org | |
2179 | L: dmaengine@vger.kernel.org | |
2180 | S: Supported | |
2181 | F: drivers/dma/at_xdmac.c | |
2182 | ||
888f2804 LD |
2183 | ATMEL I2C DRIVER |
2184 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
2185 | L: linux-i2c@vger.kernel.org | |
2186 | S: Supported | |
2187 | F: drivers/i2c/busses/i2c-at91.c | |
2188 | ||
15515545 | 2189 | ATMEL ISI DRIVER |
50cb2efa | 2190 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
15515545 JW |
2191 | L: linux-media@vger.kernel.org |
2192 | S: Supported | |
f2294c2d | 2193 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
2194 | F: include/media/atmel-isi.h |
2195 | ||
8f4c79ce | 2196 | ATMEL LCDFB DRIVER |
8b58be88 | 2197 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
c69f677c | 2198 | L: linux-fbdev@vger.kernel.org |
8f4c79ce | 2199 | S: Maintained |
8a61f013 | 2200 | F: drivers/video/fbdev/atmel_lcdfb.c |
679655da | 2201 | F: include/video/atmel_lcdc.h |
8f4c79ce | 2202 | |
89e5785f | 2203 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 2204 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
89e5785f | 2205 | S: Supported |
9f2f381f | 2206 | F: drivers/net/ethernet/cadence/ |
89e5785f | 2207 | |
5cbac98a | 2208 | ATMEL NAND DRIVER |
50cb2efa NF |
2209 | M: Wenyou Yang <wenyou.yang@atmel.com> |
2210 | M: Josh Wu <rainyfeeling@outlook.com> | |
5cbac98a JW |
2211 | L: linux-mtd@lists.infradead.org |
2212 | S: Supported | |
2213 | F: drivers/mtd/nand/atmel_nand* | |
2214 | ||
05c441ef | 2215 | ATMEL SDMMC DRIVER |
2216 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
2217 | L: linux-mmc@vger.kernel.org | |
2218 | S: Supported | |
2219 | F: drivers/mmc/host/sdhci-of-at91.c | |
2220 | ||
754ce4f2 | 2221 | ATMEL SPI DRIVER |
a02875a6 | 2222 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
754ce4f2 | 2223 | S: Supported |
9df92e6c | 2224 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 2225 | |
0ef09015 | 2226 | ATMEL SSC DRIVER |
03515f32 | 2227 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
0ef09015 BS |
2228 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2229 | S: Supported | |
2230 | F: drivers/misc/atmel-ssc.c | |
2231 | F: include/linux/atmel-ssc.h | |
2232 | ||
e9cb1c5a NF |
2233 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
2234 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
2235 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
2236 | S: Supported | |
2237 | F: drivers/misc/atmel_tclib.c | |
2238 | F: drivers/clocksource/tcb_clksrc.c | |
2239 | ||
914a3f3b | 2240 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
2241 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
2242 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
914a3f3b | 2243 | S: Supported |
faf2e1db | 2244 | F: drivers/usb/gadget/udc/atmel_usba_udc.* |
914a3f3b | 2245 | |
1da177e4 | 2246 | ATMEL WIRELESS DRIVER |
8b58be88 | 2247 | M: Simon Kelley <simon@thekelleys.org.uk> |
724c6b35 | 2248 | L: linux-wireless@vger.kernel.org |
1da177e4 LT |
2249 | W: http://www.thekelleys.org.uk/atmel |
2250 | W: http://atmelwlandriver.sourceforge.net/ | |
2251 | S: Maintained | |
30fe0f9b | 2252 | F: drivers/net/wireless/atmel/atmel* |
1da177e4 | 2253 | |
a14c0f8f | 2254 | ATMEL MAXTOUCH DRIVER |
aaf578e1 ND |
2255 | M: Nick Dyer <nick@shmanahar.org> |
2256 | T: git git://github.com/ndyer/linux.git | |
2257 | S: Maintained | |
a14c0f8f ND |
2258 | F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt |
2259 | F: drivers/input/touchscreen/atmel_mxt_ts.c | |
2260 | F: include/linux/platform_data/atmel_mxt_ts.h | |
2261 | ||
26780d9e | 2262 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
b75f0050 JP |
2263 | M: Bradley Grove <linuxdrivers@attotech.com> |
2264 | L: linux-scsi@vger.kernel.org | |
2265 | W: http://www.attotech.com | |
2266 | S: Supported | |
2267 | F: drivers/scsi/esas2r | |
26780d9e | 2268 | |
bc6e17b8 SS |
2269 | ATUSB IEEE 802.15.4 RADIO DRIVER |
2270 | M: Stefan Schmidt <stefan@osg.samsung.com> | |
2271 | L: linux-wpan@vger.kernel.org | |
2272 | S: Maintained | |
2273 | F: drivers/net/ieee802154/atusb.c | |
2274 | F: drivers/net/ieee802154/atusb.h | |
2275 | F: drivers/net/ieee802154/at86rf230.h | |
2276 | ||
a92b7b80 | 2277 | AUDIT SUBSYSTEM |
915f389d | 2278 | M: Paul Moore <paul@paul-moore.com> |
8b58be88 | 2279 | M: Eric Paris <eparis@redhat.com> |
915f389d | 2280 | L: linux-audit@redhat.com (moderated for non-subscribers) |
ad3f9a22 | 2281 | W: http://people.redhat.com/sgrubb/audit/ |
915f389d | 2282 | T: git git://git.infradead.org/users/pcmoore/audit |
a92b7b80 | 2283 | S: Maintained |
679655da | 2284 | F: include/linux/audit.h |
c117ab84 | 2285 | F: include/uapi/linux/audit.h |
679655da | 2286 | F: kernel/audit* |
a92b7b80 | 2287 | |
70e84049 | 2288 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 2289 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2290 | W: http://miguelojeda.es/auxdisplay.htm |
2291 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2292 | S: Maintained |
679655da JP |
2293 | F: drivers/auxdisplay/ |
2294 | F: include/linux/cfag12864b.h | |
70e84049 | 2295 | |
5f97f7f9 | 2296 | AVR32 ARCHITECTURE |
e336f61f HCE |
2297 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
2298 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
5f97f7f9 | 2299 | W: http://www.atmel.com/products/AVR32/ |
249d9d9d | 2300 | W: http://mirror.egtvedt.no/avr32linux.org/ |
5f97f7f9 | 2301 | W: http://avrfreaks.net/ |
e336f61f | 2302 | S: Maintained |
679655da | 2303 | F: arch/avr32/ |
5f97f7f9 HS |
2304 | |
2305 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
2306 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
2307 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
2308 | S: Maintained | |
679655da | 2309 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 2310 | |
1da177e4 | 2311 | AX.25 NETWORK LAYER |
8b58be88 | 2312 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 2313 | L: linux-hams@vger.kernel.org |
d34cb28a | 2314 | W: http://www.linux-ax25.org/ |
1da177e4 | 2315 | S: Maintained |
c117ab84 | 2316 | F: include/uapi/linux/ax25.h |
679655da JP |
2317 | F: include/net/ax25.h |
2318 | F: net/ax25/ | |
1da177e4 | 2319 | |
d5269395 | 2320 | AZ6007 DVB DRIVER |
5dc8a864 MCC |
2321 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
2322 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
d5269395 | 2323 | L: linux-media@vger.kernel.org |
a825eaec | 2324 | W: https://linuxtv.org |
d5269395 MCC |
2325 | T: git git://linuxtv.org/media_tree.git |
2326 | S: Maintained | |
2327 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
2328 | ||
6777376e HV |
2329 | AZTECH FM RADIO RECEIVER DRIVER |
2330 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2331 | L: linux-media@vger.kernel.org | |
2332 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 2333 | W: https://linuxtv.org |
6777376e HV |
2334 | S: Maintained |
2335 | F: drivers/media/radio/radio-aztech* | |
2336 | ||
e2d1d6c0 | 2337 | B43 WIRELESS DRIVER |
e2d1d6c0 | 2338 | L: linux-wireless@vger.kernel.org |
ed072f9e | 2339 | L: b43-dev@lists.infradead.org |
491b26b4 | 2340 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
8a72ed6f | 2341 | S: Odd Fixes |
58619b14 | 2342 | F: drivers/net/wireless/broadcom/b43/ |
e2d1d6c0 RD |
2343 | |
2344 | B43LEGACY WIRELESS DRIVER | |
8b58be88 | 2345 | M: Larry Finger <Larry.Finger@lwfinger.net> |
e2d1d6c0 | 2346 | L: linux-wireless@vger.kernel.org |
ed072f9e | 2347 | L: b43-dev@lists.infradead.org |
491b26b4 | 2348 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 2349 | S: Maintained |
423e3ce3 | 2350 | F: drivers/net/wireless/broadcom/b43legacy/ |
e2d1d6c0 | 2351 | |
300abeb5 | 2352 | BACKLIGHT CLASS/SUBSYSTEM |
b7701755 | 2353 | M: Jingoo Han <jingoohan1@gmail.com> |
70d14fcf | 2354 | M: Lee Jones <lee.jones@linaro.org> |
9f273c24 | 2355 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git |
300abeb5 | 2356 | S: Maintained |
679655da JP |
2357 | F: drivers/video/backlight/ |
2358 | F: include/linux/backlight.h | |
300abeb5 | 2359 | |
c6c8fea2 | 2360 | BATMAN ADVANCED |
207df49e | 2361 | M: Marek Lindner <mareklindner@neomailbox.ch> |
c679ff8f | 2362 | M: Simon Wunderlich <sw@simonwunderlich.de> |
ca8e940c | 2363 | M: Antonio Quartulli <a@unstable.cc> |
1584f41f | 2364 | L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers) |
7b5e7396 | 2365 | W: https://www.open-mesh.org/ |
8b823170 | 2366 | Q: https://patchwork.open-mesh.org/project/batman/list/ |
c6c8fea2 | 2367 | S: Maintained |
286ddfb0 SE |
2368 | F: Documentation/ABI/testing/sysfs-class-net-batman-adv |
2369 | F: Documentation/ABI/testing/sysfs-class-net-mesh | |
2370 | F: Documentation/networking/batman-adv.txt | |
09748a22 | 2371 | F: include/uapi/linux/batman_adv.h |
c6c8fea2 SE |
2372 | F: net/batman-adv/ |
2373 | ||
e2d1d6c0 | 2374 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 2375 | M: Thomas Sailer <t.sailer@alumni.ethz.ch> |
e2d1d6c0 RD |
2376 | L: linux-hams@vger.kernel.org |
2377 | W: http://www.baycom.org/~tom/ham/ham.html | |
2378 | S: Maintained | |
679655da | 2379 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 2380 | |
cafe5635 | 2381 | BCACHE (BLOCK LAYER CACHE) |
d1aa1ab3 | 2382 | M: Kent Overstreet <kent.overstreet@gmail.com> |
cafe5635 KO |
2383 | L: linux-bcache@vger.kernel.org |
2384 | W: http://bcache.evilpiepirate.org | |
4d1034eb | 2385 | S: Orphan |
cafe5635 KO |
2386 | F: drivers/md/bcache/ |
2387 | ||
04bd844a HV |
2388 | BDISP ST MEDIA DRIVER |
2389 | M: Fabien Dessenne <fabien.dessenne@st.com> | |
2390 | L: linux-media@vger.kernel.org | |
2391 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 2392 | W: https://linuxtv.org |
04bd844a HV |
2393 | S: Supported |
2394 | F: drivers/media/platform/sti/bdisp | |
2395 | ||
e2d1d6c0 | 2396 | BEFS FILE SYSTEM |
db4ad036 LB |
2397 | M: Luis de Bethencourt <luisbg@osg.samsung.com> |
2398 | M: Salah Triki <salah.triki@gmail.com> | |
2399 | S: Maintained | |
2400 | T: git git://github.com/luisbg/linux-befs.git | |
679655da JP |
2401 | F: Documentation/filesystems/befs.txt |
2402 | F: fs/befs/ | |
e2d1d6c0 | 2403 | |
564ee360 | 2404 | BECKHOFF CX5020 ETHERCAT MASTER DRIVER |
49e7d9df JP |
2405 | M: Dariusz Marcinkiewicz <reksio@newterm.pl> |
2406 | L: netdev@vger.kernel.org | |
2407 | S: Maintained | |
2408 | F: drivers/net/ethernet/ec_bhf.c | |
564ee360 | 2409 | |
e2d1d6c0 | 2410 | BFS FILE SYSTEM |
8b58be88 | 2411 | M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk> |
e2d1d6c0 | 2412 | S: Maintained |
679655da JP |
2413 | F: Documentation/filesystems/bfs.txt |
2414 | F: fs/bfs/ | |
c117ab84 | 2415 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 2416 | |
1394f032 | 2417 | BLACKFIN ARCHITECTURE |
a4edbc10 | 2418 | M: Steven Miao <realmz6@gmail.com> |
b3fe92b0 | 2419 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1443176f | 2420 | T: git git://git.code.sf.net/p/adi-linux/code |
e3b2d3f3 BW |
2421 | W: http://blackfin.uclinux.org |
2422 | S: Supported | |
679655da | 2423 | F: arch/blackfin/ |
566da5b2 | 2424 | |
e190d6b1 | 2425 | BLACKFIN EMAC DRIVER |
b3fe92b0 | 2426 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e190d6b1 BW |
2427 | W: http://blackfin.uclinux.org |
2428 | S: Supported | |
7b35f033 | 2429 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 2430 | |
566da5b2 | 2431 | BLACKFIN RTC DRIVER |
b3fe92b0 | 2432 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
566da5b2 MF |
2433 | W: http://blackfin.uclinux.org |
2434 | S: Supported | |
679655da | 2435 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 2436 | |
936ed49a | 2437 | BLACKFIN SDH DRIVER |
109ec8c3 | 2438 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2439 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
936ed49a MF |
2440 | W: http://blackfin.uclinux.org |
2441 | S: Supported | |
2442 | F: drivers/mmc/host/bfin_sdh.c | |
2443 | ||
1394f032 | 2444 | BLACKFIN SERIAL DRIVER |
8b58be88 | 2445 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2446 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e3b2d3f3 BW |
2447 | W: http://blackfin.uclinux.org |
2448 | S: Supported | |
8460241e | 2449 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 2450 | |
1e6d320f | 2451 | BLACKFIN WATCHDOG DRIVER |
b3fe92b0 | 2452 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1e6d320f BW |
2453 | W: http://blackfin.uclinux.org |
2454 | S: Supported | |
679655da | 2455 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 2456 | |
d24ecfcc | 2457 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 2458 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2459 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
d24ecfcc BW |
2460 | W: http://blackfin.uclinux.org/ |
2461 | S: Supported | |
679655da | 2462 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 2463 | |
1e204377 SJ |
2464 | BLACKFIN MEDIA DRIVER |
2465 | M: Scott Jiang <scott.jiang.linux@gmail.com> | |
b3fe92b0 | 2466 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1e204377 SJ |
2467 | W: http://blackfin.uclinux.org/ |
2468 | S: Supported | |
2469 | F: drivers/media/platform/blackfin/ | |
2470 | F: drivers/media/i2c/adv7183* | |
2471 | F: drivers/media/i2c/vs6624* | |
2472 | ||
b54cf35a JSM |
2473 | BLINKM RGB LED DRIVER |
2474 | M: Jan-Simon Moeller <jansimon.moeller@gmx.de> | |
2475 | S: Maintained | |
2476 | F: drivers/leds/leds-blinkm.c | |
2477 | ||
1da177e4 | 2478 | BLOCK LAYER |
8b58be88 | 2479 | M: Jens Axboe <axboe@kernel.dk> |
82c426e0 | 2480 | L: linux-block@vger.kernel.org |
08deed1e | 2481 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 2482 | S: Maintained |
679655da | 2483 | F: block/ |
ae11f7ef | 2484 | F: kernel/trace/blktrace.c |
88459642 | 2485 | F: lib/sbitmap.c |
1da177e4 | 2486 | |
2b54aaef | 2487 | BLOCK2MTD DRIVER |
8b58be88 | 2488 | M: Joern Engel <joern@lazybastard.org> |
2b54aaef JE |
2489 | L: linux-mtd@lists.infradead.org |
2490 | S: Maintained | |
679655da | 2491 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 2492 | |
63fbd24e | 2493 | BLUETOOTH DRIVERS |
8b58be88 | 2494 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 2495 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 2496 | M: Johan Hedberg <johan.hedberg@gmail.com> |
781c2844 | 2497 | L: linux-bluetooth@vger.kernel.org |
63fbd24e | 2498 | W: http://www.bluez.org/ |
22e7a424 MH |
2499 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
2500 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 2501 | S: Maintained |
679655da | 2502 | F: drivers/bluetooth/ |
1da177e4 | 2503 | |
63fbd24e | 2504 | BLUETOOTH SUBSYSTEM |
8b58be88 | 2505 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 2506 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 2507 | M: Johan Hedberg <johan.hedberg@gmail.com> |
63fbd24e MH |
2508 | L: linux-bluetooth@vger.kernel.org |
2509 | W: http://www.bluez.org/ | |
22e7a424 MH |
2510 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
2511 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 2512 | S: Maintained |
679655da JP |
2513 | F: net/bluetooth/ |
2514 | F: include/net/bluetooth/ | |
1da177e4 LT |
2515 | |
2516 | BONDING DRIVER | |
79b30750 | 2517 | M: Jay Vosburgh <j.vosburgh@gmail.com> |
898602a0 | 2518 | M: Veaceslav Falico <vfalico@gmail.com> |
da29838d | 2519 | M: Andy Gospodarek <andy@greyhouse.net> |
a6c36ee6 | 2520 | L: netdev@vger.kernel.org |
ce00f85c JC |
2521 | W: http://sourceforge.net/projects/bonding/ |
2522 | S: Supported | |
679655da | 2523 | F: drivers/net/bonding/ |
c117ab84 | 2524 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 2525 | |
b5f4df34 AS |
2526 | BPF (Safe dynamic programs and tools) |
2527 | M: Alexei Starovoitov <ast@kernel.org> | |
2528 | L: netdev@vger.kernel.org | |
2529 | L: linux-kernel@vger.kernel.org | |
2530 | S: Supported | |
2531 | F: kernel/bpf/ | |
2532 | ||
39105890 | 2533 | BROADCOM B44 10/100 ETHERNET DRIVER |
75c9510b | 2534 | M: Michael Chan <michael.chan@broadcom.com> |
39105890 GZ |
2535 | L: netdev@vger.kernel.org |
2536 | S: Supported | |
adfc5217 | 2537 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 2538 | |
967dd82f FF |
2539 | BROADCOM B53 ETHERNET SWITCH DRIVER |
2540 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2541 | L: netdev@vger.kernel.org | |
2542 | L: openwrt-devel@lists.openwrt.org (subscribers-only) | |
2543 | S: Supported | |
2544 | F: drivers/net/dsa/b53/* | |
2545 | F: include/linux/platform_data/b53.h | |
2546 | ||
32ec90d5 FF |
2547 | BROADCOM GENET ETHERNET DRIVER |
2548 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2549 | L: netdev@vger.kernel.org | |
2550 | S: Supported | |
2551 | F: drivers/net/ethernet/broadcom/genet/ | |
2552 | ||
948c51e6 | 2553 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
f1d1baeb JK |
2554 | M: Sony Chacko <sony.chacko@qlogic.com> |
2555 | M: Dept-HSGLinuxNICDev@qlogic.com | |
948c51e6 MC |
2556 | L: netdev@vger.kernel.org |
2557 | S: Supported | |
adfc5217 JK |
2558 | F: drivers/net/ethernet/broadcom/bnx2.* |
2559 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 2560 | |
4d9d2cb0 | 2561 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
08f6dd89 | 2562 | M: Ariel Elior <ariel.elior@qlogic.com> |
4d9d2cb0 ET |
2563 | L: netdev@vger.kernel.org |
2564 | S: Supported | |
adfc5217 | 2565 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 2566 | |
90f4c594 | 2567 | BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE |
f18cf050 | 2568 | M: Florian Fainelli <f.fainelli@gmail.com> |
d3cc2e86 FF |
2569 | M: Ray Jui <rjui@broadcom.com> |
2570 | M: Scott Branden <sbranden@broadcom.com> | |
086f4704 | 2571 | M: bcm-kernel-feedback-list@broadcom.com |
90f4c594 | 2572 | T: git git://github.com/broadcom/mach-bcm |
af4b8e37 | 2573 | S: Maintained |
ccf62f5a JM |
2574 | N: bcm281* |
2575 | N: bcm113* | |
2576 | N: bcm216* | |
2577 | N: kona | |
af4b8e37 | 2578 | F: arch/arm/mach-bcm/ |
af4b8e37 | 2579 | |
9209bec4 | 2580 | BROADCOM BCM2835 ARM ARCHITECTURE |
f680f25c | 2581 | M: Stephen Warren <swarren@wwwdotorg.org> |
8bcdd929 | 2582 | M: Lee Jones <lee@kernel.org> |
10b9e887 | 2583 | M: Eric Anholt <eric@anholt.net> |
f680f25c | 2584 | L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers) |
82481129 | 2585 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
8bcdd929 | 2586 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git |
f680f25c | 2587 | S: Maintained |
9209bec4 | 2588 | N: bcm2835 |
f680f25c | 2589 | |
5564f092 RM |
2590 | BROADCOM BCM47XX MIPS ARCHITECTURE |
2591 | M: Hauke Mehrtens <hauke@hauke-m.de> | |
2592 | M: Rafał Miłecki <zajec5@gmail.com> | |
2593 | L: linux-mips@linux-mips.org | |
2594 | S: Maintained | |
7ad2410c | 2595 | F: Documentation/devicetree/bindings/mips/brcm/ |
5564f092 RM |
2596 | F: arch/mips/bcm47xx/* |
2597 | F: arch/mips/include/asm/mach-bcm47xx/* | |
2598 | ||
9209bec4 | 2599 | BROADCOM BCM5301X ARM ARCHITECTURE |
5b293ebe | 2600 | M: Hauke Mehrtens <hauke@hauke-m.de> |
1a50cd8a RM |
2601 | M: Rafał Miłecki <zajec5@gmail.com> |
2602 | M: bcm-kernel-feedback-list@broadcom.com | |
5b293ebe HM |
2603 | L: linux-arm-kernel@lists.infradead.org |
2604 | S: Maintained | |
2605 | F: arch/arm/mach-bcm/bcm_5301x.c | |
1a50cd8a | 2606 | F: arch/arm/boot/dts/bcm5301x*.dtsi |
5b293ebe HM |
2607 | F: arch/arm/boot/dts/bcm470* |
2608 | ||
4ebd5047 RM |
2609 | BROADCOM BCM53573 ARM ARCHITECTURE |
2610 | M: Rafał Miłecki <rafal@milecki.pl> | |
2611 | L: linux-arm-kernel@lists.infradead.org | |
2612 | S: Maintained | |
2613 | F: arch/arm/boot/dts/bcm53573* | |
2614 | F: arch/arm/boot/dts/bcm47189* | |
2615 | ||
e076e962 FF |
2616 | BROADCOM BCM63XX ARM ARCHITECTURE |
2617 | M: Florian Fainelli <f.fainelli@gmail.com> | |
086f4704 | 2618 | M: bcm-kernel-feedback-list@broadcom.com |
20de823e | 2619 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
20de823e | 2620 | T: git git://github.com/broadcom/stblinux.git |
e076e962 | 2621 | S: Maintained |
d6f4e76e | 2622 | N: bcm63xx |
e076e962 | 2623 | |
7110e227 KC |
2624 | BROADCOM BCM63XX/BCM33XX UDC DRIVER |
2625 | M: Kevin Cernekee <cernekee@gmail.com> | |
2626 | L: linux-usb@vger.kernel.org | |
2627 | S: Maintained | |
2628 | F: drivers/usb/gadget/udc/bcm63xx_udc.* | |
2629 | ||
2df94fd6 | 2630 | BROADCOM BCM7XXX ARM ARCHITECTURE |
2df94fd6 | 2631 | M: Brian Norris <computersforpeace@gmail.com> |
3b4b6fe9 FF |
2632 | M: Gregory Fong <gregory.0xf0@gmail.com> |
2633 | M: Florian Fainelli <f.fainelli@gmail.com> | |
086f4704 | 2634 | M: bcm-kernel-feedback-list@broadcom.com |
2df94fd6 | 2635 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
eb6725d0 | 2636 | T: git git://github.com/broadcom/stblinux.git |
2df94fd6 BN |
2637 | S: Maintained |
2638 | F: arch/arm/mach-bcm/*brcmstb* | |
2639 | F: arch/arm/boot/dts/bcm7*.dts* | |
e36661e4 | 2640 | F: drivers/bus/brcmstb_gisb.c |
5009a289 | 2641 | N: brcmstb |
2df94fd6 | 2642 | |
70371cef KC |
2643 | BROADCOM BMIPS MIPS ARCHITECTURE |
2644 | M: Kevin Cernekee <cernekee@gmail.com> | |
2645 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2646 | L: linux-mips@linux-mips.org | |
eb6725d0 | 2647 | T: git git://github.com/broadcom/stblinux.git |
70371cef KC |
2648 | S: Maintained |
2649 | F: arch/mips/bmips/* | |
2650 | F: arch/mips/include/asm/mach-bmips/* | |
2651 | F: arch/mips/kernel/*bmips* | |
338808de | 2652 | F: arch/mips/boot/dts/brcm/bcm*.dts* |
c7c42ec2 | 2653 | F: drivers/irqchip/irq-bcm63* |
70371cef KC |
2654 | F: drivers/irqchip/irq-bcm7* |
2655 | F: drivers/irqchip/irq-brcmstb* | |
3271e610 | 2656 | F: include/linux/bcm963xx_nvram.h |
8fce60b8 | 2657 | F: include/linux/bcm963xx_tag.h |
70371cef | 2658 | |
948c51e6 | 2659 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
ccad0993 | 2660 | M: Siva Reddy Kallam <siva.kallam@broadcom.com> |
23629477 | 2661 | M: Prashant Sreedharan <prashant@broadcom.com> |
8b58be88 | 2662 | M: Michael Chan <mchan@broadcom.com> |
948c51e6 MC |
2663 | L: netdev@vger.kernel.org |
2664 | S: Supported | |
adfc5217 | 2665 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 2666 | |
a9533e7e | 2667 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
2a734451 AS |
2668 | M: Arend van Spriel <arend.vanspriel@broadcom.com> |
2669 | M: Franky Lin <franky.lin@broadcom.com> | |
2670 | M: Hante Meuleman <hante.meuleman@broadcom.com> | |
a9533e7e | 2671 | L: linux-wireless@vger.kernel.org |
2a734451 | 2672 | L: brcm80211-dev-list.pdl@broadcom.com |
a9533e7e | 2673 | S: Supported |
05491d2c | 2674 | F: drivers/net/wireless/broadcom/brcm80211/ |
a9533e7e | 2675 | |
9958d6f9 | 2676 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
3b7f040a | 2677 | M: QLogic-Storage-Upstream@qlogic.com |
9958d6f9 BPG |
2678 | L: linux-scsi@vger.kernel.org |
2679 | S: Supported | |
2680 | F: drivers/scsi/bnx2fc/ | |
2681 | ||
6a6b5ad0 | 2682 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
3b7f040a | 2683 | M: QLogic-Storage-Upstream@qlogic.com |
6a6b5ad0 EW |
2684 | L: linux-scsi@vger.kernel.org |
2685 | S: Supported | |
2686 | F: drivers/scsi/bnx2i/ | |
2687 | ||
63f37ddf | 2688 | BROADCOM IPROC ARM ARCHITECTURE |
36c0237f SB |
2689 | M: Ray Jui <rjui@broadcom.com> |
2690 | M: Scott Branden <sbranden@broadcom.com> | |
63f37ddf | 2691 | M: Jon Mason <jonmason@broadcom.com> |
086f4704 | 2692 | M: bcm-kernel-feedback-list@broadcom.com |
36c0237f | 2693 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
eb6725d0 | 2694 | T: git git://github.com/broadcom/cygnus-linux.git |
36c0237f SB |
2695 | S: Maintained |
2696 | N: iproc | |
2697 | N: cygnus | |
5c161242 | 2698 | N: bcm[-_]nsp |
36c0237f SB |
2699 | N: bcm9113* |
2700 | N: bcm9583* | |
63f37ddf JM |
2701 | N: bcm9585* |
2702 | N: bcm9586* | |
2703 | N: bcm988312 | |
36c0237f | 2704 | N: bcm113* |
63f37ddf JM |
2705 | N: bcm583* |
2706 | N: bcm585* | |
2707 | N: bcm586* | |
2708 | N: bcm88312 | |
d76e21b8 | 2709 | F: arch/arm64/boot/dts/broadcom/ns2* |
5c161242 JM |
2710 | F: drivers/clk/bcm/clk-ns* |
2711 | F: drivers/pinctrl/bcm/pinctrl-ns* | |
36c0237f | 2712 | |
3b0213d5 GF |
2713 | BROADCOM BRCMSTB GPIO DRIVER |
2714 | M: Gregory Fong <gregory.0xf0@gmail.com> | |
9c2abe2f | 2715 | L: bcm-kernel-feedback-list@broadcom.com |
3b0213d5 GF |
2716 | S: Supported |
2717 | F: drivers/gpio/gpio-brcmstb.c | |
2718 | F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt | |
2719 | ||
7b7f588b | 2720 | BROADCOM KONA GPIO DRIVER |
5e163903 | 2721 | M: Ray Jui <rjui@broadcom.com> |
7b7f588b MM |
2722 | L: bcm-kernel-feedback-list@broadcom.com |
2723 | S: Supported | |
2724 | F: drivers/gpio/gpio-bcm-kona.c | |
1db12cde | 2725 | F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt |
7b7f588b | 2726 | |
f6e734a8 RM |
2727 | BROADCOM NVRAM DRIVER |
2728 | M: Rafał Miłecki <zajec5@gmail.com> | |
2729 | L: linux-mips@linux-mips.org | |
2730 | S: Maintained | |
2731 | F: drivers/firmware/broadcom/* | |
2732 | ||
02787daa BN |
2733 | BROADCOM STB NAND FLASH DRIVER |
2734 | M: Brian Norris <computersforpeace@gmail.com> | |
1ddaa021 | 2735 | M: Kamal Dasu <kdasu.kdev@gmail.com> |
02787daa | 2736 | L: linux-mtd@lists.infradead.org |
1285734c | 2737 | L: bcm-kernel-feedback-list@broadcom.com |
02787daa BN |
2738 | S: Maintained |
2739 | F: drivers/mtd/nand/brcmnand/ | |
2740 | ||
c9678d86 RM |
2741 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
2742 | M: Rafał Miłecki <zajec5@gmail.com> | |
2743 | L: linux-wireless@vger.kernel.org | |
2744 | S: Maintained | |
2745 | F: drivers/bcma/ | |
2746 | F: include/linux/bcma/ | |
2747 | ||
b8302205 FF |
2748 | BROADCOM SYSTEMPORT ETHERNET DRIVER |
2749 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2750 | L: netdev@vger.kernel.org | |
2751 | S: Supported | |
2752 | F: drivers/net/ethernet/broadcom/bcmsysport.* | |
2753 | ||
42515e61 J |
2754 | BROADCOM VULCAN ARM64 SOC |
2755 | M: Jayachandran C. <jchandra@broadcom.com> | |
086f4704 | 2756 | M: bcm-kernel-feedback-list@broadcom.com |
42515e61 | 2757 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
42515e61 J |
2758 | S: Maintained |
2759 | F: arch/arm64/boot/dts/broadcom/vulcan* | |
2760 | ||
7725ccfd | 2761 | BROCADE BFA FC SCSI DRIVER |
aa803370 AG |
2762 | M: Anil Gurumurthy <anil.gurumurthy@qlogic.com> |
2763 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> | |
455518e7 JP |
2764 | L: linux-scsi@vger.kernel.org |
2765 | S: Supported | |
2766 | F: drivers/scsi/bfa/ | |
7725ccfd | 2767 | |
8b230ed8 | 2768 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
439e9575 | 2769 | M: Rasesh Mody <rasesh.mody@qlogic.com> |
8b230ed8 RM |
2770 | L: netdev@vger.kernel.org |
2771 | S: Supported | |
f844a0ea | 2772 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 2773 | |
5cdf7f76 | 2774 | BSG (block layer generic sg v4 driver) |
8b58be88 | 2775 | M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> |
5cdf7f76 JA |
2776 | L: linux-scsi@vger.kernel.org |
2777 | S: Supported | |
679655da JP |
2778 | F: block/bsg.c |
2779 | F: include/linux/bsg.h | |
c117ab84 | 2780 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 2781 | |
af39917d CL |
2782 | BT87X AUDIO DRIVER |
2783 | M: Clemens Ladisch <clemens@ladisch.de> | |
2784 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2785 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2786 | S: Maintained | |
2787 | F: Documentation/sound/alsa/Bt87x.txt | |
2788 | F: sound/pci/bt87x.c | |
2789 | ||
ff1d5c2f | 2790 | BT8XXGPIO DRIVER |
eb032b98 | 2791 | M: Michael Buesch <m@bues.ch> |
ff1d5c2f MB |
2792 | W: http://bu3sch.de/btgpio.php |
2793 | S: Maintained | |
72dbb705 | 2794 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 2795 | |
eb1eb04f | 2796 | BTRFS FILE SYSTEM |
c0778e25 CM |
2797 | M: Chris Mason <clm@fb.com> |
2798 | M: Josef Bacik <jbacik@fb.com> | |
d8130624 | 2799 | M: David Sterba <dsterba@suse.com> |
eb1eb04f JP |
2800 | L: linux-btrfs@vger.kernel.org |
2801 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 2802 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 2803 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 2804 | S: Maintained |
679655da JP |
2805 | F: Documentation/filesystems/btrfs.txt |
2806 | F: fs/btrfs/ | |
eb1eb04f | 2807 | |
1da177e4 | 2808 | BTTV VIDEO4LINUX DRIVER |
5dc8a864 MCC |
2809 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
2810 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
661263b5 | 2811 | L: linux-media@vger.kernel.org |
a825eaec | 2812 | W: https://linuxtv.org |
275ffde4 | 2813 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 2814 | S: Odd fixes |
618cd932 | 2815 | F: Documentation/media/v4l-drivers/bttv* |
90d72ac6 | 2816 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 2817 | |
1f34923c KA |
2818 | BUSLOGIC SCSI DRIVER |
2819 | M: Khalid Aziz <khalid@gonehiking.org> | |
2820 | L: linux-scsi@vger.kernel.org | |
2821 | S: Maintained | |
2822 | F: drivers/scsi/BusLogic.* | |
2823 | F: drivers/scsi/FlashPoint.* | |
2824 | ||
af39917d CL |
2825 | C-MEDIA CMI8788 DRIVER |
2826 | M: Clemens Ladisch <clemens@ladisch.de> | |
2827 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2828 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2829 | S: Maintained | |
2830 | F: sound/pci/oxygen/ | |
2831 | ||
2141355f MS |
2832 | C6X ARCHITECTURE |
2833 | M: Mark Salter <msalter@redhat.com> | |
2834 | M: Aurelien Jacquiot <a-jacquiot@ti.com> | |
2835 | L: linux-c6x-dev@linux-c6x.org | |
2836 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
2837 | S: Maintained | |
2838 | F: arch/c6x/ | |
2839 | ||
a5432f5a | 2840 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 2841 | M: David Howells <dhowells@redhat.com> |
e62d6e24 | 2842 | L: linux-cachefs@redhat.com (moderated for non-subscribers) |
a5432f5a DH |
2843 | S: Supported |
2844 | F: Documentation/filesystems/caching/cachefiles.txt | |
2845 | F: fs/cachefiles/ | |
2846 | ||
c815ca39 HV |
2847 | CADET FM/AM RADIO RECEIVER DRIVER |
2848 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2849 | L: linux-media@vger.kernel.org | |
2850 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 2851 | W: https://linuxtv.org |
c815ca39 HV |
2852 | S: Maintained |
2853 | F: drivers/media/radio/radio-cadet* | |
2854 | ||
77d5140f | 2855 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 2856 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 2857 | L: linux-media@vger.kernel.org |
275ffde4 | 2858 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 2859 | S: Maintained |
618cd932 | 2860 | F: Documentation/media/v4l-drivers/cafe_ccic* |
90d72ac6 | 2861 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 2862 | |
201b6bab | 2863 | CAIF NETWORK LAYER |
5c574f50 | 2864 | M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no> |
201b6bab JP |
2865 | L: netdev@vger.kernel.org |
2866 | S: Supported | |
2867 | F: Documentation/networking/caif/ | |
2868 | F: drivers/net/caif/ | |
c117ab84 | 2869 | F: include/uapi/linux/caif/ |
201b6bab JP |
2870 | F: include/net/caif/ |
2871 | F: net/caif/ | |
2872 | ||
77dac90f | 2873 | CALGARY x86-64 IOMMU |
a6921c29 JM |
2874 | M: Muli Ben-Yehuda <mulix@mulix.org> |
2875 | M: Jon Mason <jdmason@kudzu.us> | |
2876 | L: iommu@lists.linux-foundation.org | |
77dac90f | 2877 | S: Maintained |
679655da JP |
2878 | F: arch/x86/kernel/pci-calgary_64.c |
2879 | F: arch/x86/kernel/tce_64.c | |
2880 | F: arch/x86/include/asm/calgary.h | |
2881 | F: arch/x86/include/asm/tce.h | |
77dac90f | 2882 | |
e2d1d6c0 | 2883 | CAN NETWORK LAYER |
8d15d386 | 2884 | M: Oliver Hartkopp <socketcan@hartkopp.net> |
f7214cf2 | 2885 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 2886 | L: linux-can@vger.kernel.org |
84b0d715 | 2887 | W: https://github.com/linux-can |
870482a4 MKB |
2888 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
2889 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git | |
e2d1d6c0 | 2890 | S: Maintained |
f35f6c8f | 2891 | F: Documentation/networking/can.txt |
8d15d386 | 2892 | F: net/can/ |
8d15d386 | 2893 | F: include/linux/can/core.h |
c117ab84 CEB |
2894 | F: include/uapi/linux/can.h |
2895 | F: include/uapi/linux/can/bcm.h | |
2896 | F: include/uapi/linux/can/raw.h | |
2897 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 2898 | |
4261a204 | 2899 | CAN NETWORK DRIVERS |
8b58be88 | 2900 | M: Wolfgang Grandegger <wg@grandegger.com> |
ec78213a | 2901 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 2902 | L: linux-can@vger.kernel.org |
84b0d715 | 2903 | W: https://github.com/linux-can |
870482a4 MKB |
2904 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
2905 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git | |
4261a204 | 2906 | S: Maintained |
3636876a | 2907 | F: Documentation/devicetree/bindings/net/can/ |
8d15d386 OH |
2908 | F: drivers/net/can/ |
2909 | F: include/linux/can/dev.h | |
8d15d386 | 2910 | F: include/linux/can/platform/ |
c117ab84 CEB |
2911 | F: include/uapi/linux/can/error.h |
2912 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 2913 | |
95d16c72 | 2914 | CAPABILITIES |
39baa7e6 | 2915 | M: Serge Hallyn <serge@hallyn.com> |
95d16c72 | 2916 | L: linux-security-module@vger.kernel.org |
6305902c | 2917 | S: Supported |
95d16c72 | 2918 | F: include/linux/capability.h |
c117ab84 | 2919 | F: include/uapi/linux/capability.h |
6305902c | 2920 | F: security/commoncap.c |
38a94118 | 2921 | F: kernel/capability.c |
95d16c72 | 2922 | |
b84894c7 KT |
2923 | CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER |
2924 | M: Kevin Tsai <ktsai@capellamicro.com> | |
2925 | S: Maintained | |
2926 | F: drivers/iio/light/cm* | |
2927 | F: Documentation/devicetree/bindings/i2c/trivial-devices.txt | |
2928 | ||
f9484852 JG |
2929 | CAVIUM I2C DRIVER |
2930 | M: Jan Glauber <jglauber@cavium.com> | |
2931 | M: David Daney <david.daney@cavium.com> | |
2932 | W: http://www.cavium.com | |
2933 | S: Supported | |
2934 | F: drivers/i2c/busses/i2c-octeon* | |
2935 | F: drivers/i2c/busses/i2c-thunderx* | |
2936 | ||
f21fb3ed RV |
2937 | CAVIUM LIQUIDIO NETWORK DRIVER |
2938 | M: Derek Chickles <derek.chickles@caviumnetworks.com> | |
2939 | M: Satanand Burla <satananda.burla@caviumnetworks.com> | |
2940 | M: Felix Manlunas <felix.manlunas@caviumnetworks.com> | |
2941 | M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com> | |
2942 | L: netdev@vger.kernel.org | |
2943 | W: http://www.cavium.com | |
2944 | S: Supported | |
f21fb3ed RV |
2945 | F: drivers/net/ethernet/cavium/liquidio/ |
2946 | ||
ef0bbac3 VB |
2947 | CC2520 IEEE-802.15.4 RADIO DRIVER |
2948 | M: Varka Bhadram <varkabhadram@gmail.com> | |
2949 | L: linux-wpan@vger.kernel.org | |
2950 | S: Maintained | |
2951 | F: drivers/net/ieee802154/cc2520.c | |
2952 | F: include/linux/spi/cc2520.h | |
2953 | F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt | |
2954 | ||
ca684386 HV |
2955 | CEC DRIVER |
2956 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
2957 | L: linux-media@vger.kernel.org | |
2958 | T: git git://linuxtv.org/media_tree.git | |
2959 | W: http://linuxtv.org | |
2960 | S: Supported | |
2961 | F: Documentation/cec.txt | |
618cd932 | 2962 | F: Documentation/media/uapi/cec |
ca684386 HV |
2963 | F: drivers/staging/media/cec/ |
2964 | F: drivers/media/cec-edid.c | |
2965 | F: drivers/media/rc/keymaps/rc-cec.c | |
2966 | F: include/media/cec.h | |
2967 | F: include/media/cec-edid.h | |
2968 | F: include/linux/cec.h | |
2969 | F: include/linux/cec-funcs.h | |
2970 | ||
b8154542 | 2971 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 2972 | M: Arnd Bergmann <arnd@arndb.de> |
a4724ed6 | 2973 | L: linuxppc-dev@lists.ozlabs.org |
b8154542 AB |
2974 | W: http://www.ibm.com/developerworks/power/cell/ |
2975 | S: Supported | |
679655da | 2976 | F: arch/powerpc/include/asm/cell*.h |
679655da | 2977 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 2978 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
2979 | F: arch/powerpc/oprofile/*cell* |
2980 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 2981 | |
398ecff5 SW |
2982 | CEPH COMMON CODE (LIBCEPH) |
2983 | M: Ilya Dryomov <idryomov@gmail.com> | |
e43cdb56 | 2984 | M: "Yan, Zheng" <zyan@redhat.com> |
0f5417ce | 2985 | M: Sage Weil <sage@redhat.com> |
82593f87 | 2986 | L: ceph-devel@vger.kernel.org |
09d90327 | 2987 | W: http://ceph.com/ |
fb99f881 | 2988 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
6e67b7ae | 2989 | T: git git://github.com/ceph/ceph-client.git |
9030aaf9 | 2990 | S: Supported |
14430813 JP |
2991 | F: net/ceph/ |
2992 | F: include/linux/ceph/ | |
2993 | F: include/linux/crush/ | |
9030aaf9 | 2994 | |
398ecff5 SW |
2995 | CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH) |
2996 | M: "Yan, Zheng" <zyan@redhat.com> | |
2997 | M: Sage Weil <sage@redhat.com> | |
2998 | M: Ilya Dryomov <idryomov@gmail.com> | |
2999 | L: ceph-devel@vger.kernel.org | |
3000 | W: http://ceph.com/ | |
3001 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
6e67b7ae | 3002 | T: git git://github.com/ceph/ceph-client.git |
398ecff5 SW |
3003 | S: Supported |
3004 | F: Documentation/filesystems/ceph.txt | |
3005 | F: fs/ceph/ | |
3006 | ||
cfc411e7 DH |
3007 | CERTIFICATE HANDLING: |
3008 | M: David Howells <dhowells@redhat.com> | |
3009 | M: David Woodhouse <dwmw2@infradead.org> | |
d8d80386 | 3010 | L: keyrings@vger.kernel.org |
cfc411e7 DH |
3011 | S: Maintained |
3012 | F: Documentation/module-signing.txt | |
3013 | F: certs/ | |
d8d80386 | 3014 | F: scripts/sign-file.c |
cfc411e7 DH |
3015 | F: scripts/extract-cert.c |
3016 | ||
18332a80 | 3017 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 3018 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 3019 | S: Orphan |
679655da JP |
3020 | F: Documentation/usb/WUSB-Design-overview.txt |
3021 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
3022 | F: drivers/usb/host/hwa-hc.c |
3023 | F: drivers/usb/host/whci/ | |
679655da JP |
3024 | F: drivers/usb/wusbcore/ |
3025 | F: include/linux/usb/wusb* | |
18332a80 | 3026 | |
70e84049 | 3027 | CFAG12864B LCD DRIVER |
8b58be88 | 3028 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
3029 | W: http://miguelojeda.es/auxdisplay.htm |
3030 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 3031 | S: Maintained |
679655da JP |
3032 | F: drivers/auxdisplay/cfag12864b.c |
3033 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
3034 | |
3035 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 3036 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
3037 | W: http://miguelojeda.es/auxdisplay.htm |
3038 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 3039 | S: Maintained |
679655da JP |
3040 | F: drivers/auxdisplay/cfag12864bfb.c |
3041 | F: include/linux/cfag12864b.h | |
70e84049 | 3042 | |
704232c2 | 3043 | CFG80211 and NL80211 |
8b58be88 | 3044 | M: Johannes Berg <johannes@sipsolutions.net> |
704232c2 | 3045 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
3046 | W: http://wireless.kernel.org/ |
3047 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
3048 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 3049 | S: Maintained |
c117ab84 | 3050 | F: include/uapi/linux/nl80211.h |
679655da JP |
3051 | F: include/net/cfg80211.h |
3052 | F: net/wireless/* | |
3053 | X: net/wireless/wext* | |
704232c2 | 3054 | |
46e64261 GKH |
3055 | CHAR and MISC DRIVERS |
3056 | M: Arnd Bergmann <arnd@arndb.de> | |
879a5a00 | 3057 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
46e64261 | 3058 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 3059 | S: Supported |
46e64261 GKH |
3060 | F: drivers/char/* |
3061 | F: drivers/misc/* | |
471322a8 | 3062 | F: include/linux/miscdevice.h |
46e64261 | 3063 | |
0a920b5b | 3064 | CHECKPATCH |
8b58be88 | 3065 | M: Andy Whitcroft <apw@canonical.com> |
10d83f07 JP |
3066 | M: Joe Perches <joe@perches.com> |
3067 | S: Maintained | |
679655da | 3068 | F: scripts/checkpatch.pl |
0a920b5b | 3069 | |
f8407f26 HW |
3070 | CHINESE DOCUMENTATION |
3071 | M: Harry Wei <harryxiyou@gmail.com> | |
9740153c | 3072 | L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only) |
f8407f26 HW |
3073 | L: linux-kernel@zh-kernel.org (moderated for non-subscribers) |
3074 | S: Maintained | |
3075 | F: Documentation/zh_CN/ | |
3076 | ||
2721ea2c | 3077 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
60d77b3d | 3078 | M: Peter Chen <Peter.Chen@nxp.com> |
8373856d | 3079 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
2721ea2c AS |
3080 | L: linux-usb@vger.kernel.org |
3081 | S: Maintained | |
3082 | F: drivers/usb/chipidea/ | |
3083 | ||
a93ad65d HG |
3084 | CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER |
3085 | M: Hans de Goede <hdegoede@redhat.com> | |
3086 | L: linux-input@vger.kernel.org | |
3087 | S: Maintained | |
3088 | F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt | |
3089 | F: drivers/input/touchscreen/chipone_icn8318.c | |
3090 | ||
ab043105 OJ |
3091 | CHROME HARDWARE PLATFORM SUPPORT |
3092 | M: Olof Johansson <olof@lixom.net> | |
3093 | S: Maintained | |
9f273c24 | 3094 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git |
ab043105 OJ |
3095 | F: drivers/platform/chrome/ |
3096 | ||
641cb85e | 3097 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 3098 | M: Christian Benvenuti <benve@cisco.com> |
001e1c1d | 3099 | M: Sujith Sankar <ssujith@cisco.com> |
c327e8f4 | 3100 | M: Govindarajulu Varadarajan <_govind@gmx.com> |
5c6652f5 | 3101 | M: Neel Patel <neepatel@cisco.com> |
7063fbf2 | 3102 | S: Supported |
a6a5580c | 3103 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 3104 | |
e3cf00d0 | 3105 | CISCO VIC LOW LATENCY NIC DRIVER |
35ef4a9e DG |
3106 | M: Christian Benvenuti <benve@cisco.com> |
3107 | M: Dave Goodell <dgoodell@cisco.com> | |
b75f0050 | 3108 | S: Supported |
35ef4a9e | 3109 | F: drivers/infiniband/hw/usnic/ |
e3cf00d0 | 3110 | |
2b7a52a4 | 3111 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 3112 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
2b7a52a4 LB |
3113 | L: netdev@vger.kernel.org |
3114 | S: Maintained | |
57d0b7a0 | 3115 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 3116 | |
3d4cfdc9 MB |
3117 | CIRRUS LOGIC AUDIO CODEC DRIVERS |
3118 | M: Brian Austin <brian.austin@cirrus.com> | |
3119 | M: Paul Handrigan <Paul.Handrigan@cirrus.com> | |
3120 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
3121 | S: Maintained | |
3122 | F: sound/soc/codecs/cs* | |
3123 | ||
94574d9a KRW |
3124 | CLEANCACHE API |
3125 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
3126 | L: linux-kernel@vger.kernel.org | |
3127 | S: Maintained | |
3128 | F: mm/cleancache.c | |
3129 | F: include/linux/cleancache.h | |
3130 | ||
d4275354 | 3131 | CLK API |
54176cc6 | 3132 | M: Russell King <linux@armlinux.org.uk> |
aa571b14 | 3133 | L: linux-clk@vger.kernel.org |
37417046 | 3134 | S: Maintained |
d4275354 RK |
3135 | F: include/linux/clk.h |
3136 | ||
9222d247 JS |
3137 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
3138 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3139 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 3140 | L: linux-kernel@vger.kernel.org |
9222d247 JS |
3141 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
3142 | S: Supported | |
3143 | F: drivers/clocksource | |
3144 | ||
5df6d737 | 3145 | CISCO FCOE HBA DRIVER |
8fc89a79 HP |
3146 | M: Hiral Patel <hiralpat@cisco.com> |
3147 | M: Suma Ramars <sramars@cisco.com> | |
d7e01dc6 | 3148 | M: Brian Uchino <buchino@cisco.com> |
5df6d737 AJ |
3149 | L: linux-scsi@vger.kernel.org |
3150 | S: Supported | |
2a99921a | 3151 | F: drivers/scsi/fnic/ |
5df6d737 | 3152 | |
c8806b6c NM |
3153 | CISCO SCSI HBA DRIVER |
3154 | M: Narsimhulu Musini <nmusini@cisco.com> | |
3155 | M: Sesidhar Baddela <sebaddel@cisco.com> | |
3156 | L: linux-scsi@vger.kernel.org | |
3157 | S: Supported | |
3158 | F: drivers/scsi/snic/ | |
3159 | ||
529aa8cb TLSC |
3160 | CMPC ACPI DRIVER |
3161 | M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> | |
3162 | M: Daniel Oliveira Nascimento <don@syst.com.br> | |
d0944853 | 3163 | L: platform-driver-x86@vger.kernel.org |
529aa8cb TLSC |
3164 | S: Supported |
3165 | F: drivers/platform/x86/classmate-laptop.c | |
3166 | ||
85756a06 HV |
3167 | COBALT MEDIA DRIVER |
3168 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
3169 | L: linux-media@vger.kernel.org | |
3170 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 3171 | W: https://linuxtv.org |
85756a06 HV |
3172 | S: Supported |
3173 | F: drivers/media/pci/cobalt/ | |
3174 | ||
74425eee | 3175 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 3176 | M: Julia Lawall <Julia.Lawall@lip6.fr> |
74425eee | 3177 | M: Gilles Muller <Gilles.Muller@lip6.fr> |
26de9c26 | 3178 | M: Nicolas Palix <nicolas.palix@imag.fr> |
d8130624 | 3179 | M: Michal Marek <mmarek@suse.com> |
26de9c26 | 3180 | L: cocci@systeme.lip6.fr (moderated for non-subscribers) |
c00b5110 | 3181 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
74425eee NP |
3182 | W: http://coccinelle.lip6.fr/ |
3183 | S: Supported | |
4b9033a3 | 3184 | F: Documentation/dev-tools/coccinelle.rst |
74425eee NP |
3185 | F: scripts/coccinelle/ |
3186 | F: scripts/coccicheck | |
3187 | ||
1da177e4 | 3188 | CODA FILE SYSTEM |
8b58be88 | 3189 | M: Jan Harkes <jaharkes@cs.cmu.edu> |
1da177e4 LT |
3190 | M: coda@cs.cmu.edu |
3191 | L: codalist@coda.cs.cmu.edu | |
3192 | W: http://www.coda.cs.cmu.edu/ | |
3193 | S: Maintained | |
679655da JP |
3194 | F: Documentation/filesystems/coda.txt |
3195 | F: fs/coda/ | |
3196 | F: include/linux/coda*.h | |
c117ab84 | 3197 | F: include/uapi/linux/coda*.h |
1da177e4 | 3198 | |
0b14261e PZ |
3199 | CODA V4L2 MEM2MEM DRIVER |
3200 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
3201 | L: linux-media@vger.kernel.org | |
3202 | S: Maintained | |
3203 | F: Documentation/devicetree/bindings/media/coda.txt | |
3204 | F: drivers/media/platform/coda/ | |
3205 | ||
7704addb | 3206 | COMMON CLK FRAMEWORK |
a85fa007 | 3207 | M: Michael Turquette <mturquette@baylibre.com> |
f956165f | 3208 | M: Stephen Boyd <sboyd@codeaurora.org> |
aa571b14 | 3209 | L: linux-clk@vger.kernel.org |
22d61acf | 3210 | Q: http://patchwork.kernel.org/project/linux-clk/list/ |
baeb0d9b | 3211 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git |
7704addb | 3212 | S: Maintained |
ae4185cd | 3213 | F: Documentation/devicetree/bindings/clock/ |
60bea3b5 SW |
3214 | F: drivers/clk/ |
3215 | X: drivers/clk/clkdev.c | |
7704addb | 3216 | F: include/linux/clk-pr* |
60bea3b5 | 3217 | F: include/linux/clk/ |
7704addb | 3218 | |
e2d1d6c0 | 3219 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 3220 | M: Steve French <sfrench@samba.org> |
51223df6 | 3221 | L: linux-cifs@vger.kernel.org |
d1f28953 | 3222 | L: samba-technical@lists.samba.org (moderated for non-subscribers) |
e2d1d6c0 | 3223 | W: http://linux-cifs.samba.org/ |
bb1d5dda | 3224 | T: git git://git.samba.org/sfrench/cifs-2.6.git |
e2d1d6c0 | 3225 | S: Supported |
ec421a71 | 3226 | F: Documentation/filesystems/cifs/ |
679655da | 3227 | F: fs/cifs/ |
e2d1d6c0 | 3228 | |
1da177e4 | 3229 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 3230 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 3231 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 3232 | S: Maintained |
679655da | 3233 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
3234 | |
3235 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 3236 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 3237 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 3238 | S: Maintained |
679655da | 3239 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
3240 | |
3241 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 3242 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 3243 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 3244 | S: Maintained |
679655da | 3245 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 3246 | |
5411552c | 3247 | COMPAL LAPTOP SUPPORT |
8b58be88 | 3248 | M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> |
d0944853 | 3249 | L: platform-driver-x86@vger.kernel.org |
5411552c | 3250 | S: Maintained |
679655da | 3251 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 3252 | |
949be0f7 | 3253 | CONEXANT ACCESSRUNNER USB DRIVER |
9ae5e3bc SA |
3254 | L: accessrunner-general@lists.sourceforge.net |
3255 | W: http://accessrunner.sourceforge.net/ | |
44243ef4 | 3256 | S: Orphan |
679655da | 3257 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 3258 | |
e2d1d6c0 | 3259 | CONFIGFS |
d6351db2 | 3260 | M: Joel Becker <jlbec@evilplan.org> |
1609bac8 CH |
3261 | M: Christoph Hellwig <hch@lst.de> |
3262 | T: git git://git.infradead.org/users/hch/configfs.git | |
e2d1d6c0 | 3263 | S: Supported |
679655da JP |
3264 | F: fs/configfs/ |
3265 | F: include/linux/configfs.h | |
e2d1d6c0 | 3266 | |
acb9c1b2 | 3267 | CONNECTOR |
8b58be88 | 3268 | M: Evgeniy Polyakov <zbr@ioremap.net> |
acb9c1b2 EP |
3269 | L: netdev@vger.kernel.org |
3270 | S: Maintained | |
3271 | F: drivers/connector/ | |
3272 | ||
a3e3354d | 3273 | CONTROL GROUP (CGROUP) |
860ca0e6 | 3274 | M: Tejun Heo <tj@kernel.org> |
ad50c159 | 3275 | M: Li Zefan <lizefan@huawei.com> |
4d205676 | 3276 | M: Johannes Weiner <hannes@cmpxchg.org> |
12340313 | 3277 | L: cgroups@vger.kernel.org |
860ca0e6 | 3278 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 3279 | S: Maintained |
4b16b0c0 | 3280 | F: Documentation/cgroup* |
679655da JP |
3281 | F: include/linux/cgroup* |
3282 | F: kernel/cgroup* | |
a3e3354d TH |
3283 | |
3284 | CONTROL GROUP - CPUSET | |
3285 | M: Li Zefan <lizefan@huawei.com> | |
3286 | L: cgroups@vger.kernel.org | |
3287 | W: http://www.bullopensource.org/cpuset/ | |
3288 | W: http://oss.sgi.com/projects/cpusets/ | |
3289 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git | |
3290 | S: Maintained | |
4b16b0c0 | 3291 | F: Documentation/cgroup-v1/cpusets.txt |
a3e3354d TH |
3292 | F: include/linux/cpuset.h |
3293 | F: kernel/cpuset.c | |
3294 | ||
3295 | CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG) | |
3296 | M: Johannes Weiner <hannes@cmpxchg.org> | |
fbd7dc74 | 3297 | M: Michal Hocko <mhocko@kernel.org> |
c4e29738 | 3298 | M: Vladimir Davydov <vdavydov.dev@gmail.com> |
a3e3354d TH |
3299 | L: cgroups@vger.kernel.org |
3300 | L: linux-mm@kvack.org | |
3301 | S: Maintained | |
3302 | F: mm/memcontrol.c | |
5d1ea48b | 3303 | F: mm/swap_cgroup.c |
fb3a0fb6 | 3304 | |
bebe4678 | 3305 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 3306 | M: Fenghua Yu <fenghua.yu@intel.com> |
968ce1b1 | 3307 | L: linux-hwmon@vger.kernel.org |
bebe4678 | 3308 | S: Maintained |
679655da JP |
3309 | F: Documentation/hwmon/coretemp |
3310 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 3311 | |
1da177e4 | 3312 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 3313 | M: Jan "Yenya" Kasprzak <kas@fi.muni.cz> |
1da177e4 LT |
3314 | W: http://www.fi.muni.cz/~kas/cosa/ |
3315 | S: Maintained | |
679655da | 3316 | F: drivers/net/wan/cosa* |
1da177e4 | 3317 | |
4371ee35 | 3318 | CPMAC ETHERNET DRIVER |
9dd4aaef | 3319 | M: Florian Fainelli <f.fainelli@gmail.com> |
4371ee35 FF |
3320 | L: netdev@vger.kernel.org |
3321 | S: Maintained | |
b544dbac | 3322 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 3323 | |
1da177e4 | 3324 | CPU FREQUENCY DRIVERS |
9c3646d1 | 3325 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
45c009a9 | 3326 | M: Viresh Kumar <viresh.kumar@linaro.org> |
a6c072c7 | 3327 | L: linux-pm@vger.kernel.org |
1da177e4 | 3328 | S: Maintained |
27209d91 VK |
3329 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
3330 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) | |
dabe73cb | 3331 | F: Documentation/cpu-freq/ |
679655da JP |
3332 | F: drivers/cpufreq/ |
3333 | F: include/linux/cpufreq.h | |
1da177e4 | 3334 | |
8a67f0ef VK |
3335 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
3336 | M: Viresh Kumar <viresh.kumar@linaro.org> | |
171d0ba8 | 3337 | M: Sudeep Holla <sudeep.holla@arm.com> |
8a67f0ef VK |
3338 | L: linux-pm@vger.kernel.org |
3339 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
3340 | S: Maintained | |
3341 | F: drivers/cpufreq/arm_big_little.h | |
3342 | F: drivers/cpufreq/arm_big_little.c | |
3343 | F: drivers/cpufreq/arm_big_little_dt.c | |
3344 | ||
14d2c34c | 3345 | CPUIDLE DRIVER - ARM BIG LITTLE |
b75f0050 JP |
3346 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
3347 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3348 | L: linux-pm@vger.kernel.org | |
3349 | L: linux-arm-kernel@lists.infradead.org | |
cea8321c | 3350 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
b75f0050 JP |
3351 | S: Maintained |
3352 | F: drivers/cpuidle/cpuidle-big_little.c | |
14d2c34c | 3353 | |
0c570c18 BZ |
3354 | CPUIDLE DRIVER - ARM EXYNOS |
3355 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
3356 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3357 | M: Kukjin Kim <kgene@kernel.org> | |
3358 | L: linux-pm@vger.kernel.org | |
3359 | L: linux-samsung-soc@vger.kernel.org | |
3360 | S: Supported | |
3361 | F: drivers/cpuidle/cpuidle-exynos.c | |
3362 | F: arch/arm/mach-exynos/pm.c | |
3363 | ||
a8e39c35 | 3364 | CPUIDLE DRIVERS |
9c3646d1 | 3365 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
a8e39c35 DL |
3366 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
3367 | L: linux-pm@vger.kernel.org | |
3368 | S: Maintained | |
cea8321c | 3369 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
a8e39c35 DL |
3370 | F: drivers/cpuidle/* |
3371 | F: include/linux/cpuidle.h | |
3372 | ||
1da177e4 | 3373 | CPUID/MSR DRIVER |
8b58be88 | 3374 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 3375 | S: Maintained |
679655da JP |
3376 | F: arch/x86/kernel/cpuid.c |
3377 | F: arch/x86/kernel/msr.c | |
1da177e4 | 3378 | |
7fe2f639 | 3379 | CPU POWER MONITORING SUBSYSTEM |
d8130624 | 3380 | M: Thomas Renninger <trenn@suse.com> |
103f1790 | 3381 | L: linux-pm@vger.kernel.org |
7fe2f639 | 3382 | S: Maintained |
14430813 | 3383 | F: tools/power/cpupower/ |
7fe2f639 | 3384 | |
1da177e4 | 3385 | CRAMFS FILESYSTEM |
ce00f85c | 3386 | W: http://sourceforge.net/projects/cramfs/ |
54886a71 | 3387 | S: Orphan / Obsolete |
679655da JP |
3388 | F: Documentation/filesystems/cramfs.txt |
3389 | F: fs/cramfs/ | |
1da177e4 LT |
3390 | |
3391 | CRIS PORT | |
8b58be88 JP |
3392 | M: Mikael Starvik <starvik@axis.com> |
3393 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
9937ac0c | 3394 | L: linux-cris-kernel@axis.com |
1da177e4 | 3395 | W: http://developer.axis.com |
9f273c24 | 3396 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git |
1da177e4 | 3397 | S: Maintained |
679655da | 3398 | F: arch/cris/ |
df621252 | 3399 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
3400 | |
3401 | CRYPTO API | |
8b58be88 JP |
3402 | M: Herbert Xu <herbert@gondor.apana.org.au> |
3403 | M: "David S. Miller" <davem@davemloft.net> | |
1da177e4 | 3404 | L: linux-crypto@vger.kernel.org |
9f273c24 | 3405 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git |
54e5881d | 3406 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 3407 | S: Maintained |
679655da | 3408 | F: Documentation/crypto/ |
fe1c445b | 3409 | F: Documentation/devicetree/bindings/crypto/ |
2ca87a17 | 3410 | F: Documentation/DocBook/crypto-API.tmpl |
679655da JP |
3411 | F: arch/*/crypto/ |
3412 | F: crypto/ | |
3413 | F: drivers/crypto/ | |
3414 | F: include/crypto/ | |
1da177e4 | 3415 | |
5b07bd57 | 3416 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 3417 | M: Neil Horman <nhorman@tuxdriver.com> |
5b07bd57 NH |
3418 | L: linux-crypto@vger.kernel.org |
3419 | S: Maintained | |
51a2228a JP |
3420 | F: crypto/ansi_cprng.c |
3421 | F: crypto/rng.c | |
5b07bd57 | 3422 | |
fc279cc2 HV |
3423 | CS3308 MEDIA DRIVER |
3424 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3425 | L: linux-media@vger.kernel.org | |
3426 | T: git git://linuxtv.org/media_tree.git | |
3427 | W: http://linuxtv.org | |
3428 | S: Odd Fixes | |
3429 | F: drivers/media/i2c/cs3308.c | |
3430 | F: drivers/media/i2c/cs3308.h | |
3431 | ||
9b4ffa48 | 3432 | CS5535 Audio ALSA driver |
8b58be88 | 3433 | M: Jaya Kumar <jayakumar.alsa@gmail.com> |
9b4ffa48 | 3434 | S: Maintained |
679655da | 3435 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 3436 | |
a910e4a9 | 3437 | CW1200 WLAN driver |
b75f0050 JP |
3438 | M: Solomon Peachy <pizza@shaftnet.org> |
3439 | S: Maintained | |
560424e9 | 3440 | F: drivers/net/wireless/st/cw1200/ |
a910e4a9 | 3441 | |
6d8425b1 | 3442 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 3443 | M: Andy Walls <awalls@md.metrocast.net> |
7b212edf | 3444 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
661263b5 | 3445 | L: linux-media@vger.kernel.org |
275ffde4 | 3446 | T: git git://linuxtv.org/media_tree.git |
a825eaec | 3447 | W: https://linuxtv.org |
30e10993 | 3448 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 3449 | S: Maintained |
618cd932 | 3450 | F: Documentation/media/v4l-drivers/cx18* |
90d72ac6 | 3451 | F: drivers/media/pci/cx18/ |
6c0f0359 | 3452 | F: include/uapi/linux/ivtv* |
6d8425b1 | 3453 | |
3f101d91 HV |
3454 | CX2341X MPEG ENCODER HELPER MODULE |
3455 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3456 | L: linux-media@vger.kernel.org | |
3457 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 3458 | W: https://linuxtv.org |
3f101d91 | 3459 | S: Maintained |
c368360b | 3460 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
3461 | F: include/media/cx2341x* |
3462 | ||
b8fe6e2c PB |
3463 | CX24120 MEDIA DRIVER |
3464 | M: Jemma Denson <jdenson@gmail.com> | |
3465 | M: Patrick Boettcher <patrick.boettcher@posteo.de> | |
3466 | L: linux-media@vger.kernel.org | |
a825eaec | 3467 | W: https://linuxtv.org |
b8fe6e2c PB |
3468 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3469 | S: Maintained | |
3470 | F: drivers/media/dvb-frontends/cx24120* | |
3471 | ||
20357578 | 3472 | CX88 VIDEO4LINUX DRIVER |
5dc8a864 MCC |
3473 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
3474 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
20357578 | 3475 | L: linux-media@vger.kernel.org |
a825eaec | 3476 | W: https://linuxtv.org |
20357578 MCC |
3477 | T: git git://linuxtv.org/media_tree.git |
3478 | S: Odd fixes | |
618cd932 | 3479 | F: Documentation/media/v4l-drivers/cx88* |
20357578 | 3480 | F: drivers/media/pci/cx88/ |
6d8425b1 | 3481 | |
91952bc0 AP |
3482 | CXD2820R MEDIA DRIVER |
3483 | M: Antti Palosaari <crope@iki.fi> | |
3484 | L: linux-media@vger.kernel.org | |
a825eaec | 3485 | W: https://linuxtv.org |
91952bc0 AP |
3486 | W: http://palosaari.fi/linux/ |
3487 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3488 | T: git git://linuxtv.org/anttip/media_tree.git | |
3489 | S: Maintained | |
3490 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 3491 | |
e5ec3789 | 3492 | CXGB3 ETHERNET DRIVER (CXGB3) |
cdc99239 | 3493 | M: Santosh Raspatur <santosh@chelsio.com> |
e5ec3789 SW |
3494 | L: netdev@vger.kernel.org |
3495 | W: http://www.chelsio.com | |
3496 | S: Supported | |
f7917c00 | 3497 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 | 3498 | |
d8ae3c33 | 3499 | CXGB3 ISCSI DRIVER (CXGB3I) |
49e7d9df JP |
3500 | M: Karen Xie <kxie@chelsio.com> |
3501 | L: linux-scsi@vger.kernel.org | |
3502 | W: http://www.chelsio.com | |
3503 | S: Supported | |
3504 | F: drivers/scsi/cxgbi/cxgb3i | |
d8ae3c33 | 3505 | |
e5ec3789 | 3506 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) |
8b58be88 | 3507 | M: Steve Wise <swise@chelsio.com> |
e6cc0fd1 | 3508 | L: linux-rdma@vger.kernel.org |
e5ec3789 SW |
3509 | W: http://www.openfabrics.org |
3510 | S: Supported | |
679655da | 3511 | F: drivers/infiniband/hw/cxgb3/ |
a85fb338 | 3512 | F: include/uapi/rdma/cxgb3-abi.h |
e5ec3789 | 3513 | |
be4c9bad | 3514 | CXGB4 ETHERNET DRIVER (CXGB4) |
56f16c74 | 3515 | M: Hariprasad S <hariprasad@chelsio.com> |
be4c9bad RD |
3516 | L: netdev@vger.kernel.org |
3517 | W: http://www.chelsio.com | |
3518 | S: Supported | |
f7917c00 | 3519 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad | 3520 | |
d8ae3c33 | 3521 | CXGB4 ISCSI DRIVER (CXGB4I) |
49e7d9df JP |
3522 | M: Karen Xie <kxie@chelsio.com> |
3523 | L: linux-scsi@vger.kernel.org | |
3524 | W: http://www.chelsio.com | |
3525 | S: Supported | |
3526 | F: drivers/scsi/cxgbi/cxgb4i | |
d8ae3c33 | 3527 | |
be4c9bad RD |
3528 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) |
3529 | M: Steve Wise <swise@chelsio.com> | |
3530 | L: linux-rdma@vger.kernel.org | |
3531 | W: http://www.openfabrics.org | |
3532 | S: Supported | |
3533 | F: drivers/infiniband/hw/cxgb4/ | |
e44ee2fd | 3534 | F: include/uapi/rdma/cxgb4-abi.h |
be4c9bad | 3535 | |
5c20a5c7 CL |
3536 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
3537 | M: Casey Leedom <leedom@chelsio.com> | |
3538 | L: netdev@vger.kernel.org | |
3539 | W: http://www.chelsio.com | |
3540 | S: Supported | |
f7917c00 | 3541 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 3542 | |
a9282d01 IM |
3543 | CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER |
3544 | M: Ian Munsie <imunsie@au1.ibm.com> | |
9d82fd2f | 3545 | M: Frederic Barrat <fbarrat@linux.vnet.ibm.com> |
a9282d01 IM |
3546 | L: linuxppc-dev@lists.ozlabs.org |
3547 | S: Supported | |
9d82fd2f | 3548 | F: arch/powerpc/platforms/powernv/pci-cxl.c |
a9282d01 | 3549 | F: drivers/misc/cxl/ |
ec249dd8 | 3550 | F: include/misc/cxl* |
a9282d01 IM |
3551 | F: include/uapi/misc/cxl.h |
3552 | F: Documentation/powerpc/cxl.txt | |
a9282d01 IM |
3553 | F: Documentation/ABI/testing/sysfs-class-cxl |
3554 | ||
11f43ae7 MO |
3555 | CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER |
3556 | M: Manoj N. Kumar <manoj@linux.vnet.ibm.com> | |
3557 | M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com> | |
b2c0627c | 3558 | M: Uma Krishnan <ukrishn@linux.vnet.ibm.com> |
11f43ae7 MO |
3559 | L: linux-scsi@vger.kernel.org |
3560 | S: Supported | |
3561 | F: drivers/scsi/cxlflash/ | |
3562 | F: include/uapi/scsi/cxlflash_ioctls.h | |
3563 | F: Documentation/powerpc/cxlflash.txt | |
3564 | ||
b52b97a3 GC |
3565 | STMMAC ETHERNET DRIVER |
3566 | M: Giuseppe Cavallaro <peppe.cavallaro@st.com> | |
91979b9d | 3567 | M: Alexandre Torgue <alexandre.torgue@st.com> |
b52b97a3 GC |
3568 | L: netdev@vger.kernel.org |
3569 | W: http://www.stlinux.com | |
3570 | S: Supported | |
7ac6653a | 3571 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 3572 | |
1da177e4 | 3573 | CYBERPRO FB DRIVER |
54176cc6 | 3574 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 3575 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 3576 | W: http://www.armlinux.org.uk/ |
1da177e4 | 3577 | S: Maintained |
8a61f013 | 3578 | F: drivers/video/fbdev/cyber2000fb.* |
9fa68eae | 3579 | |
1da177e4 | 3580 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 3581 | W: http://www.cyclades.com/ |
d459883e | 3582 | S: Orphan |
c897401b | 3583 | F: drivers/tty/cyclades.c |
679655da | 3584 | F: include/linux/cyclades.h |
c117ab84 | 3585 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
3586 | |
3587 | CYCLADES PC300 DRIVER | |
1da177e4 | 3588 | W: http://www.cyclades.com/ |
d459883e | 3589 | S: Orphan |
679655da | 3590 | F: drivers/net/wan/pc300* |
1da177e4 | 3591 | |
402f6ae4 AP |
3592 | CYPRESS_FIRMWARE MEDIA DRIVER |
3593 | M: Antti Palosaari <crope@iki.fi> | |
3594 | L: linux-media@vger.kernel.org | |
a825eaec | 3595 | W: https://linuxtv.org |
402f6ae4 AP |
3596 | W: http://palosaari.fi/linux/ |
3597 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3598 | T: git git://linuxtv.org/anttip/media_tree.git | |
3599 | S: Maintained | |
3600 | F: drivers/media/common/cypress_firmware* | |
3601 | ||
e3ae3525 | 3602 | CYTTSP TOUCHSCREEN DRIVER |
be9a6f40 | 3603 | M: Ferruh Yigit <fery@cypress.com> |
6305902c | 3604 | L: linux-input@vger.kernel.org |
be9a6f40 | 3605 | S: Supported |
6305902c JP |
3606 | F: drivers/input/touchscreen/cyttsp* |
3607 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 3608 | |
aaaf5fbf JK |
3609 | DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK |
3610 | M: Joshua Kinard <kumba@gentoo.org> | |
3611 | S: Maintained | |
3612 | F: drivers/rtc/rtc-ds1685.c | |
3613 | F: include/linux/rtc/ds1685.h | |
3614 | ||
1da177e4 | 3615 | DAMA SLAVE for AX.25 |
8b58be88 | 3616 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
3617 | W: http://yaina.de/jreuter/ |
3618 | W: http://www.qsl.net/dl1bke/ | |
3619 | L: linux-hams@vger.kernel.org | |
3620 | S: Maintained | |
679655da JP |
3621 | F: net/ax25/af_ax25.c |
3622 | F: net/ax25/ax25_dev.c | |
3623 | F: net/ax25/ax25_ds_* | |
3624 | F: net/ax25/ax25_in.c | |
3625 | F: net/ax25/ax25_out.c | |
3626 | F: net/ax25/ax25_timer.c | |
3627 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 3628 | |
e2d1d6c0 | 3629 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 3630 | L: netdev@vger.kernel.org |
5ff77428 | 3631 | S: Orphan |
679655da | 3632 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 3633 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
3634 | |
3635 | DC390/AM53C974 SCSI driver | |
d8130624 | 3636 | M: Hannes Reinecke <hare@suse.com> |
71bd849d | 3637 | L: linux-scsi@vger.kernel.org |
e2d1d6c0 | 3638 | S: Maintained |
71bd849d | 3639 | F: drivers/scsi/am53c974.c |
e2d1d6c0 | 3640 | |
1da177e4 | 3641 | DC395x SCSI driver |
61eee9a7 | 3642 | M: Oliver Neukum <oliver@neukum.org> |
8b58be88 JP |
3643 | M: Ali Akcaagac <aliakc@web.de> |
3644 | M: Jamie Lenehan <lenehan@twibble.org> | |
f5df5881 | 3645 | L: dc395x@twibble.org |
cf015e9f JP |
3646 | W: http://twibble.org/dist/dc395x/ |
3647 | W: http://lists.twibble.org/mailman/listinfo/dc395x/ | |
1da177e4 | 3648 | S: Maintained |
679655da JP |
3649 | F: Documentation/scsi/dc395x.txt |
3650 | F: drivers/scsi/dc395x.* | |
1da177e4 | 3651 | |
eb8edb08 | 3652 | DCCP PROTOCOL |
a89d030e | 3653 | M: Gerrit Renker <gerrit@erg.abdn.ac.uk> |
eb8edb08 | 3654 | L: dccp@vger.kernel.org |
c996d8b9 | 3655 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 3656 | S: Maintained |
679655da | 3657 | F: include/linux/dccp.h |
c117ab84 | 3658 | F: include/uapi/linux/dccp.h |
679655da JP |
3659 | F: include/linux/tfrc.h |
3660 | F: net/dccp/ | |
eb8edb08 | 3661 | |
1da177e4 | 3662 | DECnet NETWORK LAYER |
1da177e4 LT |
3663 | W: http://linux-decnet.sourceforge.net |
3664 | L: linux-decnet-user@lists.sourceforge.net | |
f546444d | 3665 | S: Orphan |
679655da JP |
3666 | F: Documentation/networking/decnet.txt |
3667 | F: net/decnet/ | |
1da177e4 | 3668 | |
ebff05b9 MR |
3669 | DECSTATION PLATFORM SUPPORT |
3670 | M: "Maciej W. Rozycki" <macro@linux-mips.org> | |
3671 | L: linux-mips@linux-mips.org | |
3672 | W: http://www.linux-mips.org/wiki/DECstation | |
3673 | S: Maintained | |
3674 | F: arch/mips/dec/ | |
3675 | F: arch/mips/include/asm/dec/ | |
3676 | F: arch/mips/include/asm/mach-dec/ | |
3677 | ||
1da177e4 | 3678 | DEFXX FDDI NETWORK DRIVER |
8b58be88 | 3679 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
1da177e4 | 3680 | S: Maintained |
33f810b2 | 3681 | F: drivers/net/fddi/defxx.* |
1da177e4 | 3682 | |
ad8f07cc | 3683 | DELL LAPTOP DRIVER |
8b58be88 | 3684 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
cdbff611 | 3685 | M: Pali Rohár <pali.rohar@gmail.com> |
d0944853 | 3686 | L: platform-driver-x86@vger.kernel.org |
ad8f07cc | 3687 | S: Maintained |
679655da | 3688 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 3689 | |
817a5cdb PR |
3690 | DELL LAPTOP RBTN DRIVER |
3691 | M: Pali Rohár <pali.rohar@gmail.com> | |
3692 | S: Maintained | |
3693 | F: drivers/platform/x86/dell-rbtn.* | |
3694 | ||
cdbff611 PR |
3695 | DELL LAPTOP FREEFALL DRIVER |
3696 | M: Pali Rohár <pali.rohar@gmail.com> | |
3697 | S: Maintained | |
3698 | F: drivers/platform/x86/dell-smo8800.c | |
3699 | ||
1da177e4 | 3700 | DELL LAPTOP SMM DRIVER |
a5afba16 | 3701 | M: Pali Rohár <pali.rohar@gmail.com> |
ef3522f7 | 3702 | S: Maintained |
a5afba16 | 3703 | F: drivers/hwmon/dell-smm-hwmon.c |
c117ab84 | 3704 | F: include/uapi/linux/i8k.h |
1da177e4 | 3705 | |
90563ec4 | 3706 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 3707 | M: Doug Warzecha <Douglas_Warzecha@dell.com> |
90563ec4 | 3708 | S: Maintained |
679655da JP |
3709 | F: Documentation/dcdbas.txt |
3710 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 3711 | |
0b3f6109 | 3712 | DELL WMI EXTRAS DRIVER |
8b58be88 | 3713 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
cdbff611 | 3714 | M: Pali Rohár <pali.rohar@gmail.com> |
0b3f6109 | 3715 | S: Maintained |
36b3a96f | 3716 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 3717 | |
5efc75e3 | 3718 | DESIGNWARE USB2 DRD IP DRIVER |
16272ae7 | 3719 | M: John Youn <johnyoun@synopsys.com> |
5efc75e3 | 3720 | L: linux-usb@vger.kernel.org |
18f340f9 | 3721 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
5efc75e3 | 3722 | S: Maintained |
197ba5f4 | 3723 | F: drivers/usb/dwc2/ |
5efc75e3 | 3724 | |
94ab23dd | 3725 | DESIGNWARE USB3 DRD IP DRIVER |
a55f6286 | 3726 | M: Felipe Balbi <balbi@kernel.org> |
94ab23dd | 3727 | L: linux-usb@vger.kernel.org |
94ab23dd FB |
3728 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
3729 | S: Maintained | |
3730 | F: drivers/usb/dwc3/ | |
3731 | ||
833c9545 JB |
3732 | DEVICE COREDUMP (DEV_COREDUMP) |
3733 | M: Johannes Berg <johannes@sipsolutions.net> | |
3734 | L: linux-kernel@vger.kernel.org | |
3735 | S: Maintained | |
3736 | F: drivers/base/devcoredump.c | |
3737 | F: include/linux/devcoredump.h | |
3738 | ||
89d07767 KP |
3739 | DEVICE FREQUENCY (DEVFREQ) |
3740 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
3741 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
88476d34 | 3742 | L: linux-pm@vger.kernel.org |
6a3cd722 | 3743 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git |
89d07767 KP |
3744 | S: Maintained |
3745 | F: drivers/devfreq/ | |
6a3cd722 CC |
3746 | F: include/linux/devfreq.h |
3747 | F: Documentation/devicetree/bindings/devfreq/ | |
89d07767 | 3748 | |
7dbded06 CC |
3749 | DEVICE FREQUENCY EVENT (DEVFREQ-EVENT) |
3750 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
3751 | L: linux-pm@vger.kernel.org | |
3752 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git | |
3753 | S: Supported | |
3754 | F: drivers/devfreq/event/ | |
3755 | F: drivers/devfreq/devfreq-event.c | |
3756 | F: include/linux/devfreq-event.h | |
3757 | F: Documentation/devicetree/bindings/devfreq/event/ | |
89d07767 | 3758 | |
490b864b CC |
3759 | BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS |
3760 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
3761 | L: linux-pm@vger.kernel.org | |
3762 | L: linux-samsung-soc@vger.kernel.org | |
3763 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git | |
3764 | S: Maintained | |
3765 | F: drivers/devfreq/exynos-bus.c | |
3766 | F: Documentation/devicetree/bindings/devfreq/exynos-bus.txt | |
3767 | ||
1da177e4 | 3768 | DEVICE NUMBER REGISTRY |
8b58be88 | 3769 | M: Torben Mathiasen <device@lanana.org> |
1da177e4 | 3770 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
3771 | S: Maintained |
3772 | ||
e2d1d6c0 | 3773 | DEVICE-MAPPER (LVM) |
854ecaad | 3774 | M: Alasdair Kergon <agk@redhat.com> |
8504eed3 | 3775 | M: Mike Snitzer <snitzer@redhat.com> |
854ecaad | 3776 | M: dm-devel@redhat.com |
e2d1d6c0 RD |
3777 | L: dm-devel@redhat.com |
3778 | W: http://sources.redhat.com/dm | |
8a6e2535 | 3779 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
41d35d25 | 3780 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git |
854ecaad | 3781 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 3782 | S: Maintained |
679655da JP |
3783 | F: Documentation/device-mapper/ |
3784 | F: drivers/md/dm* | |
854ecaad | 3785 | F: drivers/md/persistent-data/ |
679655da JP |
3786 | F: include/linux/device-mapper.h |
3787 | F: include/linux/dm-*.h | |
8504eed3 | 3788 | F: include/uapi/linux/dm-*.h |
e2d1d6c0 | 3789 | |
bfcd3a46 JP |
3790 | DEVLINK |
3791 | M: Jiri Pirko <jiri@mellanox.com> | |
3792 | L: netdev@vger.kernel.org | |
3793 | S: Supported | |
3794 | F: net/core/devlink.c | |
3795 | F: include/net/devlink.h | |
3796 | F: include/uapi/linux/devlink.h | |
3797 | ||
c0d995aa OST |
3798 | DIALOG SEMICONDUCTOR DRIVERS |
3799 | M: Support Opensource <support.opensource@diasemi.com> | |
3800 | W: http://www.dialog-semiconductor.com/products | |
3801 | S: Supported | |
3802 | F: Documentation/hwmon/da90?? | |
047cfd01 | 3803 | F: Documentation/devicetree/bindings/mfd/da90*.txt |
4eeb08b4 | 3804 | F: Documentation/devicetree/bindings/regulator/da92*.txt |
7c933772 | 3805 | F: Documentation/devicetree/bindings/sound/da[79]*.txt |
c0d995aa OST |
3806 | F: drivers/gpio/gpio-da90??.c |
3807 | F: drivers/hwmon/da90??-hwmon.c | |
7be72c2c | 3808 | F: drivers/iio/adc/da91??-*.c |
c0d995aa OST |
3809 | F: drivers/input/misc/da90??_onkey.c |
3810 | F: drivers/input/touchscreen/da9052_tsi.c | |
3811 | F: drivers/leds/leds-da90??.c | |
3812 | F: drivers/mfd/da903x.c | |
3813 | F: drivers/mfd/da90??-*.c | |
7be72c2c | 3814 | F: drivers/mfd/da91??-*.c |
8c0984e5 SR |
3815 | F: drivers/power/supply/da9052-battery.c |
3816 | F: drivers/power/supply/da91??-*.c | |
c0d995aa OST |
3817 | F: drivers/regulator/da903x.c |
3818 | F: drivers/regulator/da9???-regulator.[ch] | |
3819 | F: drivers/rtc/rtc-da90??.c | |
3820 | F: drivers/video/backlight/da90??_bl.c | |
3821 | F: drivers/watchdog/da90??_wdt.c | |
3822 | F: include/linux/mfd/da903x.h | |
3823 | F: include/linux/mfd/da9052/ | |
3824 | F: include/linux/mfd/da9055/ | |
047cfd01 | 3825 | F: include/linux/mfd/da9062/ |
c0d995aa | 3826 | F: include/linux/mfd/da9063/ |
7be72c2c | 3827 | F: include/linux/mfd/da9150/ |
4eeb08b4 | 3828 | F: include/linux/regulator/da9211.h |
c0d995aa OST |
3829 | F: include/sound/da[79]*.h |
3830 | F: sound/soc/codecs/da[79]*.[ch] | |
3831 | ||
6ea5dcdf WBG |
3832 | DIAMOND SYSTEMS GPIO-MM GPIO DRIVER |
3833 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
3834 | L: linux-gpio@vger.kernel.org | |
3835 | S: Maintained | |
3836 | F: drivers/gpio/gpio-gpio-mm.c | |
3837 | ||
599aa697 LL |
3838 | DIGI NEO AND CLASSIC PCI PRODUCTS |
3839 | M: Lidza Louina <lidza.louina@gmail.com> | |
542f3d5a | 3840 | M: Mark Hounschell <markh@compro.net> |
599aa697 LL |
3841 | L: driverdev-devel@linuxdriverproject.org |
3842 | S: Maintained | |
3843 | F: drivers/staging/dgnc/ | |
3844 | ||
335d7c58 | 3845 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 3846 | M: Guenter Roeck <linux@roeck-us.net> |
335d7c58 GR |
3847 | L: linux-i2c@vger.kernel.org |
3848 | S: Maintained | |
3849 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
3850 | ||
d475c634 MW |
3851 | DIRECT ACCESS (DAX) |
3852 | M: Matthew Wilcox <willy@linux.intel.com> | |
3853 | L: linux-fsdevel@vger.kernel.org | |
3854 | S: Supported | |
3855 | F: fs/dax.c | |
3856 | ||
e7839f25 | 3857 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 3858 | M: Eric Paris <eparis@parisplace.org> |
3c5119c0 | 3859 | S: Maintained |
679655da JP |
3860 | F: Documentation/filesystems/dnotify.txt |
3861 | F: fs/notify/dnotify/ | |
3862 | F: include/linux/dnotify.h | |
1da177e4 LT |
3863 | |
3864 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 3865 | M: Andries Brouwer <aeb@cwi.nl> |
1da177e4 LT |
3866 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
3867 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
3868 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
3869 | S: Maintained | |
3870 | ||
4480f15b | 3871 | DISKQUOTA |
d8130624 | 3872 | M: Jan Kara <jack@suse.com> |
1da177e4 | 3873 | S: Maintained |
679655da JP |
3874 | F: Documentation/filesystems/quota.txt |
3875 | F: fs/quota/ | |
3876 | F: include/linux/quota*.h | |
c117ab84 | 3877 | F: include/uapi/linux/quota*.h |
1da177e4 | 3878 | |
702686ad BT |
3879 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
3880 | M: Bernie Thompson <bernie@plugable.com> | |
3881 | L: linux-fbdev@vger.kernel.org | |
3882 | S: Maintained | |
3883 | W: http://plugable.com/category/projects/udlfb/ | |
8a61f013 | 3884 | F: drivers/video/fbdev/udlfb.c |
702686ad BT |
3885 | F: include/video/udlfb.h |
3886 | F: Documentation/fb/udlfb.txt | |
3887 | ||
e7839f25 | 3888 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
3889 | M: Christine Caulfield <ccaulfie@redhat.com> |
3890 | M: David Teigland <teigland@redhat.com> | |
a4644184 | 3891 | L: cluster-devel@redhat.com |
5be7b50f | 3892 | W: http://sources.redhat.com/cluster/ |
9f273c24 | 3893 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git |
5be7b50f | 3894 | S: Supported |
679655da | 3895 | F: fs/dlm/ |
5be7b50f | 3896 | |
53b6b3e0 SS |
3897 | DMA BUFFER SHARING FRAMEWORK |
3898 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
3899 | S: Maintained | |
3900 | L: linux-media@vger.kernel.org | |
3901 | L: dri-devel@lists.freedesktop.org | |
8ada6d2d | 3902 | L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers) |
35fac7e3 | 3903 | F: drivers/dma-buf/ |
e46d12c6 JP |
3904 | F: include/linux/dma-buf* |
3905 | F: include/linux/reservation.h | |
3906 | F: include/linux/*fence.h | |
53b6b3e0 SS |
3907 | F: Documentation/dma-buf-sharing.txt |
3908 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
3909 | ||
c483e065 GP |
3910 | SYNC FILE FRAMEWORK |
3911 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
3912 | R: Gustavo Padovan <gustavo@padovan.org> | |
3913 | S: Maintained | |
3914 | L: linux-media@vger.kernel.org | |
3915 | L: dri-devel@lists.freedesktop.org | |
3916 | F: drivers/dma-buf/sync_file.c | |
3917 | F: include/linux/sync_file.h | |
3918 | F: Documentation/sync_file.txt | |
3919 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
3920 | ||
b3e5f263 | 3921 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 3922 | M: Vinod Koul <vinod.koul@intel.com> |
17b59560 VK |
3923 | L: dmaengine@vger.kernel.org |
3924 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
08223d80 | 3925 | S: Maintained |
679655da | 3926 | F: drivers/dma/ |
0ce3c066 | 3927 | F: include/linux/dmaengine.h |
c56d329e | 3928 | F: Documentation/devicetree/bindings/dma/ |
979a281e VK |
3929 | F: Documentation/dmaengine/ |
3930 | T: git git://git.infradead.org/users/vkoul/slave-dma.git | |
248a9dc3 | 3931 | |
b825037d | 3932 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 3933 | M: Juerg Haefliger <juergh@gmail.com> |
968ce1b1 | 3934 | L: linux-hwmon@vger.kernel.org |
b825037d | 3935 | S: Maintained |
679655da JP |
3936 | F: Documentation/hwmon/dme1737 |
3937 | F: drivers/hwmon/dme1737.c | |
b825037d | 3938 | |
1f31e1b1 | 3939 | DMI/SMBIOS SUPPORT |
d8130624 | 3940 | M: Jean Delvare <jdelvare@suse.com> |
1f31e1b1 | 3941 | S: Maintained |
d4aeef93 | 3942 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/ |
d7f96f97 | 3943 | F: Documentation/ABI/testing/sysfs-firmware-dmi-tables |
1f31e1b1 JD |
3944 | F: drivers/firmware/dmi-id.c |
3945 | F: drivers/firmware/dmi_scan.c | |
3946 | F: include/linux/dmi.h | |
3947 | ||
7d2c86b5 | 3948 | DOCUMENTATION |
ad3118b9 | 3949 | M: Jonathan Corbet <corbet@lwn.net> |
795fb7e7 JD |
3950 | L: linux-doc@vger.kernel.org |
3951 | S: Maintained | |
679655da | 3952 | F: Documentation/ |
42f41ecf JC |
3953 | F: scripts/docproc.c |
3954 | F: scripts/kernel-doc* | |
97be078b RD |
3955 | X: Documentation/ABI/ |
3956 | X: Documentation/devicetree/ | |
933a46b8 JC |
3957 | X: Documentation/acpi |
3958 | X: Documentation/power | |
3959 | X: Documentation/spi | |
618cd932 | 3960 | X: Documentation/media |
c51edfb1 | 3961 | T: git git://git.lwn.net/linux.git docs-next |
abbaeff3 | 3962 | |
1da177e4 | 3963 | DOUBLETALK DRIVER |
8b58be88 | 3964 | M: "James R. Van Zandt" <jrv@vanzandt.mv.com> |
1da177e4 LT |
3965 | L: blinux-list@redhat.com |
3966 | S: Maintained | |
679655da JP |
3967 | F: drivers/char/dtlk.c |
3968 | F: include/linux/dtlk.h | |
1da177e4 | 3969 | |
e2d1d6c0 | 3970 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 3971 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
3972 | L: linux-scsi@vger.kernel.org |
3973 | W: http://www.adaptec.com/ | |
3974 | S: Maintained | |
679655da JP |
3975 | F: drivers/scsi/dpt* |
3976 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 3977 | |
b411b363 | 3978 | DRBD DRIVER |
bc2c049d RK |
3979 | M: Philipp Reisner <philipp.reisner@linbit.com> |
3980 | M: Lars Ellenberg <lars.ellenberg@linbit.com> | |
3981 | L: drbd-dev@lists.linbit.com | |
28b8e8d4 | 3982 | W: http://www.drbd.org |
bc2c049d RK |
3983 | T: git git://git.linbit.com/linux-drbd.git |
3984 | T: git git://git.linbit.com/drbd-8.4.git | |
28b8e8d4 JP |
3985 | S: Supported |
3986 | F: drivers/block/drbd/ | |
3987 | F: lib/lru_cache.c | |
3988 | F: Documentation/blockdev/drbd/ | |
b411b363 | 3989 | |
dc7dfcd8 | 3990 | DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS |
879a5a00 | 3991 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
08deed1e | 3992 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 3993 | S: Supported |
679655da | 3994 | F: Documentation/kobject.txt |
7cfc51b9 | 3995 | F: drivers/base/ |
87544653 | 3996 | F: fs/debugfs/ |
dc7dfcd8 WS |
3997 | F: fs/kernfs/ |
3998 | F: fs/sysfs/ | |
87544653 | 3999 | F: include/linux/debugfs.h |
dc7dfcd8 | 4000 | F: include/linux/kobj* |
679655da | 4001 | F: lib/kobj* |
1da177e4 LT |
4002 | |
4003 | DRM DRIVERS | |
8b58be88 | 4004 | M: David Airlie <airlied@linux.ie> |
4c6a3999 | 4005 | L: dri-devel@lists.freedesktop.org |
b0447888 | 4006 | T: git git://people.freedesktop.org/~airlied/linux |
1da177e4 | 4007 | S: Maintained |
679655da | 4008 | F: drivers/gpu/drm/ |
433e3b34 | 4009 | F: drivers/gpu/vga/ |
d28ab95b GU |
4010 | F: Documentation/devicetree/bindings/display/ |
4011 | F: Documentation/devicetree/bindings/gpu/ | |
4012 | F: Documentation/devicetree/bindings/video/ | |
621c5474 | 4013 | F: Documentation/gpu/ |
850e9411 | 4014 | F: include/drm/ |
c117ab84 | 4015 | F: include/uapi/drm/ |
1da177e4 | 4016 | |
c842b693 EV |
4017 | DRM DRIVER FOR AST SERVER GRAPHICS CHIPS |
4018 | M: Dave Airlie <airlied@redhat.com> | |
4019 | S: Odd Fixes | |
4020 | F: drivers/gpu/drm/ast/ | |
4021 | ||
4022 | DRM DRIVER FOR BOCHS VIRTUAL GPU | |
4023 | M: Gerd Hoffmann <kraxel@redhat.com> | |
4024 | S: Odd Fixes | |
4025 | F: drivers/gpu/drm/bochs/ | |
4026 | ||
4027 | DRM DRIVER FOR QEMU'S CIRRUS DEVICE | |
4028 | M: Dave Airlie <airlied@redhat.com> | |
4029 | S: Odd Fixes | |
4030 | F: drivers/gpu/drm/cirrus/ | |
4031 | ||
c26a4017 | 4032 | RADEON and AMDGPU DRM DRIVERS |
566f5939 AD |
4033 | M: Alex Deucher <alexander.deucher@amd.com> |
4034 | M: Christian König <christian.koenig@amd.com> | |
4035 | L: dri-devel@lists.freedesktop.org | |
4036 | T: git git://people.freedesktop.org/~agd5f/linux | |
4037 | S: Supported | |
4038 | F: drivers/gpu/drm/radeon/ | |
74c97375 | 4039 | F: include/uapi/drm/radeon_drm.h |
c26a4017 | 4040 | F: drivers/gpu/drm/amd/ |
74c97375 | 4041 | F: include/uapi/drm/amdgpu_drm.h |
566f5939 | 4042 | |
03e255b9 TR |
4043 | DRM PANEL DRIVERS |
4044 | M: Thierry Reding <thierry.reding@gmail.com> | |
4045 | L: dri-devel@lists.freedesktop.org | |
4046 | T: git git://anongit.freedesktop.org/tegra/linux.git | |
4047 | S: Maintained | |
4048 | F: drivers/gpu/drm/drm_panel.c | |
4049 | F: drivers/gpu/drm/panel/ | |
4050 | F: include/drm/drm_panel.h | |
2d799dde | 4051 | F: Documentation/devicetree/bindings/display/panel/ |
03e255b9 | 4052 | |
8daf7473 | 4053 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
cbce7107 | 4054 | M: Daniel Vetter <daniel.vetter@intel.com> |
47f95647 | 4055 | M: Jani Nikula <jani.nikula@linux.intel.com> |
362132d2 | 4056 | L: intel-gfx@lists.freedesktop.org |
8daf7473 | 4057 | L: dri-devel@lists.freedesktop.org |
7564fde3 | 4058 | W: https://01.org/linuxgraphics/ |
47f95647 | 4059 | Q: http://patchwork.freedesktop.org/project/intel-gfx/ |
89258a97 | 4060 | T: git git://anongit.freedesktop.org/drm-intel |
8daf7473 | 4061 | S: Supported |
14430813 | 4062 | F: drivers/gpu/drm/i915/ |
8daf7473 | 4063 | F: include/drm/i915* |
baceac3a | 4064 | F: include/uapi/drm/i915_drm.h |
621c5474 | 4065 | F: Documentation/gpu/i915.rst |
8daf7473 | 4066 | |
99763bb8 BB |
4067 | DRM DRIVERS FOR ATMEL HLCDC |
4068 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
4069 | L: dri-devel@lists.freedesktop.org | |
4070 | S: Supported | |
4071 | F: drivers/gpu/drm/atmel-hlcdc/ | |
4072 | F: Documentation/devicetree/bindings/drm/atmel/ | |
4073 | ||
bf1139df MR |
4074 | DRM DRIVERS FOR ALLWINNER A10 |
4075 | M: Maxime Ripard <maxime.ripard@free-electrons.com> | |
4076 | L: dri-devel@lists.freedesktop.org | |
4077 | S: Supported | |
4078 | F: drivers/gpu/drm/sun4i/ | |
4079 | F: Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt | |
4080 | ||
398a6d4a KP |
4081 | DRM DRIVERS FOR EXYNOS |
4082 | M: Inki Dae <inki.dae@samsung.com> | |
f1501303 ID |
4083 | M: Joonyoung Shim <jy0922.shim@samsung.com> |
4084 | M: Seung-Woo Kim <sw0312.kim@samsung.com> | |
4085 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
398a6d4a | 4086 | L: dri-devel@lists.freedesktop.org |
25a58030 | 4087 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a | 4088 | S: Supported |
14430813 | 4089 | F: drivers/gpu/drm/exynos/ |
8fb9b15b EV |
4090 | F: include/uapi/drm/exynos_drm.h |
4091 | F: Documentation/devicetree/bindings/display/exynos/ | |
398a6d4a | 4092 | |
b55a1b9c | 4093 | DRM DRIVERS FOR FREESCALE DCU |
bc66757a | 4094 | M: Stefan Agner <stefan@agner.ch> |
b55a1b9c JW |
4095 | M: Alison Wang <alison.wang@freescale.com> |
4096 | L: dri-devel@lists.freedesktop.org | |
4097 | S: Supported | |
4098 | F: drivers/gpu/drm/fsl-dcu/ | |
2d799dde | 4099 | F: Documentation/devicetree/bindings/display/fsl,dcu.txt |
fb127b79 | 4100 | F: Documentation/devicetree/bindings/display/fsl,tcon.txt |
2d799dde | 4101 | F: Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt |
b55a1b9c | 4102 | |
0a3d775f PZ |
4103 | DRM DRIVERS FOR FREESCALE IMX |
4104 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
4105 | L: dri-devel@lists.freedesktop.org | |
4106 | S: Maintained | |
4107 | F: drivers/gpu/drm/imx/ | |
ef739aa4 | 4108 | F: drivers/gpu/ipu-v3/ |
2d799dde | 4109 | F: Documentation/devicetree/bindings/display/imx/ |
0a3d775f | 4110 | |
ba2199a6 PJ |
4111 | DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets) |
4112 | M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com> | |
4113 | L: dri-devel@lists.freedesktop.org | |
4114 | T: git git://github.com/patjak/drm-gma500 | |
4115 | S: Maintained | |
5ff18e42 | 4116 | F: drivers/gpu/drm/gma500/ |
ba2199a6 | 4117 | |
c84ffde9 XL |
4118 | DRM DRIVERS FOR HISILICON |
4119 | M: Xinliang Liu <z.liuxinliang@hisilicon.com> | |
4120 | R: Xinwei Kong <kong.kongxinwei@hisilicon.com> | |
4121 | R: Chen Feng <puck.chen@hisilicon.com> | |
4122 | L: dri-devel@lists.freedesktop.org | |
4123 | T: git git://github.com/xin3liang/linux.git | |
4124 | S: Maintained | |
4125 | F: drivers/gpu/drm/hisilicon/ | |
4126 | F: Documentation/devicetree/bindings/display/hisilicon/ | |
4127 | ||
399516ab EV |
4128 | DRM DRIVER FOR INTEL I810 VIDEO CARDS |
4129 | S: Orphan / Obsolete | |
4130 | F: drivers/gpu/drm/i810/ | |
4131 | F: include/uapi/drm/i810_drm.h | |
4132 | ||
37b2a214 CH |
4133 | DRM DRIVERS FOR MEDIATEK |
4134 | M: CK Hu <ck.hu@mediatek.com> | |
4135 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
4136 | L: dri-devel@lists.freedesktop.org | |
4137 | S: Supported | |
4138 | F: drivers/gpu/drm/mediatek/ | |
4139 | F: Documentation/devicetree/bindings/display/mediatek/ | |
4140 | ||
06346451 EV |
4141 | DRM DRIVER FOR MSM ADRENO GPU |
4142 | M: Rob Clark <robdclark@gmail.com> | |
4143 | L: linux-arm-msm@vger.kernel.org | |
4144 | L: dri-devel@lists.freedesktop.org | |
4145 | L: freedreno@lists.freedesktop.org | |
4146 | T: git git://people.freedesktop.org/~robclark/linux | |
4147 | S: Maintained | |
4148 | F: drivers/gpu/drm/msm/ | |
4149 | F: include/uapi/drm/msm_drm.h | |
4150 | F: Documentation/devicetree/bindings/display/msm/ | |
4151 | ||
fad89bb3 EV |
4152 | DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS |
4153 | M: Ben Skeggs <bskeggs@redhat.com> | |
4154 | L: dri-devel@lists.freedesktop.org | |
4155 | L: nouveau@lists.freedesktop.org | |
4156 | T: git git://github.com/skeggsb/linux | |
4157 | S: Supported | |
4158 | F: drivers/gpu/drm/nouveau/ | |
4159 | F: include/uapi/drm/nouveau_drm.h | |
ba2199a6 | 4160 | |
bd3b49f2 | 4161 | DRM DRIVERS FOR NVIDIA TEGRA |
a5ad7a63 | 4162 | M: Thierry Reding <thierry.reding@gmail.com> |
bd3b49f2 TR |
4163 | L: dri-devel@lists.freedesktop.org |
4164 | L: linux-tegra@vger.kernel.org | |
a5ad7a63 | 4165 | T: git git://anongit.freedesktop.org/tegra/linux.git |
adabdb0c | 4166 | S: Supported |
dee8268f | 4167 | F: drivers/gpu/drm/tegra/ |
a5ad7a63 | 4168 | F: drivers/gpu/host1x/ |
e1e90644 | 4169 | F: include/linux/host1x.h |
a5ad7a63 | 4170 | F: include/uapi/drm/tegra_drm.h |
2d799dde | 4171 | F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt |
bd3b49f2 | 4172 | |
399516ab EV |
4173 | DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS |
4174 | S: Orphan / Obsolete | |
4175 | F: drivers/gpu/drm/mga/ | |
4176 | F: include/uapi/drm/mga_drm.h | |
4177 | ||
c842b693 EV |
4178 | DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS |
4179 | M: Dave Airlie <airlied@redhat.com> | |
4180 | S: Odd Fixes | |
4181 | F: drivers/gpu/drm/mgag200/ | |
4182 | ||
399516ab EV |
4183 | DRM DRIVER FOR RAGE 128 VIDEO CARDS |
4184 | S: Orphan / Obsolete | |
4185 | F: drivers/gpu/drm/r128/ | |
4186 | F: include/uapi/drm/r128_drm.h | |
4187 | ||
a284e9d1 LP |
4188 | DRM DRIVERS FOR RENESAS |
4189 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
4190 | L: dri-devel@lists.freedesktop.org | |
4a121096 | 4191 | L: linux-renesas-soc@vger.kernel.org |
2392ccd4 | 4192 | T: git git://linuxtv.org/pinchartl/fbdev |
a284e9d1 LP |
4193 | S: Supported |
4194 | F: drivers/gpu/drm/rcar-du/ | |
4195 | F: drivers/gpu/drm/shmobile/ | |
a284e9d1 | 4196 | F: include/linux/platform_data/shmob_drm.h |
33be436d | 4197 | F: Documentation/devicetree/bindings/display/renesas,du.txt |
a284e9d1 | 4198 | |
c842b693 EV |
4199 | DRM DRIVER FOR QXL VIRTUAL GPU |
4200 | M: Dave Airlie <airlied@redhat.com> | |
4201 | S: Odd Fixes | |
4202 | F: drivers/gpu/drm/qxl/ | |
4203 | F: include/uapi/drm/qxl_drm.h | |
a284e9d1 | 4204 | |
625e0346 HS |
4205 | DRM DRIVERS FOR ROCKCHIP |
4206 | M: Mark Yao <mark.yao@rock-chips.com> | |
4207 | L: dri-devel@lists.freedesktop.org | |
4208 | S: Maintained | |
4209 | F: drivers/gpu/drm/rockchip/ | |
f253f7eb | 4210 | F: Documentation/devicetree/bindings/display/rockchip/ |
625e0346 | 4211 | |
399516ab EV |
4212 | DRM DRIVER FOR SAVAGE VIDEO CARDS |
4213 | S: Orphan / Obsolete | |
4214 | F: drivers/gpu/drm/savage/ | |
4215 | F: include/uapi/drm/savage_drm.h | |
4216 | ||
4217 | DRM DRIVER FOR SIS VIDEO CARDS | |
4218 | S: Orphan / Obsolete | |
4219 | F: drivers/gpu/drm/sis/ | |
4220 | F: include/uapi/drm/sis_drm.h | |
625e0346 | 4221 | |
7f11c476 BG |
4222 | DRM DRIVERS FOR STI |
4223 | M: Benjamin Gaignard <benjamin.gaignard@linaro.org> | |
4224 | M: Vincent Abriou <vincent.abriou@st.com> | |
4225 | L: dri-devel@lists.freedesktop.org | |
4226 | T: git http://git.linaro.org/people/benjamin.gaignard/kernel.git | |
4227 | S: Maintained | |
4228 | F: drivers/gpu/drm/sti | |
2d799dde | 4229 | F: Documentation/devicetree/bindings/display/st,stih4xx.txt |
7f11c476 | 4230 | |
399516ab EV |
4231 | DRM DRIVER FOR TDFX VIDEO CARDS |
4232 | S: Orphan / Obsolete | |
4233 | F: drivers/gpu/drm/tdfx/ | |
4234 | ||
c842b693 EV |
4235 | DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS |
4236 | M: Dave Airlie <airlied@redhat.com> | |
4237 | S: Odd Fixes | |
4238 | F: drivers/gpu/drm/udl/ | |
4239 | ||
8bb0bce9 LS |
4240 | DRM DRIVERS FOR VIVANTE GPU IP |
4241 | M: Lucas Stach <l.stach@pengutronix.de> | |
54176cc6 | 4242 | R: Russell King <linux+etnaviv@armlinux.org.uk> |
8bb0bce9 LS |
4243 | R: Christian Gmeiner <christian.gmeiner@gmail.com> |
4244 | L: dri-devel@lists.freedesktop.org | |
4245 | S: Maintained | |
8a9257a0 EV |
4246 | F: drivers/gpu/drm/etnaviv/ |
4247 | F: include/uapi/drm/etnaviv_drm.h | |
4248 | F: Documentation/devicetree/bindings/display/etnaviv/ | |
8bb0bce9 | 4249 | |
c4291702 EV |
4250 | DRM DRIVER FOR VMWARE VIRTUAL GPU |
4251 | M: "VMware Graphics" <linux-graphics-maintainer@vmware.com> | |
4252 | M: Sinclair Yeh <syeh@vmware.com> | |
4253 | M: Thomas Hellstrom <thellstrom@vmware.com> | |
4254 | L: dri-devel@lists.freedesktop.org | |
4255 | T: git git://people.freedesktop.org/~syeh/repos_linux | |
4256 | T: git git://people.freedesktop.org/~thomash/linux | |
4257 | S: Supported | |
4258 | F: drivers/gpu/drm/vmwgfx/ | |
4259 | F: include/uapi/drm/vmwgfx_drm.h | |
4260 | ||
8636d452 EA |
4261 | DRM DRIVERS FOR VC4 |
4262 | M: Eric Anholt <eric@anholt.net> | |
4263 | T: git git://github.com/anholt/linux | |
4264 | S: Supported | |
4265 | F: drivers/gpu/drm/vc4/ | |
4266 | F: include/uapi/drm/vc4_drm.h | |
4267 | F: Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt | |
8bb0bce9 | 4268 | |
5ef330a7 TV |
4269 | DRM DRIVERS FOR TI OMAP |
4270 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
4271 | L: dri-devel@lists.freedesktop.org | |
4272 | S: Maintained | |
4273 | F: drivers/gpu/drm/omapdrm/ | |
4274 | F: Documentation/devicetree/bindings/display/ti/ | |
4275 | ||
adb314ed TV |
4276 | DRM DRIVERS FOR TI LCDC |
4277 | M: Jyri Sarha <jsarha@ti.com> | |
4278 | R: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
4279 | L: dri-devel@lists.freedesktop.org | |
4280 | S: Maintained | |
4281 | F: drivers/gpu/drm/tilcdc/ | |
4282 | F: Documentation/devicetree/bindings/display/tilcdc/ | |
4283 | ||
598df1ac AK |
4284 | DSBR100 USB FM RADIO DRIVER |
4285 | M: Alexey Klimov <klimov.linux@gmail.com> | |
4286 | L: linux-media@vger.kernel.org | |
4287 | T: git git://linuxtv.org/media_tree.git | |
4288 | S: Maintained | |
4289 | F: drivers/media/radio/dsbr100.c | |
4290 | ||
1da177e4 | 4291 | DSCC4 DRIVER |
8b58be88 | 4292 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 | 4293 | L: netdev@vger.kernel.org |
1da177e4 | 4294 | S: Maintained |
679655da | 4295 | F: drivers/net/wan/dscc4.c |
1da177e4 | 4296 | |
cc11b140 HV |
4297 | DT3155 MEDIA DRIVER |
4298 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
4299 | L: linux-media@vger.kernel.org | |
4300 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 4301 | W: https://linuxtv.org |
cc11b140 HV |
4302 | S: Odd Fixes |
4303 | F: drivers/media/pci/dt3155/ | |
4304 | ||
91952bc0 AP |
4305 | DVB_USB_AF9015 MEDIA DRIVER |
4306 | M: Antti Palosaari <crope@iki.fi> | |
4307 | L: linux-media@vger.kernel.org | |
a825eaec | 4308 | W: https://linuxtv.org |
91952bc0 AP |
4309 | W: http://palosaari.fi/linux/ |
4310 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4311 | T: git git://linuxtv.org/anttip/media_tree.git | |
4312 | S: Maintained | |
4313 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
4314 | ||
4315 | DVB_USB_AF9035 MEDIA DRIVER | |
4316 | M: Antti Palosaari <crope@iki.fi> | |
4317 | L: linux-media@vger.kernel.org | |
a825eaec | 4318 | W: https://linuxtv.org |
91952bc0 AP |
4319 | W: http://palosaari.fi/linux/ |
4320 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4321 | T: git git://linuxtv.org/anttip/media_tree.git | |
4322 | S: Maintained | |
4323 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
4324 | ||
4325 | DVB_USB_ANYSEE MEDIA DRIVER | |
4326 | M: Antti Palosaari <crope@iki.fi> | |
4327 | L: linux-media@vger.kernel.org | |
a825eaec | 4328 | W: https://linuxtv.org |
91952bc0 AP |
4329 | W: http://palosaari.fi/linux/ |
4330 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4331 | T: git git://linuxtv.org/anttip/media_tree.git | |
4332 | S: Maintained | |
4333 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
4334 | ||
4335 | DVB_USB_AU6610 MEDIA DRIVER | |
4336 | M: Antti Palosaari <crope@iki.fi> | |
4337 | L: linux-media@vger.kernel.org | |
a825eaec | 4338 | W: https://linuxtv.org |
91952bc0 AP |
4339 | W: http://palosaari.fi/linux/ |
4340 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4341 | T: git git://linuxtv.org/anttip/media_tree.git | |
4342 | S: Maintained | |
4343 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
4344 | ||
4345 | DVB_USB_CE6230 MEDIA DRIVER | |
4346 | M: Antti Palosaari <crope@iki.fi> | |
4347 | L: linux-media@vger.kernel.org | |
a825eaec | 4348 | W: https://linuxtv.org |
91952bc0 AP |
4349 | W: http://palosaari.fi/linux/ |
4350 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4351 | T: git git://linuxtv.org/anttip/media_tree.git | |
4352 | S: Maintained | |
4353 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
4354 | ||
d099dea2 MK |
4355 | DVB_USB_CXUSB MEDIA DRIVER |
4356 | M: Michael Krufky <mkrufky@linuxtv.org> | |
4357 | L: linux-media@vger.kernel.org | |
a825eaec | 4358 | W: https://linuxtv.org |
d099dea2 MK |
4359 | W: http://github.com/mkrufky |
4360 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4361 | T: git git://linuxtv.org/media_tree.git | |
4362 | S: Maintained | |
9819da66 | 4363 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 4364 | |
91952bc0 | 4365 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
4366 | M: Antti Palosaari <crope@iki.fi> |
4367 | L: linux-media@vger.kernel.org | |
a825eaec | 4368 | W: https://linuxtv.org |
91952bc0 AP |
4369 | W: http://palosaari.fi/linux/ |
4370 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4371 | T: git git://linuxtv.org/anttip/media_tree.git | |
4372 | S: Maintained | |
91952bc0 | 4373 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 4374 | |
5560983b | 4375 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
4376 | M: Antti Palosaari <crope@iki.fi> |
4377 | L: linux-media@vger.kernel.org | |
a825eaec | 4378 | W: https://linuxtv.org |
91952bc0 AP |
4379 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
4380 | T: git git://linuxtv.org/anttip/media_tree.git | |
4381 | S: Maintained | |
5560983b | 4382 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 4383 | |
8856f5f2 MK |
4384 | DVB_USB_MXL111SF MEDIA DRIVER |
4385 | M: Michael Krufky <mkrufky@linuxtv.org> | |
4386 | L: linux-media@vger.kernel.org | |
a825eaec | 4387 | W: https://linuxtv.org |
8856f5f2 MK |
4388 | W: http://github.com/mkrufky |
4389 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4390 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
4391 | S: Maintained | |
4392 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
4393 | ||
91952bc0 AP |
4394 | DVB_USB_RTL28XXU MEDIA DRIVER |
4395 | M: Antti Palosaari <crope@iki.fi> | |
4396 | L: linux-media@vger.kernel.org | |
a825eaec | 4397 | W: https://linuxtv.org |
91952bc0 AP |
4398 | W: http://palosaari.fi/linux/ |
4399 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4400 | T: git git://linuxtv.org/anttip/media_tree.git | |
4401 | S: Maintained | |
4402 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
4403 | ||
4404 | DVB_USB_V2 MEDIA DRIVER | |
4405 | M: Antti Palosaari <crope@iki.fi> | |
4406 | L: linux-media@vger.kernel.org | |
a825eaec | 4407 | W: https://linuxtv.org |
91952bc0 AP |
4408 | W: http://palosaari.fi/linux/ |
4409 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4410 | T: git git://linuxtv.org/anttip/media_tree.git | |
4411 | S: Maintained | |
4412 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
4413 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
4414 | ||
ac0ac38f | 4415 | DYNAMIC DEBUG |
5c4a97d1 | 4416 | M: Jason Baron <jbaron@akamai.com> |
ac0ac38f JB |
4417 | S: Maintained |
4418 | F: lib/dynamic_debug.c | |
4419 | F: include/linux/dynamic_debug.h | |
4420 | ||
789c7048 | 4421 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 4422 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
789c7048 | 4423 | S: Maintained |
df621252 | 4424 | F: drivers/tty/serial/dz.* |
789c7048 | 4425 | |
f17effbe MF |
4426 | E3X0 POWER BUTTON DRIVER |
4427 | M: Moritz Fischer <moritz.fischer@ettus.com> | |
4428 | L: usrp-users@lists.ettus.com | |
4429 | W: http://www.ettus.com | |
4430 | S: Supported | |
4431 | F: drivers/input/misc/e3x0-button.c | |
4432 | F: Documentation/devicetree/bindings/input/e3x0-button.txt | |
4433 | ||
91952bc0 AP |
4434 | E4000 MEDIA DRIVER |
4435 | M: Antti Palosaari <crope@iki.fi> | |
4436 | L: linux-media@vger.kernel.org | |
a825eaec | 4437 | W: https://linuxtv.org |
91952bc0 AP |
4438 | W: http://palosaari.fi/linux/ |
4439 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4440 | T: git git://linuxtv.org/anttip/media_tree.git | |
4441 | S: Maintained | |
4442 | F: drivers/media/tuners/e4000* | |
4443 | ||
1da177e4 | 4444 | EATA ISA/EISA/PCI SCSI DRIVER |
8b58be88 | 4445 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
4446 | L: linux-scsi@vger.kernel.org |
4447 | S: Maintained | |
679655da | 4448 | F: drivers/scsi/eata.c |
1da177e4 | 4449 | |
91952bc0 AP |
4450 | EC100 MEDIA DRIVER |
4451 | M: Antti Palosaari <crope@iki.fi> | |
4452 | L: linux-media@vger.kernel.org | |
a825eaec | 4453 | W: https://linuxtv.org |
91952bc0 AP |
4454 | W: http://palosaari.fi/linux/ |
4455 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4456 | T: git git://linuxtv.org/anttip/media_tree.git | |
4457 | S: Maintained | |
4458 | F: drivers/media/dvb-frontends/ec100* | |
4459 | ||
237fead6 | 4460 | ECRYPT FILE SYSTEM |
0de9adf2 | 4461 | M: Tyler Hicks <tyhicks@canonical.com> |
a058bfbb | 4462 | L: ecryptfs@vger.kernel.org |
24a923e4 | 4463 | W: http://ecryptfs.org |
6dc7516e | 4464 | W: https://launchpad.net/ecryptfs |
9f273c24 | 4465 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git |
237fead6 | 4466 | S: Supported |
679655da JP |
4467 | F: Documentation/filesystems/ecryptfs.txt |
4468 | F: fs/ecryptfs/ | |
237fead6 | 4469 | |
da9bb1d2 | 4470 | EDAC-CORE |
aa15aa0e | 4471 | M: Borislav Petkov <bp@alien8.de> |
5dc8a864 MCC |
4472 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4473 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
91445c72 | 4474 | L: linux-edac@vger.kernel.org |
07cd6bf5 FW |
4475 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next |
4476 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next | |
8c2a6a40 | 4477 | S: Supported |
679655da | 4478 | F: Documentation/edac.txt |
91445c72 | 4479 | F: drivers/edac/ |
679655da | 4480 | F: include/linux/edac.h |
0e438e3f | 4481 | |
c476c23b | 4482 | EDAC-AMD64 |
487ba8e8 | 4483 | M: Borislav Petkov <bp@alien8.de> |
91445c72 | 4484 | L: linux-edac@vger.kernel.org |
487ba8e8 | 4485 | S: Maintained |
c476c23b BP |
4486 | F: drivers/edac/amd64_edac* |
4487 | ||
836dae5d | 4488 | EDAC-CALXEDA |
836dae5d RR |
4489 | M: Robert Richter <rric@kernel.org> |
4490 | L: linux-edac@vger.kernel.org | |
836dae5d RR |
4491 | S: Maintained |
4492 | F: drivers/edac/highbank* | |
4493 | ||
f65aad41 RB |
4494 | EDAC-CAVIUM |
4495 | M: Ralf Baechle <ralf@linux-mips.org> | |
4496 | M: David Daney <david.daney@cavium.com> | |
4497 | L: linux-edac@vger.kernel.org | |
4498 | L: linux-mips@linux-mips.org | |
f65aad41 RB |
4499 | S: Supported |
4500 | F: drivers/edac/octeon_edac* | |
4501 | ||
0e438e3f | 4502 | EDAC-E752X |
8b58be88 | 4503 | M: Mark Gross <mark.gross@intel.com> |
91445c72 | 4504 | L: linux-edac@vger.kernel.org |
0e438e3f | 4505 | S: Maintained |
679655da | 4506 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
4507 | |
4508 | EDAC-E7XXX | |
91445c72 | 4509 | L: linux-edac@vger.kernel.org |
0e438e3f | 4510 | S: Maintained |
679655da | 4511 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 4512 | |
7d136731 BP |
4513 | EDAC-FSL_DDR |
4514 | M: York Sun <york.sun@nxp.com> | |
4515 | L: linux-edac@vger.kernel.org | |
4516 | S: Maintained | |
4517 | F: drivers/edac/fsl_ddr_edac.* | |
4518 | ||
77c5f5d2 | 4519 | EDAC-GHES |
5dc8a864 MCC |
4520 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4521 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
77c5f5d2 | 4522 | L: linux-edac@vger.kernel.org |
77c5f5d2 | 4523 | S: Maintained |
2caa67a6 | 4524 | F: drivers/edac/ghes_edac.c |
77c5f5d2 | 4525 | |
6bc78404 | 4526 | EDAC-I82443BXGX |
8b58be88 | 4527 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 4528 | L: linux-edac@vger.kernel.org |
6bc78404 | 4529 | S: Maintained |
679655da | 4530 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
4531 | |
4532 | EDAC-I3000 | |
91445c72 | 4533 | L: linux-edac@vger.kernel.org |
c91d9075 | 4534 | S: Orphan |
679655da | 4535 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
4536 | |
4537 | EDAC-I5000 | |
91445c72 | 4538 | L: linux-edac@vger.kernel.org |
ba9a5918 | 4539 | S: Maintained |
679655da | 4540 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 4541 | |
44c12cb2 | 4542 | EDAC-I5400 |
5dc8a864 MCC |
4543 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4544 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
67c89316 | 4545 | L: linux-edac@vger.kernel.org |
44c12cb2 | 4546 | S: Maintained |
679655da | 4547 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 4548 | |
3c9c92b6 | 4549 | EDAC-I7300 |
5dc8a864 MCC |
4550 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4551 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
3c9c92b6 | 4552 | L: linux-edac@vger.kernel.org |
3c9c92b6 MCC |
4553 | S: Maintained |
4554 | F: drivers/edac/i7300_edac.c | |
4555 | ||
67c89316 | 4556 | EDAC-I7CORE |
5dc8a864 MCC |
4557 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4558 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
67c89316 | 4559 | L: linux-edac@vger.kernel.org |
67c89316 | 4560 | S: Maintained |
70aff0ce | 4561 | F: drivers/edac/i7core_edac.c |
67c89316 | 4562 | |
ba9a5918 | 4563 | EDAC-I82975X |
8b58be88 | 4564 | M: Ranganathan Desikan <ravi@jetztechnologies.com> |
25527885 | 4565 | M: "Arvind R." <arvino55@gmail.com> |
91445c72 | 4566 | L: linux-edac@vger.kernel.org |
ba9a5918 | 4567 | S: Maintained |
679655da | 4568 | F: drivers/edac/i82975x_edac.c |
ba9a5918 | 4569 | |
791b4706 JB |
4570 | EDAC-IE31200 |
4571 | M: Jason Baron <jbaron@akamai.com> | |
4572 | L: linux-edac@vger.kernel.org | |
791b4706 JB |
4573 | S: Maintained |
4574 | F: drivers/edac/ie31200_edac.c | |
4575 | ||
ccdfb979 | 4576 | EDAC-MPC85XX |
30c7469b | 4577 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
ccdfb979 | 4578 | L: linux-edac@vger.kernel.org |
ccdfb979 JT |
4579 | S: Maintained |
4580 | F: drivers/edac/mpc85xx_edac.[ch] | |
4581 | ||
ba9a5918 | 4582 | EDAC-PASEMI |
8b58be88 | 4583 | M: Egor Martovetsky <egor@pasemi.com> |
91445c72 | 4584 | L: linux-edac@vger.kernel.org |
6bc78404 | 4585 | S: Maintained |
679655da | 4586 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 4587 | |
0e438e3f | 4588 | EDAC-R82600 |
8b58be88 | 4589 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 4590 | L: linux-edac@vger.kernel.org |
0e438e3f | 4591 | S: Maintained |
679655da | 4592 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 4593 | |
4d096ca7 | 4594 | EDAC-SBRIDGE |
5dc8a864 MCC |
4595 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4596 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
4d096ca7 | 4597 | L: linux-edac@vger.kernel.org |
4d096ca7 MCC |
4598 | S: Maintained |
4599 | F: drivers/edac/sb_edac.c | |
4600 | ||
4ec656bd TL |
4601 | EDAC-SKYLAKE |
4602 | M: Tony Luck <tony.luck@intel.com> | |
4603 | L: linux-edac@vger.kernel.org | |
4604 | S: Maintained | |
4605 | F: drivers/edac/skx_edac.c | |
4606 | ||
995e1de4 LH |
4607 | EDAC-XGENE |
4608 | APPLIED MICRO (APM) X-GENE SOC EDAC | |
4609 | M: Loc Ho <lho@apm.com> | |
4610 | S: Supported | |
4611 | F: drivers/edac/xgene_edac.c | |
4612 | F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt | |
4613 | ||
af39917d CL |
4614 | EDIROL UA-101/UA-1000 DRIVER |
4615 | M: Clemens Ladisch <clemens@ladisch.de> | |
4616 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
4617 | T: git git://git.alsa-project.org/alsa-kernel.git | |
4618 | S: Maintained | |
4619 | F: sound/usb/misc/ua101.c | |
4620 | ||
1f7df953 | 4621 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
825fcfce | 4622 | M: Matt Fleming <matt@codeblueprint.co.uk> |
6026ed2f | 4623 | M: Ard Biesheuvel <ard.biesheuvel@linaro.org> |
1f7df953 | 4624 | L: linux-efi@vger.kernel.org |
6026ed2f | 4625 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git |
1f7df953 | 4626 | S: Maintained |
fb2efb5c | 4627 | F: Documentation/efi-stub.txt |
1f7df953 MF |
4628 | F: arch/ia64/kernel/efi.c |
4629 | F: arch/x86/boot/compressed/eboot.[ch] | |
4630 | F: arch/x86/include/asm/efi.h | |
e8dfe6d8 MF |
4631 | F: arch/x86/platform/efi/ |
4632 | F: drivers/firmware/efi/ | |
1f7df953 MF |
4633 | F: include/linux/efi*.h |
4634 | ||
d68772b7 MF |
4635 | EFI VARIABLE FILESYSTEM |
4636 | M: Matthew Garrett <matthew.garrett@nebula.com> | |
4637 | M: Jeremy Kerr <jk@ozlabs.org> | |
825fcfce | 4638 | M: Matt Fleming <matt@codeblueprint.co.uk> |
d68772b7 MF |
4639 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
4640 | L: linux-efi@vger.kernel.org | |
4641 | S: Maintained | |
4642 | F: fs/efivarfs/ | |
4643 | ||
85a00d9b PJ |
4644 | EFIFB FRAMEBUFFER DRIVER |
4645 | L: linux-fbdev@vger.kernel.org | |
4646 | M: Peter Jones <pjones@redhat.com> | |
4647 | S: Maintained | |
8a61f013 | 4648 | F: drivers/video/fbdev/efifb.c |
85a00d9b | 4649 | |
ff6301da IH |
4650 | EFI TEST DRIVER |
4651 | L: linux-efi@vger.kernel.org | |
4652 | M: Ivan Hu <ivan.hu@canonical.com> | |
4653 | M: Matt Fleming <matt@codeblueprint.co.uk> | |
4654 | S: Maintained | |
4655 | F: drivers/firmware/efi/test/ | |
4656 | ||
0bee8d28 JT |
4657 | EFS FILESYSTEM |
4658 | W: http://aeschi.ch.eu.org/efs/ | |
4659 | S: Orphan | |
679655da | 4660 | F: fs/efs/ |
0bee8d28 | 4661 | |
aa8a9e25 | 4662 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
97b04197 | 4663 | M: Douglas Miller <dougmill@linux.vnet.ibm.com> |
aa8a9e25 BL |
4664 | L: netdev@vger.kernel.org |
4665 | S: Maintained | |
9aa32835 | 4666 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 4667 | |
f0319efe | 4668 | EM28XX VIDEO4LINUX DRIVER |
5dc8a864 MCC |
4669 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4670 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
f0319efe | 4671 | L: linux-media@vger.kernel.org |
a825eaec | 4672 | W: https://linuxtv.org |
f0319efe MCC |
4673 | T: git git://linuxtv.org/media_tree.git |
4674 | S: Maintained | |
4675 | F: drivers/media/usb/em28xx/ | |
618cd932 | 4676 | F: Documentation/media/v4l-drivers/em28xx* |
f0319efe | 4677 | |
3e3a7d66 | 4678 | EMBEDDED LINUX |
8b58be88 JP |
4679 | M: Paul Gortmaker <paul.gortmaker@windriver.com> |
4680 | M: Matt Mackall <mpm@selenic.com> | |
4681 | M: David Woodhouse <dwmw2@infradead.org> | |
3e3a7d66 DW |
4682 | L: linux-embedded@vger.kernel.org |
4683 | S: Maintained | |
4684 | ||
32505876 JS |
4685 | EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER |
4686 | M: James Smart <james.smart@avagotech.com> | |
4687 | M: Dick Kennedy <dick.kennedy@avagotech.com> | |
ce00f85c | 4688 | L: linux-scsi@vger.kernel.org |
32505876 | 4689 | W: http://www.avagotech.com |
ce00f85c | 4690 | S: Supported |
679655da | 4691 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 4692 | |
5f5bac82 | 4693 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 4694 | M: Michał Mirosław <mirq-linux@rere.qmqm.pl> |
5f5bac82 MM |
4695 | S: Maintained |
4696 | F: drivers/misc/cb710/ | |
4697 | F: drivers/mmc/host/cb710-mmc.* | |
4698 | F: include/linux/cb710.h | |
4699 | ||
931e39a1 ML |
4700 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
4701 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
4702 | S: Maintained | |
2a837449 | 4703 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 4704 | |
d5ca9006 | 4705 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 4706 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
d5ca9006 | 4707 | S: Maintained |
084bad91 | 4708 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
8a61f013 | 4709 | F: drivers/video/fbdev/s1d13xxxfb.c |
679655da | 4710 | F: include/video/s1d13xxxfb.h |
d5ca9006 | 4711 | |
38df6492 ME |
4712 | ET131X NETWORK DRIVER |
4713 | M: Mark Einon <mark.einon@gmail.com> | |
4714 | S: Odd Fixes | |
4715 | F: drivers/net/ethernet/agere/ | |
4716 | ||
1da177e4 | 4717 | ETHERNET BRIDGE |
adbbf69d | 4718 | M: Stephen Hemminger <stephen@networkplumber.org> |
3430284f | 4719 | L: bridge@lists.linux-foundation.org (moderated for non-subscribers) |
4c325313 | 4720 | L: netdev@vger.kernel.org |
c996d8b9 | 4721 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 4722 | S: Maintained |
679655da JP |
4723 | F: include/linux/netfilter_bridge/ |
4724 | F: net/bridge/ | |
1da177e4 | 4725 | |
22f08ad9 FF |
4726 | ETHERNET PHY LIBRARY |
4727 | M: Florian Fainelli <f.fainelli@gmail.com> | |
4728 | L: netdev@vger.kernel.org | |
4729 | S: Maintained | |
4730 | F: include/linux/phy.h | |
4731 | F: include/linux/phy_fixed.h | |
4732 | F: drivers/net/phy/ | |
4733 | F: Documentation/networking/phy.txt | |
4734 | F: drivers/of/of_mdio.c | |
4735 | F: drivers/of/of_net.c | |
4736 | ||
1da177e4 | 4737 | EXT2 FILE SYSTEM |
d8130624 | 4738 | M: Jan Kara <jack@suse.com> |
72be2ccf | 4739 | L: linux-ext4@vger.kernel.org |
1da177e4 | 4740 | S: Maintained |
679655da JP |
4741 | F: Documentation/filesystems/ext2.txt |
4742 | F: fs/ext2/ | |
4743 | F: include/linux/ext2* | |
1da177e4 | 4744 | |
72be2ccf | 4745 | EXT4 FILE SYSTEM |
8b58be88 | 4746 | M: "Theodore Ts'o" <tytso@mit.edu> |
3c373a5f | 4747 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
72be2ccf | 4748 | L: linux-ext4@vger.kernel.org |
08a225f1 | 4749 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 4750 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
9f273c24 | 4751 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git |
1da177e4 | 4752 | S: Maintained |
679655da JP |
4753 | F: Documentation/filesystems/ext4.txt |
4754 | F: fs/ext4/ | |
1da177e4 | 4755 | |
c5532b09 | 4756 | Extended Verification Module (EVM) |
74dd744f MZ |
4757 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
4758 | L: linux-ima-devel@lists.sourceforge.net | |
4759 | L: linux-security-module@vger.kernel.org | |
c5532b09 MZ |
4760 | S: Supported |
4761 | F: security/integrity/evm/ | |
4762 | ||
df6b3cfe MH |
4763 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
4764 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
4765 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
4766 | L: linux-kernel@vger.kernel.org | |
81df63a9 | 4767 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git |
df6b3cfe MH |
4768 | S: Maintained |
4769 | F: drivers/extcon/ | |
cd2c3e7f CC |
4770 | F: include/linux/extcon/ |
4771 | F: include/linux/extcon.h | |
df6b3cfe | 4772 | F: Documentation/extcon/ |
cd2c3e7f | 4773 | F: Documentation/devicetree/bindings/extcon/ |
df6b3cfe | 4774 | |
e2a75c44 | 4775 | EXYNOS DP DRIVER |
b7701755 | 4776 | M: Jingoo Han <jingoohan1@gmail.com> |
e2a75c44 JH |
4777 | L: dri-devel@lists.freedesktop.org |
4778 | S: Maintained | |
4779 | F: drivers/gpu/drm/exynos/exynos_dp* | |
4780 | ||
9b93a409 MS |
4781 | EXYNOS SYSMMU (IOMMU) driver |
4782 | M: Marek Szyprowski <m.szyprowski@samsung.com> | |
4783 | L: iommu@lists.linux-foundation.org | |
4784 | S: Maintained | |
4785 | F: drivers/iommu/exynos-iommu.c | |
4786 | ||
4a66d3fe NC |
4787 | EZchip NPS platform support |
4788 | M: Noam Camus <noamc@ezchip.com> | |
4789 | S: Supported | |
4790 | F: arch/arc/plat-eznps | |
4791 | F: arch/arc/boot/dts/eznps.dts | |
4792 | ||
e53004e2 | 4793 | F71805F HARDWARE MONITORING DRIVER |
d8130624 | 4794 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 4795 | L: linux-hwmon@vger.kernel.org |
e53004e2 | 4796 | S: Maintained |
679655da JP |
4797 | F: Documentation/hwmon/f71805f |
4798 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 4799 | |
eea977ed MB |
4800 | FC0011 TUNER DRIVER |
4801 | M: Michael Buesch <m@bues.ch> | |
4802 | L: linux-media@vger.kernel.org | |
4803 | S: Maintained | |
ccae7af2 MCC |
4804 | F: drivers/media/tuners/fc0011.h |
4805 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 4806 | |
91952bc0 AP |
4807 | FC2580 MEDIA DRIVER |
4808 | M: Antti Palosaari <crope@iki.fi> | |
4809 | L: linux-media@vger.kernel.org | |
a825eaec | 4810 | W: https://linuxtv.org |
91952bc0 AP |
4811 | W: http://palosaari.fi/linux/ |
4812 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4813 | T: git git://linuxtv.org/anttip/media_tree.git | |
4814 | S: Maintained | |
4815 | F: drivers/media/tuners/fc2580* | |
eea977ed | 4816 | |
88b2dbdb EP |
4817 | FANOTIFY |
4818 | M: Eric Paris <eparis@redhat.com> | |
4819 | S: Maintained | |
4820 | F: fs/notify/fanotify/ | |
4821 | F: include/linux/fanotify.h | |
c117ab84 | 4822 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 4823 | |
1da177e4 | 4824 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 4825 | M: Kevin Curtis <kevin.curtis@farsite.co.uk> |
1da177e4 LT |
4826 | W: http://www.farsite.co.uk/ |
4827 | S: Supported | |
679655da | 4828 | F: drivers/net/wan/farsync.* |
1da177e4 | 4829 | |
c5408b88 | 4830 | FAULT INJECTION SUPPORT |
8b58be88 | 4831 | M: Akinobu Mita <akinobu.mita@gmail.com> |
c5408b88 | 4832 | S: Supported |
679655da JP |
4833 | F: Documentation/fault-injection/ |
4834 | F: lib/fault-inject.c | |
c5408b88 | 4835 | |
053e514f NT |
4836 | FBTFT Framebuffer drivers |
4837 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
4838 | M: Noralf Trønnes <noralf@tronnes.org> | |
4839 | S: Maintained | |
4840 | F: drivers/staging/fbtft/ | |
4841 | ||
cae727db | 4842 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
49a75815 | 4843 | M: Johannes Thumshirn <jth@kernel.org> |
f4aaea6d | 4844 | L: fcoe-devel@open-fcoe.org |
cae727db RL |
4845 | W: www.Open-FCoE.org |
4846 | S: Supported | |
4847 | F: drivers/scsi/libfc/ | |
4848 | F: drivers/scsi/fcoe/ | |
4849 | F: include/scsi/fc/ | |
4850 | F: include/scsi/libfc.h | |
4851 | F: include/scsi/libfcoe.h | |
c117ab84 | 4852 | F: include/uapi/scsi/fc/ |
cae727db | 4853 | |
e2d1d6c0 | 4854 | FILE LOCKING (flock() and fcntl()/lockf()) |
8c836fa8 | 4855 | M: Jeff Layton <jlayton@poochiereds.net> |
9c3646d1 | 4856 | M: "J. Bruce Fields" <bfields@fieldses.org> |
e2d1d6c0 | 4857 | L: linux-fsdevel@vger.kernel.org |
1da177e4 | 4858 | S: Maintained |
679655da JP |
4859 | F: include/linux/fcntl.h |
4860 | F: include/linux/fs.h | |
c117ab84 CEB |
4861 | F: include/uapi/linux/fcntl.h |
4862 | F: include/uapi/linux/fs.h | |
679655da JP |
4863 | F: fs/fcntl.c |
4864 | F: fs/locks.c | |
1da177e4 | 4865 | |
e2d1d6c0 | 4866 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 4867 | M: Alexander Viro <viro@zeniv.linux.org.uk> |
e2d1d6c0 | 4868 | L: linux-fsdevel@vger.kernel.org |
173acc7c | 4869 | S: Maintained |
679655da | 4870 | F: fs/* |
173acc7c | 4871 | |
b26e0ed4 | 4872 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 4873 | M: Riku Voipio <riku.voipio@iki.fi> |
968ce1b1 | 4874 | L: linux-hwmon@vger.kernel.org |
b26e0ed4 | 4875 | S: Maintained |
d5ca6918 JP |
4876 | F: drivers/hwmon/f75375s.c |
4877 | F: include/linux/f75375s.h | |
b26e0ed4 | 4878 | |
a331b0c3 CL |
4879 | FIREWIRE AUDIO DRIVERS |
4880 | M: Clemens Ladisch <clemens@ladisch.de> | |
4881 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
4882 | T: git git://git.alsa-project.org/alsa-kernel.git | |
4883 | S: Maintained | |
4884 | F: sound/firewire/ | |
4885 | ||
eb86ec51 SR |
4886 | FIREWIRE MEDIA DRIVERS (firedtv) |
4887 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> | |
4888 | L: linux-media@vger.kernel.org | |
4889 | L: linux1394-devel@lists.sourceforge.net | |
4890 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
4891 | S: Maintained | |
4892 | F: drivers/media/firewire/ | |
4893 | ||
a511ce33 CB |
4894 | FIREWIRE SBP-2 TARGET |
4895 | M: Chris Boot <bootc@bootc.net> | |
4896 | L: linux-scsi@vger.kernel.org | |
4897 | L: target-devel@vger.kernel.org | |
4898 | L: linux1394-devel@lists.sourceforge.net | |
4899 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
4900 | S: Maintained | |
4901 | F: drivers/target/sbp/ | |
4902 | ||
7d2c86b5 | 4903 | FIREWIRE SUBSYSTEM |
8b58be88 | 4904 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
e2d1d6c0 | 4905 | L: linux1394-devel@lists.sourceforge.net |
958a29cb | 4906 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 4907 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 4908 | S: Maintained |
679655da | 4909 | F: drivers/firewire/ |
8f06ce3b SR |
4910 | F: include/linux/firewire.h |
4911 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 4912 | F: tools/firewire/ |
e2d1d6c0 RD |
4913 | |
4914 | FIRMWARE LOADER (request_firmware) | |
39e68089 | 4915 | M: Ming Lei <ming.lei@canonical.com> |
e7604239 | 4916 | M: Luis R. Rodriguez <mcgrof@kernel.org> |
39e68089 ML |
4917 | L: linux-kernel@vger.kernel.org |
4918 | S: Maintained | |
679655da JP |
4919 | F: Documentation/firmware_class/ |
4920 | F: drivers/base/firmware*.c | |
4921 | F: include/linux/firmware.h | |
e2d1d6c0 | 4922 | |
f730e3dc | 4923 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
9bb3c446 PK |
4924 | M: Joshua Morris <josh.h.morris@us.ibm.com> |
4925 | M: Philip Kelleher <pjk1939@linux.vnet.ibm.com> | |
4926 | S: Maintained | |
4927 | F: drivers/block/rsxx/ | |
4928 | ||
8206f664 | 4929 | FLOPPY DRIVER |
e5f6450c | 4930 | M: Jiri Kosina <jikos@kernel.org> |
8206f664 JK |
4931 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git |
4932 | S: Odd fixes | |
4933 | F: drivers/block/floppy.c | |
4934 | ||
9c9f32ed AR |
4935 | FMC SUBSYSTEM |
4936 | M: Alessandro Rubini <rubini@gnudd.com> | |
4937 | W: http://www.ohwr.org/projects/fmc-bus | |
4938 | S: Supported | |
4939 | F: drivers/fmc/ | |
4940 | F: include/linux/fmc*.h | |
4941 | F: include/linux/ipmi-fru.h | |
4942 | K: fmc_d.*register | |
4943 | ||
3c0ed7d5 AT |
4944 | FPGA MANAGER FRAMEWORK |
4945 | M: Alan Tull <atull@opensource.altera.com> | |
dd7d664a | 4946 | R: Moritz Fischer <moritz.fischer@ettus.com> |
3c0ed7d5 AT |
4947 | S: Maintained |
4948 | F: drivers/fpga/ | |
4949 | F: include/linux/fpga/fpga-mgr.h | |
4950 | W: http://www.rocketboards.org | |
4951 | ||
e2d1d6c0 | 4952 | FPU EMULATOR |
8b58be88 | 4953 | M: Bill Metzenthen <billm@melbpc.org.au> |
e769980f | 4954 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 4955 | S: Maintained |
679655da | 4956 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
4957 | |
4958 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 4959 | L: netdev@vger.kernel.org |
c173bfac | 4960 | S: Orphan |
679655da JP |
4961 | F: drivers/net/wan/dlci.c |
4962 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
4963 | |
4964 | FRAMEBUFFER LAYER | |
5489e948 | 4965 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
c69f677c | 4966 | L: linux-fbdev@vger.kernel.org |
b22fe37b | 4967 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
56be1416 | 4968 | S: Maintained |
679655da | 4969 | F: Documentation/fb/ |
b22fe37b PM |
4970 | F: drivers/video/ |
4971 | F: include/video/ | |
679655da | 4972 | F: include/linux/fb.h |
c117ab84 CEB |
4973 | F: include/uapi/video/ |
4974 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 4975 | |
a57c188e | 4976 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 4977 | M: Timur Tabi <timur@tabi.org> |
a57c188e | 4978 | L: linux-fbdev@vger.kernel.org |
c4ef9bc4 | 4979 | S: Maintained |
8a61f013 | 4980 | F: drivers/video/fbdev/fsl-diu-fb.* |
a57c188e | 4981 | |
e2d1d6c0 | 4982 | FREESCALE DMA DRIVER |
8b58be88 JP |
4983 | M: Li Yang <leoli@freescale.com> |
4984 | M: Zhang Wei <zw@zh-kernel.org> | |
a4724ed6 | 4985 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 | 4986 | S: Maintained |
679655da | 4987 | F: drivers/dma/fsldma.* |
e2d1d6c0 | 4988 | |
44248aff HX |
4989 | FREESCALE GPMI NAND DRIVER |
4990 | M: Han Xu <han.xu@nxp.com> | |
4991 | L: linux-mtd@lists.infradead.org | |
4992 | S: Maintained | |
4993 | F: drivers/mtd/nand/gpmi-nand/* | |
4994 | ||
e2d1d6c0 | 4995 | FREESCALE I2C CPM DRIVER |
8b58be88 | 4996 | M: Jochen Friedrich <jochen@scram.de> |
a4724ed6 | 4997 | L: linuxppc-dev@lists.ozlabs.org |
846557d3 | 4998 | L: linux-i2c@vger.kernel.org |
0d2b405a | 4999 | S: Maintained |
679655da | 5000 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 5001 | |
60e8c5ab | 5002 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 5003 | M: Sascha Hauer <kernel@pengutronix.de> |
c69f677c | 5004 | L: linux-fbdev@vger.kernel.org |
efc03ecb | 5005 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
60e8c5ab | 5006 | S: Maintained |
bad985a1 | 5007 | F: include/linux/platform_data/video-imxfb.h |
8a61f013 | 5008 | F: drivers/video/fbdev/imxfb.c |
60e8c5ab | 5009 | |
4d8e2cef | 5010 | FREESCALE QUAD SPI DRIVER |
38714fbd | 5011 | M: Han Xu <han.xu@nxp.com> |
4d8e2cef HX |
5012 | L: linux-mtd@lists.infradead.org |
5013 | S: Maintained | |
5014 | F: drivers/mtd/spi-nor/fsl-quadspi.c | |
5015 | ||
4689a6b1 | 5016 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
5017 | M: Pantelis Antoniou <pantelis.antoniou@gmail.com> |
5018 | M: Vitaly Bordug <vbordug@ru.mvista.com> | |
a4724ed6 | 5019 | L: linuxppc-dev@lists.ozlabs.org |
4689a6b1 PA |
5020 | L: netdev@vger.kernel.org |
5021 | S: Maintained | |
ec21e2ec | 5022 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 5023 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 5024 | |
63a0a00b NA |
5025 | FREESCALE IMX / MXC FEC DRIVER |
5026 | M: Fugang Duan <fugang.duan@nxp.com> | |
5027 | L: netdev@vger.kernel.org | |
5028 | S: Maintained | |
5029 | F: drivers/net/ethernet/freescale/fec_main.c | |
5030 | F: drivers/net/ethernet/freescale/fec_ptp.c | |
5031 | F: drivers/net/ethernet/freescale/fec.h | |
5032 | F: Documentation/devicetree/bindings/net/fsl-fec.txt | |
5033 | ||
2fbfadb5 MB |
5034 | FREESCALE QORIQ DPAA FMAN DRIVER |
5035 | M: Madalin Bucur <madalin.bucur@nxp.com> | |
5036 | L: netdev@vger.kernel.org | |
5037 | S: Maintained | |
5038 | F: drivers/net/ethernet/freescale/fman | |
5039 | F: Documentation/devicetree/bindings/powerpc/fsl/fman.txt | |
5040 | ||
d9e9d82c | 5041 | FREESCALE QUICC ENGINE LIBRARY |
a4724ed6 | 5042 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 5043 | S: Orphan |
7aa1aa6e ZQ |
5044 | F: drivers/soc/fsl/qe/ |
5045 | F: include/soc/fsl/*qe*.h | |
5046 | F: include/soc/fsl/*ucc*.h | |
d9e9d82c | 5047 | |
b55ef929 | 5048 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 5049 | M: Li Yang <leoli@freescale.com> |
6372594a | 5050 | L: linux-usb@vger.kernel.org |
a4724ed6 | 5051 | L: linuxppc-dev@lists.ozlabs.org |
a7205b30 | 5052 | S: Maintained |
faf2e1db | 5053 | F: drivers/usb/gadget/udc/fsl* |
a7205b30 | 5054 | |
beaf53bf | 5055 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 5056 | M: Li Yang <leoli@freescale.com> |
beaf53bf | 5057 | L: netdev@vger.kernel.org |
a4724ed6 | 5058 | L: linuxppc-dev@lists.ozlabs.org |
beaf53bf | 5059 | S: Maintained |
ec21e2ec | 5060 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 5061 | |
abb1ed7b CM |
5062 | FREESCALE eTSEC ETHERNET DRIVER (GIANFAR) |
5063 | M: Claudiu Manoil <claudiu.manoil@freescale.com> | |
5064 | L: netdev@vger.kernel.org | |
5065 | S: Maintained | |
5066 | F: drivers/net/ethernet/freescale/gianfar* | |
5067 | X: drivers/net/ethernet/freescale/gianfar_ptp.c | |
5068 | F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt | |
5069 | ||
c19b6d24 ZQ |
5070 | FREESCALE QUICC ENGINE UCC HDLC DRIVER |
5071 | M: Zhao Qiang <qiang.zhao@nxp.com> | |
5072 | L: netdev@vger.kernel.org | |
5073 | L: linuxppc-dev@lists.ozlabs.org | |
5074 | S: Maintained | |
5075 | F: drivers/net/wan/fsl_ucc_hdlc* | |
5076 | ||
d9e9d82c | 5077 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 5078 | M: Timur Tabi <timur@tabi.org> |
a4724ed6 | 5079 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 5080 | S: Maintained |
df621252 | 5081 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
5082 | |
5083 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 5084 | M: Timur Tabi <timur@tabi.org> |
dc85950a | 5085 | M: Nicolin Chen <nicoleotsuka@gmail.com> |
b4b98297 | 5086 | M: Xiubo Li <Xiubo.Lee@gmail.com> |
aeea2fdd | 5087 | R: Fabio Estevam <fabio.estevam@nxp.com> |
93711660 | 5088 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a4724ed6 | 5089 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 5090 | S: Maintained |
69aefcea | 5091 | F: sound/soc/fsl/fsl* |
dc85950a | 5092 | F: sound/soc/fsl/imx* |
69aefcea | 5093 | F: sound/soc/fsl/mpc8610_hpcd.c |
d9e9d82c | 5094 | |
31c88965 | 5095 | FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER |
9c3646d1 | 5096 | M: "J. German Rivera" <German.Rivera@freescale.com> |
cb18d3a2 | 5097 | M: Stuart Yoder <stuart.yoder@nxp.com> |
31c88965 GR |
5098 | L: linux-kernel@vger.kernel.org |
5099 | S: Maintained | |
5100 | F: drivers/staging/fsl-mc/ | |
5101 | ||
1da177e4 | 5102 | FREEVXFS FILESYSTEM |
8b58be88 | 5103 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 LT |
5104 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
5105 | S: Maintained | |
679655da | 5106 | F: fs/freevxfs/ |
1da177e4 | 5107 | |
71038f52 | 5108 | FREEZER |
49db1903 | 5109 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 5110 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 5111 | L: linux-pm@vger.kernel.org |
71038f52 | 5112 | S: Supported |
679655da JP |
5113 | F: Documentation/power/freezing-of-tasks.txt |
5114 | F: include/linux/freezer.h | |
5115 | F: kernel/freezer.c | |
71038f52 | 5116 | |
839a1f79 KRW |
5117 | FRONTSWAP API |
5118 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
5119 | L: linux-kernel@vger.kernel.org | |
5120 | S: Maintained | |
5121 | F: mm/frontswap.c | |
5122 | F: include/linux/frontswap.h | |
5123 | ||
a5432f5a | 5124 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 5125 | M: David Howells <dhowells@redhat.com> |
e62d6e24 | 5126 | L: linux-cachefs@redhat.com (moderated for non-subscribers) |
a5432f5a DH |
5127 | S: Supported |
5128 | F: Documentation/filesystems/caching/ | |
5129 | F: fs/fscache/ | |
5130 | F: include/linux/fscache*.h | |
5131 | ||
598c7d7a TT |
5132 | FS-CRYPTO: FILE SYSTEM LEVEL ENCRYPTION SUPPORT |
5133 | M: Theodore Y. Ts'o <tytso@mit.edu> | |
5134 | M: Jaegeuk Kim <jaegeuk@kernel.org> | |
5135 | S: Supported | |
5136 | F: fs/crypto/ | |
5137 | F: include/linux/fscrypto.h | |
5138 | ||
f58ad8f5 | 5139 | F2FS FILE SYSTEM |
9b29d481 | 5140 | M: Jaegeuk Kim <jaegeuk@kernel.org> |
95129296 | 5141 | M: Chao Yu <yuchao0@huawei.com> |
f58ad8f5 | 5142 | L: linux-f2fs-devel@lists.sourceforge.net |
95129296 | 5143 | W: https://f2fs.wiki.kernel.org/ |
f58ad8f5 JK |
5144 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git |
5145 | S: Maintained | |
5146 | F: Documentation/filesystems/f2fs.txt | |
3bac380c | 5147 | F: Documentation/ABI/testing/sysfs-fs-f2fs |
f58ad8f5 JK |
5148 | F: fs/f2fs/ |
5149 | F: include/linux/f2fs_fs.h | |
62d43eeb | 5150 | F: include/trace/events/f2fs.h |
f58ad8f5 | 5151 | |
5ab7ffea | 5152 | FUJITSU FR-V (FRV) PORT |
0cf0305f | 5153 | S: Orphan |
679655da | 5154 | F: arch/frv/ |
1da177e4 | 5155 | |
20b93734 | 5156 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 5157 | M: Jonathan Woithe <jwoithe@just42.net> |
d0944853 | 5158 | L: platform-driver-x86@vger.kernel.org |
20b93734 | 5159 | S: Maintained |
679655da | 5160 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 5161 | |
4da621b6 HK |
5162 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
5163 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
5164 | M: Heungjun Kim <riverful.kim@samsung.com> | |
5165 | L: linux-media@vger.kernel.org | |
5166 | S: Maintained | |
90d72ac6 | 5167 | F: drivers/media/i2c/m5mols/ |
b5dcee22 | 5168 | F: include/media/i2c/m5mols.h |
4da621b6 | 5169 | |
2d24c490 RG |
5170 | FUJITSU TABLET EXTRAS |
5171 | M: Robert Gerlach <khnz@gmx.de> | |
5172 | L: platform-driver-x86@vger.kernel.org | |
5173 | S: Maintained | |
5174 | F: drivers/platform/x86/fujitsu-tablet.c | |
5175 | ||
04578f17 | 5176 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 5177 | M: Miklos Szeredi <miklos@szeredi.hu> |
4441f63a | 5178 | L: linux-fsdevel@vger.kernel.org |
04578f17 | 5179 | W: http://fuse.sourceforge.net/ |
0a30f612 | 5180 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git |
04578f17 | 5181 | S: Maintained |
679655da | 5182 | F: fs/fuse/ |
c117ab84 | 5183 | F: include/uapi/linux/fuse.h |
0a30f612 | 5184 | F: Documentation/filesystems/fuse.txt |
04578f17 | 5185 | |
1da177e4 | 5186 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 5187 | M: Rik Faith <faith@cs.unc.edu> |
1da177e4 | 5188 | L: linux-scsi@vger.kernel.org |
baaea1dc | 5189 | S: Odd Fixes (e.g., new signatures) |
679655da | 5190 | F: drivers/scsi/fdomain.* |
1da177e4 | 5191 | |
6b90bd4b ER |
5192 | GCC PLUGINS |
5193 | M: Kees Cook <keescook@chromium.org> | |
5194 | R: Emese Revfy <re.emese@gmail.com> | |
5195 | L: kernel-hardening@lists.openwall.com | |
5196 | S: Maintained | |
5197 | F: scripts/gcc-plugins/ | |
5198 | F: scripts/gcc-plugin.sh | |
5199 | F: Documentation/gcc-plugins.txt | |
5200 | ||
d8e2162c PO |
5201 | GCOV BASED KERNEL PROFILING |
5202 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
5203 | S: Maintained | |
5204 | F: kernel/gcov/ | |
2584bab2 | 5205 | F: Documentation/dev-tools/gcov.rst |
d8e2162c | 5206 | |
1da177e4 | 5207 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
8b58be88 | 5208 | M: Achim Leubner <achim_leubner@adaptec.com> |
1da177e4 LT |
5209 | L: linux-scsi@vger.kernel.org |
5210 | W: http://www.icp-vortex.com/ | |
5211 | S: Supported | |
679655da | 5212 | F: drivers/scsi/gdt* |
1da177e4 | 5213 | |
158daf16 JK |
5214 | GDB KERNEL DEBUGGING HELPER SCRIPTS |
5215 | M: Jan Kiszka <jan.kiszka@siemens.com> | |
e10af132 | 5216 | M: Kieran Bingham <kieran@bingham.xyz> |
158daf16 JK |
5217 | S: Supported |
5218 | F: scripts/gdb/ | |
5219 | ||
3169a1c7 HV |
5220 | GEMTEK FM RADIO RECEIVER DRIVER |
5221 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5222 | L: linux-media@vger.kernel.org | |
5223 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 5224 | W: https://linuxtv.org |
3169a1c7 HV |
5225 | S: Maintained |
5226 | F: drivers/media/radio/radio-gemtek* | |
5227 | ||
1c23af90 | 5228 | GENERIC GPIO I2C DRIVER |
880b0e26 | 5229 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1c23af90 | 5230 | S: Supported |
679655da JP |
5231 | F: drivers/i2c/busses/i2c-gpio.c |
5232 | F: include/linux/i2c-gpio.h | |
1c23af90 | 5233 | |
92ed1a76 PK |
5234 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
5235 | M: Peter Korsgaard <peter.korsgaard@barco.com> | |
5236 | L: linux-i2c@vger.kernel.org | |
5237 | S: Supported | |
e7065e20 JD |
5238 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
5239 | F: include/linux/i2c-mux-gpio.h | |
5240 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 5241 | |
9251ce95 | 5242 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 5243 | M: Krzysztof Halasa <khc@pm.waw.pl> |
1da177e4 LT |
5244 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
5245 | S: Maintained | |
679655da JP |
5246 | F: drivers/net/wan/c101.c |
5247 | F: drivers/net/wan/hd6457* | |
5248 | F: drivers/net/wan/hdlc* | |
5249 | F: drivers/net/wan/n2.c | |
5250 | F: drivers/net/wan/pc300too.c | |
5251 | F: drivers/net/wan/pci200syn.c | |
5252 | F: drivers/net/wan/wanxl* | |
1da177e4 | 5253 | |
1527aab6 | 5254 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 5255 | M: Arnd Bergmann <arnd@arndb.de> |
1527aab6 AB |
5256 | L: linux-arch@vger.kernel.org |
5257 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
5258 | S: Maintained | |
14430813 JP |
5259 | F: include/asm-generic/ |
5260 | F: include/uapi/asm-generic/ | |
1527aab6 | 5261 | |
ff764963 KVA |
5262 | GENERIC PHY FRAMEWORK |
5263 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
5264 | L: linux-kernel@vger.kernel.org | |
5265 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git | |
5266 | S: Supported | |
5267 | F: drivers/phy/ | |
5268 | F: include/linux/phy/ | |
5269 | ||
eea97aed KH |
5270 | GENERIC PM DOMAINS |
5271 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> | |
5272 | M: Kevin Hilman <khilman@kernel.org> | |
5273 | M: Ulf Hansson <ulf.hansson@linaro.org> | |
5274 | L: linux-pm@vger.kernel.org | |
5275 | S: Supported | |
5276 | F: drivers/base/power/domain*.c | |
5277 | F: include/linux/pm_domain.h | |
5278 | ||
ccb86a69 | 5279 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 5280 | M: "Michael S. Tsirkin" <mst@redhat.com> |
ccb86a69 | 5281 | L: kvm@vger.kernel.org |
ccb86a69 MT |
5282 | S: Supported |
5283 | F: drivers/uio/uio_pci_generic.c | |
5284 | ||
f8f1ec73 JP |
5285 | GET_MAINTAINER SCRIPT |
5286 | M: Joe Perches <joe@perches.com> | |
5287 | S: Maintained | |
5288 | F: scripts/get_maintainer.pl | |
5289 | ||
5be7b50f | 5290 | GFS2 FILE SYSTEM |
8b58be88 | 5291 | M: Steven Whitehouse <swhiteho@redhat.com> |
28666d6d | 5292 | M: Bob Peterson <rpeterso@redhat.com> |
a4644184 | 5293 | L: cluster-devel@redhat.com |
5be7b50f | 5294 | W: http://sources.redhat.com/cluster/ |
28666d6d | 5295 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git |
5be7b50f | 5296 | S: Supported |
679655da JP |
5297 | F: Documentation/filesystems/gfs2*.txt |
5298 | F: fs/gfs2/ | |
c117ab84 | 5299 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 5300 | |
0a34eb8f | 5301 | GIGASET ISDN DRIVERS |
6b096fde | 5302 | M: Paul Bolle <pebolle@tiscali.nl> |
0a34eb8f HL |
5303 | L: gigaset307x-common@lists.sourceforge.net |
5304 | W: http://gigaset307x.sourceforge.net/ | |
6b096fde | 5305 | S: Odd Fixes |
679655da JP |
5306 | F: Documentation/isdn/README.gigaset |
5307 | F: drivers/isdn/gigaset/ | |
c117ab84 | 5308 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 5309 | |
7eea35fe JP |
5310 | GO7007 MPEG CODEC |
5311 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
5312 | L: linux-media@vger.kernel.org | |
5313 | S: Maintained | |
5314 | F: drivers/media/usb/go7007/ | |
5315 | ||
ca96ea86 BN |
5316 | GOODIX TOUCHSCREEN |
5317 | M: Bastien Nocera <hadess@hadess.net> | |
5318 | L: linux-input@vger.kernel.org | |
5319 | S: Maintained | |
5320 | F: drivers/input/touchscreen/goodix.c | |
5321 | ||
a6a1cf3d BJZ |
5322 | GPIO MOCKUP DRIVER |
5323 | M: Bamvor Jian Zhang <bamvor.zhangjian@linaro.org> | |
5324 | L: linux-gpio@vger.kernel.org | |
5325 | S: Maintained | |
5326 | F: drivers/gpio/gpio-mockup.c | |
5327 | F: tools/testing/selftests/gpio/ | |
5328 | ||
a0dc00b4 | 5329 | GPIO SUBSYSTEM |
e4651a9f | 5330 | M: Linus Walleij <linus.walleij@linaro.org> |
f2fa75cd | 5331 | M: Alexandre Courbot <gnurou@gmail.com> |
d15b7179 | 5332 | L: linux-gpio@vger.kernel.org |
f2fa75cd LW |
5333 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git |
5334 | S: Maintained | |
cd97a449 | 5335 | F: Documentation/devicetree/bindings/gpio/ |
f2fa75cd | 5336 | F: Documentation/gpio/ |
40c159b7 | 5337 | F: Documentation/ABI/testing/gpio-cdev |
fe95046e | 5338 | F: Documentation/ABI/obsolete/sysfs-gpio |
a0dc00b4 | 5339 | F: drivers/gpio/ |
bdc6e95e AC |
5340 | F: include/linux/gpio/ |
5341 | F: include/linux/gpio.h | |
9b692346 | 5342 | F: include/asm-generic/gpio.h |
3c702e99 | 5343 | F: include/uapi/linux/gpio.h |
6d591c46 | 5344 | F: tools/gpio/ |
a0dc00b4 | 5345 | |
71a6d0af HW |
5346 | GRE DEMULTIPLEXER DRIVER |
5347 | M: Dmitry Kozlov <xeb@mail.ru> | |
5348 | L: netdev@vger.kernel.org | |
5349 | S: Maintained | |
11c26770 JP |
5350 | F: net/ipv4/gre_demux.c |
5351 | F: net/ipv4/gre_offload.c | |
71a6d0af HW |
5352 | F: include/net/gre.h |
5353 | ||
d4c41139 | 5354 | GRETH 10/100/1G Ethernet MAC device driver |
bbdd09eb | 5355 | M: Andreas Larsson <andreas@gaisler.com> |
d4c41139 KG |
5356 | L: netdev@vger.kernel.org |
5357 | S: Maintained | |
a31a96ad | 5358 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 5359 | |
629c1fb5 GKH |
5360 | GREYBUS SUBSYSTEM |
5361 | M: Johan Hovold <johan@kernel.org> | |
5362 | M: Alex Elder <elder@kernel.org> | |
5363 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
5364 | S: Maintained | |
5365 | F: drivers/staging/greybus/ | |
5366 | ||
926706c5 VA |
5367 | GREYBUS AUDIO PROTOCOLS DRIVERS |
5368 | M: Vaibhav Agarwal <vaibhav.sr@gmail.com> | |
88638cf1 | 5369 | M: Mark Greer <mgreer@animalcreek.com> |
926706c5 | 5370 | S: Maintained |
544a6944 MG |
5371 | F: drivers/staging/greybus/audio_apbridgea.c |
5372 | F: drivers/staging/greybus/audio_apbridgea.h | |
926706c5 | 5373 | F: drivers/staging/greybus/audio_codec.c |
544a6944 MG |
5374 | F: drivers/staging/greybus/audio_codec.h |
5375 | F: drivers/staging/greybus/audio_gb.c | |
5376 | F: drivers/staging/greybus/audio_manager.c | |
5377 | F: drivers/staging/greybus/audio_manager.h | |
5378 | F: drivers/staging/greybus/audio_manager_module.c | |
5379 | F: drivers/staging/greybus/audio_manager_private.h | |
5380 | F: drivers/staging/greybus/audio_manager_sysfs.c | |
926706c5 VA |
5381 | F: drivers/staging/greybus/audio_module.c |
5382 | F: drivers/staging/greybus/audio_topology.c | |
5383 | ||
2bbadafb RMS |
5384 | GREYBUS PROTOCOLS DRIVERS |
5385 | M: Rui Miguel Silva <rmfrfs@gmail.com> | |
5386 | S: Maintained | |
5387 | F: drivers/staging/greybus/sdio.c | |
5388 | F: drivers/staging/greybus/light.c | |
5389 | F: drivers/staging/greybus/gpio.c | |
5390 | F: drivers/staging/greybus/power_supply.c | |
5391 | F: drivers/staging/greybus/spi.c | |
5392 | F: drivers/staging/greybus/spilib.c | |
5393 | ||
7d700518 BD |
5394 | GREYBUS PROTOCOLS DRIVERS |
5395 | M: Bryan O'Donoghue <pure.logic@nexus-software.ie> | |
5396 | S: Maintained | |
5397 | F: drivers/staging/greybus/loopback.c | |
5398 | F: drivers/staging/greybus/timesync.c | |
5399 | F: drivers/staging/greybus/timesync_platform.c | |
5400 | ||
5bd16350 VK |
5401 | GREYBUS PROTOCOLS DRIVERS |
5402 | M: Viresh Kumar <vireshk@kernel.org> | |
5403 | S: Maintained | |
5404 | F: drivers/staging/greybus/authentication.c | |
5405 | F: drivers/staging/greybus/bootrom.c | |
5406 | F: drivers/staging/greybus/firmware.h | |
5407 | F: drivers/staging/greybus/fw-core.c | |
5408 | F: drivers/staging/greybus/fw-download.c | |
5409 | F: drivers/staging/greybus/fw-managament.c | |
5410 | F: drivers/staging/greybus/greybus_authentication.h | |
5411 | F: drivers/staging/greybus/greybus_firmware.h | |
5412 | F: drivers/staging/greybus/hid.c | |
5413 | F: drivers/staging/greybus/i2c.c | |
5414 | F: drivers/staging/greybus/spi.c | |
5415 | F: drivers/staging/greybus/spilib.c | |
5416 | F: drivers/staging/greybus/spilib.h | |
5417 | ||
8d904fe5 DL |
5418 | GREYBUS PROTOCOLS DRIVERS |
5419 | M: David Lin <dtwlin@gmail.com> | |
5420 | S: Maintained | |
5421 | F: drivers/staging/greybus/uart.c | |
5422 | F: drivers/staging/greybus/log.c | |
5423 | ||
92b8bd96 VH |
5424 | GREYBUS PLATFORM DRIVERS |
5425 | M: Vaibhav Hiremath <hvaibhav.linux@gmail.com> | |
5426 | S: Maintained | |
5427 | F: drivers/staging/greybus/arche-platform.c | |
5428 | F: drivers/staging/greybus/arche-apb-ctrl.c | |
5429 | F: drivers/staging/greybus/arche_platform.h | |
5430 | ||
7aae6e2d CAC |
5431 | GS1662 VIDEO SERIALIZER |
5432 | M: Charles-Antoine Couret <charles-antoine.couret@nexvision.fr> | |
5433 | L: linux-media@vger.kernel.org | |
5434 | T: git git://linuxtv.org/media_tree.git | |
5435 | S: Maintained | |
5436 | F: drivers/media/spi/gs1662.c | |
5437 | ||
e8deeae2 | 5438 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 5439 | M: Frank Zago <frank@zago.net> |
661263b5 | 5440 | L: linux-media@vger.kernel.org |
275ffde4 | 5441 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 5442 | S: Maintained |
0c0d06ca | 5443 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 5444 | |
4b3fa3c4 OL |
5445 | GSPCA GL860 SUBDRIVER |
5446 | M: Olivier Lorin <o.lorin@laposte.net> | |
5447 | L: linux-media@vger.kernel.org | |
275ffde4 | 5448 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 5449 | S: Maintained |
0c0d06ca | 5450 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 5451 | |
e8deeae2 | 5452 | GSPCA M5602 SUBDRIVER |
8b58be88 | 5453 | M: Erik Andren <erik.andren@gmail.com> |
661263b5 | 5454 | L: linux-media@vger.kernel.org |
275ffde4 | 5455 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 5456 | S: Maintained |
0c0d06ca | 5457 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
5458 | |
5459 | GSPCA PAC207 SONIXB SUBDRIVER | |
c0936df4 | 5460 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 5461 | L: linux-media@vger.kernel.org |
275ffde4 | 5462 | T: git git://linuxtv.org/media_tree.git |
c0936df4 | 5463 | S: Odd Fixes |
0c0d06ca | 5464 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 5465 | |
261982f1 | 5466 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 5467 | M: Brian Johnson <brijohn@gmail.com> |
261982f1 | 5468 | L: linux-media@vger.kernel.org |
275ffde4 | 5469 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 5470 | S: Maintained |
0c0d06ca | 5471 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 5472 | |
e8deeae2 | 5473 | GSPCA T613 SUBDRIVER |
8b58be88 | 5474 | M: Leandro Costantino <lcostantino@gmail.com> |
661263b5 | 5475 | L: linux-media@vger.kernel.org |
275ffde4 | 5476 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 5477 | S: Maintained |
0c0d06ca | 5478 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
5479 | |
5480 | GSPCA USB WEBCAM DRIVER | |
c0936df4 | 5481 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 5482 | L: linux-media@vger.kernel.org |
275ffde4 | 5483 | T: git git://linuxtv.org/media_tree.git |
c0936df4 | 5484 | S: Odd Fixes |
0c0d06ca | 5485 | F: drivers/media/usb/gspca/ |
e8deeae2 | 5486 | |
584ec979 | 5487 | GUID PARTITION TABLE (GPT) |
4f973c63 | 5488 | M: Davidlohr Bueso <dave@stgolabs.net> |
584ec979 DB |
5489 | L: linux-efi@vger.kernel.org |
5490 | S: Maintained | |
5491 | F: block/partitions/efi.* | |
5492 | ||
aa3c598b | 5493 | STK1160 USB VIDEO CAPTURE DRIVER |
3259aa57 | 5494 | M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> |
aa3c598b | 5495 | L: linux-media@vger.kernel.org |
275ffde4 | 5496 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
5497 | S: Maintained |
5498 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 5499 | |
4e456b86 YS |
5500 | H8/300 ARCHITECTURE |
5501 | M: Yoshinori Sato <ysato@users.sourceforge.jp> | |
b992c768 | 5502 | L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers) |
4e456b86 YS |
5503 | W: http://uclinux-h8.sourceforge.jp |
5504 | T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git | |
5505 | S: Maintained | |
5506 | F: arch/h8300/ | |
5507 | F: drivers/clocksource/h8300_*.c | |
5508 | F: drivers/clk/h8300/ | |
5509 | F: drivers/irqchip/irq-renesas-h8*.c | |
5510 | ||
71a6d0af HW |
5511 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
5512 | M: Frank Seidel <frank@f-seidel.de> | |
5513 | L: platform-driver-x86@vger.kernel.org | |
5514 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
5515 | S: Maintained | |
5516 | F: drivers/platform/x86/hdaps.c | |
5517 | ||
48fc9e26 HV |
5518 | HDPVR USB VIDEO ENCODER DRIVER |
5519 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5520 | L: linux-media@vger.kernel.org | |
5521 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 5522 | W: https://linuxtv.org |
48fc9e26 | 5523 | S: Odd Fixes |
14430813 | 5524 | F: drivers/media/usb/hdpvr/ |
48fc9e26 | 5525 | |
71a6d0af | 5526 | HWPOISON MEMORY FAILURE HANDLING |
f9625c48 | 5527 | M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> |
71a6d0af | 5528 | L: linux-mm@kvack.org |
71a6d0af HW |
5529 | S: Maintained |
5530 | F: mm/memory-failure.c | |
5531 | F: mm/hwpoison-inject.c | |
5532 | ||
5533 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
5534 | L: linuxppc-dev@lists.ozlabs.org | |
5535 | S: Odd Fixes | |
5536 | F: drivers/tty/hvc/ | |
5537 | ||
e5ab1477 AP |
5538 | HACKRF MEDIA DRIVER |
5539 | M: Antti Palosaari <crope@iki.fi> | |
5540 | L: linux-media@vger.kernel.org | |
a825eaec | 5541 | W: https://linuxtv.org |
e5ab1477 AP |
5542 | W: http://palosaari.fi/linux/ |
5543 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5544 | T: git git://linuxtv.org/anttip/media_tree.git | |
5545 | S: Maintained | |
5546 | F: drivers/media/usb/hackrf/ | |
5547 | ||
5b543965 | 5548 | HARDWARE MONITORING |
d8130624 | 5549 | M: Jean Delvare <jdelvare@suse.com> |
ca462085 | 5550 | M: Guenter Roeck <linux@roeck-us.net> |
968ce1b1 GR |
5551 | L: linux-hwmon@vger.kernel.org |
5552 | W: http://hwmon.wiki.kernel.org/ | |
a94ef4ed | 5553 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/ |
885374e3 | 5554 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 5555 | S: Maintained |
047f4ec2 | 5556 | F: Documentation/hwmon/ |
679655da | 5557 | F: drivers/hwmon/ |
047f4ec2 | 5558 | F: include/linux/hwmon*.h |
5b543965 | 5559 | |
844dd05f | 5560 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
5561 | M: Matt Mackall <mpm@selenic.com> |
5562 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
3eda7167 | 5563 | L: linux-crypto@vger.kernel.org |
c0d0787b | 5564 | S: Odd fixes |
f6c60b15 | 5565 | F: Documentation/devicetree/bindings/rng/ |
679655da JP |
5566 | F: Documentation/hw_random.txt |
5567 | F: drivers/char/hw_random/ | |
5568 | F: include/linux/hw_random.h | |
844dd05f | 5569 | |
8b37fcfc OBC |
5570 | HARDWARE SPINLOCK CORE |
5571 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
69ae9895 | 5572 | M: Bjorn Andersson <bjorn.andersson@linaro.org> |
d7586849 | 5573 | L: linux-remoteproc@vger.kernel.org |
8b37fcfc | 5574 | S: Maintained |
9f273c24 | 5575 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git |
2dbd8585 | 5576 | F: Documentation/devicetree/bindings/hwlock/ |
8b37fcfc | 5577 | F: Documentation/hwspinlock.txt |
2dbd8585 | 5578 | F: drivers/hwspinlock/ |
8b37fcfc OBC |
5579 | F: include/linux/hwspinlock.h |
5580 | ||
1da177e4 | 5581 | HARMONY SOUND DRIVER |
ac6aecbf | 5582 | L: linux-parisc@vger.kernel.org |
1da177e4 | 5583 | S: Maintained |
679655da | 5584 | F: sound/parisc/harmony.* |
1da177e4 | 5585 | |
91952bc0 AP |
5586 | HD29L2 MEDIA DRIVER |
5587 | M: Antti Palosaari <crope@iki.fi> | |
5588 | L: linux-media@vger.kernel.org | |
a825eaec | 5589 | W: https://linuxtv.org |
91952bc0 AP |
5590 | W: http://palosaari.fi/linux/ |
5591 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5592 | T: git git://linuxtv.org/anttip/media_tree.git | |
5593 | S: Maintained | |
5594 | F: drivers/media/dvb-frontends/hd29l2* | |
5595 | ||
214de83e BB |
5596 | HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER |
5597 | M: Brian Boylston <brian.boylston@hpe.com> | |
5598 | S: Supported | |
5599 | F: Documentation/watchdog/hpwdt.txt | |
5600 | F: drivers/watchdog/hpwdt.c | |
5601 | ||
9257aa49 | 5602 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
a0a268ad | 5603 | M: Don Brace <don.brace@microsemi.com> |
9257aa49 | 5604 | L: iss_storagedev@hp.com |
a0a268ad | 5605 | L: esc.storagedev@microsemi.com |
693373db | 5606 | L: linux-scsi@vger.kernel.org |
9257aa49 SC |
5607 | S: Supported |
5608 | F: Documentation/scsi/hpsa.txt | |
5609 | F: drivers/scsi/hpsa*.[ch] | |
5610 | F: include/linux/cciss*.h | |
c117ab84 | 5611 | F: include/uapi/linux/cciss*.h |
9257aa49 | 5612 | |
e2d1d6c0 | 5613 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
516fdcea | 5614 | M: Don Brace <don.brace@microsemi.com> |
e2d1d6c0 | 5615 | L: iss_storagedev@hp.com |
516fdcea | 5616 | L: esc.storagedev@microsemi.com |
693373db | 5617 | L: linux-scsi@vger.kernel.org |
e2d1d6c0 | 5618 | S: Supported |
679655da JP |
5619 | F: Documentation/blockdev/cciss.txt |
5620 | F: drivers/block/cciss* | |
5621 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 5622 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 5623 | |
f48ad614 DD |
5624 | HFI1 DRIVER |
5625 | M: Mike Marciniszyn <mike.marciniszyn@intel.com> | |
5626 | M: Dennis Dalessandro <dennis.dalessandro@intel.com> | |
5627 | L: linux-rdma@vger.kernel.org | |
5628 | S: Supported | |
5629 | F: drivers/infiniband/hw/hfi1 | |
5630 | ||
1da177e4 | 5631 | HFS FILESYSTEM |
6cf515e1 GU |
5632 | L: linux-fsdevel@vger.kernel.org |
5633 | S: Orphan | |
679655da JP |
5634 | F: Documentation/filesystems/hfs.txt |
5635 | F: fs/hfs/ | |
1da177e4 | 5636 | |
ef575f47 GU |
5637 | HFSPLUS FILESYSTEM |
5638 | L: linux-fsdevel@vger.kernel.org | |
5639 | S: Orphan | |
5640 | F: Documentation/filesystems/hfsplus.txt | |
5641 | F: fs/hfsplus/ | |
5642 | ||
1da177e4 | 5643 | HGA FRAMEBUFFER DRIVER |
8b58be88 | 5644 | M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> |
1da177e4 LT |
5645 | L: linux-nvidia@lists.surfsouth.com |
5646 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
5647 | S: Maintained | |
8a61f013 | 5648 | F: drivers/video/fbdev/hgafb.c |
1da177e4 | 5649 | |
4480f15b | 5650 | HIBERNATION (aka Software Suspend, aka swsusp) |
49db1903 | 5651 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 5652 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 5653 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 5654 | S: Supported |
679655da JP |
5655 | F: arch/x86/power/ |
5656 | F: drivers/base/power/ | |
5657 | F: kernel/power/ | |
5658 | F: include/linux/suspend.h | |
5659 | F: include/linux/freezer.h | |
5660 | F: include/linux/pm.h | |
679655da | 5661 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 5662 | |
4ef4caad | 5663 | HID CORE LAYER |
e5f6450c | 5664 | M: Jiri Kosina <jikos@kernel.org> |
406df153 | 5665 | R: Benjamin Tissoires <benjamin.tissoires@redhat.com> |
eb76c5c0 | 5666 | L: linux-input@vger.kernel.org |
54e5881d | 5667 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 5668 | S: Maintained |
679655da JP |
5669 | F: drivers/hid/ |
5670 | F: include/linux/hid* | |
c117ab84 | 5671 | F: include/uapi/linux/hid* |
4ef4caad | 5672 | |
30ee72f0 | 5673 | HID SENSOR HUB DRIVERS |
e5f6450c | 5674 | M: Jiri Kosina <jikos@kernel.org> |
30ee72f0 SP |
5675 | M: Jonathan Cameron <jic23@kernel.org> |
5676 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> | |
5677 | L: linux-input@vger.kernel.org | |
5678 | L: linux-iio@vger.kernel.org | |
5679 | S: Maintained | |
5680 | F: Documentation/hid/hid-sensor* | |
5681 | F: drivers/hid/hid-sensor-* | |
5682 | F: drivers/iio/*/hid-* | |
5683 | F: include/linux/hid-sensor-* | |
5684 | ||
38bed542 | 5685 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 5686 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 5687 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 5688 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 5689 | S: Maintained |
679655da | 5690 | F: Documentation/timers/ |
5cee9645 | 5691 | F: kernel/time/hrtimer.c |
88606e80 TG |
5692 | F: kernel/time/clockevents.c |
5693 | F: kernel/time/tick*.* | |
5694 | F: kernel/time/timer_*.c | |
05ed8490 | 5695 | F: include/linux/clockchips.h |
679655da | 5696 | F: include/linux/hrtimer.h |
38bed542 | 5697 | |
1da177e4 | 5698 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 5699 | L: linux-hams@vger.kernel.org |
8b64f2a0 | 5700 | S: Orphan |
679655da JP |
5701 | F: drivers/net/hamradio/dmascc.c |
5702 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 5703 | |
ede1e6f8 | 5704 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 5705 | M: HighPoint Linux Team <linux@highpoint-tech.com> |
ede1e6f8 HLT |
5706 | W: http://www.highpoint-tech.com |
5707 | S: Supported | |
679655da JP |
5708 | F: Documentation/scsi/hptiop.txt |
5709 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 5710 | |
1da177e4 | 5711 | HIPPI |
8b58be88 | 5712 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
5713 | L: linux-hippi@sunsite.dk |
5714 | S: Maintained | |
679655da | 5715 | F: include/linux/hippidevice.h |
c117ab84 | 5716 | F: include/uapi/linux/if_hippi.h |
679655da | 5717 | F: net/802/hippi.c |
ff5a3b50 | 5718 | F: drivers/net/hippi/ |
1da177e4 | 5719 | |
b30d74e4 DH |
5720 | HISILICON NETWORK SUBSYSTEM DRIVER |
5721 | M: Yisen Zhuang <yisen.zhuang@huawei.com> | |
5722 | M: Salil Mehta <salil.mehta@huawei.com> | |
5723 | L: netdev@vger.kernel.org | |
5724 | W: http://www.hisilicon.com | |
5725 | S: Maintained | |
5726 | F: drivers/net/ethernet/hisilicon/ | |
5727 | F: Documentation/devicetree/bindings/net/hisilicon*.txt | |
5728 | ||
66a9bae6 | 5729 | HISILICON ROCE DRIVER |
5730 | M: Lijun Ou <oulijun@huawei.com> | |
5731 | M: Wei Hu(Xavier) <xavier.huwei@huawei.com> | |
5732 | L: linux-rdma@vger.kernel.org | |
5733 | S: Maintained | |
5734 | F: drivers/infiniband/hw/hns/ | |
5735 | F: Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt | |
5736 | ||
16c6c252 JG |
5737 | HISILICON SAS Controller |
5738 | M: John Garry <john.garry@huawei.com> | |
5739 | W: http://www.hisilicon.com | |
5740 | S: Supported | |
5741 | F: drivers/scsi/hisi_sas/ | |
5742 | F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt | |
5743 | ||
ff1d2767 | 5744 | HOST AP DRIVER |
8b58be88 | 5745 | M: Jouni Malinen <j@w1.fi> |
724c6b35 | 5746 | L: linux-wireless@vger.kernel.org |
ffd74aca JM |
5747 | W: http://w1.fi/hostap-driver.html |
5748 | S: Obsolete | |
eb4f98d5 | 5749 | F: drivers/net/wireless/intersil/hostap/ |
ff1d2767 | 5750 | |
dd8cd779 | 5751 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 5752 | L: platform-driver-x86@vger.kernel.org |
95c70215 | 5753 | S: Orphan |
679655da | 5754 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 5755 | |
e2d1d6c0 | 5756 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 5757 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 5758 | S: Maintained |
7e25d724 | 5759 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 5760 | |
7d2c86b5 | 5761 | HPET: High Precision Event Timers driver |
8b58be88 | 5762 | M: Clemens Ladisch <clemens@ladisch.de> |
b9b0332f | 5763 | S: Maintained |
679655da JP |
5764 | F: Documentation/timers/hpet.txt |
5765 | F: drivers/char/hpet.c | |
5766 | F: include/linux/hpet.h | |
c117ab84 | 5767 | F: include/uapi/linux/hpet.h |
b9b0332f | 5768 | |
e07b5d79 | 5769 | HPET: x86 |
9e06f631 | 5770 | S: Orphan |
679655da JP |
5771 | F: arch/x86/kernel/hpet.c |
5772 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 5773 | |
1da177e4 | 5774 | HPFS FILESYSTEM |
8b58be88 | 5775 | M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> |
1da177e4 LT |
5776 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
5777 | S: Maintained | |
679655da | 5778 | F: fs/hpfs/ |
1da177e4 | 5779 | |
3441cded | 5780 | HSI SUBSYSTEM |
56459ea9 SR |
5781 | M: Sebastian Reichel <sre@kernel.org> |
5782 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git | |
3441cded SR |
5783 | S: Maintained |
5784 | F: Documentation/ABI/testing/sysfs-bus-hsi | |
70fc1f54 | 5785 | F: Documentation/device-drivers/serial-interfaces.rst |
3441cded SR |
5786 | F: drivers/hsi/ |
5787 | F: include/linux/hsi/ | |
5788 | F: include/uapi/linux/hsi/ | |
5789 | ||
7d2c86b5 | 5790 | HSO 3G MODEM DRIVER |
8b58be88 | 5791 | M: Jan Dumon <j.dumon@option.com> |
11cd29b0 DJB |
5792 | W: http://www.pharscape.org |
5793 | S: Maintained | |
679655da | 5794 | F: drivers/net/usb/hso.c |
11cd29b0 | 5795 | |
19990e29 AB |
5796 | HSR NETWORK PROTOCOL |
5797 | M: Arvid Brodin <arvid.brodin@alten.se> | |
5798 | L: netdev@vger.kernel.org | |
5799 | S: Maintained | |
5800 | F: net/hsr/ | |
5801 | ||
5a18c343 | 5802 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 5803 | M: Pau Oliva Fora <pof@eslack.org> |
5a18c343 POF |
5804 | L: linux-input@vger.kernel.org |
5805 | S: Maintained | |
679655da | 5806 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 5807 | |
1da177e4 | 5808 | HUGETLB FILESYSTEM |
6d49e352 | 5809 | M: Nadia Yvette Chambers <nyc@holomorphy.com> |
1da177e4 | 5810 | S: Maintained |
679655da | 5811 | F: fs/hugetlbfs/ |
1da177e4 | 5812 | |
fe713d60 JCT |
5813 | HVA ST MEDIA DRIVER |
5814 | M: Jean-Christophe Trotin <jean-christophe.trotin@st.com> | |
5815 | L: linux-media@vger.kernel.org | |
5816 | T: git git://linuxtv.org/media_tree.git | |
5817 | W: https://linuxtv.org | |
5818 | S: Supported | |
5819 | F: drivers/media/platform/sti/hva | |
5820 | ||
05183189 | 5821 | Hyper-V CORE AND DRIVERS |
9c3646d1 | 5822 | M: "K. Y. Srinivasan" <kys@microsoft.com> |
05183189 S |
5823 | M: Haiyang Zhang <haiyangz@microsoft.com> |
5824 | L: devel@linuxdriverproject.org | |
5825 | S: Maintained | |
a4162747 HZ |
5826 | F: arch/x86/include/asm/mshyperv.h |
5827 | F: arch/x86/include/uapi/asm/hyperv.h | |
5828 | F: arch/x86/kernel/cpu/mshyperv.c | |
05183189 | 5829 | F: drivers/hid/hid-hyperv.c |
a4162747 | 5830 | F: drivers/hv/ |
f92ca80b | 5831 | F: drivers/input/serio/hyperv-keyboard.c |
4daace0d | 5832 | F: drivers/pci/host/pci-hyperv.c |
05183189 | 5833 | F: drivers/net/hyperv/ |
a4162747 | 5834 | F: drivers/scsi/storvsc_drv.c |
8a61f013 | 5835 | F: drivers/video/fbdev/hyperv_fb.c |
a4162747 HZ |
5836 | F: include/linux/hyperv.h |
5837 | F: tools/hv/ | |
54bf725e | 5838 | F: Documentation/ABI/stable/sysfs-bus-vmbus |
05183189 | 5839 | |
7724fd04 PR |
5840 | I2C MUXES |
5841 | M: Peter Rosin <peda@axentia.se> | |
5842 | L: linux-i2c@vger.kernel.org | |
5843 | S: Maintained | |
2254d24a | 5844 | F: Documentation/i2c/i2c-topology |
7724fd04 PR |
5845 | F: Documentation/i2c/muxes/ |
5846 | F: Documentation/devicetree/bindings/i2c/i2c-mux* | |
e8813c15 | 5847 | F: Documentation/devicetree/bindings/i2c/i2c-arb* |
0ac8eb64 | 5848 | F: Documentation/devicetree/bindings/i2c/i2c-gate* |
7724fd04 PR |
5849 | F: drivers/i2c/i2c-mux.c |
5850 | F: drivers/i2c/muxes/ | |
5851 | F: include/linux/i2c-mux.h | |
5852 | ||
d85c8a6a | 5853 | I2C OVER PARALLEL PORT |
d8130624 | 5854 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
5855 | L: linux-i2c@vger.kernel.org |
5856 | S: Maintained | |
5857 | F: Documentation/i2c/busses/i2c-parport | |
5858 | F: Documentation/i2c/busses/i2c-parport-light | |
5859 | F: drivers/i2c/busses/i2c-parport.c | |
5860 | F: drivers/i2c/busses/i2c-parport-light.c | |
5861 | ||
5862 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
d8130624 | 5863 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
5864 | L: linux-i2c@vger.kernel.org |
5865 | S: Maintained | |
5866 | F: Documentation/i2c/busses/i2c-ali1535 | |
5867 | F: Documentation/i2c/busses/i2c-ali1563 | |
5868 | F: Documentation/i2c/busses/i2c-ali15x3 | |
5869 | F: Documentation/i2c/busses/i2c-amd756 | |
5870 | F: Documentation/i2c/busses/i2c-amd8111 | |
5871 | F: Documentation/i2c/busses/i2c-i801 | |
5872 | F: Documentation/i2c/busses/i2c-nforce2 | |
5873 | F: Documentation/i2c/busses/i2c-piix4 | |
5874 | F: Documentation/i2c/busses/i2c-sis5595 | |
5875 | F: Documentation/i2c/busses/i2c-sis630 | |
5876 | F: Documentation/i2c/busses/i2c-sis96x | |
5877 | F: Documentation/i2c/busses/i2c-via | |
5878 | F: Documentation/i2c/busses/i2c-viapro | |
5879 | F: drivers/i2c/busses/i2c-ali1535.c | |
5880 | F: drivers/i2c/busses/i2c-ali1563.c | |
5881 | F: drivers/i2c/busses/i2c-ali15x3.c | |
5882 | F: drivers/i2c/busses/i2c-amd756.c | |
5883 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
5884 | F: drivers/i2c/busses/i2c-amd8111.c | |
5885 | F: drivers/i2c/busses/i2c-i801.c | |
5886 | F: drivers/i2c/busses/i2c-isch.c | |
5887 | F: drivers/i2c/busses/i2c-nforce2.c | |
5888 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
5889 | F: drivers/i2c/busses/i2c-piix4.c | |
5890 | F: drivers/i2c/busses/i2c-sis5595.c | |
5891 | F: drivers/i2c/busses/i2c-sis630.c | |
5892 | F: drivers/i2c/busses/i2c-sis96x.c | |
5893 | F: drivers/i2c/busses/i2c-via.c | |
5894 | F: drivers/i2c/busses/i2c-viapro.c | |
5895 | ||
cb7f07a4 NH |
5896 | I2C/SMBUS ISMT DRIVER |
5897 | M: Seth Heasley <seth.heasley@intel.com> | |
5898 | M: Neil Horman <nhorman@tuxdriver.com> | |
5899 | L: linux-i2c@vger.kernel.org | |
5900 | F: drivers/i2c/busses/i2c-ismt.c | |
5901 | F: Documentation/i2c/busses/i2c-ismt | |
5902 | ||
6ea884db | 5903 | I2C/SMBUS STUB DRIVER |
d8130624 | 5904 | M: Jean Delvare <jdelvare@suse.com> |
846557d3 | 5905 | L: linux-i2c@vger.kernel.org |
6ea884db | 5906 | S: Maintained |
8547a5bc | 5907 | F: drivers/i2c/i2c-stub.c |
6ea884db | 5908 | |
5b543965 | 5909 | I2C SUBSYSTEM |
14d77c4d | 5910 | M: Wolfram Sang <wsa@the-dreams.de> |
846557d3 | 5911 | L: linux-i2c@vger.kernel.org |
9d4ea27a WS |
5912 | W: https://i2c.wiki.kernel.org/ |
5913 | Q: https://patchwork.ozlabs.org/project/linux-i2c/list/ | |
14d77c4d | 5914 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
1da177e4 | 5915 | S: Maintained |
40ed1b4c | 5916 | F: Documentation/devicetree/bindings/i2c/ |
679655da JP |
5917 | F: Documentation/i2c/ |
5918 | F: drivers/i2c/ | |
630bc46e | 5919 | F: drivers/i2c/*/ |
679655da | 5920 | F: include/linux/i2c.h |
03b70d62 | 5921 | F: include/linux/i2c-*.h |
c117ab84 CEB |
5922 | F: include/uapi/linux/i2c.h |
5923 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 5924 | |
4560d677 WS |
5925 | I2C ACPI SUPPORT |
5926 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
5927 | L: linux-i2c@vger.kernel.org | |
5928 | L: linux-acpi@vger.kernel.org | |
5929 | S: Maintained | |
4560d677 | 5930 | |
d85c8a6a | 5931 | I2C-TAOS-EVM DRIVER |
d8130624 | 5932 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
5933 | L: linux-i2c@vger.kernel.org |
5934 | S: Maintained | |
5935 | F: Documentation/i2c/busses/i2c-taos-evm | |
5936 | F: drivers/i2c/busses/i2c-taos-evm.c | |
5937 | ||
e8c76eed | 5938 | I2C-TINY-USB DRIVER |
8b58be88 | 5939 | M: Till Harbaum <till@harbaum.org> |
846557d3 | 5940 | L: linux-i2c@vger.kernel.org |
932d1872 | 5941 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 5942 | S: Maintained |
679655da | 5943 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 5944 | |
1da177e4 | 5945 | i386 BOOT CODE |
8b58be88 | 5946 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 5947 | S: Maintained |
679655da | 5948 | F: arch/x86/boot/ |
1da177e4 LT |
5949 | |
5950 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 5951 | M: "H. Peter Anvin" <hpa@zytor.com> |
54e5881d | 5952 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
5953 | S: Maintained |
5954 | ||
1da177e4 | 5955 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
5956 | M: Tony Luck <tony.luck@intel.com> |
5957 | M: Fenghua Yu <fenghua.yu@intel.com> | |
1da177e4 | 5958 | L: linux-ia64@vger.kernel.org |
6b1c70b1 | 5959 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 5960 | S: Maintained |
679655da | 5961 | F: arch/ia64/ |
1da177e4 | 5962 | |
4cd38750 LDSB |
5963 | IBM Power VMX Cryptographic instructions |
5964 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> | |
5cd01fe1 | 5965 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> |
4cd38750 LDSB |
5966 | L: linux-crypto@vger.kernel.org |
5967 | S: Supported | |
5968 | F: drivers/crypto/vmx/Makefile | |
5969 | F: drivers/crypto/vmx/Kconfig | |
5970 | F: drivers/crypto/vmx/vmx.c | |
5971 | F: drivers/crypto/vmx/aes* | |
5972 | F: drivers/crypto/vmx/ghash* | |
5973 | F: drivers/crypto/vmx/ppc-xlate.pl | |
5974 | ||
956c203c | 5975 | IBM Power in-Nest Crypto Acceleration |
4cd38750 | 5976 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> |
5cd01fe1 | 5977 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> |
956c203c KY |
5978 | L: linux-crypto@vger.kernel.org |
5979 | S: Supported | |
28bceeaa DS |
5980 | F: drivers/crypto/nx/Makefile |
5981 | F: drivers/crypto/nx/Kconfig | |
5982 | F: drivers/crypto/nx/nx-aes* | |
5983 | F: drivers/crypto/nx/nx-sha* | |
5984 | F: drivers/crypto/nx/nx.* | |
5985 | F: drivers/crypto/nx/nx_csbcpb.h | |
5986 | F: drivers/crypto/nx/nx_debugfs.h | |
956c203c | 5987 | |
0e16aafb | 5988 | IBM Power 842 compression accelerator |
41656aa7 | 5989 | M: Dan Streetman <ddstreet@ieee.org> |
0e16aafb | 5990 | S: Supported |
28bceeaa DS |
5991 | F: drivers/crypto/nx/Makefile |
5992 | F: drivers/crypto/nx/Kconfig | |
7011a122 | 5993 | F: drivers/crypto/nx/nx-842* |
2da572c9 | 5994 | F: include/linux/sw842.h |
2062c5b6 | 5995 | F: crypto/842.c |
2da572c9 | 5996 | F: lib/842/ |
0e16aafb | 5997 | |
1da177e4 | 5998 | IBM Power Linux RAID adapter |
8b58be88 | 5999 | M: Brian King <brking@us.ibm.com> |
1da177e4 | 6000 | S: Supported |
679655da | 6001 | F: drivers/scsi/ipr.* |
1da177e4 | 6002 | |
9d348af4 | 6003 | IBM Power Virtual Ethernet Device Driver |
eddd63a6 | 6004 | M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> |
9d348af4 SL |
6005 | L: netdev@vger.kernel.org |
6006 | S: Supported | |
9aa32835 | 6007 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 6008 | |
032c5e82 TF |
6009 | IBM Power SRIOV Virtual NIC Device Driver |
6010 | M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> | |
6011 | M: John Allen <jallen@linux.vnet.ibm.com> | |
6012 | L: netdev@vger.kernel.org | |
6013 | S: Supported | |
6014 | F: drivers/net/ethernet/ibm/ibmvnic.* | |
6015 | ||
e6babec6 | 6016 | IBM Power Virtual SCSI Device Drivers |
bcbde52b | 6017 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
4b7652cc RJ |
6018 | L: linux-scsi@vger.kernel.org |
6019 | S: Supported | |
e6babec6 | 6020 | F: drivers/scsi/ibmvscsi/ibmvscsi* |
88a678bb BL |
6021 | F: include/scsi/viosrp.h |
6022 | ||
6023 | IBM Power Virtual SCSI Device Target Driver | |
6024 | M: Bryant G. Ly <bryantly@linux.vnet.ibm.com> | |
6025 | M: Michael Cyr <mikecyr@linux.vnet.ibm.com> | |
6026 | L: linux-scsi@vger.kernel.org | |
6027 | L: target-devel@vger.kernel.org | |
6028 | S: Supported | |
6029 | F: drivers/scsi/ibmvscsi_tgt/ | |
e6babec6 NF |
6030 | |
6031 | IBM Power Virtual FC Device Drivers | |
44b4dad9 | 6032 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
e6babec6 NF |
6033 | L: linux-scsi@vger.kernel.org |
6034 | S: Supported | |
6035 | F: drivers/scsi/ibmvscsi/ibmvfc* | |
4b7652cc | 6036 | |
1da177e4 | 6037 | IBM ServeRAID RAID DRIVER |
f9213e78 | 6038 | S: Orphan |
679655da | 6039 | F: drivers/scsi/ips.* |
1da177e4 | 6040 | |
6ed9f9c4 PT |
6041 | ICH LPC AND GPIO DRIVER |
6042 | M: Peter Tyser <ptyser@xes-inc.com> | |
6043 | S: Maintained | |
6044 | F: drivers/mfd/lpc_ich.c | |
6045 | F: drivers/gpio/gpio-ich.c | |
6046 | ||
1e7106fc | 6047 | IDE SUBSYSTEM |
8b58be88 | 6048 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 6049 | L: linux-ide@vger.kernel.org |
8a6e2535 | 6050 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 6051 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 6052 | S: Maintained |
679655da JP |
6053 | F: Documentation/ide/ |
6054 | F: drivers/ide/ | |
6055 | F: include/linux/ide.h | |
1da177e4 | 6056 | |
6cb8c13d IP |
6057 | IDEAPAD LAPTOP EXTRAS DRIVER |
6058 | M: Ike Panhc <ike.pan@canonical.com> | |
6059 | L: platform-driver-x86@vger.kernel.org | |
6060 | W: http://launchpad.net/ideapad-laptop | |
6061 | S: Maintained | |
6062 | F: drivers/platform/x86/ideapad-laptop.c | |
6063 | ||
1ea4c161 AM |
6064 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
6065 | M: Andrey Moiseev <o2g.org.ru@gmail.com> | |
6066 | L: linux-input@vger.kernel.org | |
6067 | W: https://github.com/o2genum/ideapad-slidebar | |
6068 | S: Maintained | |
6069 | F: drivers/input/misc/ideapad_slidebar.c | |
6070 | ||
0f861e8c | 6071 | IDE/ATAPI DRIVERS |
487ba8e8 | 6072 | M: Borislav Petkov <bp@alien8.de> |
9c5b0ce4 | 6073 | L: linux-ide@vger.kernel.org |
c404c199 | 6074 | S: Maintained |
679655da JP |
6075 | F: Documentation/cdrom/ide-cd |
6076 | F: drivers/ide/ide-cd* | |
1da177e4 | 6077 | |
27471fdb | 6078 | IDLE-I7300 |
8b58be88 | 6079 | M: Andy Henroid <andrew.d.henroid@intel.com> |
bf1c138e | 6080 | L: linux-pm@vger.kernel.org |
27471fdb | 6081 | S: Supported |
679655da | 6082 | F: drivers/idle/i7300_idle.c |
27471fdb | 6083 | |
02cf2286 | 6084 | IEEE 802.15.4 SUBSYSTEM |
aff3eaa0 | 6085 | M: Alexander Aring <aar@pengutronix.de> |
ebef9c12 | 6086 | L: linux-wpan@vger.kernel.org |
aff3eaa0 AA |
6087 | W: http://wpan.cakelab.org/ |
6088 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git | |
6089 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
02cf2286 SL |
6090 | S: Maintained |
6091 | F: net/ieee802154/ | |
68653359 | 6092 | F: net/mac802154/ |
251741b1 | 6093 | F: drivers/net/ieee802154/ |
580947d3 AA |
6094 | F: include/linux/nl802154.h |
6095 | F: include/linux/ieee802154.h | |
6096 | F: include/net/nl802154.h | |
6097 | F: include/net/mac802154.h | |
6098 | F: include/net/af_ieee802154.h | |
6099 | F: include/net/cfg802154.h | |
6100 | F: include/net/ieee802154_netdev.h | |
ebef9c12 | 6101 | F: Documentation/networking/ieee802154.txt |
02cf2286 | 6102 | |
b1c97193 SY |
6103 | IGORPLUG-USB IR RECEIVER |
6104 | M: Sean Young <sean@mess.org> | |
6105 | L: linux-media@vger.kernel.org | |
6106 | S: Maintained | |
6107 | F: drivers/media/rc/igorplugusb.c | |
6108 | ||
40ad4a30 SY |
6109 | IGUANAWORKS USB IR TRANSCEIVER |
6110 | M: Sean Young <sean@mess.org> | |
6111 | L: linux-media@vger.kernel.org | |
6112 | S: Maintained | |
6113 | F: drivers/media/rc/iguanair.c | |
6114 | ||
9545f86e | 6115 | IIO SUBSYSTEM AND DRIVERS |
030a13d7 | 6116 | M: Jonathan Cameron <jic23@kernel.org> |
f0d61161 LPC |
6117 | R: Hartmut Knaack <knaack.h@gmx.de> |
6118 | R: Lars-Peter Clausen <lars@metafoo.de> | |
6fca5aa8 | 6119 | R: Peter Meerwald-Stadler <pmeerw@pmeerw.net> |
9545f86e | 6120 | L: linux-iio@vger.kernel.org |
21d41655 | 6121 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git |
9545f86e | 6122 | S: Maintained |
866b148a | 6123 | F: Documentation/devicetree/bindings/iio/ |
03e7c251 | 6124 | F: drivers/iio/ |
9545f86e | 6125 | F: drivers/staging/iio/ |
8fe671fc | 6126 | F: include/linux/iio/ |
817020cf | 6127 | F: tools/iio/ |
9545f86e | 6128 | |
65519263 SG |
6129 | IKANOS/ADI EAGLE ADSL USB DRIVER |
6130 | M: Matthieu Castet <castet.matthieu@free.fr> | |
6131 | M: Stanislaw Gruszka <stf_xl@wp.pl> | |
6132 | S: Maintained | |
6133 | F: drivers/usb/atm/ueagle-atm.c | |
6134 | ||
8ef3ff27 PB |
6135 | IMGTEC ASCII LCD DRIVER |
6136 | M: Paul Burton <paul.burton@imgtec.com> | |
6137 | S: Maintained | |
6138 | F: Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt | |
0cad855f | 6139 | F: drivers/auxdisplay/img-ascii-lcd.c |
8ef3ff27 | 6140 | |
e89ab51f GR |
6141 | INA209 HARDWARE MONITOR DRIVER |
6142 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 6143 | L: linux-hwmon@vger.kernel.org |
e89ab51f GR |
6144 | S: Maintained |
6145 | F: Documentation/hwmon/ina209 | |
6146 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
6147 | F: drivers/hwmon/ina209.c | |
6148 | ||
6149 | INA2XX HARDWARE MONITOR DRIVER | |
6150 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 6151 | L: linux-hwmon@vger.kernel.org |
e89ab51f GR |
6152 | S: Maintained |
6153 | F: Documentation/hwmon/ina2xx | |
6154 | F: drivers/hwmon/ina2xx.c | |
6155 | F: include/linux/platform_data/ina2xx.h | |
6156 | ||
14dc124f SIG |
6157 | INDUSTRY PACK SUBSYSTEM (IPACK) |
6158 | M: Samuel Iglesias Gonsalvez <siglesias@igalia.com> | |
6159 | M: Jens Taprogge <jens.taprogge@taprogge.org> | |
6160 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
6161 | L: industrypack-devel@lists.sourceforge.net | |
6162 | W: http://industrypack.sourceforge.net | |
6163 | S: Maintained | |
6164 | F: drivers/ipack/ | |
6165 | ||
8adc53fd ZLK |
6166 | INGENIC JZ4780 DMA Driver |
6167 | M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> | |
6168 | S: Maintained | |
6169 | F: drivers/dma/dma-jz4780.c | |
6170 | ||
87cf40e6 HH |
6171 | INGENIC JZ4780 NAND DRIVER |
6172 | M: Harvey Hunt <harveyhuntnexus@gmail.com> | |
6173 | L: linux-mtd@lists.infradead.org | |
6174 | S: Maintained | |
6175 | F: drivers/mtd/nand/jz4780_* | |
6176 | ||
aa7168f4 | 6177 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
74dd744f | 6178 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
bfd33c4b | 6179 | M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com> |
74dd744f MZ |
6180 | L: linux-ima-devel@lists.sourceforge.net |
6181 | L: linux-ima-user@lists.sourceforge.net | |
6182 | L: linux-security-module@vger.kernel.org | |
9f273c24 | 6183 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git |
aa7168f4 | 6184 | S: Supported |
679655da | 6185 | F: security/integrity/ima/ |
aa7168f4 | 6186 | |
9a4ea5a9 JH |
6187 | IMGTEC IR DECODER DRIVER |
6188 | M: James Hogan <james.hogan@imgtec.com> | |
6189 | S: Maintained | |
6190 | F: drivers/media/rc/img-ir/ | |
6191 | ||
1da177e4 | 6192 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 6193 | L: linux-fbdev@vger.kernel.org |
843393d3 | 6194 | S: Orphan |
8a61f013 | 6195 | F: drivers/video/fbdev/imsttfb.c |
1da177e4 LT |
6196 | |
6197 | INFINIBAND SUBSYSTEM | |
b6b2bbe6 | 6198 | M: Doug Ledford <dledford@redhat.com> |
8b58be88 JP |
6199 | M: Sean Hefty <sean.hefty@intel.com> |
6200 | M: Hal Rosenstock <hal.rosenstock@gmail.com> | |
e6cc0fd1 | 6201 | L: linux-rdma@vger.kernel.org |
605841f5 | 6202 | W: http://www.openfabrics.org/ |
8a6e2535 | 6203 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
2936ae04 | 6204 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git |
1da177e4 | 6205 | S: Supported |
679655da JP |
6206 | F: Documentation/infiniband/ |
6207 | F: drivers/infiniband/ | |
c117ab84 | 6208 | F: include/uapi/linux/if_infiniband.h |
954138dc YD |
6209 | F: include/uapi/rdma/ |
6210 | F: include/rdma/ | |
1da177e4 | 6211 | |
c9f04f58 | 6212 | INOTIFY |
8b58be88 JP |
6213 | M: John McCutchan <john@johnmccutchan.com> |
6214 | M: Robert Love <rlove@rlove.org> | |
6215 | M: Eric Paris <eparis@parisplace.org> | |
c9f04f58 | 6216 | S: Maintained |
679655da JP |
6217 | F: Documentation/filesystems/inotify.txt |
6218 | F: fs/notify/inotify/ | |
6219 | F: include/linux/inotify.h | |
c117ab84 | 6220 | F: include/uapi/linux/inotify.h |
c9f04f58 | 6221 | |
e2d1d6c0 | 6222 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 | 6223 | M: Dmitry Torokhov <dmitry.torokhov@gmail.com> |
e2d1d6c0 | 6224 | L: linux-input@vger.kernel.org |
8a6e2535 | 6225 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 6226 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 6227 | S: Maintained |
679655da | 6228 | F: drivers/input/ |
f4eea7e2 | 6229 | F: include/linux/input.h |
c117ab84 | 6230 | F: include/uapi/linux/input.h |
f4eea7e2 | 6231 | F: include/linux/input/ |
e52d8398 | 6232 | F: Documentation/devicetree/bindings/input/ |
e2d1d6c0 | 6233 | |
3267a87f | 6234 | INPUT MULTITOUCH (MT) PROTOCOL |
75dd112a | 6235 | M: Henrik Rydberg <rydberg@bitmath.org> |
3267a87f | 6236 | L: linux-input@vger.kernel.org |
75dd112a | 6237 | S: Odd fixes |
3267a87f | 6238 | F: Documentation/input/multi-touch-protocol.txt |
7f9c2454 | 6239 | F: drivers/input/input-mt.c |
3267a87f HR |
6240 | K: \b(ABS|SYN)_MT_ |
6241 | ||
97fa99a3 JY |
6242 | INTEL ASoC BDW/HSW DRIVERS |
6243 | M: Jie Yang <yang.jie@linux.intel.com> | |
e5747e40 | 6244 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
97fa99a3 | 6245 | S: Supported |
e8e1225d JP |
6246 | F: sound/soc/intel/common/sst-dsp* |
6247 | F: sound/soc/intel/common/sst-firmware.c | |
6248 | F: sound/soc/intel/boards/broadwell.c | |
6249 | F: sound/soc/intel/haswell/ | |
97fa99a3 | 6250 | |
4ac13e17 DJ |
6251 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
6252 | M: Intel SCU Linux support <intel-linux-scu@intel.com> | |
fdc5813f | 6253 | M: Artur Paszkiewicz <artur.paszkiewicz@intel.com> |
4ac13e17 | 6254 | L: linux-scsi@vger.kernel.org |
7106891a DJ |
6255 | T: git git://git.code.sf.net/p/intel-sas/isci |
6256 | S: Supported | |
4ac13e17 | 6257 | F: drivers/scsi/isci/ |
4ac13e17 | 6258 | |
ecc83e52 AH |
6259 | INTEL HID EVENT DRIVER |
6260 | M: Alex Hung <alex.hung@canonical.com> | |
6261 | L: platform-driver-x86@vger.kernel.org | |
6262 | S: Maintained | |
6263 | F: drivers/platform/x86/intel-hid.c | |
6264 | ||
332e0812 AK |
6265 | INTEL VIRTUAL BUTTON DRIVER |
6266 | M: AceLan Kao <acelan.kao@canonical.com> | |
6267 | L: platform-driver-x86@vger.kernel.org | |
6268 | S: Maintained | |
6269 | F: drivers/platform/x86/intel-vbtn.c | |
6270 | ||
26717172 LB |
6271 | INTEL IDLE DRIVER |
6272 | M: Len Brown <lenb@kernel.org> | |
bf1c138e | 6273 | L: linux-pm@vger.kernel.org |
08deed1e | 6274 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
26717172 LB |
6275 | S: Supported |
6276 | F: drivers/idle/intel_idle.c | |
6277 | ||
8fb861fa SP |
6278 | INTEL INTEGRATED SENSOR HUB DRIVER |
6279 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> | |
6280 | M: Jiri Kosina <jikos@kernel.org> | |
6281 | L: linux-input@vger.kernel.org | |
6282 | S: Maintained | |
6283 | F: drivers/hid/intel-ish-hid/ | |
6284 | ||
7c1ac18d | 6285 | INTEL PSTATE DRIVER |
58ac1f62 SP |
6286 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> |
6287 | M: Len Brown <lenb@kernel.org> | |
7c1ac18d KCA |
6288 | L: linux-pm@vger.kernel.org |
6289 | S: Supported | |
6290 | F: drivers/cpufreq/intel_pstate.c | |
6291 | ||
9eb8ef74 | 6292 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
d8e38754 | 6293 | M: Maik Broemme <mbroemme@libmpq.org> |
c69f677c | 6294 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 6295 | S: Maintained |
679655da | 6296 | F: Documentation/fb/intelfb.txt |
8a61f013 | 6297 | F: drivers/video/fbdev/intelfb/ |
9eb8ef74 | 6298 | |
1da177e4 | 6299 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 6300 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 6301 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 6302 | S: Maintained |
8a61f013 | 6303 | F: drivers/video/fbdev/i810/ |
1da177e4 | 6304 | |
f4a9bc4c | 6305 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 6306 | M: Sujith Thomas <sujith.thomas@intel.com> |
d0944853 | 6307 | L: platform-driver-x86@vger.kernel.org |
5ca92bd9 | 6308 | W: https://01.org/linux-acpi |
f4a9bc4c | 6309 | S: Supported |
679655da | 6310 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 6311 | |
248a9dc3 | 6312 | INTEL I/OAT DMA DRIVER |
18ebd564 | 6313 | M: Dave Jiang <dave.jiang@intel.com> |
08223d80 | 6314 | R: Dan Williams <dan.j.williams@intel.com> |
18ebd564 DJ |
6315 | L: dmaengine@vger.kernel.org |
6316 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
6317 | S: Supported | |
679655da | 6318 | F: drivers/dma/ioat* |
248a9dc3 | 6319 | |
6c8909b4 | 6320 | INTEL IOMMU (VT-d) |
8b58be88 | 6321 | M: David Woodhouse <dwmw2@infradead.org> |
6c8909b4 | 6322 | L: iommu@lists.linux-foundation.org |
54e5881d | 6323 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 6324 | S: Supported |
3fb39615 | 6325 | F: drivers/iommu/intel-iommu.c |
679655da | 6326 | F: include/linux/intel-iommu.h |
6c8909b4 | 6327 | |
b3e5f263 | 6328 | INTEL IOP-ADMA DMA DRIVER |
08223d80 | 6329 | R: Dan Williams <dan.j.williams@intel.com> |
1dd8372d | 6330 | S: Odd fixes |
679655da | 6331 | F: drivers/dma/iop-adma.c |
b3e5f263 | 6332 | |
9251ce95 | 6333 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
5529c2cd | 6334 | M: Krzysztof Halasa <khalasa@piap.pl> |
9251ce95 | 6335 | S: Maintained |
679655da JP |
6336 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
6337 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
6338 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
6339 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 6340 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 6341 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 6342 | |
844dd05f | 6343 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 6344 | M: Deepak Saxena <dsaxena@plexity.net> |
844dd05f | 6345 | S: Maintained |
679655da | 6346 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 6347 | |
2f302324 | 6348 | INTEL ETHERNET DRIVERS |
8b58be88 | 6349 | M: Jeff Kirsher <jeffrey.t.kirsher@intel.com> |
eff471b1 | 6350 | L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers) |
f6fde11a | 6351 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 6352 | W: http://e1000.sourceforge.net/ |
2f302324 JK |
6353 | Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/ |
6354 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git | |
6355 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git | |
1da177e4 | 6356 | S: Supported |
0d164401 JK |
6357 | F: Documentation/networking/e100.txt |
6358 | F: Documentation/networking/e1000.txt | |
6359 | F: Documentation/networking/e1000e.txt | |
6360 | F: Documentation/networking/igb.txt | |
6361 | F: Documentation/networking/igbvf.txt | |
6362 | F: Documentation/networking/ixgb.txt | |
6363 | F: Documentation/networking/ixgbe.txt | |
6364 | F: Documentation/networking/ixgbevf.txt | |
1bff6529 | 6365 | F: Documentation/networking/i40e.txt |
105bf2fe | 6366 | F: Documentation/networking/i40evf.txt |
dee1ad47 | 6367 | F: drivers/net/ethernet/intel/ |
bc90d291 | 6368 | F: drivers/net/ethernet/intel/*/ |
1da177e4 | 6369 | |
6e4de866 FL |
6370 | INTEL RDMA RNIC DRIVER |
6371 | M: Faisal Latif <faisal.latif@intel.com> | |
6372 | R: Chien Tin Tung <chien.tin.tung@intel.com> | |
6373 | R: Mustafa Ismail <mustafa.ismail@intel.com> | |
6374 | R: Shiraz Saleem <shiraz.saleem@intel.com> | |
6375 | R: Tatyana Nikolova <tatyana.e.nikolova@intel.com> | |
6376 | L: linux-rdma@vger.kernel.org | |
6377 | S: Supported | |
6378 | F: drivers/infiniband/hw/i40iw/ | |
6379 | ||
224f9e6d AS |
6380 | INTEL MERRIFIELD GPIO DRIVER |
6381 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> | |
6382 | L: linux-gpio@vger.kernel.org | |
6383 | S: Maintained | |
6384 | F: drivers/gpio/gpio-merrifield.c | |
6385 | ||
0963d59b LW |
6386 | INTEL-MID GPIO DRIVER |
6387 | M: David Cohen <david.a.cohen@linux.intel.com> | |
6388 | L: linux-gpio@vger.kernel.org | |
6389 | S: Maintained | |
6390 | F: drivers/gpio/gpio-intel-mid.c | |
6391 | ||
ca907a90 SY |
6392 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
6393 | M: Stanislav Yakovlev <stas.yakovlev@gmail.com> | |
724c6b35 | 6394 | L: linux-wireless@vger.kernel.org |
ca907a90 | 6395 | S: Maintained |
679655da | 6396 | F: Documentation/networking/README.ipw2100 |
679655da | 6397 | F: Documentation/networking/README.ipw2200 |
367a1092 | 6398 | F: drivers/net/wireless/intel/ipw2x00/ |
826d2abe | 6399 | |
5760b0a5 AS |
6400 | INTEL(R) TRACE HUB |
6401 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> | |
6402 | S: Supported | |
6403 | F: Documentation/trace/intel_th.txt | |
6404 | F: drivers/hwtracing/intel_th/ | |
6405 | ||
4bd96a7a | 6406 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
74b18e17 | 6407 | M: Ning Sun <ning.sun@intel.com> |
4bd96a7a SW |
6408 | L: tboot-devel@lists.sourceforge.net |
6409 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 6410 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
6411 | S: Supported |
6412 | F: Documentation/intel_txt.txt | |
6413 | F: include/linux/tboot.h | |
6414 | F: arch/x86/kernel/tboot.c | |
6415 | ||
8a70da82 | 6416 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 6417 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 6418 | M: linux-wimax@intel.com |
49e7d9df | 6419 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
6420 | S: Supported |
6421 | W: http://linuxwimax.org | |
679655da JP |
6422 | F: Documentation/wimax/README.i2400m |
6423 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 6424 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 6425 | |
1c0ce89c SG |
6426 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
6427 | M: Stanislaw Gruszka <sgruszka@redhat.com> | |
efa3144e | 6428 | L: linux-wireless@vger.kernel.org |
1c0ce89c | 6429 | S: Supported |
7ac9a364 | 6430 | F: drivers/net/wireless/intel/iwlegacy/ |
efa3144e | 6431 | |
b481de9c | 6432 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 6433 | M: Johannes Berg <johannes.berg@intel.com> |
6161b02b | 6434 | M: Emmanuel Grumbach <emmanuel.grumbach@intel.com> |
af5e964f | 6435 | M: Luca Coelho <luciano.coelho@intel.com> |
7b9aebf0 | 6436 | M: Intel Linux Wireless <linuxwifi@intel.com> |
b481de9c | 6437 | L: linux-wireless@vger.kernel.org |
b481de9c | 6438 | W: http://intellinuxwireless.org |
b62ff718 | 6439 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 6440 | S: Supported |
e705c121 | 6441 | F: drivers/net/wireless/intel/iwlwifi/ |
b481de9c | 6442 | |
de8fe023 TW |
6443 | INTEL MANAGEMENT ENGINE (mei) |
6444 | M: Tomas Winkler <tomas.winkler@intel.com> | |
6445 | L: linux-kernel@vger.kernel.org | |
6446 | S: Supported | |
c117ab84 | 6447 | F: include/uapi/linux/mei.h |
5069288b | 6448 | F: include/linux/mei_cl_bus.h |
de8fe023 | 6449 | F: drivers/misc/mei/* |
222818c3 | 6450 | F: drivers/watchdog/mei_wdt.c |
e07950a1 | 6451 | F: Documentation/misc-devices/mei/* |
986b891a | 6452 | F: samples/mei/* |
de8fe023 | 6453 | |
50ceb98b SD |
6454 | INTEL MIC DRIVERS (mic) |
6455 | M: Sudeep Dutt <sudeep.dutt@intel.com> | |
6456 | M: Ashutosh Dixit <ashutosh.dixit@intel.com> | |
6457 | S: Supported | |
6458 | W: https://github.com/sudeepdutt/mic | |
6459 | W: http://software.intel.com/en-us/mic-developer | |
6460 | F: include/linux/mic_bus.h | |
6461 | F: include/linux/scif.h | |
6462 | F: include/uapi/linux/mic_common.h | |
6463 | F: include/uapi/linux/mic_ioctl.h | |
9f273c24 | 6464 | F: include/uapi/linux/scif_ioctl.h |
50ceb98b SD |
6465 | F: drivers/misc/mic/ |
6466 | F: drivers/dma/mic_x100_dma.c | |
6467 | F: drivers/dma/mic_x100_dma.h | |
9f273c24 | 6468 | F: Documentation/mic/ |
50ceb98b | 6469 | |
fdca4f16 | 6470 | INTEL PMC/P-Unit IPC DRIVER |
0a8b8353 | 6471 | M: Zha Qipeng<qipeng.zha@intel.com> |
6472 | L: platform-driver-x86@vger.kernel.org | |
6473 | S: Maintained | |
6474 | F: drivers/platform/x86/intel_pmc_ipc.c | |
fdca4f16 | 6475 | F: drivers/platform/x86/intel_punit_ipc.c |
0a8b8353 | 6476 | F: arch/x86/include/asm/intel_pmc_ipc.h |
fdca4f16 | 6477 | F: arch/x86/include/asm/intel_punit_ipc.h |
0a8b8353 | 6478 | |
378f956e SKC |
6479 | INTEL TELEMETRY DRIVER |
6480 | M: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com> | |
6481 | L: platform-driver-x86@vger.kernel.org | |
6482 | S: Maintained | |
378f956e | 6483 | F: arch/x86/include/asm/intel_telemetry.h |
f1fc3cd8 | 6484 | F: drivers/platform/x86/intel_telemetry* |
0a8b8353 | 6485 | |
b740d2e9 RB |
6486 | INTEL PMC CORE DRIVER |
6487 | M: Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com> | |
6488 | M: Vishwanath Somayaji <vishwanath.somayaji@intel.com> | |
6489 | L: platform-driver-x86@vger.kernel.org | |
6490 | S: Maintained | |
6491 | F: arch/x86/include/asm/pmc_core.h | |
6492 | F: drivers/platform/x86/intel_pmc_core* | |
6493 | ||
cb109a0e | 6494 | IOC3 ETHERNET DRIVER |
8b58be88 | 6495 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 LT |
6496 | L: linux-mips@linux-mips.org |
6497 | S: Maintained | |
8862bf1e | 6498 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 6499 | |
cb109a0e | 6500 | IOC3 SERIAL DRIVER |
8b58be88 | 6501 | M: Pat Gefre <pfg@sgi.com> |
d39e0721 | 6502 | L: linux-serial@vger.kernel.org |
cb109a0e | 6503 | S: Maintained |
df621252 | 6504 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 6505 | |
0b6e8569 SW |
6506 | IOMMU DRIVERS |
6507 | M: Joerg Roedel <joro@8bytes.org> | |
6508 | L: iommu@lists.linux-foundation.org | |
6509 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git | |
6510 | S: Maintained | |
efcd94c0 | 6511 | F: Documentation/devicetree/bindings/iommu/ |
0b6e8569 SW |
6512 | F: drivers/iommu/ |
6513 | ||
4480f15b | 6514 | IP MASQUERADING |
8b58be88 | 6515 | M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar> |
1da177e4 | 6516 | S: Maintained |
679655da | 6517 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 6518 | |
4409ebe9 | 6519 | IPMI SUBSYSTEM |
8b58be88 | 6520 | M: Corey Minyard <minyard@acm.org> |
b0c90653 | 6521 | L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers) |
4409ebe9 CM |
6522 | W: http://openipmi.sourceforge.net/ |
6523 | S: Supported | |
679655da JP |
6524 | F: Documentation/IPMI.txt |
6525 | F: drivers/char/ipmi/ | |
6526 | F: include/linux/ipmi* | |
c117ab84 | 6527 | F: include/uapi/linux/ipmi* |
4409ebe9 | 6528 | |
2d800897 KW |
6529 | QCOM AUDIO (ASoC) DRIVERS |
6530 | M: Patrick Lai <plai@codeaurora.org> | |
6531 | M: Banajit Goswami <bgoswami@codeaurora.org> | |
6532 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
6533 | S: Supported | |
6534 | F: sound/soc/qcom/ | |
6535 | ||
e2d1d6c0 | 6536 | IPS SCSI RAID DRIVER |
8b58be88 | 6537 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
6538 | L: linux-scsi@vger.kernel.org |
6539 | W: http://www.adaptec.com/ | |
6540 | S: Maintained | |
679655da | 6541 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
6542 | |
6543 | IPVS | |
8b58be88 JP |
6544 | M: Wensong Zhang <wensong@linux-vs.org> |
6545 | M: Simon Horman <horms@verge.net.au> | |
6546 | M: Julian Anastasov <ja@ssi.bg> | |
979b6c13 | 6547 | L: netdev@vger.kernel.org |
e2d1d6c0 | 6548 | L: lvs-devel@vger.kernel.org |
1da177e4 | 6549 | S: Maintained |
9f273c24 FW |
6550 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git |
6551 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git | |
679655da | 6552 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 6553 | F: include/net/ip_vs.h |
c117ab84 | 6554 | F: include/uapi/linux/ip_vs.h |
679655da | 6555 | F: net/netfilter/ipvs/ |
1da177e4 | 6556 | |
e7839f25 | 6557 | IPWIRELESS DRIVER |
e5f6450c | 6558 | M: Jiri Kosina <jikos@kernel.org> |
d8130624 | 6559 | M: David Sterba <dsterba@suse.com> |
92094aa0 | 6560 | S: Odd Fixes |
282361a0 | 6561 | F: drivers/tty/ipwireless/ |
099dc4fb | 6562 | |
e2d1d6c0 | 6563 | IPX NETWORK LAYER |
8b58be88 | 6564 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 RD |
6565 | L: netdev@vger.kernel.org |
6566 | S: Maintained | |
679655da | 6567 | F: include/net/ipx.h |
c117ab84 | 6568 | F: include/uapi/linux/ipx.h |
679655da | 6569 | F: net/ipx/ |
e2d1d6c0 | 6570 | |
1da177e4 | 6571 | IRDA SUBSYSTEM |
8b58be88 | 6572 | M: Samuel Ortiz <samuel@sortiz.org> |
a2ac953d | 6573 | L: irda-users@lists.sourceforge.net (subscribers-only) |
ced649ea | 6574 | L: netdev@vger.kernel.org |
1da177e4 | 6575 | W: http://irda.sourceforge.net/ |
f353976d | 6576 | S: Maintained |
e0057975 | 6577 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
6578 | F: Documentation/networking/irda.txt |
6579 | F: drivers/net/irda/ | |
6580 | F: include/net/irda/ | |
6581 | F: net/irda/ | |
1da177e4 | 6582 | |
a800c7cc TG |
6583 | IRQ SUBSYSTEM |
6584 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 6585 | L: linux-kernel@vger.kernel.org |
a800c7cc | 6586 | S: Maintained |
75fc2d37 | 6587 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc | 6588 | F: kernel/irq/ |
2ed9fd28 JC |
6589 | |
6590 | IRQCHIP DRIVERS | |
6591 | M: Thomas Gleixner <tglx@linutronix.de> | |
6592 | M: Jason Cooper <jason@lakedaemon.net> | |
54d9ffc4 | 6593 | M: Marc Zyngier <marc.zyngier@arm.com> |
2ed9fd28 JC |
6594 | L: linux-kernel@vger.kernel.org |
6595 | S: Maintained | |
6596 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core | |
6597 | T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core | |
5b5a9069 | 6598 | F: Documentation/devicetree/bindings/interrupt-controller/ |
edd96900 | 6599 | F: drivers/irqchip/ |
a800c7cc | 6600 | |
7ab3a837 | 6601 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
b09dec2c | 6602 | M: Marc Zyngier <marc.zyngier@arm.com> |
7ab3a837 | 6603 | S: Maintained |
b09dec2c | 6604 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
7ab3a837 GL |
6605 | F: Documentation/IRQ-domain.txt |
6606 | F: include/linux/irqdomain.h | |
6607 | F: kernel/irq/irqdomain.c | |
b09dec2c | 6608 | F: kernel/irq/msi.c |
7ab3a837 | 6609 | |
ad7afc38 WBG |
6610 | ISA |
6611 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
6612 | S: Maintained | |
6613 | F: Documentation/isa.txt | |
6614 | F: drivers/base/isa.c | |
6615 | F: include/linux/isa.h | |
6616 | ||
e2d1d6c0 | 6617 | ISAPNP |
8b58be88 | 6618 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 6619 | S: Maintained |
679655da JP |
6620 | F: Documentation/isapnp.txt |
6621 | F: drivers/pnp/isapnp/ | |
6622 | F: include/linux/isapnp.h | |
e2d1d6c0 | 6623 | |
d39b8420 HV |
6624 | ISA RADIO MODULE |
6625 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
6626 | L: linux-media@vger.kernel.org | |
6627 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 6628 | W: https://linuxtv.org |
d39b8420 HV |
6629 | S: Maintained |
6630 | F: drivers/media/radio/radio-isa* | |
6631 | ||
71a6d0af HW |
6632 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
6633 | M: Peter Jones <pjones@redhat.com> | |
6634 | M: Konrad Rzeszutek Wilk <konrad@kernel.org> | |
6635 | S: Maintained | |
6636 | F: drivers/firmware/iscsi_ibft* | |
6637 | ||
14816b1e | 6638 | ISCSI |
623290a2 LD |
6639 | M: Lee Duncan <lduncan@suse.com> |
6640 | M: Chris Leech <cleech@redhat.com> | |
14816b1e | 6641 | L: open-iscsi@googlegroups.com |
623290a2 | 6642 | W: www.open-iscsi.com |
14816b1e | 6643 | S: Maintained |
679655da JP |
6644 | F: drivers/scsi/*iscsi* |
6645 | F: include/scsi/*iscsi* | |
14816b1e | 6646 | |
1e65eb42 OG |
6647 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
6648 | M: Or Gerlitz <ogerlitz@mellanox.com> | |
e7d2c25d | 6649 | M: Sagi Grimberg <sagi@grimberg.me> |
1e65eb42 OG |
6650 | M: Roi Dayan <roid@mellanox.com> |
6651 | L: linux-rdma@vger.kernel.org | |
6652 | S: Supported | |
6653 | W: http://www.openfabrics.org | |
6654 | W: www.open-iscsi.org | |
6655 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
14430813 | 6656 | F: drivers/infiniband/ulp/iser/ |
1e65eb42 | 6657 | |
2b70e5fd | 6658 | ISCSI EXTENSIONS FOR RDMA (ISER) TARGET |
e7d2c25d | 6659 | M: Sagi Grimberg <sagi@grimberg.me> |
2b70e5fd SG |
6660 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
6661 | L: linux-rdma@vger.kernel.org | |
6662 | L: target-devel@vger.kernel.org | |
6663 | S: Supported | |
6664 | W: http://www.linux-iscsi.org | |
6665 | F: drivers/infiniband/ulp/isert | |
6666 | ||
1da177e4 | 6667 | ISDN SUBSYSTEM |
8b58be88 | 6668 | M: Karsten Keil <isdn@linux-pingi.de> |
d5d52273 | 6669 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
3da0ae62 | 6670 | L: netdev@vger.kernel.org |
1da177e4 | 6671 | W: http://www.isdn4linux.de |
54e5881d | 6672 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 6673 | S: Maintained |
679655da JP |
6674 | F: Documentation/isdn/ |
6675 | F: drivers/isdn/ | |
6676 | F: include/linux/isdn.h | |
6677 | F: include/linux/isdn/ | |
c117ab84 CEB |
6678 | F: include/uapi/linux/isdn.h |
6679 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
6680 | |
6681 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 6682 | M: Armin Schindler <mac@melware.de> |
d5d52273 | 6683 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
1da177e4 LT |
6684 | W: http://www.melware.de |
6685 | S: Maintained | |
679655da | 6686 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 6687 | |
d624870f | 6688 | IT87 HARDWARE MONITORING DRIVER |
d8130624 | 6689 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 6690 | L: linux-hwmon@vger.kernel.org |
d624870f JD |
6691 | S: Maintained |
6692 | F: Documentation/hwmon/it87 | |
6693 | F: drivers/hwmon/it87.c | |
6694 | ||
d7104bff AP |
6695 | IT913X MEDIA DRIVER |
6696 | M: Antti Palosaari <crope@iki.fi> | |
6697 | L: linux-media@vger.kernel.org | |
a825eaec | 6698 | W: https://linuxtv.org |
d7104bff AP |
6699 | W: http://palosaari.fi/linux/ |
6700 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6701 | T: git git://linuxtv.org/anttip/media_tree.git | |
6702 | S: Maintained | |
249c697e | 6703 | F: drivers/media/tuners/it913x* |
d7104bff | 6704 | |
91821ff3 | 6705 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 6706 | M: Andy Walls <awalls@md.metrocast.net> |
7b212edf | 6707 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
661263b5 | 6708 | L: linux-media@vger.kernel.org |
275ffde4 | 6709 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
6710 | W: http://www.ivtvdriver.org |
6711 | S: Maintained | |
618cd932 | 6712 | F: Documentation/media/v4l-drivers/ivtv* |
90d72ac6 | 6713 | F: drivers/media/pci/ivtv/ |
c117ab84 | 6714 | F: include/uapi/linux/ivtv* |
91821ff3 | 6715 | |
68620bdd MP |
6716 | IX2505V MEDIA DRIVER |
6717 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
6718 | L: linux-media@vger.kernel.org | |
a825eaec | 6719 | W: https://linuxtv.org |
68620bdd MP |
6720 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
6721 | S: Maintained | |
6722 | F: drivers/media/dvb-frontends/ix2505v* | |
6723 | ||
4453d736 GR |
6724 | JC42.4 TEMPERATURE SENSOR DRIVER |
6725 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 6726 | L: linux-hwmon@vger.kernel.org |
4453d736 GR |
6727 | S: Maintained |
6728 | F: drivers/hwmon/jc42.c | |
6729 | F: Documentation/hwmon/jc42 | |
6730 | ||
e2d1d6c0 | 6731 | JFS FILESYSTEM |
3256f80f | 6732 | M: Dave Kleikamp <shaggy@kernel.org> |
e2d1d6c0 RD |
6733 | L: jfs-discussion@lists.sourceforge.net |
6734 | W: http://jfs.sourceforge.net/ | |
54e5881d | 6735 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 6736 | S: Maintained |
679655da JP |
6737 | F: Documentation/filesystems/jfs.txt |
6738 | F: fs/jfs/ | |
e2d1d6c0 | 6739 | |
95252236 | 6740 | JME NETWORK DRIVER |
8b58be88 | 6741 | M: Guo-Fu Tseng <cooldavid@cooldavid.org> |
95252236 GFT |
6742 | L: netdev@vger.kernel.org |
6743 | S: Maintained | |
63d24a0e | 6744 | F: drivers/net/ethernet/jme.* |
95252236 | 6745 | |
1da177e4 | 6746 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 6747 | M: David Woodhouse <dwmw2@infradead.org> |
6d85d066 DW |
6748 | L: linux-mtd@lists.infradead.org |
6749 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 6750 | S: Maintained |
679655da | 6751 | F: fs/jffs2/ |
c117ab84 | 6752 | F: include/uapi/linux/jffs2.h |
1da177e4 | 6753 | |
d183e11a TT |
6754 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) |
6755 | M: "Theodore Ts'o" <tytso@mit.edu> | |
c290ea01 | 6756 | M: Jan Kara <jack@suse.com> |
d183e11a TT |
6757 | L: linux-ext4@vger.kernel.org |
6758 | S: Maintained | |
6759 | F: fs/jbd2/ | |
6760 | F: include/linux/jbd2.h | |
ae0718f8 | 6761 | |
207dab5f MU |
6762 | JPU V4L2 MEM2MEM DRIVER FOR RENESAS |
6763 | M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com> | |
6764 | L: linux-media@vger.kernel.org | |
6765 | S: Maintained | |
6766 | F: drivers/media/platform/rcar_jpu.c | |
6767 | ||
fd8b6cb4 | 6768 | JSM Neo PCI based serial card |
df247081 | 6769 | M: Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com> |
fd8b6cb4 BL |
6770 | L: linux-serial@vger.kernel.org |
6771 | S: Maintained | |
df621252 | 6772 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 6773 | |
af39917d CL |
6774 | K10TEMP HARDWARE MONITORING DRIVER |
6775 | M: Clemens Ladisch <clemens@ladisch.de> | |
968ce1b1 | 6776 | L: linux-hwmon@vger.kernel.org |
af39917d CL |
6777 | S: Maintained |
6778 | F: Documentation/hwmon/k10temp | |
6779 | F: drivers/hwmon/k10temp.c | |
6780 | ||
4660cb35 | 6781 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 6782 | M: Rudolf Marek <r.marek@assembler.cz> |
968ce1b1 | 6783 | L: linux-hwmon@vger.kernel.org |
ae0718f8 | 6784 | S: Maintained |
679655da JP |
6785 | F: Documentation/hwmon/k8temp |
6786 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 6787 | |
0ba1d91d AR |
6788 | KASAN |
6789 | M: Andrey Ryabinin <aryabinin@virtuozzo.com> | |
6790 | R: Alexander Potapenko <glider@google.com> | |
6791 | R: Dmitry Vyukov <dvyukov@google.com> | |
6792 | L: kasan-dev@googlegroups.com | |
6793 | S: Maintained | |
6794 | F: arch/*/include/asm/kasan.h | |
6795 | F: arch/*/mm/kasan_init* | |
2757aafa | 6796 | F: Documentation/dev-tools/kasan.rst |
64f8ebaf | 6797 | F: include/linux/kasan*.h |
0ba1d91d AR |
6798 | F: lib/test_kasan.c |
6799 | F: mm/kasan/ | |
6800 | F: scripts/Makefile.kasan | |
6801 | ||
1da177e4 | 6802 | KCONFIG |
5eb1f99e | 6803 | M: "Yann E. MORIN" <yann.morin.1998@free.fr> |
347d12d7 | 6804 | L: linux-kbuild@vger.kernel.org |
cea8321c | 6805 | T: git git://gitorious.org/linux-kconfig/linux-kconfig |
5eb1f99e | 6806 | S: Maintained |
679655da JP |
6807 | F: Documentation/kbuild/kconfig-language.txt |
6808 | F: scripts/kconfig/ | |
1da177e4 | 6809 | |
ea6c2089 | 6810 | KDUMP |
f871f191 VG |
6811 | M: Dave Young <dyoung@redhat.com> |
6812 | M: Baoquan He <bhe@redhat.com> | |
6813 | R: Vivek Goyal <vgoyal@redhat.com> | |
34633993 | 6814 | L: kexec@lists.infradead.org |
ea6c2089 VG |
6815 | W: http://lse.sourceforge.net/kdump/ |
6816 | S: Maintained | |
80811493 | 6817 | F: Documentation/kdump/ |
ea6c2089 | 6818 | |
f41bf02f HV |
6819 | KEENE FM RADIO TRANSMITTER DRIVER |
6820 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
6821 | L: linux-media@vger.kernel.org | |
6822 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 6823 | W: https://linuxtv.org |
f41bf02f HV |
6824 | S: Maintained |
6825 | F: drivers/media/radio/radio-keene* | |
6826 | ||
1da177e4 | 6827 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 6828 | M: Ian Kent <raven@themaw.net> |
f694fc97 | 6829 | L: autofs@vger.kernel.org |
1da177e4 | 6830 | S: Maintained |
679655da | 6831 | F: fs/autofs4/ |
1da177e4 | 6832 | |
70fb7ba6 | 6833 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
d8130624 | 6834 | M: Michal Marek <mmarek@suse.com> |
08deed1e JP |
6835 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
6836 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 6837 | L: linux-kbuild@vger.kernel.org |
5ce45962 | 6838 | S: Maintained |
679655da JP |
6839 | F: Documentation/kbuild/ |
6840 | F: Makefile | |
6841 | F: scripts/Makefile.* | |
70fb7ba6 MM |
6842 | F: scripts/basic/ |
6843 | F: scripts/mk* | |
6844 | F: scripts/package/ | |
1da177e4 LT |
6845 | |
6846 | KERNEL JANITORS | |
c3000e03 | 6847 | L: kernel-janitors@vger.kernel.org |
10466f5a | 6848 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 6849 | S: Odd Fixes |
1da177e4 | 6850 | |
e8b43555 | 6851 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 6852 | M: "J. Bruce Fields" <bfields@fieldses.org> |
883985f6 | 6853 | M: Jeff Layton <jlayton@poochiereds.net> |
16141c02 | 6854 | L: linux-nfs@vger.kernel.org |
1da177e4 | 6855 | W: http://nfs.sourceforge.net/ |
9f273c24 | 6856 | T: git git://linux-nfs.org/~bfields/linux.git |
98fac23f | 6857 | S: Supported |
679655da | 6858 | F: fs/nfsd/ |
c117ab84 | 6859 | F: include/uapi/linux/nfsd/ |
679655da JP |
6860 | F: fs/lockd/ |
6861 | F: fs/nfs_common/ | |
6862 | F: net/sunrpc/ | |
6863 | F: include/linux/lockd/ | |
6864 | F: include/linux/sunrpc/ | |
c117ab84 | 6865 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 6866 | |
13b122b3 SK |
6867 | KERNEL SELFTEST FRAMEWORK |
6868 | M: Shuah Khan <shuahkh@osg.samsung.com> | |
90effdcd | 6869 | M: Shuah Khan <shuah@kernel.org> |
64f00850 | 6870 | L: linux-kselftest@vger.kernel.org |
13b122b3 SK |
6871 | T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest |
6872 | S: Maintained | |
6873 | F: tools/testing/selftests | |
6874 | ||
426d62e2 | 6875 | KERNEL VIRTUAL MACHINE (KVM) |
c93a64fe | 6876 | M: Paolo Bonzini <pbonzini@redhat.com> |
3d8e15dd | 6877 | M: Radim Krčmář <rkrcmar@redhat.com> |
1fc9d2bf | 6878 | L: kvm@vger.kernel.org |
e3e58478 | 6879 | W: http://www.linux-kvm.org |
a94b40a6 | 6880 | T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git |
426d62e2 | 6881 | S: Supported |
c93a64fe PB |
6882 | F: Documentation/*/kvm*.txt |
6883 | F: Documentation/virtual/kvm/ | |
679655da | 6884 | F: arch/*/kvm/ |
1662e862 CB |
6885 | F: arch/x86/kernel/kvm.c |
6886 | F: arch/x86/kernel/kvmclock.c | |
679655da JP |
6887 | F: arch/*/include/asm/kvm* |
6888 | F: include/linux/kvm* | |
c117ab84 | 6889 | F: include/uapi/linux/kvm* |
679655da | 6890 | F: virt/kvm/ |
6d0a1a61 | 6891 | F: tools/kvm/ |
426d62e2 | 6892 | |
ad8003d3 | 6893 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 6894 | M: Joerg Roedel <joro@8bytes.org> |
1fc9d2bf | 6895 | L: kvm@vger.kernel.org |
038161de | 6896 | W: http://www.linux-kvm.org/ |
7de609c8 | 6897 | S: Maintained |
679655da | 6898 | F: arch/x86/include/asm/svm.h |
679655da | 6899 | F: arch/x86/kvm/svm.c |
426d62e2 | 6900 | |
513014b7 | 6901 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
d8130624 | 6902 | M: Alexander Graf <agraf@suse.com> |
1fc9d2bf | 6903 | L: kvm-ppc@vger.kernel.org |
038161de | 6904 | W: http://www.linux-kvm.org/ |
6a7f972d | 6905 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 6906 | S: Supported |
679655da JP |
6907 | F: arch/powerpc/include/asm/kvm* |
6908 | F: arch/powerpc/kvm/ | |
513014b7 | 6909 | |
85f8fffe | 6910 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 6911 | M: Christian Borntraeger <borntraeger@de.ibm.com> |
4ae57b6c | 6912 | M: Cornelia Huck <cornelia.huck@de.ibm.com> |
85f8fffe CB |
6913 | L: linux-s390@vger.kernel.org |
6914 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
9f273c24 | 6915 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git |
85f8fffe | 6916 | S: Supported |
679655da JP |
6917 | F: Documentation/s390/kvm.txt |
6918 | F: arch/s390/include/asm/kvm* | |
80811493 | 6919 | F: arch/s390/kvm/ |
85f8fffe | 6920 | |
a749474d | 6921 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
0f4ca79e | 6922 | M: Christoffer Dall <christoffer.dall@linaro.org> |
5c8818b4 MZ |
6923 | M: Marc Zyngier <marc.zyngier@arm.com> |
6924 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
a749474d CD |
6925 | L: kvmarm@lists.cs.columbia.edu |
6926 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
1b1ebe82 | 6927 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git |
0f4ca79e | 6928 | S: Supported |
a749474d CD |
6929 | F: arch/arm/include/uapi/asm/kvm* |
6930 | F: arch/arm/include/asm/kvm* | |
6931 | F: arch/arm/kvm/ | |
5c8818b4 MZ |
6932 | F: virt/kvm/arm/ |
6933 | F: include/kvm/arm_* | |
a749474d | 6934 | |
6394a3ec | 6935 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
5c8818b4 | 6936 | M: Christoffer Dall <christoffer.dall@linaro.org> |
6394a3ec MZ |
6937 | M: Marc Zyngier <marc.zyngier@arm.com> |
6938 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6939 | L: kvmarm@lists.cs.columbia.edu | |
6940 | S: Maintained | |
6941 | F: arch/arm64/include/uapi/asm/kvm* | |
6942 | F: arch/arm64/include/asm/kvm* | |
6943 | F: arch/arm64/kvm/ | |
6944 | ||
bfd3d532 JH |
6945 | KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips) |
6946 | M: James Hogan <james.hogan@imgtec.com> | |
6947 | L: linux-mips@linux-mips.org | |
6948 | S: Supported | |
6949 | F: arch/mips/include/uapi/asm/kvm* | |
6950 | F: arch/mips/include/asm/kvm* | |
6951 | F: arch/mips/kvm/ | |
6952 | ||
dc009d92 | 6953 | KEXEC |
8b58be88 | 6954 | M: Eric Biederman <ebiederm@xmission.com> |
2f327dad | 6955 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 6956 | L: kexec@lists.infradead.org |
dc009d92 | 6957 | S: Maintained |
679655da | 6958 | F: include/linux/kexec.h |
c117ab84 | 6959 | F: include/uapi/linux/kexec.h |
10540a69 | 6960 | F: kernel/kexec* |
dc009d92 | 6961 | |
e971461f DH |
6962 | KEYS/KEYRINGS: |
6963 | M: David Howells <dhowells@redhat.com> | |
aa62efff | 6964 | L: keyrings@vger.kernel.org |
e971461f | 6965 | S: Maintained |
d410fa4e | 6966 | F: Documentation/security/keys.txt |
e971461f DH |
6967 | F: include/linux/key.h |
6968 | F: include/linux/key-type.h | |
75aeddd1 DH |
6969 | F: include/linux/keyctl.h |
6970 | F: include/uapi/linux/keyctl.h | |
e971461f DH |
6971 | F: include/keys/ |
6972 | F: security/keys/ | |
6973 | ||
7f3c68be | 6974 | KEYS-TRUSTED |
74dd744f MZ |
6975 | M: David Safford <safford@us.ibm.com> |
6976 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> | |
7f3c68be | 6977 | L: linux-security-module@vger.kernel.org |
aa62efff | 6978 | L: keyrings@vger.kernel.org |
7f3c68be | 6979 | S: Supported |
d410fa4e | 6980 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
6981 | F: include/keys/trusted-type.h |
6982 | F: security/keys/trusted.c | |
6983 | F: security/keys/trusted.h | |
6984 | ||
6985 | KEYS-ENCRYPTED | |
74dd744f MZ |
6986 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
6987 | M: David Safford <safford@us.ibm.com> | |
7f3c68be | 6988 | L: linux-security-module@vger.kernel.org |
aa62efff | 6989 | L: keyrings@vger.kernel.org |
7f3c68be | 6990 | S: Supported |
d410fa4e | 6991 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 6992 | F: include/keys/encrypted-type.h |
19c90aa6 | 6993 | F: security/keys/encrypted-keys/ |
7f3c68be | 6994 | |
5b778dad | 6995 | KGDB / KDB /debug_core |
8b58be88 | 6996 | M: Jason Wessel <jason.wessel@windriver.com> |
4063eb5f | 6997 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 | 6998 | L: kgdb-bugreport@lists.sourceforge.net |
9f273c24 | 6999 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git |
e3e2aaf7 | 7000 | S: Maintained |
679655da JP |
7001 | F: Documentation/DocBook/kgdb.tmpl |
7002 | F: drivers/misc/kgdbts.c | |
df621252 | 7003 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 7004 | F: include/linux/kdb.h |
679655da | 7005 | F: include/linux/kgdb.h |
4063eb5f | 7006 | F: kernel/debug/ |
e3e2aaf7 | 7007 | |
456db8cc | 7008 | KMEMCHECK |
8b58be88 | 7009 | M: Vegard Nossum <vegardno@ifi.uio.no> |
2ed1c525 | 7010 | M: Pekka Enberg <penberg@kernel.org> |
b9ce08c0 | 7011 | S: Maintained |
9c296b46 | 7012 | F: Documentation/dev-tools/kmemcheck.rst |
410d7a97 JP |
7013 | F: arch/x86/include/asm/kmemcheck.h |
7014 | F: arch/x86/mm/kmemcheck/ | |
7015 | F: include/linux/kmemcheck.h | |
7016 | F: mm/kmemcheck.c | |
b9ce08c0 | 7017 | |
c3bb4d24 | 7018 | KMEMLEAK |
8b58be88 | 7019 | M: Catalin Marinas <catalin.marinas@arm.com> |
c3bb4d24 | 7020 | S: Maintained |
ca90a7a3 | 7021 | F: Documentation/dev-tools/kmemleak.rst |
c3bb4d24 CM |
7022 | F: include/linux/kmemleak.h |
7023 | F: mm/kmemleak.c | |
7024 | F: mm/kmemleak-test.c | |
7025 | ||
89559a61 | 7026 | KPROBES |
a320817c | 7027 | M: Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com> |
8b58be88 JP |
7028 | M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> |
7029 | M: "David S. Miller" <davem@davemloft.net> | |
353def94 | 7030 | M: Masami Hiramatsu <mhiramat@kernel.org> |
89559a61 | 7031 | S: Maintained |
679655da JP |
7032 | F: Documentation/kprobes.txt |
7033 | F: include/linux/kprobes.h | |
7034 | F: kernel/kprobes.c | |
89559a61 | 7035 | |
70e84049 | 7036 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 7037 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
7038 | W: http://miguelojeda.es/auxdisplay.htm |
7039 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 7040 | S: Maintained |
679655da JP |
7041 | F: Documentation/auxdisplay/ks0108 |
7042 | F: drivers/auxdisplay/ks0108.c | |
7043 | F: include/linux/ks0108.h | |
70e84049 | 7044 | |
1b69c6d0 DA |
7045 | L3MDEV |
7046 | M: David Ahern <dsa@cumulusnetworks.com> | |
7047 | L: netdev@vger.kernel.org | |
7048 | S: Maintained | |
7049 | F: net/l3mdev | |
7050 | F: include/net/l3mdev.h | |
7051 | ||
9ca44355 | 7052 | LANTIQ MIPS ARCHITECTURE |
bdb40e8e | 7053 | M: John Crispin <john@phrozen.org> |
9ca44355 JC |
7054 | L: linux-mips@linux-mips.org |
7055 | S: Maintained | |
7056 | F: arch/mips/lantiq | |
7057 | ||
1da177e4 | 7058 | LAPB module |
1da177e4 | 7059 | L: linux-x25@vger.kernel.org |
bf9915cc | 7060 | S: Orphan |
679655da JP |
7061 | F: Documentation/networking/lapb-module.txt |
7062 | F: include/*/lapb.h | |
7063 | F: net/lapb/ | |
1da177e4 LT |
7064 | |
7065 | LASI 53c700 driver for PARISC | |
8b58be88 | 7066 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
7067 | L: linux-scsi@vger.kernel.org |
7068 | S: Maintained | |
679655da JP |
7069 | F: Documentation/scsi/53c700.txt |
7070 | F: drivers/scsi/53c700* | |
1da177e4 | 7071 | |
263de9b5 | 7072 | LED SUBSYSTEM |
8b58be88 | 7073 | M: Richard Purdie <rpurdie@rpsys.net> |
48b945a1 | 7074 | M: Jacek Anaszewski <j.anaszewski@samsung.com> |
aa69cb8c | 7075 | L: linux-leds@vger.kernel.org |
b8926ba0 | 7076 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git |
263de9b5 | 7077 | S: Maintained |
85c90368 | 7078 | F: Documentation/devicetree/bindings/leds/ |
679655da JP |
7079 | F: drivers/leds/ |
7080 | F: include/linux/leds.h | |
263de9b5 | 7081 | |
b0461a44 | 7082 | LEGACY EEPROM DRIVER |
d8130624 | 7083 | M: Jean Delvare <jdelvare@suse.com> |
b0461a44 JD |
7084 | S: Maintained |
7085 | F: Documentation/misc-devices/eeprom | |
7086 | F: drivers/misc/eeprom/eeprom.c | |
7087 | ||
1da177e4 | 7088 | LEGO USB Tower driver |
8b58be88 | 7089 | M: Juergen Stuber <starblue@users.sourceforge.net> |
1da177e4 LT |
7090 | L: legousb-devel@lists.sourceforge.net |
7091 | W: http://legousb.sourceforge.net/ | |
7092 | S: Maintained | |
679655da | 7093 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 7094 | |
055616a8 MK |
7095 | LG2160 MEDIA DRIVER |
7096 | M: Michael Krufky <mkrufky@linuxtv.org> | |
7097 | L: linux-media@vger.kernel.org | |
a825eaec | 7098 | W: https://linuxtv.org |
055616a8 MK |
7099 | W: http://github.com/mkrufky |
7100 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7101 | T: git git://linuxtv.org/mkrufky/tuners.git | |
7102 | S: Maintained | |
7103 | F: drivers/media/dvb-frontends/lg2160.* | |
7104 | ||
6f0e7725 MK |
7105 | LGDT3305 MEDIA DRIVER |
7106 | M: Michael Krufky <mkrufky@linuxtv.org> | |
7107 | L: linux-media@vger.kernel.org | |
a825eaec | 7108 | W: https://linuxtv.org |
6f0e7725 MK |
7109 | W: http://github.com/mkrufky |
7110 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7111 | T: git git://linuxtv.org/mkrufky/tuners.git | |
7112 | S: Maintained | |
7113 | F: drivers/media/dvb-frontends/lgdt3305.* | |
7114 | ||
568a17ff | 7115 | LGUEST |
8b58be88 | 7116 | M: Rusty Russell <rusty@rustcorp.com.au> |
a4724ed6 | 7117 | L: lguest@lists.ozlabs.org |
568a17ff | 7118 | W: http://lguest.ozlabs.org/ |
72e91863 | 7119 | S: Odd Fixes |
070f420b | 7120 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
7121 | F: arch/x86/lguest/ |
7122 | F: drivers/lguest/ | |
7123 | F: include/linux/lguest*.h | |
070f420b | 7124 | F: tools/lguest/ |
568a17ff | 7125 | |
32ac7cb2 TH |
7126 | LIBATA SUBSYSTEM (Serial and Parallel ATA drivers) |
7127 | M: Tejun Heo <tj@kernel.org> | |
7128 | L: linux-ide@vger.kernel.org | |
7129 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
7130 | S: Maintained | |
7131 | F: drivers/ata/ | |
7132 | F: include/linux/ata.h | |
7133 | F: include/linux/libata.h | |
d2abf98e | 7134 | F: Documentation/devicetree/bindings/ata/ |
32ac7cb2 TH |
7135 | |
7136 | LIBATA PATA ARASAN COMPACT FLASH CONTROLLER | |
da89947b | 7137 | M: Viresh Kumar <vireshk@kernel.org> |
32ac7cb2 TH |
7138 | L: linux-ide@vger.kernel.org |
7139 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
7140 | S: Maintained | |
7141 | F: include/linux/pata_arasan_cf_data.h | |
7142 | F: drivers/ata/pata_arasan_cf.c | |
7143 | ||
c7fa056c BZ |
7144 | LIBATA PATA DRIVERS |
7145 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
7146 | M: Tejun Heo <tj@kernel.org> | |
7147 | L: linux-ide@vger.kernel.org | |
7148 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
7149 | S: Maintained | |
7150 | F: drivers/ata/pata_*.c | |
7151 | F: drivers/ata/ata_generic.c | |
7152 | ||
32ac7cb2 TH |
7153 | LIBATA SATA AHCI PLATFORM devices support |
7154 | M: Hans de Goede <hdegoede@redhat.com> | |
7155 | M: Tejun Heo <tj@kernel.org> | |
7156 | L: linux-ide@vger.kernel.org | |
7157 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
7158 | S: Maintained | |
7159 | F: drivers/ata/ahci_platform.c | |
7160 | F: drivers/ata/libahci_platform.c | |
7161 | F: include/linux/ahci_platform.h | |
7162 | ||
7163 | LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER | |
7164 | M: Mikael Pettersson <mikpelinux@gmail.com> | |
7165 | L: linux-ide@vger.kernel.org | |
7166 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
7167 | S: Maintained | |
7168 | F: drivers/ata/sata_promise.* | |
7169 | ||
1acd437c SL |
7170 | LIBLOCKDEP |
7171 | M: Sasha Levin <sasha.levin@oracle.com> | |
7172 | S: Maintained | |
7173 | F: tools/lib/lockdep/ | |
7174 | ||
bc30196f DW |
7175 | LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM |
7176 | M: Dan Williams <dan.j.williams@intel.com> | |
7177 | L: linux-nvdimm@lists.01.org | |
7178 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
9f273c24 | 7179 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git |
bc30196f DW |
7180 | S: Supported |
7181 | F: drivers/nvdimm/* | |
7182 | F: include/linux/nd.h | |
7183 | F: include/linux/libnvdimm.h | |
7184 | F: include/uapi/linux/ndctl.h | |
7185 | ||
7186 | LIBNVDIMM BLK: MMIO-APERTURE DRIVER | |
7187 | M: Ross Zwisler <ross.zwisler@linux.intel.com> | |
7188 | L: linux-nvdimm@lists.01.org | |
7189 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
7190 | S: Supported | |
7191 | F: drivers/nvdimm/blk.c | |
7192 | F: drivers/nvdimm/region_devs.c | |
7193 | F: drivers/acpi/nfit* | |
7194 | ||
7195 | LIBNVDIMM BTT: BLOCK TRANSLATION TABLE | |
7196 | M: Vishal Verma <vishal.l.verma@intel.com> | |
7197 | L: linux-nvdimm@lists.01.org | |
7198 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
7199 | S: Supported | |
7200 | F: drivers/nvdimm/btt* | |
7201 | ||
7202 | LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER | |
7203 | M: Ross Zwisler <ross.zwisler@linux.intel.com> | |
7204 | L: linux-nvdimm@lists.01.org | |
7205 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
7206 | S: Supported | |
7207 | F: drivers/nvdimm/pmem.c | |
b864bc17 | 7208 | F: include/linux/pmem.h |
40603526 | 7209 | F: arch/*/include/asm/pmem.h |
bc30196f | 7210 | |
cd9e9808 MB |
7211 | LIGHTNVM PLATFORM SUPPORT |
7212 | M: Matias Bjorling <mb@lightnvm.io> | |
7213 | W: http://github/OpenChannelSSD | |
4ead1a25 | 7214 | L: linux-block@vger.kernel.org |
cd9e9808 MB |
7215 | S: Maintained |
7216 | F: drivers/lightnvm/ | |
7217 | F: include/linux/lightnvm.h | |
7218 | F: include/uapi/linux/lightnvm.h | |
7219 | ||
852bb9f5 | 7220 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
7221 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
7222 | M: Paul Mackerras <paulus@samba.org> | |
ea668936 | 7223 | M: Michael Ellerman <mpe@ellerman.id.au> |
ad654f25 | 7224 | W: https://github.com/linuxppc/linux/wiki |
a4724ed6 | 7225 | L: linuxppc-dev@lists.ozlabs.org |
8a6e2535 | 7226 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
9958084a | 7227 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git |
1da177e4 | 7228 | S: Supported |
11c34c7d JP |
7229 | F: Documentation/powerpc/ |
7230 | F: arch/powerpc/ | |
ef69b03d ME |
7231 | F: drivers/char/tpm/tpm_ibmvtpm* |
7232 | F: drivers/crypto/nx/ | |
7233 | F: drivers/crypto/vmx/ | |
7234 | F: drivers/net/ethernet/ibm/ibmveth.* | |
7235 | F: drivers/net/ethernet/ibm/ibmvnic.* | |
66725152 | 7236 | F: drivers/pci/hotplug/pnv_php.c |
ef69b03d ME |
7237 | F: drivers/pci/hotplug/rpa* |
7238 | F: drivers/scsi/ibmvscsi/ | |
ad654f25 | 7239 | F: tools/testing/selftests/powerpc |
ef69b03d ME |
7240 | N: opal |
7241 | N: /pmac | |
7242 | N: powermac | |
7243 | N: powernv | |
7244 | N: [^a-z0-9]ps3 | |
7245 | N: pseries | |
1da177e4 LT |
7246 | |
7247 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 7248 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
1da177e4 | 7249 | W: http://www.penguinppc.org/ |
a4724ed6 | 7250 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 7251 | S: Maintained |
11c34c7d JP |
7252 | F: arch/powerpc/platforms/powermac/ |
7253 | F: drivers/macintosh/ | |
1da177e4 | 7254 | |
77a76369 | 7255 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 7256 | M: Anatolij Gustschin <agust@denx.de> |
a4724ed6 | 7257 | L: linuxppc-dev@lists.ozlabs.org |
cba5b1c6 | 7258 | T: git git://git.denx.de/linux-denx-agust.git |
1da177e4 | 7259 | S: Maintained |
11c34c7d JP |
7260 | F: arch/powerpc/platforms/512x/ |
7261 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
7262 | |
7263 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
49e7d9df | 7264 | M: Alistair Popple <alistair@popple.id.au> |
8b58be88 | 7265 | M: Matt Porter <mporter@kernel.crashing.org> |
1da177e4 | 7266 | W: http://www.penguinppc.org/ |
a4724ed6 | 7267 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 7268 | S: Maintained |
11c34c7d JP |
7269 | F: arch/powerpc/platforms/40x/ |
7270 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 7271 | |
260c02a9 | 7272 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
a4724ed6 | 7273 | L: linuxppc-dev@lists.ozlabs.org |
cdeb8994 | 7274 | S: Orphan |
11c34c7d JP |
7275 | F: arch/powerpc/*/*virtex* |
7276 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 7277 | |
e93adf1e | 7278 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 | 7279 | M: Vitaly Bordug <vitb@kernel.crashing.org> |
e93adf1e | 7280 | W: http://www.penguinppc.org/ |
a4724ed6 | 7281 | L: linuxppc-dev@lists.ozlabs.org |
e93adf1e | 7282 | S: Maintained |
a2b1f7c8 | 7283 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 7284 | |
1da177e4 | 7285 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
44451d4d | 7286 | M: Scott Wood <oss@buserror.net> |
8b58be88 | 7287 | M: Kumar Gala <galak@kernel.crashing.org> |
ce00f85c | 7288 | W: http://www.penguinppc.org/ |
a4724ed6 | 7289 | L: linuxppc-dev@lists.ozlabs.org |
a1e0fb42 | 7290 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git |
ce00f85c | 7291 | S: Maintained |
11c34c7d | 7292 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 7293 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 7294 | |
ab06ff3a | 7295 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
a4724ed6 | 7296 | L: linuxppc-dev@lists.ozlabs.org |
56a5b8da | 7297 | S: Orphan |
11c34c7d JP |
7298 | F: arch/powerpc/platforms/pasemi/ |
7299 | F: drivers/*/*pasemi* | |
7300 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 7301 | |
1da177e4 | 7302 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 7303 | M: Chris Wright <chrisw@sous-sol.org> |
1a4520be | 7304 | L: linux-security-module@vger.kernel.org |
1da177e4 LT |
7305 | S: Supported |
7306 | ||
a23ce6da HW |
7307 | LIS3LV02D ACCELEROMETER DRIVER |
7308 | M: Eric Piel <eric.piel@tremplin-utc.net> | |
7309 | S: Maintained | |
ff606677 JD |
7310 | F: Documentation/misc-devices/lis3lv02d |
7311 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 7312 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 7313 | |
b700e7f0 SJ |
7314 | LIVE PATCHING |
7315 | M: Josh Poimboeuf <jpoimboe@redhat.com> | |
06e1c170 | 7316 | M: Jessica Yu <jeyu@redhat.com> |
e5f6450c | 7317 | M: Jiri Kosina <jikos@kernel.org> |
06e1c170 JP |
7318 | M: Miroslav Benes <mbenes@suse.cz> |
7319 | R: Petr Mladek <pmladek@suse.com> | |
b700e7f0 SJ |
7320 | S: Maintained |
7321 | F: kernel/livepatch/ | |
7322 | F: include/linux/livepatch.h | |
7323 | F: arch/x86/include/asm/livepatch.h | |
7324 | F: arch/x86/kernel/livepatch.c | |
5e4e3844 | 7325 | F: Documentation/livepatch/ |
b700e7f0 | 7326 | F: Documentation/ABI/testing/sysfs-kernel-livepatch |
13d1cf7e | 7327 | F: samples/livepatch/ |
b700e7f0 | 7328 | L: live-patching@vger.kernel.org |
74d50da3 | 7329 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git |
b700e7f0 | 7330 | |
ea861d73 KC |
7331 | LINUX KERNEL DUMP TEST MODULE (LKDTM) |
7332 | M: Kees Cook <keescook@chromium.org> | |
7333 | S: Maintained | |
426f3a53 | 7334 | F: drivers/misc/lkdtm* |
ea861d73 | 7335 | |
e2d1d6c0 | 7336 | LLC (802.2) |
8b58be88 | 7337 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 | 7338 | S: Maintained |
679655da | 7339 | F: include/linux/llc.h |
c117ab84 | 7340 | F: include/uapi/linux/llc.h |
679655da JP |
7341 | F: include/net/llc* |
7342 | F: net/llc/ | |
e2d1d6c0 | 7343 | |
4e233cbe AD |
7344 | LM73 HARDWARE MONITOR DRIVER |
7345 | M: Guillaume Ligneul <guillaume.ligneul@gmail.com> | |
968ce1b1 | 7346 | L: linux-hwmon@vger.kernel.org |
4e233cbe AD |
7347 | S: Maintained |
7348 | F: drivers/hwmon/lm73.c | |
7349 | ||
156e2d1a | 7350 | LM78 HARDWARE MONITOR DRIVER |
d8130624 | 7351 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 7352 | L: linux-hwmon@vger.kernel.org |
156e2d1a JD |
7353 | S: Maintained |
7354 | F: Documentation/hwmon/lm78 | |
7355 | F: drivers/hwmon/lm78.c | |
7356 | ||
1da177e4 | 7357 | LM83 HARDWARE MONITOR DRIVER |
d8130624 | 7358 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 7359 | L: linux-hwmon@vger.kernel.org |
1da177e4 | 7360 | S: Maintained |
679655da JP |
7361 | F: Documentation/hwmon/lm83 |
7362 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
7363 | |
7364 | LM90 HARDWARE MONITOR DRIVER | |
d8130624 | 7365 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 7366 | L: linux-hwmon@vger.kernel.org |
1da177e4 | 7367 | S: Maintained |
679655da | 7368 | F: Documentation/hwmon/lm90 |
aae7bce4 | 7369 | F: Documentation/devicetree/bindings/hwmon/lm90.txt |
679655da | 7370 | F: drivers/hwmon/lm90.c |
1da177e4 | 7371 | |
917cc4e6 GR |
7372 | LM95234 HARDWARE MONITOR DRIVER |
7373 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7374 | L: linux-hwmon@vger.kernel.org |
917cc4e6 GR |
7375 | S: Maintained |
7376 | F: Documentation/hwmon/lm95234 | |
7377 | F: drivers/hwmon/lm95234.c | |
7378 | ||
68620bdd MP |
7379 | LME2510 MEDIA DRIVER |
7380 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
7381 | L: linux-media@vger.kernel.org | |
a825eaec | 7382 | W: https://linuxtv.org |
68620bdd MP |
7383 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
7384 | S: Maintained | |
7385 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
7386 | ||
d4c3be70 | 7387 | LOCKING PRIMITIVES |
8b58be88 JP |
7388 | M: Peter Zijlstra <peterz@infradead.org> |
7389 | M: Ingo Molnar <mingo@redhat.com> | |
981c3a4f | 7390 | L: linux-kernel@vger.kernel.org |
d4c3be70 | 7391 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core |
512e67f9 | 7392 | S: Maintained |
d4c3be70 | 7393 | F: Documentation/locking/ |
679655da | 7394 | F: include/linux/lockdep.h |
d4c3be70 IM |
7395 | F: include/linux/spinlock*.h |
7396 | F: arch/*/include/asm/spinlock*.h | |
7397 | F: include/linux/rwlock*.h | |
7398 | F: include/linux/mutex*.h | |
7399 | F: arch/*/include/asm/mutex*.h | |
7400 | F: include/linux/rwsem*.h | |
7401 | F: arch/*/include/asm/rwsem.h | |
7402 | F: include/linux/seqlock.h | |
7403 | F: lib/locking*.[ch] | |
7486d6da | 7404 | F: kernel/locking/ |
512e67f9 | 7405 | |
dde33348 | 7406 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 7407 | M: "Richard Russon (FlatCap)" <ldm@flatcap.org> |
dde33348 AA |
7408 | L: linux-ntfs-dev@lists.sourceforge.net |
7409 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 7410 | S: Maintained |
679655da | 7411 | F: Documentation/ldm.txt |
20d16fef | 7412 | F: block/partitions/ldm.* |
1da177e4 | 7413 | |
ef6ada3d JE |
7414 | LogFS |
7415 | M: Joern Engel <joern@logfs.org> | |
756ccb3c | 7416 | M: Prasad Joshi <prasadjoshi.linux@gmail.com> |
ef6ada3d JE |
7417 | L: logfs@logfs.org |
7418 | W: logfs.org | |
7419 | S: Maintained | |
7420 | F: fs/logfs/ | |
7421 | ||
c87e34ef | 7422 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
9495e835 SS |
7423 | M: Sathya Prakash <sathya.prakash@broadcom.com> |
7424 | M: Chaitra P B <chaitra.basappa@broadcom.com> | |
7425 | M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com> | |
7426 | L: MPT-FusionLinux.pdl@broadcom.com | |
c87e34ef | 7427 | L: linux-scsi@vger.kernel.org |
9495e835 | 7428 | W: http://www.avagotech.com/support/ |
c87e34ef | 7429 | S: Supported |
679655da | 7430 | F: drivers/message/fusion/ |
500c152a | 7431 | F: drivers/scsi/mpt2sas/ |
7432 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 7433 | |
1da177e4 | 7434 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 7435 | M: Matthew Wilcox <matthew@wil.cx> |
1da177e4 LT |
7436 | L: linux-scsi@vger.kernel.org |
7437 | S: Maintained | |
679655da | 7438 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 7439 | |
e5f5c99a GR |
7440 | LTC4261 HARDWARE MONITOR DRIVER |
7441 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7442 | L: linux-hwmon@vger.kernel.org |
e5f5c99a GR |
7443 | S: Maintained |
7444 | F: Documentation/hwmon/ltc4261 | |
7445 | F: drivers/hwmon/ltc4261.c | |
7446 | ||
81365c31 | 7447 | LTP (Linux Test Project) |
28b8e8d4 | 7448 | M: Mike Frysinger <vapier@gentoo.org> |
7d1ae8a8 | 7449 | M: Cyril Hrubis <chrubis@suse.cz> |
0526109a | 7450 | M: Wanlong Gao <wanlong.gao@gmail.com> |
f2eb7f6f CH |
7451 | M: Jan Stancek <jstancek@redhat.com> |
7452 | M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com> | |
7453 | M: Alexey Kodanev <alexey.kodanev@oracle.com> | |
0526109a | 7454 | L: ltp@lists.linux.it (subscribers-only) |
f2eb7f6f | 7455 | W: http://linux-test-project.github.io/ |
7d1ae8a8 | 7456 | T: git git://github.com/linux-test-project/ltp.git |
81365c31 MF |
7457 | S: Maintained |
7458 | ||
c12a54b3 | 7459 | M32R ARCHITECTURE |
c12a54b3 | 7460 | W: http://www.linux-m32r.org/ |
b4174867 | 7461 | S: Orphan |
679655da | 7462 | F: arch/m32r/ |
c12a54b3 | 7463 | |
1da177e4 | 7464 | M68K ARCHITECTURE |
8b58be88 | 7465 | M: Geert Uytterhoeven <geert@linux-m68k.org> |
1da177e4 LT |
7466 | L: linux-m68k@lists.linux-m68k.org |
7467 | W: http://www.linux-m68k.org/ | |
54e5881d | 7468 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 7469 | S: Maintained |
679655da | 7470 | F: arch/m68k/ |
9db35182 | 7471 | F: drivers/zorro/ |
1da177e4 LT |
7472 | |
7473 | M68K ON APPLE MACINTOSH | |
8b58be88 | 7474 | M: Joshua Thompson <funaho@jurai.org> |
1da177e4 | 7475 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 7476 | L: linux-m68k@lists.linux-m68k.org |
1da177e4 | 7477 | S: Maintained |
9db35182 | 7478 | F: arch/m68k/mac/ |
1da177e4 LT |
7479 | |
7480 | M68K ON HP9000/300 | |
8b58be88 | 7481 | M: Philip Blundell <philb@gnu.org> |
1da177e4 LT |
7482 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
7483 | S: Maintained | |
679655da | 7484 | F: arch/m68k/hp300/ |
1da177e4 | 7485 | |
74425546 AP |
7486 | M88DS3103 MEDIA DRIVER |
7487 | M: Antti Palosaari <crope@iki.fi> | |
7488 | L: linux-media@vger.kernel.org | |
a825eaec | 7489 | W: https://linuxtv.org |
74425546 AP |
7490 | W: http://palosaari.fi/linux/ |
7491 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7492 | T: git git://linuxtv.org/anttip/media_tree.git | |
7493 | S: Maintained | |
7494 | F: drivers/media/dvb-frontends/m88ds3103* | |
7495 | ||
68620bdd MP |
7496 | M88RS2000 MEDIA DRIVER |
7497 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
7498 | L: linux-media@vger.kernel.org | |
a825eaec | 7499 | W: https://linuxtv.org |
68620bdd MP |
7500 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
7501 | S: Maintained | |
7502 | F: drivers/media/dvb-frontends/m88rs2000* | |
7503 | ||
07a092fa | 7504 | MA901 MASTERKIT USB FM RADIO DRIVER |
b75f0050 JP |
7505 | M: Alexey Klimov <klimov.linux@gmail.com> |
7506 | L: linux-media@vger.kernel.org | |
7507 | T: git git://linuxtv.org/media_tree.git | |
7508 | S: Maintained | |
7509 | F: drivers/media/radio/radio-ma901.c | |
07a092fa | 7510 | |
64a327a7 | 7511 | MAC80211 |
8b58be88 | 7512 | M: Johannes Berg <johannes@sipsolutions.net> |
64a327a7 | 7513 | L: linux-wireless@vger.kernel.org |
491b26b4 | 7514 | W: http://wireless.kernel.org/ |
ce466579 JB |
7515 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
7516 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 7517 | S: Maintained |
679655da JP |
7518 | F: Documentation/networking/mac80211-injection.txt |
7519 | F: include/net/mac80211.h | |
7520 | F: net/mac80211/ | |
2af8c4dc | 7521 | F: drivers/net/wireless/mac80211_hwsim.[ch] |
64a327a7 | 7522 | |
b863ceb7 | 7523 | MACVLAN DRIVER |
8b58be88 | 7524 | M: Patrick McHardy <kaber@trash.net> |
b863ceb7 PM |
7525 | L: netdev@vger.kernel.org |
7526 | S: Maintained | |
679655da JP |
7527 | F: drivers/net/macvlan.c |
7528 | F: include/linux/if_macvlan.h | |
b863ceb7 | 7529 | |
2b6d83e2 JB |
7530 | MAILBOX API |
7531 | M: Jassi Brar <jassisinghbrar@gmail.com> | |
7532 | L: linux-kernel@vger.kernel.org | |
7533 | S: Maintained | |
7534 | F: drivers/mailbox/ | |
7535 | F: include/linux/mailbox_client.h | |
7536 | F: include/linux/mailbox_controller.h | |
7537 | ||
faf1668c | 7538 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 7539 | M: Michael Kerrisk <mtk.manpages@gmail.com> |
795fb7e7 | 7540 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 7541 | L: linux-man@vger.kernel.org |
1b53dc74 | 7542 | S: Maintained |
faf1668c | 7543 | |
0d3cd4b6 VD |
7544 | MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER |
7545 | M: Andrew Lunn <andrew@lunn.ch> | |
7546 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> | |
7547 | S: Maintained | |
7548 | F: drivers/net/dsa/mv88e6xxx/ | |
7549 | ||
8427defd | 7550 | MARVELL ARMADA DRM SUPPORT |
54176cc6 | 7551 | M: Russell King <rmk+kernel@armlinux.org.uk> |
8427defd RK |
7552 | S: Maintained |
7553 | F: drivers/gpu/drm/armada/ | |
4418833e EV |
7554 | F: include/uapi/drm/armada_drm.h |
7555 | F: Documentation/devicetree/bindings/display/armada/ | |
8427defd | 7556 | |
c4d007bc TP |
7557 | MARVELL CRYPTO DRIVER |
7558 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
7559 | M: Arnaud Ebalard <arno@natisbad.org> | |
7560 | F: drivers/crypto/marvell/ | |
7561 | S: Maintained | |
7562 | L: linux-crypto@vger.kernel.org | |
7563 | ||
44c14c1d | 7564 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
7565 | M: Mirko Lindner <mlindner@marvell.com> | |
adbbf69d | 7566 | M: Stephen Hemminger <stephen@networkplumber.org> |
44c14c1d | 7567 | L: netdev@vger.kernel.org |
7568 | S: Maintained | |
7569 | F: drivers/net/ethernet/marvell/sk* | |
7570 | ||
74cda169 | 7571 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 7572 | L: libertas-dev@lists.infradead.org |
8ac3e99e | 7573 | S: Orphan |
f988d640 | 7574 | F: drivers/net/wireless/marvell/libertas/ |
74cda169 | 7575 | |
b60d6975 | 7576 | MARVELL MV643XX ETHERNET DRIVER |
4e3faf88 | 7577 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
979b6c13 | 7578 | L: netdev@vger.kernel.org |
f5ca8502 | 7579 | S: Maintained |
527a6266 | 7580 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 7581 | F: include/linux/mv643xx.h |
1da177e4 | 7582 | |
370b8ed9 TP |
7583 | MARVELL MVNETA ETHERNET DRIVER |
7584 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
7585 | L: netdev@vger.kernel.org | |
7586 | S: Maintained | |
7587 | F: drivers/net/ethernet/marvell/mvneta.* | |
7588 | ||
fcad584d | 7589 | MARVELL MWIFIEX WIRELESS DRIVER |
b9d31704 | 7590 | M: Amitkumar Karwar <akarwar@marvell.com> |
550795fc | 7591 | M: Nishant Sarmukadam <nishants@marvell.com> |
fcad584d BZ |
7592 | L: linux-wireless@vger.kernel.org |
7593 | S: Maintained | |
277b024e | 7594 | F: drivers/net/wireless/marvell/mwifiex/ |
fcad584d | 7595 | |
a2c3f656 | 7596 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 7597 | M: Lennert Buytenhek <buytenh@wantstofly.org> |
a2c3f656 | 7598 | L: linux-wireless@vger.kernel.org |
16345910 | 7599 | S: Odd Fixes |
de60f1dc | 7600 | F: drivers/net/wireless/marvell/mwl8k.c |
a2c3f656 | 7601 | |
2a69567b | 7602 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 7603 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 7604 | S: Odd Fixes |
1fa7e547 | 7605 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 7606 | |
1da177e4 | 7607 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 7608 | L: linux-fbdev@vger.kernel.org |
52653199 | 7609 | S: Orphan |
8a61f013 | 7610 | F: drivers/video/fbdev/matrox/matroxfb_* |
c117ab84 | 7611 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 7612 | |
ca462085 GR |
7613 | MAX16065 HARDWARE MONITOR DRIVER |
7614 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7615 | L: linux-hwmon@vger.kernel.org |
ca462085 GR |
7616 | S: Maintained |
7617 | F: Documentation/hwmon/max16065 | |
7618 | F: drivers/hwmon/max16065.c | |
7619 | ||
1f61cab8 GR |
7620 | MAX20751 HARDWARE MONITOR DRIVER |
7621 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7622 | L: linux-hwmon@vger.kernel.org |
1f61cab8 GR |
7623 | S: Maintained |
7624 | F: Documentation/hwmon/max20751 | |
7625 | F: drivers/hwmon/max20751.c | |
7626 | ||
d20620de | 7627 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
968ce1b1 | 7628 | L: linux-hwmon@vger.kernel.org |
34924b23 | 7629 | S: Orphan |
679655da JP |
7630 | F: Documentation/hwmon/max6650 |
7631 | F: drivers/hwmon/max6650.c | |
d20620de | 7632 | |
e89ab51f GR |
7633 | MAX6697 HARDWARE MONITOR DRIVER |
7634 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7635 | L: linux-hwmon@vger.kernel.org |
e89ab51f GR |
7636 | S: Maintained |
7637 | F: Documentation/hwmon/max6697 | |
7638 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
7639 | F: drivers/hwmon/max6697.c | |
7640 | F: include/linux/platform_data/max6697.h | |
7641 | ||
3b2af7f7 PR |
7642 | MAX9860 MONO AUDIO VOICE CODEC DRIVER |
7643 | M: Peter Rosin <peda@axentia.se> | |
7644 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
7645 | S: Maintained | |
7646 | F: Documentation/devicetree/bindings/sound/max9860.txt | |
7647 | F: sound/soc/codecs/max9860.* | |
7648 | ||
f8f847b5 | 7649 | MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS |
326dce07 KK |
7650 | M: Krzysztof Kozlowski <krzk@kernel.org> |
7651 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
f8f847b5 KK |
7652 | L: linux-pm@vger.kernel.org |
7653 | S: Supported | |
8c0984e5 SR |
7654 | F: drivers/power/supply/max14577_charger.c |
7655 | F: drivers/power/supply/max77693_charger.c | |
f8f847b5 | 7656 | |
3811405e JMC |
7657 | MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS |
7658 | M: Javier Martinez Canillas <javier@osg.samsung.com> | |
7659 | L: linux-kernel@vger.kernel.org | |
7660 | S: Supported | |
96173cc6 | 7661 | F: drivers/*/*max77802*.c |
3811405e JMC |
7662 | F: Documentation/devicetree/bindings/*/*max77802.txt |
7663 | F: include/dt-bindings/*/*max77802.h | |
7664 | ||
befeb596 KK |
7665 | MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS |
7666 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
326dce07 KK |
7667 | M: Krzysztof Kozlowski <krzk@kernel.org> |
7668 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
befeb596 KK |
7669 | L: linux-kernel@vger.kernel.org |
7670 | S: Supported | |
86cf635a | 7671 | F: drivers/*/max14577*.c |
0998a436 | 7672 | F: drivers/*/max77686*.c |
86cf635a | 7673 | F: drivers/*/max77693*.c |
befeb596 KK |
7674 | F: drivers/extcon/extcon-max14577.c |
7675 | F: drivers/extcon/extcon-max77693.c | |
7676 | F: drivers/rtc/rtc-max77686.c | |
7677 | F: drivers/clk/clk-max77686.c | |
7678 | F: Documentation/devicetree/bindings/mfd/max14577.txt | |
377452f4 | 7679 | F: Documentation/devicetree/bindings/*/max77686.txt |
befeb596 KK |
7680 | F: Documentation/devicetree/bindings/mfd/max77693.txt |
7681 | F: Documentation/devicetree/bindings/clock/maxim,max77686.txt | |
7682 | F: include/linux/mfd/max14577*.h | |
7683 | F: include/linux/mfd/max77686*.h | |
7684 | F: include/linux/mfd/max77693*.h | |
7685 | ||
9be3c9a5 HV |
7686 | MAXIRADIO FM RADIO RECEIVER DRIVER |
7687 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7688 | L: linux-media@vger.kernel.org | |
7689 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 7690 | W: https://linuxtv.org |
9be3c9a5 HV |
7691 | S: Maintained |
7692 | F: drivers/media/radio/radio-maxiradio* | |
7693 | ||
c05dc2cc PR |
7694 | MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER |
7695 | M: Peter Rosin <peda@axentia.se> | |
7696 | L: linux-iio@vger.kernel.org | |
7697 | S: Maintained | |
7698 | F: drivers/iio/potentiometer/mcp4531.c | |
7699 | ||
3b8df5fd WBG |
7700 | MEASUREMENT COMPUTING CIO-DAC IIO DRIVER |
7701 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
7702 | L: linux-iio@vger.kernel.org | |
7703 | S: Maintained | |
7704 | F: drivers/iio/dac/cio-dac.c | |
7705 | ||
7b49235e LP |
7706 | MEDIA DRIVERS FOR RENESAS - FCP |
7707 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
7708 | L: linux-media@vger.kernel.org | |
7709 | L: linux-renesas-soc@vger.kernel.org | |
7710 | T: git git://linuxtv.org/media_tree.git | |
7711 | S: Supported | |
7712 | F: Documentation/devicetree/bindings/media/renesas,fcp.txt | |
7713 | F: drivers/media/platform/rcar-fcp.c | |
7714 | F: include/media/rcar-fcp.h | |
7715 | ||
474cde66 NS |
7716 | MEDIA DRIVERS FOR RENESAS - VIN |
7717 | M: Niklas Söderlund <niklas.soderlund@ragnatech.se> | |
7718 | L: linux-media@vger.kernel.org | |
7719 | L: linux-renesas-soc@vger.kernel.org | |
7720 | T: git git://linuxtv.org/media_tree.git | |
7721 | S: Supported | |
7722 | F: Documentation/devicetree/bindings/media/rcar_vin.txt | |
7723 | F: drivers/media/platform/rcar-vin/ | |
7724 | ||
6f32a8c9 LP |
7725 | MEDIA DRIVERS FOR RENESAS - VSP1 |
7726 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
7727 | L: linux-media@vger.kernel.org | |
4a121096 | 7728 | L: linux-renesas-soc@vger.kernel.org |
6f32a8c9 LP |
7729 | T: git git://linuxtv.org/media_tree.git |
7730 | S: Supported | |
7731 | F: Documentation/devicetree/bindings/media/renesas,vsp1.txt | |
7732 | F: drivers/media/platform/vsp1/ | |
7733 | ||
fae2080a AO |
7734 | MEDIA DRIVERS FOR HELENE |
7735 | M: Abylay Ospan <aospan@netup.ru> | |
7736 | L: linux-media@vger.kernel.org | |
7737 | W: https://linuxtv.org | |
7738 | W: http://netup.tv/ | |
7739 | T: git git://linuxtv.org/media_tree.git | |
7740 | S: Supported | |
7741 | F: drivers/media/dvb-frontends/helene* | |
7742 | ||
dacf9ce8 KS |
7743 | MEDIA DRIVERS FOR ASCOT2E |
7744 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 7745 | M: Abylay Ospan <aospan@netup.ru> |
dacf9ce8 | 7746 | L: linux-media@vger.kernel.org |
a825eaec | 7747 | W: https://linuxtv.org |
dacf9ce8 KS |
7748 | W: http://netup.tv/ |
7749 | T: git git://linuxtv.org/media_tree.git | |
7750 | S: Supported | |
7751 | F: drivers/media/dvb-frontends/ascot2e* | |
7752 | ||
a6dc60ff KS |
7753 | MEDIA DRIVERS FOR CXD2841ER |
7754 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 7755 | M: Abylay Ospan <aospan@netup.ru> |
a6dc60ff | 7756 | L: linux-media@vger.kernel.org |
a825eaec | 7757 | W: https://linuxtv.org |
a6dc60ff KS |
7758 | W: http://netup.tv/ |
7759 | T: git git://linuxtv.org/media_tree.git | |
7760 | S: Supported | |
7761 | F: drivers/media/dvb-frontends/cxd2841er* | |
7762 | ||
a5d32b35 KS |
7763 | MEDIA DRIVERS FOR HORUS3A |
7764 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 7765 | M: Abylay Ospan <aospan@netup.ru> |
a5d32b35 | 7766 | L: linux-media@vger.kernel.org |
a825eaec | 7767 | W: https://linuxtv.org |
a5d32b35 KS |
7768 | W: http://netup.tv/ |
7769 | T: git git://linuxtv.org/media_tree.git | |
7770 | S: Supported | |
7771 | F: drivers/media/dvb-frontends/horus3a* | |
7772 | ||
e025273b KS |
7773 | MEDIA DRIVERS FOR LNBH25 |
7774 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 7775 | M: Abylay Ospan <aospan@netup.ru> |
e025273b | 7776 | L: linux-media@vger.kernel.org |
a825eaec | 7777 | W: https://linuxtv.org |
e025273b KS |
7778 | W: http://netup.tv/ |
7779 | T: git git://linuxtv.org/media_tree.git | |
7780 | S: Supported | |
7781 | F: drivers/media/dvb-frontends/lnbh25* | |
7782 | ||
52b1eaf4 KS |
7783 | MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices |
7784 | M: Sergey Kozlov <serjk@netup.ru> | |
1a76e1f7 | 7785 | M: Abylay Ospan <aospan@netup.ru> |
52b1eaf4 | 7786 | L: linux-media@vger.kernel.org |
a825eaec | 7787 | W: https://linuxtv.org |
52b1eaf4 KS |
7788 | W: http://netup.tv/ |
7789 | T: git git://linuxtv.org/media_tree.git | |
7790 | S: Supported | |
7791 | F: drivers/media/pci/netup_unidvb/* | |
7792 | ||
127c49ae | 7793 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
5dc8a864 MCC |
7794 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
7795 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
127c49ae JP |
7796 | P: LinuxTV.org Project |
7797 | L: linux-media@vger.kernel.org | |
a825eaec | 7798 | W: https://linuxtv.org |
8a6e2535 | 7799 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 7800 | T: git git://linuxtv.org/media_tree.git |
127c49ae | 7801 | S: Maintained |
618cd932 | 7802 | F: Documentation/media/ |
127c49ae | 7803 | F: drivers/media/ |
ffe06198 | 7804 | F: drivers/staging/media/ |
eb4b0ec7 | 7805 | F: include/linux/platform_data/media/ |
127c49ae | 7806 | F: include/media/ |
6c0f0359 MCC |
7807 | F: include/uapi/linux/dvb/ |
7808 | F: include/uapi/linux/videodev2.h | |
7809 | F: include/uapi/linux/media.h | |
7810 | F: include/uapi/linux/v4l2-* | |
7811 | F: include/uapi/linux/meye.h | |
7812 | F: include/uapi/linux/ivtv* | |
7813 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 7814 | |
0c272fc9 JC |
7815 | MEDIATEK ETHERNET DRIVER |
7816 | M: Felix Fietkau <nbd@openwrt.org> | |
7817 | M: John Crispin <blogic@openwrt.org> | |
7818 | L: netdev@vger.kernel.org | |
7819 | S: Maintained | |
7820 | F: drivers/net/ethernet/mediatek/ | |
7821 | ||
c869f77d JK |
7822 | MEDIATEK MT7601U WIRELESS LAN DRIVER |
7823 | M: Jakub Kicinski <kubakici@wp.pl> | |
7824 | L: linux-wireless@vger.kernel.org | |
7825 | S: Maintained | |
7826 | F: drivers/net/wireless/mediatek/mt7601u/ | |
7827 | ||
e399065b SS |
7828 | MEGARAID SCSI/SAS DRIVERS |
7829 | M: Kashyap Desai <kashyap.desai@avagotech.com> | |
7830 | M: Sumit Saxena <sumit.saxena@avagotech.com> | |
7831 | M: Uday Lingala <uday.lingala@avagotech.com> | |
7832 | L: megaraidlinux.pdl@avagotech.com | |
baaea1dc | 7833 | L: linux-scsi@vger.kernel.org |
e399065b | 7834 | W: http://www.lsi.com |
ce00f85c | 7835 | S: Maintained |
679655da JP |
7836 | F: Documentation/scsi/megaraid.txt |
7837 | F: drivers/scsi/megaraid.* | |
7838 | F: drivers/scsi/megaraid/ | |
757e0108 | 7839 | |
ff43f433 SJ |
7840 | MELFAS MIP4 TOUCHSCREEN DRIVER |
7841 | M: Sangwon Jee <jeesw@melfas.com> | |
7842 | W: http://www.melfas.com | |
7843 | S: Supported | |
7844 | F: drivers/input/touchscreen/melfas_mip4.c | |
7845 | F: Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt | |
7846 | ||
2c46c9d5 | 7847 | MELLANOX ETHERNET DRIVER (mlx4_en) |
c40e4096 | 7848 | M: Tariq Toukan <tariqt@mellanox.com> |
b75f0050 | 7849 | L: netdev@vger.kernel.org |
2c46c9d5 AV |
7850 | S: Supported |
7851 | W: http://www.mellanox.com | |
7852 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
7853 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
7854 | ||
e7523a49 OG |
7855 | MELLANOX ETHERNET DRIVER (mlx5e) |
7856 | M: Saeed Mahameed <saeedm@mellanox.com> | |
7857 | L: netdev@vger.kernel.org | |
7858 | S: Supported | |
7859 | W: http://www.mellanox.com | |
7860 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
7861 | F: drivers/net/ethernet/mellanox/mlx5/core/en_* | |
7862 | ||
93c1edb2 JP |
7863 | MELLANOX ETHERNET SWITCH DRIVERS |
7864 | M: Jiri Pirko <jiri@mellanox.com> | |
7865 | M: Ido Schimmel <idosch@mellanox.com> | |
7866 | L: netdev@vger.kernel.org | |
7867 | S: Supported | |
7868 | W: http://www.mellanox.com | |
7869 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
7870 | F: drivers/net/ethernet/mellanox/mlxsw/ | |
7871 | ||
be4fdf99 VP |
7872 | MELLANOX MLXCPLD LED DRIVER |
7873 | M: Vadim Pasternak <vadimp@mellanox.com> | |
7874 | L: linux-leds@vger.kernel.org | |
7875 | S: Supported | |
7876 | F: drivers/leds/leds-mlxcpld.c | |
7877 | F: Documentation/leds/leds-mlxcpld.txt | |
7878 | ||
58cbbee2 VP |
7879 | MELLANOX PLATFORM DRIVER |
7880 | M: Vadim Pasternak <vadimp@mellanox.com> | |
7881 | L: platform-driver-x86@vger.kernel.org | |
7882 | S: Supported | |
7883 | F: arch/x86/platform/mellanox/mlx-platform.c | |
7884 | ||
8700e3e7 MS |
7885 | SOFT-ROCE DRIVER (rxe) |
7886 | M: Moni Shoua <monis@mellanox.com> | |
7887 | L: linux-rdma@vger.kernel.org | |
7888 | S: Supported | |
7889 | W: https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home | |
7890 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
701b4bf6 | 7891 | F: drivers/infiniband/sw/rxe/ |
8700e3e7 MS |
7892 | F: include/uapi/rdma/rdma_user_rxe.h |
7893 | ||
5b25b13a MD |
7894 | MEMBARRIER SUPPORT |
7895 | M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
7896 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
7897 | L: linux-kernel@vger.kernel.org | |
7898 | S: Supported | |
7899 | F: kernel/membarrier.c | |
7900 | F: include/uapi/linux/membarrier.h | |
7901 | ||
70ea91f1 SR |
7902 | MEMORY MANAGEMENT |
7903 | L: linux-mm@kvack.org | |
70ea91f1 SR |
7904 | W: http://www.linux-mm.org |
7905 | S: Maintained | |
679655da | 7906 | F: include/linux/mm.h |
551450bb CS |
7907 | F: include/linux/gfp.h |
7908 | F: include/linux/mmzone.h | |
7909 | F: include/linux/memory_hotplug.h | |
7910 | F: include/linux/vmalloc.h | |
679655da | 7911 | F: mm/ |
70ea91f1 | 7912 | |
f4e9ce66 | 7913 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 7914 | M: David Woodhouse <dwmw2@infradead.org> |
242c325e | 7915 | M: Brian Norris <computersforpeace@gmail.com> |
1da177e4 | 7916 | L: linux-mtd@lists.infradead.org |
8a6e2535 JP |
7917 | W: http://www.linux-mtd.infradead.org/ |
7918 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
242c325e | 7919 | T: git git://git.infradead.org/linux-mtd.git |
ab95eac9 | 7920 | T: git git://git.infradead.org/l2-mtd.git |
1da177e4 | 7921 | S: Maintained |
becc7ae5 | 7922 | F: Documentation/devicetree/bindings/mtd/ |
679655da JP |
7923 | F: drivers/mtd/ |
7924 | F: include/linux/mtd/ | |
c117ab84 | 7925 | F: include/uapi/mtd/ |
1da177e4 | 7926 | |
26c57ef1 | 7927 | MEN A21 WATCHDOG DRIVER |
30c7469b | 7928 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
26c57ef1 | 7929 | L: linux-watchdog@vger.kernel.org |
30c7469b | 7930 | S: Maintained |
26c57ef1 JT |
7931 | F: drivers/watchdog/mena21_wdt.c |
7932 | ||
3764e82e | 7933 | MEN CHAMELEON BUS (mcb) |
30c7469b JT |
7934 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
7935 | S: Maintained | |
3764e82e JT |
7936 | F: drivers/mcb/ |
7937 | F: include/linux/mcb.h | |
b9f2f459 | 7938 | F: Documentation/men-chameleon-bus.txt |
3764e82e | 7939 | |
48b490d2 AW |
7940 | MEN F21BMC (Board Management Controller) |
7941 | M: Andreas Werner <andreas.werner@men.de> | |
7942 | S: Supported | |
7943 | F: drivers/mfd/menf21bmc.c | |
7944 | F: drivers/watchdog/menf21bmc_wdt.c | |
7945 | F: drivers/leds/leds-menf21bmc.c | |
7946 | F: drivers/hwmon/menf21bmc_hwmon.c | |
7947 | F: Documentation/hwmon/menf21bmc | |
7948 | ||
12285945 JH |
7949 | METAG ARCHITECTURE |
7950 | M: James Hogan <james.hogan@imgtec.com> | |
d668d9ed | 7951 | L: linux-metag@vger.kernel.org |
9f273c24 | 7952 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git |
f23d0e24 | 7953 | S: Odd Fixes |
12285945 JH |
7954 | F: arch/metag/ |
7955 | F: Documentation/metag/ | |
7956 | F: Documentation/devicetree/bindings/metag/ | |
2d799dde | 7957 | F: Documentation/devicetree/bindings/interrupt-controller/img,* |
a2c5d4ed | 7958 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
7959 | F: drivers/irqchip/irq-metag.c |
7960 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 | 7961 | F: drivers/tty/metag_da.c |
12285945 | 7962 | |
c6375b0a | 7963 | MICROBLAZE ARCHITECTURE |
8b58be88 | 7964 | M: Michal Simek <monstr@monstr.eu> |
c6375b0a MS |
7965 | W: http://www.monstr.eu/fdt/ |
7966 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
7967 | S: Supported | |
0a8c7914 | 7968 | F: arch/microblaze/ |
1da177e4 | 7969 | |
5615c371 NF |
7970 | MICROCHIP / ATMEL AT91 / AT32 SERIAL DRIVER |
7971 | M: Richard Genoud <richard.genoud@gmail.com> | |
7972 | S: Maintained | |
7973 | F: drivers/tty/serial/atmel_serial.c | |
7974 | F: include/linux/atmel_serial.h | |
7975 | ||
71fb2c74 SW |
7976 | MICROCHIP / ATMEL ISC DRIVER |
7977 | M: Songjun Wu <songjun.wu@microchip.com> | |
7978 | L: linux-media@vger.kernel.org | |
7979 | S: Supported | |
7980 | F: drivers/media/platform/atmel/atmel-isc.c | |
7981 | F: drivers/media/platform/atmel/atmel-isc-regs.h | |
7982 | F: devicetree/bindings/media/atmel-isc.txt | |
7983 | ||
2508a45a CY |
7984 | MICROSOFT SURFACE PRO 3 BUTTON DRIVER |
7985 | M: Chen Yu <yu.c.chen@intel.com> | |
7986 | L: platform-driver-x86@vger.kernel.org | |
7987 | S: Supported | |
7988 | F: drivers/platform/x86/surfacepro3_button.c | |
7989 | ||
1da177e4 | 7990 | MICROTEK X6 SCANNER |
61eee9a7 | 7991 | M: Oliver Neukum <oliver@neukum.org> |
1da177e4 | 7992 | S: Maintained |
679655da | 7993 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
7994 | |
7995 | MIPS | |
8b58be88 | 7996 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 7997 | L: linux-mips@linux-mips.org |
6097050d | 7998 | W: http://www.linux-mips.org/ |
b05e988e | 7999 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 8000 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 8001 | S: Supported |
f46d92e8 | 8002 | F: Documentation/devicetree/bindings/mips/ |
679655da JP |
8003 | F: Documentation/mips/ |
8004 | F: arch/mips/ | |
1da177e4 | 8005 | |
413ef3f6 KC |
8006 | MIPS/LOONGSON1 ARCHITECTURE |
8007 | M: Keguang Zhang <keguang.zhang@gmail.com> | |
8008 | L: linux-mips@linux-mips.org | |
8009 | S: Maintained | |
8010 | F: arch/mips/loongson32/ | |
8011 | F: arch/mips/include/asm/mach-loongson32/ | |
8012 | F: drivers/*/*loongson1* | |
8013 | F: drivers/*/*/*loongson1* | |
8014 | ||
08b7620a HV |
8015 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
8016 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8017 | L: linux-media@vger.kernel.org | |
8018 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 8019 | W: https://linuxtv.org |
08b7620a HV |
8020 | S: Odd Fixes |
8021 | F: drivers/media/radio/radio-miropcm20* | |
8022 | ||
c09befcb OG |
8023 | MELLANOX MLX4 core VPI driver |
8024 | M: Yishai Hadas <yishaih@mellanox.com> | |
e126ba97 EC |
8025 | L: netdev@vger.kernel.org |
8026 | L: linux-rdma@vger.kernel.org | |
8027 | W: http://www.mellanox.com | |
8028 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
c09befcb OG |
8029 | S: Supported |
8030 | F: drivers/net/ethernet/mellanox/mlx4/ | |
8031 | F: include/linux/mlx4/ | |
9ce28a20 | 8032 | F: include/uapi/rdma/mlx4-abi.h |
c09befcb OG |
8033 | |
8034 | MELLANOX MLX4 IB driver | |
8035 | M: Yishai Hadas <yishaih@mellanox.com> | |
8036 | L: linux-rdma@vger.kernel.org | |
8037 | W: http://www.mellanox.com | |
e126ba97 | 8038 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
c09befcb OG |
8039 | S: Supported |
8040 | F: drivers/infiniband/hw/mlx4/ | |
8041 | F: include/linux/mlx4/ | |
8042 | ||
595a4d8f OG |
8043 | MELLANOX MLX5 core VPI driver |
8044 | M: Matan Barak <matanb@mellanox.com> | |
8045 | M: Leon Romanovsky <leonro@mellanox.com> | |
e126ba97 EC |
8046 | L: netdev@vger.kernel.org |
8047 | L: linux-rdma@vger.kernel.org | |
8048 | W: http://www.mellanox.com | |
8049 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
e126ba97 EC |
8050 | S: Supported |
8051 | F: drivers/net/ethernet/mellanox/mlx5/core/ | |
8052 | F: include/linux/mlx5/ | |
3085e29e | 8053 | F: include/uapi/rdma/mlx5-abi.h |
e126ba97 | 8054 | |
595a4d8f OG |
8055 | MELLANOX MLX5 IB driver |
8056 | M: Matan Barak <matanb@mellanox.com> | |
8057 | M: Leon Romanovsky <leonro@mellanox.com> | |
b75f0050 JP |
8058 | L: linux-rdma@vger.kernel.org |
8059 | W: http://www.mellanox.com | |
8060 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
b75f0050 | 8061 | S: Supported |
b75f0050 | 8062 | F: drivers/infiniband/hw/mlx5/ |
595a4d8f | 8063 | F: include/linux/mlx5/ |
e126ba97 | 8064 | |
764589b6 CM |
8065 | MELEXIS MLX90614 DRIVER |
8066 | M: Crt Mori <cmo@melexis.com> | |
8067 | L: linux-iio@vger.kernel.org | |
8068 | W: http://www.melexis.com | |
8069 | S: Supported | |
8070 | F: drivers/iio/temperature/mlx90614.c | |
8071 | ||
6c223761 KB |
8072 | MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi) |
8073 | M: Don Brace <don.brace@microsemi.com> | |
8074 | L: esc.storagedev@microsemi.com | |
8075 | L: linux-scsi@vger.kernel.org | |
8076 | S: Supported | |
8077 | F: drivers/scsi/smartpqi/smartpqi*.[ch] | |
8078 | F: drivers/scsi/smartpqi/Kconfig | |
8079 | F: drivers/scsi/smartpqi/Makefile | |
8080 | F: include/linux/cciss*.h | |
8081 | F: include/uapi/linux/cciss*.h | |
425b490b | 8082 | F: Documentation/scsi/smartpqi.txt |
6c223761 | 8083 | |
0ce277e4 AP |
8084 | MN88472 MEDIA DRIVER |
8085 | M: Antti Palosaari <crope@iki.fi> | |
8086 | L: linux-media@vger.kernel.org | |
a825eaec | 8087 | W: https://linuxtv.org |
0ce277e4 AP |
8088 | W: http://palosaari.fi/linux/ |
8089 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
0ce277e4 | 8090 | S: Maintained |
94d0eaa4 | 8091 | F: drivers/media/dvb-frontends/mn88472* |
0ce277e4 | 8092 | |
4f4d238f AP |
8093 | MN88473 MEDIA DRIVER |
8094 | M: Antti Palosaari <crope@iki.fi> | |
8095 | L: linux-media@vger.kernel.org | |
a825eaec | 8096 | W: https://linuxtv.org |
4f4d238f AP |
8097 | W: http://palosaari.fi/linux/ |
8098 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4f4d238f | 8099 | S: Maintained |
877ba50b | 8100 | F: drivers/media/dvb-frontends/mn88473* |
4f4d238f | 8101 | |
1da177e4 | 8102 | MODULE SUPPORT |
8b58be88 | 8103 | M: Rusty Russell <rusty@rustcorp.com.au> |
1da177e4 | 8104 | S: Maintained |
679655da JP |
8105 | F: include/linux/module.h |
8106 | F: kernel/module.c | |
1da177e4 LT |
8107 | |
8108 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 8109 | W: http://popies.net/meye/ |
b7788e13 | 8110 | S: Orphan |
618cd932 | 8111 | F: Documentation/media/v4l-drivers/meye* |
90d72ac6 | 8112 | F: drivers/media/pci/meye/ |
6c0f0359 | 8113 | F: include/uapi/linux/meye.h |
1da177e4 | 8114 | |
b9705b60 | 8115 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 8116 | M: Jiri Slaby <jirislaby@gmail.com> |
d735410a | 8117 | S: Maintained |
679655da | 8118 | F: Documentation/serial/moxa-smartio |
c897401b | 8119 | F: drivers/tty/mxser.* |
d735410a | 8120 | |
889b2f87 AK |
8121 | MR800 AVERMEDIA USB FM RADIO DRIVER |
8122 | M: Alexey Klimov <klimov.linux@gmail.com> | |
8123 | L: linux-media@vger.kernel.org | |
8124 | T: git git://linuxtv.org/media_tree.git | |
8125 | S: Maintained | |
8126 | F: drivers/media/radio/radio-mr800.c | |
8127 | ||
d7155691 AO |
8128 | MRF24J40 IEEE 802.15.4 RADIO DRIVER |
8129 | M: Alan Ott <alan@signal11.us> | |
8130 | L: linux-wpan@vger.kernel.org | |
8131 | S: Maintained | |
8132 | F: drivers/net/ieee802154/mrf24j40.c | |
2e6fd648 | 8133 | F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt |
d7155691 | 8134 | |
8c4c731a | 8135 | MSI LAPTOP SUPPORT |
182ae55c | 8136 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 8137 | L: platform-driver-x86@vger.kernel.org |
8c4c731a | 8138 | S: Maintained |
679655da | 8139 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 8140 | |
0f1006b1 | 8141 | MSI WMI SUPPORT |
d0944853 | 8142 | L: platform-driver-x86@vger.kernel.org |
5ee7041e | 8143 | S: Orphan |
0f1006b1 AA |
8144 | F: drivers/platform/x86/msi-wmi.c |
8145 | ||
19a628a0 AP |
8146 | MSI001 MEDIA DRIVER |
8147 | M: Antti Palosaari <crope@iki.fi> | |
8148 | L: linux-media@vger.kernel.org | |
a825eaec | 8149 | W: https://linuxtv.org |
19a628a0 AP |
8150 | W: http://palosaari.fi/linux/ |
8151 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8152 | T: git git://linuxtv.org/anttip/media_tree.git | |
8153 | S: Maintained | |
0185e197 | 8154 | F: drivers/media/tuners/msi001* |
19a628a0 | 8155 | |
7570589d | 8156 | MSI2500 MEDIA DRIVER |
2c57213f AP |
8157 | M: Antti Palosaari <crope@iki.fi> |
8158 | L: linux-media@vger.kernel.org | |
a825eaec | 8159 | W: https://linuxtv.org |
2c57213f AP |
8160 | W: http://palosaari.fi/linux/ |
8161 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8162 | T: git git://linuxtv.org/anttip/media_tree.git | |
8163 | S: Maintained | |
7570589d | 8164 | F: drivers/media/usb/msi2500/ |
2c57213f | 8165 | |
159eeea4 RJ |
8166 | MSYSTEMS DISKONCHIP G3 MTD DRIVER |
8167 | M: Robert Jarzmik <robert.jarzmik@free.fr> | |
8168 | L: linux-mtd@lists.infradead.org | |
8169 | S: Maintained | |
8170 | F: drivers/mtd/devices/docg3* | |
8171 | ||
62a37dc7 | 8172 | MT9M032 APTINA SENSOR DRIVER |
0e837fb9 LP |
8173 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
8174 | L: linux-media@vger.kernel.org | |
8175 | T: git git://linuxtv.org/media_tree.git | |
8176 | S: Maintained | |
8177 | F: drivers/media/i2c/mt9m032.c | |
b5dcee22 | 8178 | F: include/media/i2c/mt9m032.h |
0e837fb9 | 8179 | |
62a37dc7 | 8180 | MT9P031 APTINA CAMERA SENSOR |
0e837fb9 LP |
8181 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
8182 | L: linux-media@vger.kernel.org | |
8183 | T: git git://linuxtv.org/media_tree.git | |
8184 | S: Maintained | |
8185 | F: drivers/media/i2c/mt9p031.c | |
b5dcee22 | 8186 | F: include/media/i2c/mt9p031.h |
0e837fb9 | 8187 | |
62a37dc7 | 8188 | MT9T001 APTINA CAMERA SENSOR |
0e837fb9 LP |
8189 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
8190 | L: linux-media@vger.kernel.org | |
8191 | T: git git://linuxtv.org/media_tree.git | |
8192 | S: Maintained | |
8193 | F: drivers/media/i2c/mt9t001.c | |
b5dcee22 | 8194 | F: include/media/i2c/mt9t001.h |
0e837fb9 | 8195 | |
62a37dc7 | 8196 | MT9V032 APTINA CAMERA SENSOR |
0e837fb9 LP |
8197 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
8198 | L: linux-media@vger.kernel.org | |
8199 | T: git git://linuxtv.org/media_tree.git | |
8200 | S: Maintained | |
f2272e13 | 8201 | F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt |
0e837fb9 | 8202 | F: drivers/media/i2c/mt9v032.c |
b5dcee22 | 8203 | F: include/media/i2c/mt9v032.h |
0e837fb9 | 8204 | |
4e0d13cb | 8205 | MULTIFUNCTION DEVICES (MFD) |
f7d3210e | 8206 | M: Lee Jones <lee.jones@linaro.org> |
7caa7991 | 8207 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git |
4e0d13cb | 8208 | S: Supported |
80366127 | 8209 | F: Documentation/devicetree/bindings/mfd/ |
679655da | 8210 | F: drivers/mfd/ |
55b5940d | 8211 | F: include/linux/mfd/ |
4e0d13cb | 8212 | |
5c4e6f13 | 8213 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
e18eaf8f | 8214 | M: Ulf Hansson <ulf.hansson@linaro.org> |
b2503a94 | 8215 | L: linux-mmc@vger.kernel.org |
82bb095e | 8216 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git |
245feaa6 | 8217 | S: Maintained |
2810984b | 8218 | F: Documentation/devicetree/bindings/mmc/ |
679655da JP |
8219 | F: drivers/mmc/ |
8220 | F: include/linux/mmc/ | |
c117ab84 | 8221 | F: include/uapi/linux/mmc/ |
baca2da4 | 8222 | |
15a0580c | 8223 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 8224 | S: Orphan |
679655da JP |
8225 | F: drivers/mmc/host/mmc_spi.c |
8226 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 8227 | |
1da177e4 | 8228 | MULTISOUND SOUND DRIVER |
8b58be88 | 8229 | M: Andrew Veliath <andrewtv@usa.net> |
1da177e4 | 8230 | S: Maintained |
679655da JP |
8231 | F: Documentation/sound/oss/MultiSound |
8232 | F: sound/oss/msnd* | |
1da177e4 | 8233 | |
d735410a | 8234 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 8235 | S: Orphan |
c897401b | 8236 | F: drivers/tty/isicom.c |
679655da | 8237 | F: include/linux/isicom.h |
d735410a | 8238 | |
550a7375 | 8239 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
3b243519 | 8240 | M: Bin Liu <b-liu@ti.com> |
795fb7e7 | 8241 | L: linux-usb@vger.kernel.org |
43b416e5 | 8242 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 8243 | S: Maintained |
679655da | 8244 | F: drivers/usb/musb/ |
550a7375 | 8245 | |
ea0af5f6 MK |
8246 | MXL5007T MEDIA DRIVER |
8247 | M: Michael Krufky <mkrufky@linuxtv.org> | |
8248 | L: linux-media@vger.kernel.org | |
a825eaec | 8249 | W: https://linuxtv.org |
ea0af5f6 MK |
8250 | W: http://github.com/mkrufky |
8251 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8252 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8253 | S: Maintained | |
8254 | F: drivers/media/tuners/mxl5007t.* | |
8255 | ||
2d3cf588 | 8256 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
205057ae | 8257 | M: Hyong-Youb Kim <hykim@myri.com> |
2d3cf588 | 8258 | L: netdev@vger.kernel.org |
205057ae | 8259 | W: https://www.myricom.com/support/downloads/myri10ge.html |
2d3cf588 | 8260 | S: Supported |
93f7848b | 8261 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 8262 | |
9df4f913 BB |
8263 | NAND FLASH SUBSYSTEM |
8264 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
8265 | R: Richard Weinberger <richard@nod.at> | |
8266 | L: linux-mtd@lists.infradead.org | |
8267 | W: http://www.linux-mtd.infradead.org/ | |
8268 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
8269 | T: git git://github.com/linux-nand/linux.git | |
8270 | S: Maintained | |
8271 | F: drivers/mtd/nand/ | |
8272 | F: include/linux/mtd/nand*.h | |
8273 | ||
1da177e4 | 8274 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 8275 | S: Orphan |
d9fb9f38 | 8276 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 8277 | |
23dc05a3 DM |
8278 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
8279 | M: Daniel Mack <zonque@gmail.com> | |
8280 | S: Maintained | |
e5747e40 | 8281 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
23dc05a3 DM |
8282 | W: http://www.native-instruments.com |
8283 | F: sound/usb/caiaq/ | |
8284 | ||
1da177e4 | 8285 | NCP FILESYSTEM |
52653199 PV |
8286 | M: Petr Vandrovec <petr@vandrovec.name> |
8287 | S: Odd Fixes | |
679655da | 8288 | F: fs/ncpfs/ |
1da177e4 | 8289 | |
a79b0322 FT |
8290 | NCR 5380 SCSI DRIVERS |
8291 | M: Finn Thain <fthain@telegraphics.com.au> | |
8292 | M: Michael Schmitz <schmitzmic@gmail.com> | |
8293 | L: linux-scsi@vger.kernel.org | |
8294 | S: Maintained | |
8295 | F: Documentation/scsi/g_NCR5380.txt | |
8296 | F: drivers/scsi/NCR5380.* | |
8297 | F: drivers/scsi/arm/cumana_1.c | |
8298 | F: drivers/scsi/arm/oak.c | |
a79b0322 FT |
8299 | F: drivers/scsi/atari_scsi.* |
8300 | F: drivers/scsi/dmx3191d.c | |
a79b0322 FT |
8301 | F: drivers/scsi/g_NCR5380.* |
8302 | F: drivers/scsi/g_NCR5380_mmio.c | |
8303 | F: drivers/scsi/mac_scsi.* | |
a79b0322 FT |
8304 | F: drivers/scsi/sun3_scsi.* |
8305 | F: drivers/scsi/sun3_scsi_vme.c | |
a79b0322 | 8306 | |
1da177e4 | 8307 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
8b58be88 | 8308 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
8309 | L: linux-scsi@vger.kernel.org |
8310 | S: Maintained | |
679655da | 8311 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 8312 | |
4aa3eb4c GR |
8313 | NCT6775 HARDWARE MONITOR DRIVER |
8314 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 8315 | L: linux-hwmon@vger.kernel.org |
4aa3eb4c GR |
8316 | S: Maintained |
8317 | F: Documentation/hwmon/nct6775 | |
8318 | F: drivers/hwmon/nct6775.c | |
8319 | ||
3c2d774c | 8320 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 8321 | M: Faisal Latif <faisal.latif@intel.com> |
e6cc0fd1 | 8322 | L: linux-rdma@vger.kernel.org |
e3d33cb1 | 8323 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
8324 | S: Supported |
8325 | F: drivers/infiniband/hw/nes/ | |
c546b2a3 | 8326 | F: include/uapi/rdma/nes-abi.h |
3c2d774c | 8327 | |
be2f2e84 | 8328 | NETEM NETWORK EMULATOR |
adbbf69d | 8329 | M: Stephen Hemminger <stephen@networkplumber.org> |
3430284f | 8330 | L: netem@lists.linux-foundation.org (moderated for non-subscribers) |
be2f2e84 | 8331 | S: Maintained |
679655da | 8332 | F: net/sched/sch_netem.c |
be2f2e84 | 8333 | |
b2f5a051 | 8334 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 8335 | M: Jon Mason <jdmason@kudzu.us> |
4a58448b | 8336 | L: netdev@vger.kernel.org |
4a58448b | 8337 | S: Supported |
679655da | 8338 | F: Documentation/networking/s2io.txt |
b2f5a051 | 8339 | F: Documentation/networking/vxge.txt |
86387e1a | 8340 | F: drivers/net/ethernet/neterion/ |
4a58448b | 8341 | |
db9cf3a3 | 8342 | NETFILTER ({IP,IP6,ARP,EB,NF}TABLES) |
0e05e192 | 8343 | M: Pablo Neira Ayuso <pablo@netfilter.org> |
8b58be88 | 8344 | M: Patrick McHardy <kaber@trash.net> |
42010ed0 | 8345 | M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> |
1a03b81d | 8346 | L: netfilter-devel@vger.kernel.org |
82b98543 | 8347 | L: coreteam@netfilter.org |
1da177e4 LT |
8348 | W: http://www.netfilter.org/ |
8349 | W: http://www.iptables.org/ | |
42010ed0 PNA |
8350 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
8351 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
8352 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1da177e4 | 8353 | S: Supported |
679655da JP |
8354 | F: include/linux/netfilter* |
8355 | F: include/linux/netfilter/ | |
8356 | F: include/net/netfilter/ | |
c117ab84 CEB |
8357 | F: include/uapi/linux/netfilter* |
8358 | F: include/uapi/linux/netfilter/ | |
679655da JP |
8359 | F: net/*/netfilter.c |
8360 | F: net/*/netfilter/ | |
8361 | F: net/netfilter/ | |
91c269a0 | 8362 | F: net/bridge/br_netfilter*.c |
1da177e4 | 8363 | |
4cc67735 | 8364 | NETLABEL |
87a0874c | 8365 | M: Paul Moore <paul@paul-moore.com> |
4cc67735 PM |
8366 | W: http://netlabel.sf.net |
8367 | L: netdev@vger.kernel.org | |
87a0874c | 8368 | S: Maintained |
80811493 | 8369 | F: Documentation/netlabel/ |
679655da JP |
8370 | F: include/net/netlabel.h |
8371 | F: net/netlabel/ | |
4cc67735 | 8372 | |
1da177e4 | 8373 | NETROM NETWORK LAYER |
8b58be88 | 8374 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 8375 | L: linux-hams@vger.kernel.org |
d34cb28a | 8376 | W: http://www.linux-ax25.org/ |
1da177e4 | 8377 | S: Maintained |
679655da | 8378 | F: include/net/netrom.h |
c117ab84 | 8379 | F: include/uapi/linux/netrom.h |
679655da | 8380 | F: net/netrom/ |
1da177e4 | 8381 | |
4c352362 JK |
8382 | NETRONOME ETHERNET DRIVERS |
8383 | M: Jakub Kicinski <jakub.kicinski@netronome.com> | |
4c352362 JK |
8384 | L: oss-drivers@netronome.com |
8385 | S: Maintained | |
8386 | F: drivers/net/ethernet/netronome/ | |
8387 | ||
5ddb88c0 | 8388 | NETWORK BLOCK DEVICE (NBD) |
4ca5829a | 8389 | M: Markus Pargmann <mpa@pengutronix.de> |
1da177e4 | 8390 | S: Maintained |
5e4b269b | 8391 | L: nbd-general@lists.sourceforge.net |
4ca5829a | 8392 | T: git git://git.pengutronix.de/git/mpa/linux-nbd.git |
679655da JP |
8393 | F: Documentation/blockdev/nbd.txt |
8394 | F: drivers/block/nbd.c | |
c117ab84 | 8395 | F: include/uapi/linux/nbd.h |
1da177e4 | 8396 | |
6e43650c NH |
8397 | NETWORK DROP MONITOR |
8398 | M: Neil Horman <nhorman@tuxdriver.com> | |
8399 | L: netdev@vger.kernel.org | |
8400 | S: Maintained | |
8401 | W: https://fedorahosted.org/dropwatch/ | |
8402 | F: net/core/drop_monitor.c | |
8403 | ||
3ed6e498 AL |
8404 | NETWORKING [DSA] |
8405 | M: Andrew Lunn <andrew@lunn.ch> | |
8406 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> | |
8407 | M: Florian Fainelli <f.fainelli@gmail.com> | |
8408 | S: Maintained | |
8409 | F: net/dsa/ | |
8410 | F: include/net/dsa.h | |
8411 | F: drivers/net/dsa/ | |
8412 | ||
1da177e4 | 8413 | NETWORKING [GENERAL] |
8b58be88 | 8414 | M: "David S. Miller" <davem@davemloft.net> |
979b6c13 | 8415 | L: netdev@vger.kernel.org |
b1e8fd54 | 8416 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 8417 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
8418 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
8419 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 8420 | S: Maintained |
679655da JP |
8421 | F: net/ |
8422 | F: include/net/ | |
018d21ed JP |
8423 | F: include/linux/in.h |
8424 | F: include/linux/net.h | |
8425 | F: include/linux/netdevice.h | |
c117ab84 CEB |
8426 | F: include/uapi/linux/in.h |
8427 | F: include/uapi/linux/net.h | |
8428 | F: include/uapi/linux/netdevice.h | |
0c7aecd4 | 8429 | F: include/uapi/linux/net_namespace.h |
7e814a6c | 8430 | F: tools/net/ |
f4e53f9a | 8431 | F: tools/testing/selftests/net/ |
335a67d2 | 8432 | F: lib/random32.c |
a101ccd1 | 8433 | F: lib/test_bpf.c |
1da177e4 LT |
8434 | |
8435 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
8436 | M: "David S. Miller" <davem@davemloft.net> |
8437 | M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> | |
8b58be88 JP |
8438 | M: James Morris <jmorris@namei.org> |
8439 | M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> | |
8440 | M: Patrick McHardy <kaber@trash.net> | |
979b6c13 | 8441 | L: netdev@vger.kernel.org |
08deed1e | 8442 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 8443 | S: Maintained |
679655da JP |
8444 | F: net/ipv4/ |
8445 | F: net/ipv6/ | |
8446 | F: include/net/ip* | |
0a14842f | 8447 | F: arch/x86/net/* |
1da177e4 | 8448 | |
73b7656c DM |
8449 | NETWORKING [IPSEC] |
8450 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
8451 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
8452 | M: "David S. Miller" <davem@davemloft.net> | |
8453 | L: netdev@vger.kernel.org | |
d1fc5024 SK |
8454 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git |
8455 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git | |
73b7656c | 8456 | S: Maintained |
5826bdd1 | 8457 | F: net/core/flow.c |
73b7656c DM |
8458 | F: net/xfrm/ |
8459 | F: net/key/ | |
8460 | F: net/ipv4/xfrm* | |
d1fc5024 SK |
8461 | F: net/ipv4/esp4.c |
8462 | F: net/ipv4/ah4.c | |
8463 | F: net/ipv4/ipcomp.c | |
8464 | F: net/ipv4/ip_vti.c | |
73b7656c | 8465 | F: net/ipv6/xfrm* |
d1fc5024 SK |
8466 | F: net/ipv6/esp6.c |
8467 | F: net/ipv6/ah6.c | |
8468 | F: net/ipv6/ipcomp6.c | |
8469 | F: net/ipv6/ip6_vti.c | |
73b7656c DM |
8470 | F: include/uapi/linux/xfrm.h |
8471 | F: include/net/xfrm.h | |
8472 | ||
10e2ff1c | 8473 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 8474 | M: Paul Moore <paul@paul-moore.com> |
10e2ff1c JM |
8475 | L: netdev@vger.kernel.org |
8476 | S: Maintained | |
8477 | ||
29f8f632 | 8478 | NETWORKING [WIRELESS] |
2cb4abd1 | 8479 | L: linux-wireless@vger.kernel.org |
8a6e2535 | 8480 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
29f8f632 | 8481 | |
788873ac JP |
8482 | NETWORKING DRIVERS |
8483 | L: netdev@vger.kernel.org | |
8484 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 8485 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
8486 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
8487 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac | 8488 | S: Odd Fixes |
156f4fbc | 8489 | F: Documentation/devicetree/bindings/net/ |
788873ac | 8490 | F: drivers/net/ |
018d21ed | 8491 | F: include/linux/if_* |
0b63bf1f | 8492 | F: include/linux/netdevice.h |
0b63bf1f JD |
8493 | F: include/linux/etherdevice.h |
8494 | F: include/linux/fcdevice.h | |
8495 | F: include/linux/fddidevice.h | |
8496 | F: include/linux/hippidevice.h | |
8497 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
8498 | F: include/uapi/linux/if_* |
8499 | F: include/uapi/linux/netdevice.h | |
788873ac | 8500 | |
0e324cf6 JL |
8501 | NETWORKING DRIVERS (WIRELESS) |
8502 | M: Kalle Valo <kvalo@codeaurora.org> | |
8503 | L: linux-wireless@vger.kernel.org | |
8504 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ | |
9f273c24 FW |
8505 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git |
8506 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git | |
0e324cf6 | 8507 | S: Maintained |
182fd9ee | 8508 | F: Documentation/devicetree/bindings/net/wireless/ |
0e324cf6 JL |
8509 | F: drivers/net/wireless/ |
8510 | ||
3d396eb1 | 8511 | NETXEN (1/10) GbE SUPPORT |
8622315e | 8512 | M: Manish Chopra <manish.chopra@qlogic.com> |
83c07dde AKS |
8513 | M: Sony Chacko <sony.chacko@qlogic.com> |
8514 | M: Rajesh Borundia <rajesh.borundia@qlogic.com> | |
3d396eb1 | 8515 | L: netdev@vger.kernel.org |
9c2b5bde | 8516 | W: http://www.qlogic.com |
3d396eb1 | 8517 | S: Supported |
aa43c215 | 8518 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 8519 | |
6423d30f AAJ |
8520 | NFC SUBSYSTEM |
8521 | M: Lauro Ramos Venancio <lauro.venancio@openbossa.org> | |
8522 | M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org> | |
8523 | M: Samuel Ortiz <sameo@linux.intel.com> | |
8524 | L: linux-wireless@vger.kernel.org | |
1eb3b216 | 8525 | L: linux-nfc@lists.01.org (subscribers-only) |
0293ba20 | 8526 | S: Supported |
6423d30f | 8527 | F: net/nfc/ |
55eb94f9 | 8528 | F: include/net/nfc/ |
c117ab84 | 8529 | F: include/uapi/linux/nfc.h |
6423d30f | 8530 | F: drivers/nfc/ |
397d6497 CR |
8531 | F: include/linux/platform_data/nfcmrvl.h |
8532 | F: include/linux/platform_data/nxp-nci.h | |
08eaa1e0 | 8533 | F: include/linux/platform_data/pn544.h |
397d6497 CR |
8534 | F: include/linux/platform_data/st21nfca.h |
8535 | F: include/linux/platform_data/st-nci.h | |
7ebb88e5 | 8536 | F: Documentation/devicetree/bindings/net/nfc/ |
3d396eb1 | 8537 | |
e8b43555 | 8538 | NFS, SUNRPC, AND LOCKD CLIENTS |
cd7b996a | 8539 | M: Trond Myklebust <trond.myklebust@primarydata.com> |
0e3b137f | 8540 | M: Anna Schumaker <anna.schumaker@netapp.com> |
78f58153 TM |
8541 | L: linux-nfs@vger.kernel.org |
8542 | W: http://client.linux-nfs.org | |
cd7b996a | 8543 | T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git |
1da177e4 | 8544 | S: Maintained |
679655da JP |
8545 | F: fs/lockd/ |
8546 | F: fs/nfs/ | |
8547 | F: fs/nfs_common/ | |
8548 | F: net/sunrpc/ | |
8549 | F: include/linux/lockd/ | |
8550 | F: include/linux/nfs* | |
8551 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
8552 | F: include/uapi/linux/nfs* |
8553 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 8554 | |
85ef9cea | 8555 | NILFS2 FILESYSTEM |
e2126935 | 8556 | M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> |
6aff43f8 | 8557 | L: linux-nilfs@vger.kernel.org |
f9472265 | 8558 | W: http://nilfs.sourceforge.net/ |
9e92e516 | 8559 | W: http://nilfs.osdn.jp/ |
e2126935 | 8560 | T: git git://github.com/konis/nilfs2.git |
85ef9cea | 8561 | S: Supported |
679655da JP |
8562 | F: Documentation/filesystems/nilfs2.txt |
8563 | F: fs/nilfs2/ | |
c35c7ac5 | 8564 | F: include/trace/events/nilfs2.h |
e63e88bc RK |
8565 | F: include/uapi/linux/nilfs2_api.h |
8566 | F: include/uapi/linux/nilfs2_ondisk.h | |
85ef9cea | 8567 | |
1da177e4 | 8568 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 8569 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
1da177e4 LT |
8570 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
8571 | S: Maintained | |
679655da JP |
8572 | F: Documentation/scsi/NinjaSCSI.txt |
8573 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
8574 | |
8575 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
8576 | M: GOTO Masanori <gotom@debian.or.jp> |
8577 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> | |
1da177e4 LT |
8578 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
8579 | S: Maintained | |
679655da JP |
8580 | F: Documentation/scsi/NinjaSCSI.txt |
8581 | F: drivers/scsi/nsp32* | |
1da177e4 | 8582 | |
383b8fb9 LFT |
8583 | NIOS2 ARCHITECTURE |
8584 | M: Ley Foon Tan <lftan@altera.com> | |
8585 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
0094dc40 | 8586 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git |
383b8fb9 LFT |
8587 | S: Maintained |
8588 | F: arch/nios2/ | |
8589 | ||
2a6afddb | 8590 | NOKIA N900 POWER SUPPLY DRIVERS |
e35a49b1 | 8591 | R: Pali Rohár <pali.rohar@gmail.com> |
2a6afddb | 8592 | F: include/linux/power/bq2415x_charger.h |
081bab21 | 8593 | F: include/linux/power/bq27xxx_battery.h |
2a6afddb | 8594 | F: include/linux/power/isp1704_charger.h |
8c0984e5 SR |
8595 | F: drivers/power/supply/bq2415x_charger.c |
8596 | F: drivers/power/supply/bq27xxx_battery.c | |
8597 | F: drivers/power/supply/bq27xxx_battery_i2c.c | |
8598 | F: drivers/power/supply/isp1704_charger.c | |
8599 | F: drivers/power/supply/rx51_battery.c | |
2a6afddb | 8600 | |
a1bd3bae | 8601 | NTB DRIVER CORE |
9ef6bf6c JM |
8602 | M: Jon Mason <jdmason@kudzu.us> |
8603 | M: Dave Jiang <dave.jiang@intel.com> | |
a1bd3bae | 8604 | M: Allen Hubbe <Allen.Hubbe@emc.com> |
5e9fd733 | 8605 | L: linux-ntb@googlegroups.com |
fce8a7bb | 8606 | S: Supported |
2984411f JM |
8607 | W: https://github.com/jonmason/ntb/wiki |
8608 | T: git git://github.com/jonmason/ntb.git | |
fce8a7bb | 8609 | F: drivers/ntb/ |
548c237c | 8610 | F: drivers/net/ntb_netdev.c |
fce8a7bb | 8611 | F: include/linux/ntb.h |
a1bd3bae | 8612 | F: include/linux/ntb_transport.h |
a9c59ef7 | 8613 | F: tools/testing/selftests/ntb/ |
fce8a7bb | 8614 | |
e26a5843 AH |
8615 | NTB INTEL DRIVER |
8616 | M: Jon Mason <jdmason@kudzu.us> | |
8617 | M: Dave Jiang <dave.jiang@intel.com> | |
5e9fd733 | 8618 | L: linux-ntb@googlegroups.com |
e26a5843 AH |
8619 | S: Supported |
8620 | W: https://github.com/jonmason/ntb/wiki | |
8621 | T: git git://github.com/jonmason/ntb.git | |
8622 | F: drivers/ntb/hw/intel/ | |
fce8a7bb | 8623 | |
a1b36958 XY |
8624 | NTB AMD DRIVER |
8625 | M: Xiangliang Yu <Xiangliang.Yu@amd.com> | |
8626 | L: linux-ntb@googlegroups.com | |
8627 | S: Supported | |
8628 | F: drivers/ntb/hw/amd/ | |
8629 | ||
1da177e4 | 8630 | NTFS FILESYSTEM |
2818ef50 | 8631 | M: Anton Altaparmakov <anton@tuxera.com> |
1da177e4 | 8632 | L: linux-ntfs-dev@lists.sourceforge.net |
2818ef50 | 8633 | W: http://www.tuxera.com/ |
e6f4dee7 | 8634 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 8635 | S: Supported |
679655da JP |
8636 | F: Documentation/filesystems/ntfs.txt |
8637 | F: fs/ntfs/ | |
1da177e4 | 8638 | |
9eb8ef74 | 8639 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 8640 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 8641 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 8642 | S: Maintained |
8a61f013 JH |
8643 | F: drivers/video/fbdev/riva/ |
8644 | F: drivers/video/fbdev/nvidia/ | |
1da177e4 | 8645 | |
79461681 | 8646 | NVM EXPRESS DRIVER |
b3975e94 JF |
8647 | M: Keith Busch <keith.busch@intel.com> |
8648 | M: Jens Axboe <axboe@fb.com> | |
79461681 | 8649 | L: linux-nvme@lists.infradead.org |
b3975e94 JF |
8650 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
8651 | W: https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/ | |
79461681 | 8652 | S: Supported |
57dacad5 | 8653 | F: drivers/nvme/host/ |
79461681 MW |
8654 | F: include/linux/nvme.h |
8655 | ||
a07b4970 CH |
8656 | NVM EXPRESS TARGET DRIVER |
8657 | M: Christoph Hellwig <hch@lst.de> | |
8658 | M: Sagi Grimberg <sagi@grimberg.me> | |
8659 | L: linux-nvme@lists.infradead.org | |
8660 | S: Supported | |
8661 | F: drivers/nvme/target/ | |
8662 | ||
aee4b9bd SK |
8663 | NVMEM FRAMEWORK |
8664 | M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> | |
8665 | M: Maxime Ripard <maxime.ripard@free-electrons.com> | |
8666 | S: Maintained | |
8667 | F: drivers/nvmem/ | |
8668 | F: Documentation/devicetree/bindings/nvmem/ | |
8669 | F: include/linux/nvmem-consumer.h | |
8670 | F: include/linux/nvmem-provider.h | |
8671 | ||
dece4585 CP |
8672 | NXP-NCI NFC DRIVER |
8673 | M: Clément Perrochaud <clement.perrochaud@effinnov.com> | |
8674 | R: Charles Gorand <charles.gorand@effinnov.com> | |
8675 | L: linux-nfc@lists.01.org (moderated for non-subscribers) | |
8676 | S: Supported | |
8677 | F: drivers/nfc/nxp-nci | |
8678 | ||
f50d7146 | 8679 | NXP TDA998X DRM DRIVER |
54176cc6 | 8680 | M: Russell King <rmk+kernel@armlinux.org.uk> |
f50d7146 RK |
8681 | S: Supported |
8682 | F: drivers/gpu/drm/i2c/tda998x_drv.c | |
8683 | F: include/drm/i2c/tda998x.h | |
8684 | ||
fbace43e PR |
8685 | NXP TFA9879 DRIVER |
8686 | M: Peter Rosin <peda@axentia.se> | |
8687 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
8688 | S: Maintained | |
8689 | F: sound/soc/codecs/tfa9879* | |
8690 | ||
442f04c3 JP |
8691 | OBJTOOL |
8692 | M: Josh Poimboeuf <jpoimboe@redhat.com> | |
8693 | S: Supported | |
8694 | F: tools/objtool/ | |
8695 | ||
f5525786 | 8696 | OMAP SUPPORT |
0e24bdd4 | 8697 | M: Tony Lindgren <tony@atomide.com> |
f5525786 TL |
8698 | L: linux-omap@vger.kernel.org |
8699 | W: http://www.muru.com/linux/omap/ | |
8700 | W: http://linux.omap.com/ | |
8a6e2535 | 8701 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 8702 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 8703 | S: Maintained |
4e04d5a3 | 8704 | F: arch/arm/*omap*/ |
026da812 FB |
8705 | F: arch/arm/configs/omap1_defconfig |
8706 | F: arch/arm/configs/omap2plus_defconfig | |
046d0a37 | 8707 | F: drivers/i2c/busses/i2c-omap.c |
dc68cd11 FB |
8708 | F: drivers/irqchip/irq-omap-intc.c |
8709 | F: drivers/mfd/*omap*.c | |
8710 | F: drivers/mfd/menelaus.c | |
8711 | F: drivers/mfd/palmas.c | |
8712 | F: drivers/mfd/tps65217.c | |
8713 | F: drivers/mfd/tps65218.c | |
8714 | F: drivers/mfd/tps65910.c | |
8715 | F: drivers/mfd/twl-core.[ch] | |
8716 | F: drivers/mfd/twl4030*.c | |
8717 | F: drivers/mfd/twl6030*.c | |
8718 | F: drivers/mfd/twl6040*.c | |
8719 | F: drivers/regulator/palmas-regulator*.c | |
8720 | F: drivers/regulator/pbias-regulator.c | |
8721 | F: drivers/regulator/tps65217-regulator.c | |
8722 | F: drivers/regulator/tps65218-regulator.c | |
8723 | F: drivers/regulator/tps65910-regulator.c | |
8724 | F: drivers/regulator/twl-regulator.c | |
046d0a37 | 8725 | F: include/linux/i2c-omap.h |
f5525786 | 8726 | |
50f29fbd | 8727 | OMAP DEVICE TREE SUPPORT |
cdb55ab0 | 8728 | M: Benoît Cousson <bcousson@baylibre.com> |
50f29fbd TL |
8729 | M: Tony Lindgren <tony@atomide.com> |
8730 | L: linux-omap@vger.kernel.org | |
d0fb18c5 | 8731 | L: devicetree@vger.kernel.org |
50f29fbd TL |
8732 | S: Maintained |
8733 | F: arch/arm/boot/dts/*omap* | |
8734 | F: arch/arm/boot/dts/*am3* | |
05eb20fa NM |
8735 | F: arch/arm/boot/dts/*am4* |
8736 | F: arch/arm/boot/dts/*am5* | |
8737 | F: arch/arm/boot/dts/*dra7* | |
50f29fbd | 8738 | |
f5525786 | 8739 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 8740 | M: Paul Walmsley <paul@pwsan.com> |
f5525786 TL |
8741 | L: linux-omap@vger.kernel.org |
8742 | S: Maintained | |
8743 | F: arch/arm/*omap*/*clock* | |
8744 | ||
8745 | OMAP POWER MANAGEMENT SUPPORT | |
3cf2efd5 | 8746 | M: Kevin Hilman <khilman@kernel.org> |
f5525786 TL |
8747 | L: linux-omap@vger.kernel.org |
8748 | S: Maintained | |
8749 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 8750 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 8751 | |
d21db568 | 8752 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
ff2de822 | 8753 | M: Rajendra Nayak <rnayak@codeaurora.org> |
692ab1f3 PW |
8754 | M: Paul Walmsley <paul@pwsan.com> |
8755 | L: linux-omap@vger.kernel.org | |
8756 | S: Maintained | |
d21db568 | 8757 | F: arch/arm/mach-omap2/prm* |
692ab1f3 | 8758 | |
f5525786 | 8759 | OMAP AUDIO SUPPORT |
6c284903 | 8760 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
7ec41ee5 | 8761 | M: Jarkko Nikula <jarkko.nikula@bitmer.com> |
e5747e40 | 8762 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
f5525786 TL |
8763 | L: linux-omap@vger.kernel.org |
8764 | S: Maintained | |
8765 | F: sound/soc/omap/ | |
8766 | ||
18640193 TL |
8767 | OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT |
8768 | M: Roger Quadros <rogerq@ti.com> | |
8769 | M: Tony Lindgren <tony@atomide.com> | |
8770 | L: linux-omap@vger.kernel.org | |
8771 | S: Maintained | |
8772 | F: drivers/memory/omap-gpmc.c | |
8773 | F: arch/arm/mach-omap2/*gpmc* | |
8774 | ||
f5525786 | 8775 | OMAP FRAMEBUFFER SUPPORT |
830e6384 | 8776 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
c69f677c | 8777 | L: linux-fbdev@vger.kernel.org |
f5525786 TL |
8778 | L: linux-omap@vger.kernel.org |
8779 | S: Maintained | |
8a61f013 | 8780 | F: drivers/video/fbdev/omap/ |
f5525786 | 8781 | |
676eec0d | 8782 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 8783 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
178ff4c9 | 8784 | L: linux-omap@vger.kernel.org |
676eec0d | 8785 | L: linux-fbdev@vger.kernel.org |
178ff4c9 | 8786 | S: Maintained |
8a61f013 | 8787 | F: drivers/video/fbdev/omap2/ |
178ff4c9 TV |
8788 | F: Documentation/arm/OMAP/DSS |
8789 | ||
8b37fcfc OBC |
8790 | OMAP HARDWARE SPINLOCK SUPPORT |
8791 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
8792 | L: linux-omap@vger.kernel.org | |
8793 | S: Maintained | |
8794 | F: drivers/hwspinlock/omap_hwspinlock.c | |
8b37fcfc | 8795 | |
f5525786 | 8796 | OMAP MMC SUPPORT |
8b58be88 | 8797 | M: Jarkko Lavinen <jarkko.lavinen@nokia.com> |
f5525786 TL |
8798 | L: linux-omap@vger.kernel.org |
8799 | S: Maintained | |
653f41b5 MC |
8800 | F: drivers/mmc/host/omap.c |
8801 | ||
8802 | OMAP HS MMC SUPPORT | |
0a4585c6 | 8803 | L: linux-mmc@vger.kernel.org |
653f41b5 | 8804 | L: linux-omap@vger.kernel.org |
dfa5d196 | 8805 | S: Orphan |
653f41b5 | 8806 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
8807 | |
8808 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 8809 | M: Deepak Saxena <dsaxena@plexity.net> |
f5525786 TL |
8810 | S: Maintained |
8811 | F: drivers/char/hw_random/omap-rng.c | |
8812 | ||
f400c82e | 8813 | OMAP HWMOD SUPPORT |
cdb55ab0 | 8814 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
8815 | M: Paul Walmsley <paul@pwsan.com> |
8816 | L: linux-omap@vger.kernel.org | |
8817 | S: Maintained | |
8fc8b12b | 8818 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e | 8819 | |
8633fb30 PW |
8820 | OMAP HWMOD DATA |
8821 | M: Paul Walmsley <paul@pwsan.com> | |
8822 | L: linux-omap@vger.kernel.org | |
8823 | S: Maintained | |
8824 | F: arch/arm/mach-omap2/omap_hwmod*data* | |
8825 | ||
f400c82e | 8826 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES |
cdb55ab0 | 8827 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
8828 | L: linux-omap@vger.kernel.org |
8829 | S: Maintained | |
8830 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
8831 | ||
0db83ced | 8832 | OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS) |
7e8970e1 LP |
8833 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
8834 | L: linux-media@vger.kernel.org | |
8835 | S: Maintained | |
7eec52db | 8836 | F: Documentation/devicetree/bindings/media/ti,omap3isp.txt |
90d72ac6 | 8837 | F: drivers/media/platform/omap3isp/ |
0db83ced | 8838 | F: drivers/staging/media/omap4iss/ |
7e8970e1 | 8839 | |
f5525786 | 8840 | OMAP USB SUPPORT |
f5525786 TL |
8841 | L: linux-usb@vger.kernel.org |
8842 | L: linux-omap@vger.kernel.org | |
3b243519 | 8843 | S: Orphan |
a16fbd65 JP |
8844 | F: drivers/usb/*/*omap* |
8845 | F: arch/arm/*omap*/usb* | |
f5525786 | 8846 | |
6d994710 | 8847 | OMAP GPIO DRIVER |
fe643528 | 8848 | M: Grygorii Strashko <grygorii.strashko@ti.com> |
97215800 | 8849 | M: Santosh Shilimkar <ssantosh@kernel.org> |
3cf2efd5 | 8850 | M: Kevin Hilman <khilman@kernel.org> |
6d994710 KH |
8851 | L: linux-omap@vger.kernel.org |
8852 | S: Maintained | |
fe643528 | 8853 | F: Documentation/devicetree/bindings/gpio/gpio-omap.txt |
6d994710 KH |
8854 | F: drivers/gpio/gpio-omap.c |
8855 | ||
c351e290 MJ |
8856 | OMAP/NEWFLOW NANOBONE MACHINE SUPPORT |
8857 | M: Mark Jackson <mpfj@newflow.co.uk> | |
8858 | L: linux-omap@vger.kernel.org | |
8859 | S: Maintained | |
8860 | F: arch/arm/boot/dts/am335x-nano.dts | |
8861 | ||
0ad122d9 | 8862 | OMFS FILESYSTEM |
8b58be88 | 8863 | M: Bob Copeland <me@bobcopeland.com> |
0ad122d9 BC |
8864 | L: linux-karma-devel@lists.sourceforge.net |
8865 | S: Maintained | |
679655da JP |
8866 | F: Documentation/filesystems/omfs.txt |
8867 | F: fs/omfs/ | |
0ad122d9 | 8868 | |
c1986ee9 | 8869 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 8870 | M: Harald Welte <laforge@gnumonks.org> |
c1986ee9 | 8871 | S: Maintained |
679655da JP |
8872 | F: drivers/char/pcmcia/cm4000_cs.c |
8873 | F: include/linux/cm4000_cs.h | |
c117ab84 | 8874 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 8875 | |
77c44ab1 | 8876 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 8877 | M: Harald Welte <laforge@gnumonks.org> |
77c44ab1 | 8878 | S: Maintained |
679655da | 8879 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 8880 | |
77d5140f | 8881 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 8882 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 8883 | L: linux-media@vger.kernel.org |
275ffde4 | 8884 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 8885 | S: Maintained |
90d72ac6 | 8886 | F: drivers/media/i2c/ov7670.c |
77d5140f | 8887 | |
431bca73 | 8888 | ONENAND FLASH DRIVER |
8b58be88 | 8889 | M: Kyungmin Park <kyungmin.park@samsung.com> |
431bca73 TG |
8890 | L: linux-mtd@lists.infradead.org |
8891 | S: Maintained | |
679655da JP |
8892 | F: drivers/mtd/onenand/ |
8893 | F: include/linux/mtd/onenand*.h | |
431bca73 | 8894 | |
1da177e4 | 8895 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 8896 | M: Willem Riede <osst@riede.org> |
1da177e4 LT |
8897 | L: osst-users@lists.sourceforge.net |
8898 | L: linux-scsi@vger.kernel.org | |
8899 | S: Maintained | |
f7269cfc JD |
8900 | F: Documentation/scsi/osst.txt |
8901 | F: drivers/scsi/osst.* | |
8902 | F: drivers/scsi/osst_*.h | |
8903 | F: drivers/scsi/st.h | |
1da177e4 | 8904 | |
e2d1d6c0 | 8905 | OPENCORES I2C BUS DRIVER |
8b58be88 | 8906 | M: Peter Korsgaard <jacmet@sunsite.dk> |
846557d3 | 8907 | L: linux-i2c@vger.kernel.org |
e2d1d6c0 | 8908 | S: Maintained |
679655da JP |
8909 | F: Documentation/i2c/busses/i2c-ocores |
8910 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 8911 | |
860c44c1 | 8912 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
5d3ad8a6 | 8913 | M: Rob Herring <robh+dt@kernel.org> |
c8fb70a3 | 8914 | M: Frank Rowand <frowand.list@gmail.com> |
d0fb18c5 | 8915 | L: devicetree@vger.kernel.org |
a7fefe9f | 8916 | W: http://www.devicetree.org/ |
fcdec35e | 8917 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git |
860c44c1 | 8918 | S: Maintained |
f8828205 | 8919 | F: drivers/of/ |
860c44c1 | 8920 | F: include/linux/of*.h |
f8828205 | 8921 | F: scripts/dtc/ |
860c44c1 | 8922 | |
f8828205 | 8923 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
5d3ad8a6 | 8924 | M: Rob Herring <robh+dt@kernel.org> |
f8828205 | 8925 | M: Mark Rutland <mark.rutland@arm.com> |
f8828205 | 8926 | L: devicetree@vger.kernel.org |
9f273c24 | 8927 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git |
fcdec35e | 8928 | Q: http://patchwork.ozlabs.org/project/devicetree-bindings/list/ |
f8828205 GL |
8929 | S: Maintained |
8930 | F: Documentation/devicetree/ | |
8931 | F: arch/*/boot/dts/ | |
8932 | F: include/dt-bindings/ | |
8933 | ||
2bb65f56 PA |
8934 | OPEN FIRMWARE AND DEVICE TREE OVERLAYS |
8935 | M: Pantelis Antoniou <pantelis.antoniou@konsulko.com> | |
8936 | L: devicetree@vger.kernel.org | |
8937 | S: Maintained | |
8938 | F: Documentation/devicetree/dynamic-resolution-notes.txt | |
8939 | F: Documentation/devicetree/overlay-notes.txt | |
8940 | F: drivers/of/overlay.c | |
8941 | F: drivers/of/resolver.c | |
8942 | ||
19f9d392 JB |
8943 | OPENRISC ARCHITECTURE |
8944 | M: Jonas Bonn <jonas@southpole.se> | |
8945 | W: http://openrisc.net | |
19f9d392 JB |
8946 | S: Maintained |
8947 | T: git git://openrisc.net/~jonas/linux | |
14430813 | 8948 | F: arch/openrisc/ |
19f9d392 | 8949 | |
ccb1352e | 8950 | OPENVSWITCH |
4f337ed5 | 8951 | M: Pravin Shelar <pshelar@nicira.com> |
b422da7c | 8952 | L: netdev@vger.kernel.org |
ccb1352e JG |
8953 | L: dev@openvswitch.org |
8954 | W: http://openvswitch.org | |
ccb1352e JG |
8955 | S: Maintained |
8956 | F: net/openvswitch/ | |
b422da7c | 8957 | F: include/uapi/linux/openvswitch.h |
ccb1352e | 8958 | |
875fa6fb VK |
8959 | OPERATING PERFORMANCE POINTS (OPP) |
8960 | M: Viresh Kumar <vireshk@kernel.org> | |
8961 | M: Nishanth Menon <nm@ti.com> | |
8962 | M: Stephen Boyd <sboyd@codeaurora.org> | |
8963 | L: linux-pm@vger.kernel.org | |
8964 | S: Maintained | |
8965 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git | |
8966 | F: drivers/base/power/opp/ | |
8967 | F: include/linux/pm_opp.h | |
8968 | F: Documentation/power/opp.txt | |
8969 | F: Documentation/devicetree/bindings/opp/ | |
8970 | ||
af39917d CL |
8971 | OPL4 DRIVER |
8972 | M: Clemens Ladisch <clemens@ladisch.de> | |
8973 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
8974 | T: git git://git.alsa-project.org/alsa-kernel.git | |
8975 | S: Maintained | |
8976 | F: sound/drivers/opl4/ | |
8977 | ||
1da177e4 | 8978 | OPROFILE |
4cf7e718 | 8979 | M: Robert Richter <rric@kernel.org> |
1da177e4 LT |
8980 | L: oprofile-list@lists.sf.net |
8981 | S: Maintained | |
81c4a8a6 | 8982 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
8983 | F: arch/*/oprofile/ |
8984 | F: drivers/oprofile/ | |
8985 | F: include/linux/oprofile.h | |
1da177e4 | 8986 | |
e2d1d6c0 | 8987 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
0a966fa8 | 8988 | M: Mark Fasheh <mfasheh@versity.com> |
d6351db2 | 8989 | M: Joel Becker <jlbec@evilplan.org> |
e2d1d6c0 | 8990 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
01945fa2 | 8991 | W: http://ocfs2.wiki.kernel.org |
e2d1d6c0 | 8992 | S: Supported |
679655da JP |
8993 | F: Documentation/filesystems/ocfs2.txt |
8994 | F: Documentation/filesystems/dlmfs.txt | |
8995 | F: fs/ocfs2/ | |
e2d1d6c0 | 8996 | |
1da177e4 | 8997 | ORINOCO DRIVER |
724c6b35 | 8998 | L: linux-wireless@vger.kernel.org |
491b26b4 | 8999 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 9000 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 9001 | S: Orphan |
2be45b66 | 9002 | F: drivers/net/wireless/intersil/orinoco/ |
1da177e4 | 9003 | |
42c55aa8 | 9004 | OSD LIBRARY and FILESYSTEM |
fadc0752 | 9005 | M: Boaz Harrosh <ooo@electrozaur.com> |
f1f6630b | 9006 | M: Benny Halevy <bhalevy@primarydata.com> |
68274794 BH |
9007 | L: osd-dev@open-osd.org |
9008 | W: http://open-osd.org | |
54e5881d | 9009 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 9010 | S: Maintained |
42c55aa8 | 9011 | F: drivers/scsi/osd/ |
6b6f0b6c | 9012 | F: include/scsi/osd_* |
42c55aa8 | 9013 | F: fs/exofs/ |
68274794 | 9014 | |
ef94b186 | 9015 | OVERLAY FILESYSTEM |
7c37fbda | 9016 | M: Miklos Szeredi <miklos@szeredi.hu> |
1d113735 MS |
9017 | L: linux-unionfs@vger.kernel.org |
9018 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git | |
7c37fbda | 9019 | S: Supported |
1d113735 | 9020 | F: fs/overlayfs/ |
7c37fbda NB |
9021 | F: Documentation/filesystems/overlayfs.txt |
9022 | ||
85096169 MM |
9023 | ORANGEFS FILESYSTEM |
9024 | M: Mike Marshall <hubcap@omnibond.com> | |
b39c3cf4 | 9025 | L: pvfs2-developers@beowulf-underground.org (subscribers-only) |
85096169 MM |
9026 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git |
9027 | S: Supported | |
9028 | F: fs/orangefs/ | |
9029 | F: Documentation/filesystems/orangefs.txt | |
9030 | ||
e2d1d6c0 | 9031 | P54 WIRELESS DRIVER |
084cb0fe | 9032 | M: Christian Lamparter <chunkeey@googlemail.com> |
e2d1d6c0 | 9033 | L: linux-wireless@vger.kernel.org |
084cb0fe | 9034 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 9035 | S: Maintained |
d3466830 | 9036 | F: drivers/net/wireless/intersil/p54/ |
e2d1d6c0 | 9037 | |
f5cd7872 | 9038 | PA SEMI ETHERNET DRIVER |
f5cd7872 | 9039 | L: netdev@vger.kernel.org |
56a5b8da | 9040 | S: Orphan |
ded19add | 9041 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 9042 | |
beb58aa3 | 9043 | PA SEMI SMBUS DRIVER |
846557d3 | 9044 | L: linux-i2c@vger.kernel.org |
56a5b8da | 9045 | S: Orphan |
679655da | 9046 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 9047 | |
48fc267e SK |
9048 | PADATA PARALLEL EXECUTION MECHANISM |
9049 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
48fc267e SK |
9050 | L: linux-crypto@vger.kernel.org |
9051 | S: Maintained | |
9052 | F: kernel/padata.c | |
9053 | F: include/linux/padata.h | |
9054 | F: Documentation/padata.txt | |
9055 | ||
709ee531 | 9056 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 9057 | M: Harald Welte <laforge@gnumonks.org> |
d0944853 | 9058 | L: platform-driver-x86@vger.kernel.org |
709ee531 | 9059 | S: Maintained |
679655da | 9060 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 9061 | |
368dd5ac | 9062 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 | 9063 | M: David Howells <dhowells@redhat.com> |
4fa97181 DH |
9064 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
9065 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
9066 | S: Maintained | |
679655da JP |
9067 | F: Documentation/mn10300/ |
9068 | F: arch/mn10300/ | |
4fa97181 | 9069 | |
305b37bd KS |
9070 | PARALLEL LCD/KEYPAD PANEL DRIVER |
9071 | M: Willy Tarreau <willy@haproxy.com> | |
9072 | M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com> | |
9073 | S: Odd Fixes | |
9074 | F: Documentation/misc-devices/lcd-panel-cgram.txt | |
9075 | F: drivers/misc/panel.c | |
9076 | ||
64dfff03 SM |
9077 | PARALLEL PORT SUBSYSTEM |
9078 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
9079 | M: Sudip Mukherjee <sudip@vectorindia.org> | |
3dd1a329 | 9080 | L: linux-parport@lists.infradead.org (subscribers-only) |
64dfff03 | 9081 | S: Maintained |
679655da JP |
9082 | F: drivers/parport/ |
9083 | F: include/linux/parport*.h | |
9084 | F: drivers/char/ppdev.c | |
c117ab84 | 9085 | F: include/uapi/linux/ppdev.h |
64dfff03 | 9086 | F: Documentation/parport*.txt |
1da177e4 | 9087 | |
4cdf6bc2 | 9088 | PARAVIRT_OPS INTERFACE |
d633180c | 9089 | M: Jeremy Fitzhardinge <jeremy@goop.org> |
8b58be88 JP |
9090 | M: Chris Wright <chrisw@sous-sol.org> |
9091 | M: Alok Kataria <akataria@vmware.com> | |
9092 | M: Rusty Russell <rusty@rustcorp.com.au> | |
c996d8b9 | 9093 | L: virtualization@lists.linux-foundation.org |
4cdf6bc2 | 9094 | S: Supported |
a2e19991 | 9095 | F: Documentation/virtual/paravirt_ops.txt |
679655da JP |
9096 | F: arch/*/kernel/paravirt* |
9097 | F: arch/*/include/asm/paravirt.h | |
47ae4b05 | 9098 | F: include/linux/hypervisor.h |
4cdf6bc2 | 9099 | |
e2d1d6c0 | 9100 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 9101 | M: Tim Waugh <tim@cyberelk.net> |
e2d1d6c0 | 9102 | L: linux-parport@lists.infradead.org (subscribers-only) |
e2d1d6c0 | 9103 | S: Maintained |
679655da JP |
9104 | F: Documentation/blockdev/paride.txt |
9105 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
9106 | |
9107 | PARISC ARCHITECTURE | |
b8828770 | 9108 | M: "James E.J. Bottomley" <jejb@parisc-linux.org> |
b38a03b8 | 9109 | M: Helge Deller <deller@gmx.de> |
e2d1d6c0 RD |
9110 | L: linux-parisc@vger.kernel.org |
9111 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 9112 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 9113 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 9114 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 9115 | S: Maintained |
679655da | 9116 | F: arch/parisc/ |
2b6bac9e | 9117 | F: Documentation/parisc/ |
679655da | 9118 | F: drivers/parisc/ |
2b6bac9e HD |
9119 | F: drivers/char/agp/parisc-agp.c |
9120 | F: drivers/input/serio/gscps2.c | |
9121 | F: drivers/parport/parport_gsc.* | |
9122 | F: drivers/tty/serial/8250/8250_gsc.c | |
8a61f013 | 9123 | F: drivers/video/fbdev/sti* |
2b6bac9e HD |
9124 | F: drivers/video/console/sti* |
9125 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 9126 | |
1662d32c | 9127 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 9128 | M: Jim Cromie <jim.cromie@gmail.com> |
968ce1b1 | 9129 | L: linux-hwmon@vger.kernel.org |
1662d32c | 9130 | S: Maintained |
679655da JP |
9131 | F: Documentation/hwmon/pc87360 |
9132 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
9133 | |
9134 | PC8736x GPIO DRIVER | |
8b58be88 | 9135 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 9136 | S: Maintained |
679655da | 9137 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 9138 | |
1ad107fd | 9139 | PC87427 HARDWARE MONITORING DRIVER |
d8130624 | 9140 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 9141 | L: linux-hwmon@vger.kernel.org |
1ad107fd JD |
9142 | S: Maintained |
9143 | F: Documentation/hwmon/pc87427 | |
9144 | F: drivers/hwmon/pc87427.c | |
9145 | ||
b26e0ed4 | 9146 | PCA9532 LED DRIVER |
8b58be88 | 9147 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 | 9148 | S: Maintained |
d5ca6918 JP |
9149 | F: drivers/leds/leds-pca9532.c |
9150 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 9151 | |
5ce914a8 | 9152 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 9153 | M: Guenter Roeck <linux@roeck-us.net> |
5ce914a8 GR |
9154 | L: linux-i2c@vger.kernel.org |
9155 | S: Maintained | |
b4f0b74e | 9156 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 9157 | |
3971dae5 | 9158 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 9159 | M: Khalid Aziz <khalid@gonehiking.org> |
3971dae5 KA |
9160 | S: Maintained |
9161 | F: drivers/firmware/pcdp.* | |
9162 | ||
065c6359 | 9163 | PCI ERROR RECOVERY |
6305902c | 9164 | M: Linas Vepstas <linasvepstas@gmail.com> |
c1f69db7 | 9165 | L: linux-pci@vger.kernel.org |
065c6359 | 9166 | S: Supported |
679655da | 9167 | F: Documentation/PCI/pci-error-recovery.txt |
065c6359 | 9168 | |
78c1cffd RC |
9169 | PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC |
9170 | M: Russell Currey <ruscur@russell.cc> | |
9171 | L: linuxppc-dev@lists.ozlabs.org | |
9172 | S: Supported | |
9173 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
9174 | F: arch/powerpc/kernel/eeh*.c | |
9175 | F: arch/powerpc/platforms/*/eeh*.c | |
9176 | F: arch/powerpc/include/*/eeh*.h | |
9177 | ||
1da177e4 | 9178 | PCI SUBSYSTEM |
5ac3a6d2 | 9179 | M: Bjorn Helgaas <bhelgaas@google.com> |
2905474d | 9180 | L: linux-pci@vger.kernel.org |
99662dd1 | 9181 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 9182 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 9183 | S: Supported |
92a1fe2e | 9184 | F: Documentation/devicetree/bindings/pci/ |
679655da JP |
9185 | F: Documentation/PCI/ |
9186 | F: drivers/pci/ | |
9187 | F: include/linux/pci* | |
6b49ee49 | 9188 | F: arch/x86/pci/ |
cad01f91 | 9189 | F: arch/x86/kernel/quirks.c |
1da177e4 | 9190 | |
eaa6111b LFT |
9191 | PCI DRIVER FOR ALTERA PCIE IP |
9192 | M: Ley Foon Tan <lftan@altera.com> | |
9193 | L: rfi@lists.rocketboards.org (moderated for non-subscribers) | |
9194 | L: linux-pci@vger.kernel.org | |
9195 | S: Supported | |
9196 | F: Documentation/devicetree/bindings/pci/altera-pcie.txt | |
9197 | F: drivers/pci/host/pcie-altera.c | |
9198 | ||
b7e78170 RH |
9199 | PCI DRIVER FOR ARM VERSATILE PLATFORM |
9200 | M: Rob Herring <robh@kernel.org> | |
9201 | L: linux-pci@vger.kernel.org | |
9202 | L: linux-arm-kernel@lists.infradead.org | |
9203 | S: Maintained | |
9204 | F: Documentation/devicetree/bindings/pci/versatile.txt | |
9205 | F: drivers/pci/host/pci-versatile.c | |
9206 | ||
3dc9d38c TP |
9207 | PCI DRIVER FOR ARMADA 8K |
9208 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
9209 | L: linux-pci@vger.kernel.org | |
9210 | L: linux-arm-kernel@lists.infradead.org | |
9211 | S: Maintained | |
9212 | F: Documentation/devicetree/bindings/pci/pci-armada8k.txt | |
9213 | F: drivers/pci/host/pcie-armada8k.c | |
9214 | ||
5f6b6ccd TI |
9215 | PCI DRIVER FOR APPLIEDMICRO XGENE |
9216 | M: Tanmay Inamdar <tinamdar@apm.com> | |
9217 | L: linux-pci@vger.kernel.org | |
9218 | L: linux-arm-kernel@lists.infradead.org | |
9219 | S: Maintained | |
9220 | F: Documentation/devicetree/bindings/pci/xgene-pci.txt | |
9221 | F: drivers/pci/host/pci-xgene.c | |
9222 | ||
62d0ff83 ML |
9223 | PCI DRIVER FOR FREESCALE LAYERSCAPE |
9224 | M: Minghuan Lian <minghuan.Lian@freescale.com> | |
9225 | M: Mingkai Hu <mingkai.hu@freescale.com> | |
9226 | M: Roy Zang <tie-fei.zang@freescale.com> | |
9227 | L: linuxppc-dev@lists.ozlabs.org | |
9228 | L: linux-pci@vger.kernel.org | |
9229 | L: linux-arm-kernel@lists.infradead.org | |
9230 | S: Maintained | |
9231 | F: drivers/pci/host/*layerscape* | |
9232 | ||
f0b75693 | 9233 | PCI DRIVER FOR IMX6 |
f175aa2c | 9234 | M: Richard Zhu <Richard.Zhu@freescale.com> |
1ba55f55 | 9235 | M: Lucas Stach <l.stach@pengutronix.de> |
f0b75693 BH |
9236 | L: linux-pci@vger.kernel.org |
9237 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9238 | S: Maintained | |
9239 | F: drivers/pci/host/*imx6* | |
9240 | ||
0c4ffcfe MK |
9241 | PCI DRIVER FOR TI KEYSTONE |
9242 | M: Murali Karicheri <m-karicheri2@ti.com> | |
9243 | L: linux-pci@vger.kernel.org | |
9244 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9245 | S: Maintained | |
9246 | F: drivers/pci/host/*keystone* | |
9247 | ||
f0b75693 BH |
9248 | PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support) |
9249 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
9250 | M: Jason Cooper <jason@lakedaemon.net> | |
9251 | L: linux-pci@vger.kernel.org | |
9252 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9253 | S: Maintained | |
9254 | F: drivers/pci/host/*mvebu* | |
9255 | ||
8c39d710 TP |
9256 | PCI DRIVER FOR AARDVARK (Marvell Armada 3700) |
9257 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
9258 | L: linux-pci@vger.kernel.org | |
9259 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9260 | S: Maintained | |
441106d9 | 9261 | F: Documentation/devicetree/bindings/pci/aardvark-pci.txt |
8c39d710 TP |
9262 | F: drivers/pci/host/pci-aardvark.c |
9263 | ||
0447cfd7 TR |
9264 | PCI DRIVER FOR NVIDIA TEGRA |
9265 | M: Thierry Reding <thierry.reding@gmail.com> | |
9266 | L: linux-tegra@vger.kernel.org | |
f0b75693 | 9267 | L: linux-pci@vger.kernel.org |
0447cfd7 TR |
9268 | S: Supported |
9269 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt | |
9270 | F: drivers/pci/host/pci-tegra.c | |
9271 | ||
47ff3de9 KVA |
9272 | PCI DRIVER FOR TI DRA7XX |
9273 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
9274 | L: linux-omap@vger.kernel.org | |
9275 | L: linux-pci@vger.kernel.org | |
9276 | S: Supported | |
9277 | F: Documentation/devicetree/bindings/pci/ti-pci.txt | |
9278 | F: drivers/pci/host/pci-dra7xx.c | |
9279 | ||
f0b75693 BH |
9280 | PCI DRIVER FOR RENESAS R-CAR |
9281 | M: Simon Horman <horms@verge.net.au> | |
9282 | L: linux-pci@vger.kernel.org | |
4a121096 | 9283 | L: linux-renesas-soc@vger.kernel.org |
f0b75693 BH |
9284 | S: Maintained |
9285 | F: drivers/pci/host/*rcar* | |
9286 | ||
4af82255 | 9287 | PCI DRIVER FOR SAMSUNG EXYNOS |
b7701755 | 9288 | M: Jingoo Han <jingoohan1@gmail.com> |
4af82255 | 9289 | L: linux-pci@vger.kernel.org |
f0b75693 BH |
9290 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9291 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
4af82255 JH |
9292 | S: Maintained |
9293 | F: drivers/pci/host/pci-exynos.c | |
9294 | ||
f0b75693 | 9295 | PCI DRIVER FOR SYNOPSIS DESIGNWARE |
b7701755 | 9296 | M: Jingoo Han <jingoohan1@gmail.com> |
110baab1 | 9297 | M: Pratyush Anand <pratyush.anand@gmail.com> |
f0b75693 BH |
9298 | L: linux-pci@vger.kernel.org |
9299 | S: Maintained | |
9300 | F: drivers/pci/host/*designware* | |
9301 | ||
5a3aa2a8 | 9302 | PCI DRIVER FOR SYNOPSYS PROTOTYPING DEVICE |
dabe7ecc | 9303 | M: Jose Abreu <Jose.Abreu@synopsys.com> |
5a3aa2a8 JP |
9304 | L: linux-pci@vger.kernel.org |
9305 | S: Maintained | |
9306 | F: Documentation/devicetree/bindings/pci/designware-pcie.txt | |
9307 | F: drivers/pci/host/pcie-designware-plat.c | |
9308 | ||
cf28855b WD |
9309 | PCI DRIVER FOR GENERIC OF HOSTS |
9310 | M: Will Deacon <will.deacon@arm.com> | |
9311 | L: linux-pci@vger.kernel.org | |
9312 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9313 | S: Maintained | |
9314 | F: Documentation/devicetree/bindings/pci/host-generic-pci.txt | |
4e64dbe2 | 9315 | F: drivers/pci/host/pci-host-common.c |
cf28855b WD |
9316 | F: drivers/pci/host/pci-host-generic.c |
9317 | ||
185a383a KB |
9318 | PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD) |
9319 | M: Keith Busch <keith.busch@intel.com> | |
9320 | L: linux-pci@vger.kernel.org | |
9321 | S: Supported | |
9322 | F: arch/x86/pci/vmd.c | |
9323 | ||
51b66a6c | 9324 | PCIE DRIVER FOR ST SPEAR13XX |
110baab1 | 9325 | M: Pratyush Anand <pratyush.anand@gmail.com> |
51b66a6c | 9326 | L: linux-pci@vger.kernel.org |
110baab1 | 9327 | S: Maintained |
51b66a6c PA |
9328 | F: drivers/pci/host/*spear* |
9329 | ||
af1169b4 LFT |
9330 | PCI MSI DRIVER FOR ALTERA MSI IP |
9331 | M: Ley Foon Tan <lftan@altera.com> | |
9332 | L: rfi@lists.rocketboards.org (moderated for non-subscribers) | |
9333 | L: linux-pci@vger.kernel.org | |
9334 | S: Supported | |
9335 | F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt | |
9336 | F: drivers/pci/host/pcie-altera-msi.c | |
51b66a6c | 9337 | |
dcd19de3 DD |
9338 | PCI MSI DRIVER FOR APPLIEDMICRO XGENE |
9339 | M: Duc Dang <dhdang@apm.com> | |
9340 | L: linux-pci@vger.kernel.org | |
9341 | L: linux-arm-kernel@lists.infradead.org | |
9342 | S: Maintained | |
9343 | F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt | |
9344 | F: drivers/pci/host/pci-xgene-msi.c | |
9345 | ||
a3cbfae1 NC |
9346 | PCIE DRIVER FOR AXIS ARTPEC |
9347 | M: Niklas Cassel <niklas.cassel@axis.com> | |
9348 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
9349 | L: linux-arm-kernel@axis.com | |
9350 | L: linux-pci@vger.kernel.org | |
9351 | S: Maintained | |
9352 | F: Documentation/devicetree/bindings/pci/axis,artpec* | |
9353 | F: drivers/pci/host/*artpec* | |
9354 | ||
500a1d9a ZW |
9355 | PCIE DRIVER FOR HISILICON |
9356 | M: Zhou Wang <wangzhou1@hisilicon.com> | |
5930fe4e | 9357 | M: Gabriele Paoloni <gabriele.paoloni@huawei.com> |
500a1d9a ZW |
9358 | L: linux-pci@vger.kernel.org |
9359 | S: Maintained | |
9360 | F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt | |
9361 | F: drivers/pci/host/pcie-hisi.c | |
9362 | ||
e77f847d SL |
9363 | PCIE DRIVER FOR ROCKCHIP |
9364 | M: Shawn Lin <shawn.lin@rock-chips.com> | |
9365 | M: Wenrui Li <wenrui.li@rock-chips.com> | |
9366 | L: linux-pci@vger.kernel.org | |
9367 | L: linux-rockchip@lists.infradead.org | |
9368 | S: Maintained | |
9369 | F: Documentation/devicetree/bindings/pci/rockchip-pcie.txt | |
9370 | F: drivers/pci/host/pcie-rockchip.c | |
9371 | ||
82a82383 SV |
9372 | PCIE DRIVER FOR QUALCOMM MSM |
9373 | M: Stanimir Varbanov <svarbanov@mm-sol.com> | |
9374 | L: linux-pci@vger.kernel.org | |
9375 | L: linux-arm-msm@vger.kernel.org | |
9376 | S: Maintained | |
9377 | F: drivers/pci/host/*qcom* | |
9378 | ||
f12b76e5 DD |
9379 | PCIE DRIVER FOR CAVIUM THUNDERX |
9380 | M: David Daney <david.daney@cavium.com> | |
9381 | L: linux-pci@vger.kernel.org | |
9382 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9383 | S: Supported | |
9384 | F: Documentation/devicetree/bindings/pci/pci-thunder-* | |
9385 | F: drivers/pci/host/pci-thunder-* | |
9386 | ||
1da177e4 | 9387 | PCMCIA SUBSYSTEM |
4230dfc9 | 9388 | P: Linux PCMCIA Team |
f5df5881 | 9389 | L: linux-pcmcia@lists.infradead.org |
6650e0a5 | 9390 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
9f273c24 | 9391 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git |
4230dfc9 | 9392 | S: Maintained |
679655da | 9393 | F: Documentation/pcmcia/ |
a67cd548 | 9394 | F: tools/pcmcia/ |
679655da JP |
9395 | F: drivers/pcmcia/ |
9396 | F: include/pcmcia/ | |
1da177e4 LT |
9397 | |
9398 | PCNET32 NETWORK DRIVER | |
227fb925 | 9399 | M: Don Fry <pcnet32@frontier.com> |
979b6c13 | 9400 | L: netdev@vger.kernel.org |
1da177e4 | 9401 | S: Maintained |
b955f6ca | 9402 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 9403 | |
48fc267e SK |
9404 | PCRYPT PARALLEL CRYPTO ENGINE |
9405 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
9406 | L: linux-crypto@vger.kernel.org | |
9407 | S: Maintained | |
9408 | F: crypto/pcrypt.c | |
9409 | F: include/crypto/pcrypt.h | |
9410 | ||
e72df0b8 TH |
9411 | PER-CPU MEMORY ALLOCATOR |
9412 | M: Tejun Heo <tj@kernel.org> | |
93e205a7 | 9413 | M: Christoph Lameter <cl@linux.com> |
e72df0b8 TH |
9414 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
9415 | S: Maintained | |
9416 | F: include/linux/percpu*.h | |
9417 | F: mm/percpu*.c | |
9418 | F: arch/*/include/asm/percpu.h | |
9419 | ||
ad4ecbcb | 9420 | PER-TASK DELAY ACCOUNTING |
185e595f | 9421 | M: Balbir Singh <bsingharora@gmail.com> |
ad4ecbcb | 9422 | S: Maintained |
679655da JP |
9423 | F: include/linux/delayacct.h |
9424 | F: kernel/delayacct.c | |
ad4ecbcb | 9425 | |
57c0c15b | 9426 | PERFORMANCE EVENTS SUBSYSTEM |
daecbd26 | 9427 | M: Peter Zijlstra <peterz@infradead.org> |
dd9b238c | 9428 | M: Ingo Molnar <mingo@redhat.com> |
f80c5393 | 9429 | M: Arnaldo Carvalho de Melo <acme@kernel.org> |
a54d690e | 9430 | R: Alexander Shishkin <alexander.shishkin@linux.intel.com> |
981c3a4f | 9431 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 9432 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 9433 | S: Supported |
d53e8365 | 9434 | F: kernel/events/* |
a003236c | 9435 | F: include/linux/perf_event.h |
c117ab84 | 9436 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
9437 | F: arch/*/kernel/perf_event*.c |
9438 | F: arch/*/kernel/*/perf_event*.c | |
9439 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 9440 | F: arch/*/include/asm/perf_event.h |
a003236c | 9441 | F: arch/*/kernel/perf_callchain.c |
b0a434fb | 9442 | F: arch/*/events/* |
a003236c | 9443 | F: tools/perf/ |
6c0b3244 | 9444 | |
dd49d0f5 | 9445 | PERSONALITY HANDLING |
8b58be88 | 9446 | M: Christoph Hellwig <hch@infradead.org> |
dd49d0f5 JC |
9447 | L: linux-abi-devel@lists.sourceforge.net |
9448 | S: Maintained | |
679655da | 9449 | F: include/linux/personality.h |
c117ab84 | 9450 | F: include/uapi/linux/personality.h |
dd49d0f5 | 9451 | |
838e7a03 | 9452 | PHONET PROTOCOL |
2a06b40f | 9453 | M: Remi Denis-Courmont <courmisch@gmail.com> |
838e7a03 RDC |
9454 | S: Supported |
9455 | F: Documentation/networking/phonet.txt | |
9456 | F: include/linux/phonet.h | |
9457 | F: include/net/phonet/ | |
c117ab84 | 9458 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
9459 | F: net/phonet/ |
9460 | ||
1da177e4 | 9461 | PHRAM MTD DRIVER |
8b58be88 | 9462 | M: Joern Engel <joern@lazybastard.org> |
1da177e4 LT |
9463 | L: linux-mtd@lists.infradead.org |
9464 | S: Maintained | |
679655da | 9465 | F: drivers/mtd/devices/phram.c |
1da177e4 | 9466 | |
efdbb10e BP |
9467 | PICOLCD HID DRIVER |
9468 | M: Bruno Prémont <bonbons@linux-vserver.org> | |
9469 | L: linux-input@vger.kernel.org | |
9470 | S: Maintained | |
9471 | F: drivers/hid/hid-picolcd* | |
9472 | ||
a53bfa07 JI |
9473 | PICOXCELL SUPPORT |
9474 | M: Jamie Iles <jamie@jamieiles.com> | |
9475 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9476 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
9477 | S: Supported | |
b8733987 | 9478 | F: arch/arm/boot/dts/picoxcell* |
14430813 | 9479 | F: arch/arm/mach-picoxcell/ |
b8733987 | 9480 | F: drivers/crypto/picoxcell* |
a53bfa07 | 9481 | |
2744e8af LW |
9482 | PIN CONTROL SUBSYSTEM |
9483 | M: Linus Walleij <linus.walleij@linaro.org> | |
c11f042b | 9484 | L: linux-gpio@vger.kernel.org |
dbe752a3 | 9485 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git |
2744e8af | 9486 | S: Maintained |
9feeed94 | 9487 | F: Documentation/devicetree/bindings/pinctrl/ |
fefb6245 | 9488 | F: Documentation/pinctrl.txt |
07f29ba6 | 9489 | F: drivers/pinctrl/ |
8e406fe4 | 9490 | F: include/linux/pinctrl/ |
2744e8af | 9491 | |
2201bbb8 JCPV |
9492 | PIN CONTROLLER - ATMEL AT91 |
9493 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> | |
9494 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9495 | S: Maintained | |
c654b6bf | 9496 | F: drivers/pinctrl/pinctrl-at91.* |
2201bbb8 | 9497 | |
33d3690c LD |
9498 | PIN CONTROLLER - ATMEL AT91 PIO4 |
9499 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
9500 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9501 | L: linux-gpio@vger.kernel.org | |
9502 | S: Supported | |
9503 | F: drivers/pinctrl/pinctrl-at91-pio4.* | |
9504 | ||
cbd1b652 MW |
9505 | PIN CONTROLLER - INTEL |
9506 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
9507 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> | |
9508 | S: Maintained | |
9509 | F: drivers/pinctrl/intel/ | |
2201bbb8 | 9510 | |
9963b536 LP |
9511 | PIN CONTROLLER - RENESAS |
9512 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
1a4ca6dd | 9513 | M: Geert Uytterhoeven <geert+renesas@glider.be> |
4a121096 | 9514 | L: linux-renesas-soc@vger.kernel.org |
9963b536 LP |
9515 | S: Maintained |
9516 | F: drivers/pinctrl/sh-pfc/ | |
9517 | ||
b75e60d6 | 9518 | PIN CONTROLLER - SAMSUNG |
fea685e9 | 9519 | M: Tomasz Figa <tomasz.figa@gmail.com> |
326dce07 | 9520 | M: Krzysztof Kozlowski <krzk@kernel.org> |
44b03c10 | 9521 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
b75e60d6 DA |
9522 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9523 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
9524 | S: Maintained | |
9b5b33f6 | 9525 | F: drivers/pinctrl/samsung/ |
5db7e3bb KK |
9526 | F: include/dt-bindings/pinctrl/samsung.h |
9527 | F: Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt | |
b75e60d6 | 9528 | |
13cbd906 TL |
9529 | PIN CONTROLLER - SINGLE |
9530 | M: Tony Lindgren <tony@atomide.com> | |
9531 | M: Haojian Zhuang <haojian.zhuang@linaro.org> | |
9532 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9533 | L: linux-omap@vger.kernel.org | |
9534 | S: Maintained | |
9535 | F: drivers/pinctrl/pinctrl-single.c | |
9536 | ||
deda8287 | 9537 | PIN CONTROLLER - ST SPEAR |
da89947b | 9538 | M: Viresh Kumar <vireshk@kernel.org> |
deda8287 VK |
9539 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9540 | W: http://www.st.com/spear | |
9541 | S: Maintained | |
8e406fe4 | 9542 | F: drivers/pinctrl/spear/ |
deda8287 | 9543 | |
11a1cf34 JH |
9544 | PISTACHIO SOC SUPPORT |
9545 | M: James Hartley <james.hartley@imgtec.com> | |
9546 | M: Ionela Voinescu <ionela.voinescu@imgtec.com> | |
9547 | L: linux-mips@linux-mips.org | |
9548 | S: Maintained | |
9549 | F: arch/mips/pistachio/ | |
9550 | F: arch/mips/include/asm/mach-pistachio/ | |
9551 | F: arch/mips/boot/dts/pistachio/ | |
9552 | F: arch/mips/configs/pistachio*_defconfig | |
9553 | ||
249a6771 | 9554 | PKTCDVD DRIVER |
e5f6450c | 9555 | M: Jiri Kosina <jikos@kernel.org> |
249a6771 | 9556 | S: Maintained |
679655da JP |
9557 | F: drivers/block/pktcdvd.c |
9558 | F: include/linux/pktcdvd.h | |
c117ab84 | 9559 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 9560 | |
b31d8273 G |
9561 | PKUNITY SOC DRIVERS |
9562 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
9563 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
9564 | S: Maintained | |
ceebf4d5 | 9565 | T: git git://github.com/gxt/linux.git |
b31d8273 | 9566 | F: drivers/input/serio/i8042-unicore32io.h |
d10e4a66 | 9567 | F: drivers/i2c/busses/i2c-puv3.c |
8a61f013 | 9568 | F: drivers/video/fbdev/fb-puv3.c |
2809e80b | 9569 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 9570 | |
9d2ecfb7 | 9571 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 9572 | M: Guenter Roeck <linux@roeck-us.net> |
968ce1b1 GR |
9573 | L: linux-hwmon@vger.kernel.org |
9574 | W: http://hwmon.wiki.kernel.org/ | |
9d2ecfb7 GR |
9575 | W: http://www.roeck-us.net/linux/drivers/ |
9576 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
9577 | S: Maintained | |
9578 | F: Documentation/hwmon/pmbus | |
9579 | F: drivers/hwmon/pmbus/ | |
9580 | F: include/linux/i2c/pmbus.h | |
9581 | ||
89a36810 | 9582 | PMC SIERRA MaxRAID DRIVER |
89a36810 AR |
9583 | L: linux-scsi@vger.kernel.org |
9584 | W: http://www.pmc-sierra.com/ | |
3cdea4d7 | 9585 | S: Orphan |
89a36810 AR |
9586 | F: drivers/scsi/pmcraid.* |
9587 | ||
dbf9bfe6 | 9588 | PMC SIERRA PM8001 DRIVER |
d32477e2 | 9589 | M: Jack Wang <jinpu.wang@profitbricks.com> |
dbf9bfe6 | 9590 | M: lindar_liu@usish.com |
f5a7b525 | 9591 | L: pmchba@pmcs.com |
dbf9bfe6 | 9592 | L: linux-scsi@vger.kernel.org |
9593 | S: Supported | |
9594 | F: drivers/scsi/pm8001/ | |
9595 | ||
1da177e4 | 9596 | POSIX CLOCKS and TIMERS |
8b58be88 | 9597 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 9598 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 9599 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
5cee9645 | 9600 | S: Maintained |
679655da JP |
9601 | F: fs/timerfd.c |
9602 | F: include/linux/timer* | |
5cee9645 | 9603 | F: kernel/time/*timer* |
1da177e4 | 9604 | |
7b06a6d7 RW |
9605 | POWER MANAGEMENT CORE |
9606 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> | |
9607 | L: linux-pm@vger.kernel.org | |
9608 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
9609 | S: Supported | |
9610 | F: drivers/base/power/ | |
9611 | F: include/linux/pm.h | |
9612 | F: include/linux/pm_* | |
9613 | F: include/linux/powercap.h | |
9614 | F: drivers/powercap/ | |
9615 | ||
3be86148 | 9616 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
ad8464a2 | 9617 | M: Sebastian Reichel <sre@kernel.org> |
ad8464a2 | 9618 | L: linux-pm@vger.kernel.org |
58db9505 | 9619 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git |
3be86148 | 9620 | S: Maintained |
f3332532 | 9621 | F: Documentation/devicetree/bindings/power/supply/ |
679655da | 9622 | F: include/linux/power_supply.h |
8c0984e5 | 9623 | F: drivers/power/supply/ |
3be86148 | 9624 | |
514f161a MR |
9625 | POWER STATE COORDINATION INTERFACE (PSCI) |
9626 | M: Mark Rutland <mark.rutland@arm.com> | |
9627 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
9628 | L: linux-arm-kernel@lists.infradead.org | |
9629 | S: Maintained | |
9630 | F: drivers/firmware/psci.c | |
9631 | F: include/linux/psci.h | |
9632 | F: include/uapi/linux/psci.h | |
9633 | ||
43a1dd9b SJS |
9634 | POWERNV OPERATOR PANEL LCD DISPLAY DRIVER |
9635 | M: Suraj Jitindar Singh <sjitindarsingh@gmail.com> | |
9636 | L: linuxppc-dev@lists.ozlabs.org | |
9637 | S: Maintained | |
9638 | F: drivers/char/powernv-op-panel.c | |
9639 | ||
1da177e4 | 9640 | PNP SUPPORT |
9c3646d1 | 9641 | M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> |
1da177e4 | 9642 | S: Maintained |
679655da | 9643 | F: drivers/pnp/ |
1da177e4 LT |
9644 | |
9645 | PPP PROTOCOL DRIVERS AND COMPRESSORS | |
8b58be88 | 9646 | M: Paul Mackerras <paulus@samba.org> |
1da177e4 LT |
9647 | L: linux-ppp@vger.kernel.org |
9648 | S: Maintained | |
224cf5ad | 9649 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
9650 | |
9651 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 9652 | M: Mitchell Blank Jr <mitch@sfgoth.com> |
1da177e4 | 9653 | S: Maintained |
679655da | 9654 | F: net/atm/pppoatm.c |
c117ab84 | 9655 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
9656 | |
9657 | PPP OVER ETHERNET | |
8b58be88 | 9658 | M: Michal Ostrowski <mostrows@earthlink.net> |
1da177e4 | 9659 | S: Maintained |
224cf5ad JK |
9660 | F: drivers/net/ppp/pppoe.c |
9661 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 9662 | |
a6d2370b | 9663 | PPP OVER L2TP |
8b58be88 | 9664 | M: James Chapman <jchapman@katalix.com> |
a6d2370b | 9665 | S: Maintained |
90ca28d1 | 9666 | F: net/l2tp/l2tp_ppp.c |
679655da | 9667 | F: include/linux/if_pppol2tp.h |
c117ab84 | 9668 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 9669 | |
eae9d2ba | 9670 | PPS SUPPORT |
8b58be88 | 9671 | M: Rodolfo Giometti <giometti@enneenne.com> |
eae9d2ba RG |
9672 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
9673 | L: linuxpps@ml.enneenne.com (subscribers-only) | |
9674 | S: Maintained | |
cabaaf41 JP |
9675 | F: Documentation/pps/ |
9676 | F: drivers/pps/ | |
9677 | F: include/linux/pps*.h | |
eae9d2ba | 9678 | |
71a6d0af HW |
9679 | PPTP DRIVER |
9680 | M: Dmitry Kozlov <xeb@mail.ru> | |
9681 | L: netdev@vger.kernel.org | |
9682 | S: Maintained | |
224cf5ad | 9683 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
9684 | W: http://sourceforge.net/projects/accel-pptp |
9685 | ||
1da177e4 | 9686 | PREEMPTIBLE KERNEL |
8b58be88 | 9687 | M: Robert Love <rml@tech9.net> |
1da177e4 LT |
9688 | L: kpreempt-tech@lists.sourceforge.net |
9689 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
9690 | S: Supported | |
679655da JP |
9691 | F: Documentation/preempt-locking.txt |
9692 | F: include/linux/preempt.h | |
1da177e4 LT |
9693 | |
9694 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 9695 | M: "Luis R. Rodriguez" <mcgrof@gmail.com> |
724c6b35 | 9696 | L: linux-wireless@vger.kernel.org |
9ef80804 | 9697 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 9698 | S: Obsolete |
c12edfe2 | 9699 | F: drivers/net/wireless/intersil/prism54/ |
1da177e4 | 9700 | |
02c18891 | 9701 | PS3 NETWORK SUPPORT |
b809b9ca | 9702 | M: Geoff Levand <geoff@infradead.org> |
02c18891 | 9703 | L: netdev@vger.kernel.org |
a14ab6b6 | 9704 | L: linuxppc-dev@lists.ozlabs.org |
b809b9ca | 9705 | S: Maintained |
8df158ac | 9706 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 9707 | |
f58a9d17 | 9708 | PS3 PLATFORM SUPPORT |
b809b9ca | 9709 | M: Geoff Levand <geoff@infradead.org> |
a4724ed6 | 9710 | L: linuxppc-dev@lists.ozlabs.org |
b809b9ca | 9711 | S: Maintained |
679655da JP |
9712 | F: arch/powerpc/boot/ps3* |
9713 | F: arch/powerpc/include/asm/lv1call.h | |
9714 | F: arch/powerpc/include/asm/ps3*.h | |
9715 | F: arch/powerpc/platforms/ps3/ | |
9716 | F: drivers/*/ps3* | |
9717 | F: drivers/ps3/ | |
fec629b8 | 9718 | F: drivers/rtc/rtc-ps3.c |
679655da | 9719 | F: drivers/usb/host/*ps3.c |
fec629b8 | 9720 | F: sound/ppc/snd_ps3* |
f58a9d17 | 9721 | |
cffb4add | 9722 | PS3VRAM DRIVER |
8b58be88 | 9723 | M: Jim Paris <jim@jtan.com> |
3715a5d0 | 9724 | M: Geoff Levand <geoff@infradead.org> |
a14ab6b6 | 9725 | L: linuxppc-dev@lists.ozlabs.org |
cffb4add | 9726 | S: Maintained |
8a3977cb | 9727 | F: drivers/block/ps3vram.c |
cffb4add | 9728 | |
8defe599 | 9729 | PSTORE FILESYSTEM |
9d5e2a02 | 9730 | M: Anton Vorontsov <anton@enomsg.org> |
8defe599 AV |
9731 | M: Colin Cross <ccross@android.com> |
9732 | M: Kees Cook <keescook@chromium.org> | |
9733 | M: Tony Luck <tony.luck@intel.com> | |
9734 | S: Maintained | |
9f273c24 | 9735 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
8defe599 AV |
9736 | F: fs/pstore/ |
9737 | F: include/linux/pstore* | |
04851772 | 9738 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 AV |
9739 | F: drivers/acpi/apei/erst.c |
9740 | ||
7fbc415d RC |
9741 | PTP HARDWARE CLOCK SUPPORT |
9742 | M: Richard Cochran <richardcochran@gmail.com> | |
e7333e3c | 9743 | L: netdev@vger.kernel.org |
7fbc415d RC |
9744 | S: Maintained |
9745 | W: http://linuxptp.sourceforge.net/ | |
9746 | F: Documentation/ABI/testing/sysfs-ptp | |
9747 | F: Documentation/ptp/* | |
0ecb3cdd | 9748 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
9749 | F: drivers/net/phy/dp83640* |
9750 | F: drivers/ptp/* | |
9751 | F: include/linux/ptp_cl* | |
9752 | ||
cf94a4d1 | 9753 | PTRACE SUPPORT |
e846ee5f | 9754 | M: Roland McGrath <roland@hack.frob.com> |
8b58be88 | 9755 | M: Oleg Nesterov <oleg@redhat.com> |
cf94a4d1 CH |
9756 | S: Maintained |
9757 | F: include/asm-generic/syscall.h | |
9758 | F: include/linux/ptrace.h | |
9759 | F: include/linux/regset.h | |
9760 | F: include/linux/tracehook.h | |
c117ab84 | 9761 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
9762 | F: kernel/ptrace.c |
9763 | ||
3e9d7ba7 HV |
9764 | PULSE8-CEC DRIVER |
9765 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9766 | L: linux-media@vger.kernel.org | |
9767 | T: git git://linuxtv.org/media_tree.git | |
9768 | S: Maintained | |
9769 | F: drivers/staging/media/pulse8-cec | |
9770 | ||
8320204a | 9771 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 9772 | M: Mike Isely <isely@pobox.com> |
16e9495d | 9773 | L: pvrusb2@isely.net (subscribers-only) |
661263b5 | 9774 | L: linux-media@vger.kernel.org |
8320204a | 9775 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 9776 | T: git git://linuxtv.org/media_tree.git |
8320204a | 9777 | S: Maintained |
618cd932 | 9778 | F: Documentation/media/v4l-drivers/pvrusb2* |
0c0d06ca | 9779 | F: drivers/media/usb/pvrusb2/ |
8320204a | 9780 | |
39532e6c | 9781 | PWC WEBCAM DRIVER |
c0936df4 | 9782 | M: Hans Verkuil <hverkuil@xs4all.nl> |
39532e6c HG |
9783 | L: linux-media@vger.kernel.org |
9784 | T: git git://linuxtv.org/media_tree.git | |
c0936df4 | 9785 | S: Odd Fixes |
39532e6c HG |
9786 | F: drivers/media/usb/pwc/* |
9787 | ||
93c090b3 | 9788 | PWM FAN DRIVER |
774e0362 KD |
9789 | M: Kamil Debski <kamil@wypas.org> |
9790 | M: Lukasz Majewski <l.majewski@samsung.com> | |
968ce1b1 | 9791 | L: linux-hwmon@vger.kernel.org |
93c090b3 KD |
9792 | S: Supported |
9793 | F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt | |
9794 | F: Documentation/hwmon/pwm-fan | |
9795 | F: drivers/hwmon/pwm-fan.c | |
9796 | ||
200efedd | 9797 | PWM SUBSYSTEM |
aa3495f7 TR |
9798 | M: Thierry Reding <thierry.reding@gmail.com> |
9799 | L: linux-pwm@vger.kernel.org | |
0c2498f1 | 9800 | S: Maintained |
006e854f | 9801 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git |
200efedd TR |
9802 | F: Documentation/pwm.txt |
9803 | F: Documentation/devicetree/bindings/pwm/ | |
9804 | F: include/linux/pwm.h | |
0c2498f1 | 9805 | F: drivers/pwm/ |
a140b98d TR |
9806 | F: drivers/video/backlight/pwm_bl.c |
9807 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 9808 | |
30ec261e | 9809 | PXA2xx/PXA3xx SUPPORT |
8da5e302 | 9810 | M: Daniel Mack <daniel@zonque.org> |
a323f664 | 9811 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
8da5e302 | 9812 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 9813 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 | 9814 | T: git git://github.com/hzhuang1/linux.git |
8da5e302 | 9815 | T: git git://github.com/rjarzmik/linux.git |
1da177e4 | 9816 | S: Maintained |
e68d7c14 | 9817 | F: arch/arm/boot/dts/pxa* |
679655da | 9818 | F: arch/arm/mach-pxa/ |
820439f1 | 9819 | F: drivers/dma/pxa* |
679655da | 9820 | F: drivers/pcmcia/pxa2xx* |
1403ead9 | 9821 | F: drivers/pinctrl/pxa/ |
9df92e6c | 9822 | F: drivers/spi/spi-pxa2xx* |
faf2e1db | 9823 | F: drivers/usb/gadget/udc/pxa2* |
679655da | 9824 | F: include/sound/pxa2xx-lib.h |
bec4c99e | 9825 | F: sound/arm/pxa* |
14430813 | 9826 | F: sound/soc/pxa/ |
1da177e4 | 9827 | |
f3154a46 RJ |
9828 | PXA GPIO DRIVER |
9829 | M: Robert Jarzmik <robert.jarzmik@free.fr> | |
9830 | L: linux-gpio@vger.kernel.org | |
9831 | S: Maintained | |
9832 | F: drivers/gpio/gpio-pxa.c | |
9833 | ||
ec64d3bf EG |
9834 | PXA3xx NAND FLASH DRIVER |
9835 | M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> | |
9836 | L: linux-mtd@lists.infradead.org | |
9837 | S: Maintained | |
9a67f099 | 9838 | F: drivers/mtd/nand/pxa3xx_nand.c |
ec64d3bf | 9839 | |
3f640c61 | 9840 | MMP SUPPORT |
8b58be88 | 9841 | M: Eric Miao <eric.y.miao@gmail.com> |
a323f664 | 9842 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
e8e6cb32 | 9843 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 HZ |
9844 | T: git git://github.com/hzhuang1/linux.git |
9845 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 9846 | S: Maintained |
e68d7c14 | 9847 | F: arch/arm/boot/dts/mmp* |
3f640c61 | 9848 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 9849 | |
272f133a PO |
9850 | PXA MMCI DRIVER |
9851 | S: Orphan | |
9852 | ||
57f63bc8 | 9853 | PXA RTC DRIVER |
8b58be88 | 9854 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
57f63bc8 RJ |
9855 | L: rtc-linux@googlegroups.com |
9856 | S: Maintained | |
9857 | ||
cea4001a | 9858 | QAT DRIVER |
90ab5a81 TS |
9859 | M: Giovanni Cabiddu <giovanni.cabiddu@intel.com> |
9860 | M: Salvatore Benedetto <salvatore.benedetto@intel.com> | |
49e7d9df JP |
9861 | L: qat-linux@intel.com |
9862 | S: Supported | |
9863 | F: drivers/crypto/qat/ | |
cea4001a | 9864 | |
52a09a04 | 9865 | QIB DRIVER |
8473c603 | 9866 | M: Mike Marciniszyn <infinipath@intel.com> |
52a09a04 MM |
9867 | L: linux-rdma@vger.kernel.org |
9868 | S: Supported | |
9869 | F: drivers/infiniband/hw/qib/ | |
9870 | ||
5e9772b9 JS |
9871 | QLOGIC QLA1280 SCSI DRIVER |
9872 | M: Michael Reed <mdr@sgi.com> | |
9873 | L: linux-scsi@vger.kernel.org | |
9874 | S: Maintained | |
9875 | F: drivers/scsi/qla1280.[ch] | |
9876 | ||
1da177e4 | 9877 | QLOGIC QLA2XXX FC-SCSI DRIVER |
2c804eb0 | 9878 | M: qla2xxx-upstream@qlogic.com |
1da177e4 LT |
9879 | L: linux-scsi@vger.kernel.org |
9880 | S: Supported | |
679655da JP |
9881 | F: Documentation/scsi/LICENSE.qla2xxx |
9882 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 9883 | |
883c98fe | 9884 | QLOGIC QLA4XXX iSCSI DRIVER |
1018b8b9 | 9885 | M: QLogic-Storage-Upstream@qlogic.com |
883c98fe RA |
9886 | L: linux-scsi@vger.kernel.org |
9887 | S: Supported | |
bacfb81b | 9888 | F: Documentation/scsi/LICENSE.qla4xxx |
883c98fe RA |
9889 | F: drivers/scsi/qla4xxx/ |
9890 | ||
5a4faa87 | 9891 | QLOGIC QLA3XXX NETWORK DRIVER |
0a955c3a | 9892 | M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> |
8b58be88 | 9893 | M: Ron Mercer <ron.mercer@qlogic.com> |
5a4faa87 RM |
9894 | M: linux-driver@qlogic.com |
9895 | L: netdev@vger.kernel.org | |
9896 | S: Supported | |
679655da | 9897 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 9898 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 9899 | |
0ec00f03 | 9900 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
9f35a3cc | 9901 | M: Dept-GELinuxNICDev@qlogic.com |
0ec00f03 AKS |
9902 | L: netdev@vger.kernel.org |
9903 | S: Supported | |
aa43c215 | 9904 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 9905 | |
c4e84bde | 9906 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
c9b1a5b5 HP |
9907 | M: Harish Patil <harish.patil@qlogic.com> |
9908 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> | |
9909 | M: Dept-GELinuxNICDev@qlogic.com | |
4cbfbe25 | 9910 | M: linux-driver@qlogic.com |
c4e84bde RM |
9911 | L: netdev@vger.kernel.org |
9912 | S: Supported | |
aa43c215 | 9913 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 9914 | |
fe56b9e6 YM |
9915 | QLOGIC QL4xxx ETHERNET DRIVER |
9916 | M: Yuval Mintz <Yuval.Mintz@qlogic.com> | |
9917 | M: Ariel Elior <Ariel.Elior@qlogic.com> | |
9918 | M: everest-linux-l2@qlogic.com | |
9919 | L: netdev@vger.kernel.org | |
9920 | S: Supported | |
9921 | F: drivers/net/ethernet/qlogic/qed/ | |
9922 | F: include/linux/qed/ | |
9923 | F: drivers/net/ethernet/qlogic/qede/ | |
9924 | ||
1da177e4 | 9925 | QNX4 FILESYSTEM |
8b58be88 | 9926 | M: Anders Larsen <al@alarsen.net> |
1da177e4 LT |
9927 | W: http://www.alarsen.net/linux/qnx4fs/ |
9928 | S: Maintained | |
80811493 | 9929 | F: fs/qnx4/ |
c117ab84 CEB |
9930 | F: include/uapi/linux/qnx4_fs.h |
9931 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 9932 | |
91952bc0 AP |
9933 | QT1010 MEDIA DRIVER |
9934 | M: Antti Palosaari <crope@iki.fi> | |
9935 | L: linux-media@vger.kernel.org | |
a825eaec | 9936 | W: https://linuxtv.org |
91952bc0 AP |
9937 | W: http://palosaari.fi/linux/ |
9938 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9939 | T: git git://linuxtv.org/anttip/media_tree.git | |
9940 | S: Maintained | |
9941 | F: drivers/media/tuners/qt1010* | |
9942 | ||
966fb5ec SM |
9943 | QUALCOMM ATHEROS ATH9K WIRELESS DRIVER |
9944 | M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com> | |
9945 | L: linux-wireless@vger.kernel.org | |
9946 | L: ath9k-devel@lists.ath9k.org | |
9947 | W: http://wireless.kernel.org/en/users/Drivers/ath9k | |
9948 | S: Supported | |
9949 | F: drivers/net/wireless/ath/ath9k/ | |
9950 | ||
2ea0ffcb KV |
9951 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
9952 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
9953 | L: ath10k@lists.infradead.org | |
9954 | W: http://wireless.kernel.org/en/users/Drivers/ath10k | |
9f273c24 | 9955 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git |
2ea0ffcb KV |
9956 | S: Supported |
9957 | F: drivers/net/wireless/ath/ath10k/ | |
9958 | ||
b9b17deb TT |
9959 | QUALCOMM EMAC GIGABIT ETHERNET DRIVER |
9960 | M: Timur Tabi <timur@codeaurora.org> | |
9961 | L: netdev@vger.kernel.org | |
9962 | S: Supported | |
9963 | F: drivers/net/ethernet/qualcomm/emac/ | |
9964 | ||
4f4567cf RK |
9965 | QUALCOMM HEXAGON ARCHITECTURE |
9966 | M: Richard Kuo <rkuo@codeaurora.org> | |
9967 | L: linux-hexagon@vger.kernel.org | |
9f273c24 | 9968 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git |
4f4567cf RK |
9969 | S: Supported |
9970 | F: arch/hexagon/ | |
9971 | ||
8e84c258 EK |
9972 | QUALCOMM WCN36XX WIRELESS DRIVER |
9973 | M: Eugene Krasnikov <k.eugene.e@gmail.com> | |
9974 | L: wcn36xx@lists.infradead.org | |
9975 | W: http://wireless.kernel.org/en/users/Drivers/wcn36xx | |
9976 | T: git git://github.com/KrasnikovEugene/wcn36xx.git | |
9977 | S: Supported | |
9978 | F: drivers/net/wireless/ath/wcn36xx/ | |
9979 | ||
eeca9a67 MT |
9980 | QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT |
9981 | M: Gabriel Somlo <somlo@cmu.edu> | |
9982 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
9983 | L: qemu-devel@nongnu.org | |
9984 | S: Maintained | |
9985 | F: drivers/firmware/qemu_fw_cfg.c | |
9986 | ||
602adf40 | 9987 | RADOS BLOCK DEVICE (RBD) |
0f5417ce SW |
9988 | M: Ilya Dryomov <idryomov@gmail.com> |
9989 | M: Sage Weil <sage@redhat.com> | |
527a88b9 | 9990 | M: Alex Elder <elder@kernel.org> |
398ecff5 | 9991 | L: ceph-devel@vger.kernel.org |
09d90327 SW |
9992 | W: http://ceph.com/ |
9993 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
6e67b7ae | 9994 | T: git git://github.com/ceph/ceph-client.git |
602adf40 | 9995 | S: Supported |
398ecff5 | 9996 | F: Documentation/ABI/testing/sysfs-bus-rbd |
602adf40 YS |
9997 | F: drivers/block/rbd.c |
9998 | F: drivers/block/rbd_types.h | |
9999 | ||
1da177e4 | 10000 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 10001 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
c69f677c | 10002 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 10003 | S: Maintained |
8a61f013 | 10004 | F: drivers/video/fbdev/aty/radeon* |
c117ab84 | 10005 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 10006 | |
c6c9b34c | 10007 | RADIOSHARK RADIO DRIVER |
c0936df4 | 10008 | M: Hans Verkuil <hverkuil@xs4all.nl> |
c6c9b34c HG |
10009 | L: linux-media@vger.kernel.org |
10010 | T: git git://linuxtv.org/media_tree.git | |
10011 | S: Maintained | |
10012 | F: drivers/media/radio/radio-shark.c | |
10013 | ||
10014 | RADIOSHARK2 RADIO DRIVER | |
c0936df4 | 10015 | M: Hans Verkuil <hverkuil@xs4all.nl> |
c6c9b34c HG |
10016 | L: linux-media@vger.kernel.org |
10017 | T: git git://linuxtv.org/media_tree.git | |
10018 | S: Maintained | |
10019 | F: drivers/media/radio/radio-shark2.c | |
10020 | F: drivers/media/radio/radio-tea5777.c | |
10021 | ||
1da177e4 | 10022 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 10023 | M: Paul Mackerras <paulus@samba.org> |
c69f677c | 10024 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 10025 | S: Maintained |
8a61f013 | 10026 | F: drivers/video/fbdev/aty/aty128fb.c |
1da177e4 | 10027 | |
a0fd81a9 | 10028 | RALINK MIPS ARCHITECTURE |
bdb40e8e | 10029 | M: John Crispin <john@phrozen.org> |
a0fd81a9 JC |
10030 | L: linux-mips@linux-mips.org |
10031 | S: Maintained | |
10032 | F: arch/mips/ralink | |
10033 | ||
e7839f25 | 10034 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 10035 | P: rt2x00 project |
b182427e | 10036 | M: Stanislaw Gruszka <sgruszka@redhat.com> |
f198f98e | 10037 | M: Helmut Schaa <helmut.schaa@googlemail.com> |
95ea3627 | 10038 | L: linux-wireless@vger.kernel.org |
95ea3627 | 10039 | S: Maintained |
33aca94d | 10040 | F: drivers/net/wireless/ralink/rt2x00/ |
95ea3627 | 10041 | |
9db5579b | 10042 | RAMDISK RAM BLOCK DEVICE DRIVER |
ea7618ec | 10043 | M: Jens Axboe <axboe@kernel.dk> |
9db5579b | 10044 | S: Maintained |
679655da JP |
10045 | F: Documentation/blockdev/ramdisk.txt |
10046 | F: drivers/block/brd.c | |
9db5579b | 10047 | |
9e95ce27 | 10048 | RANDOM NUMBER DRIVER |
0624bcaa | 10049 | M: "Theodore Ts'o" <tytso@mit.edu> |
9e95ce27 | 10050 | S: Maintained |
679655da | 10051 | F: drivers/char/random.c |
9e95ce27 | 10052 | |
394b701c | 10053 | RAPIDIO SUBSYSTEM |
8b58be88 | 10054 | M: Matt Porter <mporter@kernel.crashing.org> |
b8bc1dd3 | 10055 | M: Alexandre Bounine <alexandre.bounine@idt.com> |
394b701c | 10056 | S: Maintained |
679655da | 10057 | F: drivers/rapidio/ |
394b701c | 10058 | |
e2d1d6c0 | 10059 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 10060 | L: linux-wireless@vger.kernel.org |
f52a5490 | 10061 | S: Orphan |
679655da | 10062 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
10063 | |
10064 | RCUTORTURE MODULE | |
e0198b29 | 10065 | M: Josh Triplett <josh@joshtriplett.org> |
8b58be88 | 10066 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
981c3a4f | 10067 | L: linux-kernel@vger.kernel.org |
f9094d8e | 10068 | S: Supported |
08deed1e | 10069 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da | 10070 | F: Documentation/RCU/torture.txt |
34e2d560 | 10071 | F: kernel/rcu/rcutorture.c |
e2d1d6c0 | 10072 | |
c87b9c60 PM |
10073 | RCUTORTURE TEST FRAMEWORK |
10074 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
ab0afd6c | 10075 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
10076 | R: Steven Rostedt <rostedt@goodmis.org> |
10077 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
96a39bc4 | 10078 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
981c3a4f | 10079 | L: linux-kernel@vger.kernel.org |
c87b9c60 PM |
10080 | S: Supported |
10081 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
10082 | F: tools/testing/selftests/rcutorture | |
10083 | ||
c1f766b5 | 10084 | RDC R-321X SoC |
8b58be88 | 10085 | M: Florian Fainelli <florian@openwrt.org> |
c1f766b5 FF |
10086 | S: Maintained |
10087 | ||
db17f395 | 10088 | RDC R6040 FAST ETHERNET DRIVER |
35566e96 | 10089 | M: Florian Fainelli <f.fainelli@gmail.com> |
db17f395 FF |
10090 | L: netdev@vger.kernel.org |
10091 | S: Maintained | |
58565a35 | 10092 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 10093 | |
a09ed661 | 10094 | RDS - RELIABLE DATAGRAM SOCKETS |
72f26eee | 10095 | M: Santosh Shilimkar <santosh.shilimkar@oracle.com> |
10096 | L: netdev@vger.kernel.org | |
10097 | L: linux-rdma@vger.kernel.org | |
fbb5a558 | 10098 | L: rds-devel@oss.oracle.com (moderated for non-subscribers) |
72f26eee | 10099 | W: https://oss.oracle.com/projects/rds/ |
a09ed661 | 10100 | S: Supported |
679655da | 10101 | F: net/rds/ |
72f26eee | 10102 | F: Documentation/networking/rds.txt |
a09ed661 | 10103 | |
0194621b DD |
10104 | RDMAVT - RDMA verbs software |
10105 | M: Dennis Dalessandro <dennis.dalessandro@intel.com> | |
10106 | L: linux-rdma@vger.kernel.org | |
10107 | S: Supported | |
10108 | F: drivers/infiniband/sw/rdmavt | |
10109 | ||
595182bc | 10110 | READ-COPY UPDATE (RCU) |
8b58be88 | 10111 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
ab0afd6c | 10112 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
10113 | R: Steven Rostedt <rostedt@goodmis.org> |
10114 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
96a39bc4 | 10115 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
981c3a4f | 10116 | L: linux-kernel@vger.kernel.org |
9fab9787 | 10117 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 10118 | S: Supported |
08deed1e | 10119 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 10120 | F: Documentation/RCU/ |
9fab9787 | 10121 | X: Documentation/RCU/torture.txt |
f9094d8e | 10122 | F: include/linux/rcu* |
4102adab PM |
10123 | X: include/linux/srcu.h |
10124 | F: kernel/rcu/ | |
34e2d560 | 10125 | X: kernel/torture.c |
595182bc | 10126 | |
0c86edc0 | 10127 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 10128 | M: Alessandro Zummo <a.zummo@towertech.it> |
7c6f84f8 | 10129 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
76465493 | 10130 | L: rtc-linux@googlegroups.com |
8a6e2535 | 10131 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
4733f397 | 10132 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git |
0c86edc0 | 10133 | S: Maintained |
7af6a2e1 | 10134 | F: Documentation/devicetree/bindings/rtc/ |
679655da JP |
10135 | F: Documentation/rtc.txt |
10136 | F: drivers/rtc/ | |
10137 | F: include/linux/rtc.h | |
c117ab84 | 10138 | F: include/uapi/linux/rtc.h |
fe23c336 AB |
10139 | F: include/linux/rtc/ |
10140 | F: include/linux/platform_data/rtc-* | |
10141 | F: tools/testing/selftests/timers/rtctest.c | |
0c86edc0 | 10142 | |
0e400c53 MB |
10143 | REALTEK AUDIO CODECS |
10144 | M: Bard Liao <bardliao@realtek.com> | |
10145 | M: Oder Chiou <oder_chiou@realtek.com> | |
10146 | S: Maintained | |
10147 | F: sound/soc/codecs/rt* | |
10148 | F: include/sound/rt*.h | |
10149 | ||
1da177e4 | 10150 | REISERFS FILE SYSTEM |
76c4e5ea | 10151 | L: reiserfs-devel@vger.kernel.org |
1da177e4 | 10152 | S: Supported |
679655da | 10153 | F: fs/reiserfs/ |
1da177e4 | 10154 | |
b83a313b | 10155 | REGISTER MAP ABSTRACTION |
b02e48f2 | 10156 | M: Mark Brown <broonie@kernel.org> |
dd060bc9 | 10157 | L: linux-kernel@vger.kernel.org |
b83a313b MB |
10158 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
10159 | S: Supported | |
9398a639 | 10160 | F: Documentation/devicetree/bindings/regmap/ |
b83a313b MB |
10161 | F: drivers/base/regmap/ |
10162 | F: include/linux/regmap.h | |
10163 | ||
400e64df OBC |
10164 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
10165 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
69ae9895 | 10166 | M: Bjorn Andersson <bjorn.andersson@linaro.org> |
d7586849 | 10167 | L: linux-remoteproc@vger.kernel.org |
6bb697b6 | 10168 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df | 10169 | S: Maintained |
15ebc72d | 10170 | F: Documentation/devicetree/bindings/remoteproc/ |
400e64df | 10171 | F: Documentation/remoteproc.txt |
15ebc72d | 10172 | F: drivers/remoteproc/ |
6fc26488 | 10173 | F: include/linux/remoteproc.h |
400e64df | 10174 | |
d8115db5 OBC |
10175 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
10176 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
69ae9895 | 10177 | M: Bjorn Andersson <bjorn.andersson@linaro.org> |
d7586849 | 10178 | L: linux-remoteproc@vger.kernel.org |
d8115db5 OBC |
10179 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git |
10180 | S: Maintained | |
10181 | F: drivers/rpmsg/ | |
10182 | F: Documentation/rpmsg.txt | |
10183 | F: include/linux/rpmsg.h | |
10184 | ||
fedc81e7 GU |
10185 | RENESAS CLOCK DRIVERS |
10186 | M: Geert Uytterhoeven <geert+renesas@glider.be> | |
10187 | L: linux-renesas-soc@vger.kernel.org | |
10188 | S: Supported | |
10189 | F: drivers/clk/renesas/ | |
10190 | ||
8e6569af SS |
10191 | RENESAS ETHERNET DRIVERS |
10192 | R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> | |
10193 | L: netdev@vger.kernel.org | |
4a121096 | 10194 | L: linux-renesas-soc@vger.kernel.org |
8e6569af SS |
10195 | F: drivers/net/ethernet/renesas/ |
10196 | F: include/linux/sh_eth.h | |
10197 | ||
3e46c397 YS |
10198 | RENESAS USB2 PHY DRIVER |
10199 | M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> | |
4a121096 | 10200 | L: linux-renesas-soc@vger.kernel.org |
3e46c397 YS |
10201 | S: Maintained |
10202 | F: drivers/phy/phy-rcar-gen3-usb2.c | |
10203 | ||
1b0fe6be PZ |
10204 | RESET CONTROLLER FRAMEWORK |
10205 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
9f273c24 | 10206 | T: git git://git.pengutronix.de/git/pza/linux |
1b0fe6be PZ |
10207 | S: Maintained |
10208 | F: drivers/reset/ | |
10209 | F: Documentation/devicetree/bindings/reset/ | |
b2f6dd7b | 10210 | F: include/dt-bindings/reset/ |
1b0fe6be PZ |
10211 | F: include/linux/reset.h |
10212 | F: include/linux/reset-controller.h | |
10213 | ||
e0897645 | 10214 | RFKILL |
8b58be88 | 10215 | M: Johannes Berg <johannes@sipsolutions.net> |
19d337df | 10216 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
10217 | W: http://wireless.kernel.org/ |
10218 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
10219 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 10220 | S: Maintained |
505c9247 | 10221 | F: Documentation/rfkill.txt |
80811493 | 10222 | F: net/rfkill/ |
e0897645 | 10223 | |
933685ca TG |
10224 | RHASHTABLE |
10225 | M: Thomas Graf <tgraf@suug.ch> | |
39ec406d | 10226 | M: Herbert Xu <herbert@gondor.apana.org.au> |
933685ca TG |
10227 | L: netdev@vger.kernel.org |
10228 | S: Maintained | |
10229 | F: lib/rhashtable.c | |
10230 | F: include/linux/rhashtable.h | |
10231 | ||
67e054e9 ML |
10232 | RICOH SMARTMEDIA/XD DRIVER |
10233 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
10234 | S: Maintained | |
21c26f50 JP |
10235 | F: drivers/mtd/nand/r852.c |
10236 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 10237 | |
92634125 ML |
10238 | RICOH R5C592 MEMORYSTICK DRIVER |
10239 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
10240 | S: Maintained | |
10241 | F: drivers/memstick/host/r592.* | |
10242 | ||
27f1d2f9 SA |
10243 | ROCCAT DRIVERS |
10244 | M: Stefan Achatz <erazor_de@users.sourceforge.net> | |
10245 | W: http://sourceforge.net/projects/roccat/ | |
10246 | S: Maintained | |
10247 | F: drivers/hid/hid-roccat* | |
10248 | F: include/linux/hid-roccat* | |
10249 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* | |
10250 | ||
4b8ac966 JP |
10251 | ROCKER DRIVER |
10252 | M: Jiri Pirko <jiri@resnulli.us> | |
4b8ac966 JP |
10253 | L: netdev@vger.kernel.org |
10254 | S: Supported | |
10255 | F: drivers/net/ethernet/rocker/ | |
10256 | ||
1da177e4 LT |
10257 | ROCKETPORT DRIVER |
10258 | P: Comtrol Corp. | |
1da177e4 LT |
10259 | W: http://www.comtrol.com |
10260 | S: Maintained | |
679655da | 10261 | F: Documentation/serial/rocket.txt |
c897401b | 10262 | F: drivers/tty/rocket* |
1da177e4 | 10263 | |
7645c2f4 KC |
10264 | ROCKETPORT EXPRESS/INFINITY DRIVER |
10265 | M: Kevin Cernekee <cernekee@gmail.com> | |
10266 | L: linux-serial@vger.kernel.org | |
10267 | S: Odd Fixes | |
10268 | F: drivers/tty/serial/rp2.* | |
10269 | ||
1da177e4 | 10270 | ROSE NETWORK LAYER |
8b58be88 | 10271 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 10272 | L: linux-hams@vger.kernel.org |
d34cb28a | 10273 | W: http://www.linux-ax25.org/ |
1da177e4 | 10274 | S: Maintained |
679655da | 10275 | F: include/net/rose.h |
c117ab84 | 10276 | F: include/uapi/linux/rose.h |
679655da | 10277 | F: net/rose/ |
1da177e4 | 10278 | |
91952bc0 AP |
10279 | RTL2830 MEDIA DRIVER |
10280 | M: Antti Palosaari <crope@iki.fi> | |
10281 | L: linux-media@vger.kernel.org | |
a825eaec | 10282 | W: https://linuxtv.org |
91952bc0 AP |
10283 | W: http://palosaari.fi/linux/ |
10284 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10285 | T: git git://linuxtv.org/anttip/media_tree.git | |
10286 | S: Maintained | |
10287 | F: drivers/media/dvb-frontends/rtl2830* | |
10288 | ||
27a0aacf AP |
10289 | RTL2832 MEDIA DRIVER |
10290 | M: Antti Palosaari <crope@iki.fi> | |
10291 | L: linux-media@vger.kernel.org | |
a825eaec | 10292 | W: https://linuxtv.org |
27a0aacf AP |
10293 | W: http://palosaari.fi/linux/ |
10294 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10295 | T: git git://linuxtv.org/anttip/media_tree.git | |
10296 | S: Maintained | |
10297 | F: drivers/media/dvb-frontends/rtl2832* | |
10298 | ||
ba6e6f6e AP |
10299 | RTL2832_SDR MEDIA DRIVER |
10300 | M: Antti Palosaari <crope@iki.fi> | |
10301 | L: linux-media@vger.kernel.org | |
a825eaec | 10302 | W: https://linuxtv.org |
ba6e6f6e AP |
10303 | W: http://palosaari.fi/linux/ |
10304 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10305 | T: git git://linuxtv.org/anttip/media_tree.git | |
10306 | S: Maintained | |
b4bb1c28 | 10307 | F: drivers/media/dvb-frontends/rtl2832_sdr* |
ba6e6f6e | 10308 | |
59840488 | 10309 | RTL8180 WIRELESS DRIVER |
605bebe2 | 10310 | L: linux-wireless@vger.kernel.org |
491b26b4 | 10311 | W: http://wireless.kernel.org/ |
54e5881d | 10312 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7be6ff65 | 10313 | S: Orphan |
62141726 | 10314 | F: drivers/net/wireless/realtek/rtl818x/rtl8180/ |
605bebe2 | 10315 | |
59840488 | 10316 | RTL8187 WIRELESS DRIVER |
9f0939bf | 10317 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
8b58be88 JP |
10318 | M: Hin-Tak Leung <htl10@users.sourceforge.net> |
10319 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
7d2c86b5 | 10320 | L: linux-wireless@vger.kernel.org |
491b26b4 | 10321 | W: http://wireless.kernel.org/ |
54e5881d | 10322 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 10323 | S: Maintained |
62141726 | 10324 | F: drivers/net/wireless/realtek/rtl818x/rtl8187/ |
59840488 | 10325 | |
3cf0c8ad LF |
10326 | RTL8192CE WIRELESS DRIVER |
10327 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
10328 | M: Chaoming Li <chaoming_li@realsil.com.cn> | |
10329 | L: linux-wireless@vger.kernel.org | |
491b26b4 | 10330 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
10331 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
10332 | S: Maintained | |
62141726 KV |
10333 | F: drivers/net/wireless/realtek/rtlwifi/ |
10334 | F: drivers/net/wireless/realtek/rtlwifi/rtl8192ce/ | |
59840488 | 10335 | |
26f1fad2 JS |
10336 | RTL8XXXU WIRELESS DRIVER (rtl8xxxu) |
10337 | M: Jes Sorensen <Jes.Sorensen@redhat.com> | |
10338 | L: linux-wireless@vger.kernel.org | |
171a900c | 10339 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel |
26f1fad2 JS |
10340 | S: Maintained |
10341 | F: drivers/net/wireless/realtek/rtl8xxxu/ | |
10342 | ||
9eb8ef74 | 10343 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 10344 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 10345 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 10346 | S: Maintained |
8a61f013 | 10347 | F: drivers/video/fbdev/savage/ |
9eb8ef74 | 10348 | |
1da177e4 | 10349 | S390 |
8b58be88 JP |
10350 | M: Martin Schwidefsky <schwidefsky@de.ibm.com> |
10351 | M: Heiko Carstens <heiko.carstens@de.ibm.com> | |
d58140cc | 10352 | L: linux-s390@vger.kernel.org |
5238da45 | 10353 | W: http://www.ibm.com/developerworks/linux/linux390/ |
9f273c24 | 10354 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git |
5238da45 | 10355 | S: Supported |
679655da | 10356 | F: arch/s390/ |
a968cd3e | 10357 | F: drivers/s390/ |
3bfe6858 JN |
10358 | F: Documentation/s390/ |
10359 | F: Documentation/DocBook/s390* | |
5238da45 | 10360 | |
322986ca SO |
10361 | S390 COMMON I/O LAYER |
10362 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
10363 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
10364 | L: linux-s390@vger.kernel.org | |
10365 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10366 | S: Supported | |
10367 | F: drivers/s390/cio/ | |
10368 | ||
10369 | S390 DASD DRIVER | |
38b7f07a SH |
10370 | M: Stefan Haberland <sth@linux.vnet.ibm.com> |
10371 | M: Jan Hoeppner <hoeppner@linux.vnet.ibm.com> | |
322986ca SO |
10372 | L: linux-s390@vger.kernel.org |
10373 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10374 | S: Supported | |
10375 | F: drivers/s390/block/dasd* | |
10376 | F: block/partitions/ibm.c | |
10377 | ||
5238da45 | 10378 | S390 NETWORK DRIVERS |
f0c59aff | 10379 | M: Ursula Braun <ubraun@linux.vnet.ibm.com> |
d58140cc | 10380 | L: linux-s390@vger.kernel.org |
5238da45 HC |
10381 | W: http://www.ibm.com/developerworks/linux/linux390/ |
10382 | S: Supported | |
679655da | 10383 | F: drivers/s390/net/ |
5238da45 | 10384 | |
322986ca SO |
10385 | S390 PCI SUBSYSTEM |
10386 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
10387 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> | |
10388 | L: linux-s390@vger.kernel.org | |
10389 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10390 | S: Supported | |
10391 | F: arch/s390/pci/ | |
10392 | F: drivers/pci/hotplug/s390_pci_hpc.c | |
10393 | ||
feed9b62 | 10394 | S390 ZCRYPT DRIVER |
5c8d0983 | 10395 | M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com> |
feed9b62 | 10396 | L: linux-s390@vger.kernel.org |
a968cd3e | 10397 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 10398 | S: Supported |
d5ca6918 | 10399 | F: drivers/s390/crypto/ |
feed9b62 | 10400 | |
5238da45 | 10401 | S390 ZFCP DRIVER |
d38e19d0 | 10402 | M: Steffen Maier <maier@linux.vnet.ibm.com> |
d58140cc | 10403 | L: linux-s390@vger.kernel.org |
5238da45 | 10404 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 10405 | S: Supported |
679655da | 10406 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 10407 | |
dd96df2c | 10408 | S390 IUCV NETWORK LAYER |
f0c59aff | 10409 | M: Ursula Braun <ubraun@linux.vnet.ibm.com> |
dd96df2c UB |
10410 | L: linux-s390@vger.kernel.org |
10411 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10412 | S: Supported | |
679655da JP |
10413 | F: drivers/s390/net/*iucv* |
10414 | F: include/net/iucv/ | |
10415 | F: net/iucv/ | |
dd96df2c | 10416 | |
8128f23c GS |
10417 | S390 IOMMU (PCI) |
10418 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> | |
10419 | L: linux-s390@vger.kernel.org | |
10420 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
10421 | S: Supported | |
10422 | F: drivers/iommu/s390-iommu.c | |
10423 | ||
4dde7f75 | 10424 | S3C24XX SD/MMC Driver |
8b58be88 | 10425 | M: Ben Dooks <ben-linux@fluff.org> |
efc03ecb | 10426 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4dde7f75 | 10427 | S: Supported |
679655da | 10428 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 10429 | |
1f15a229 HV |
10430 | SAA6588 RDS RECEIVER DRIVER |
10431 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10432 | L: linux-media@vger.kernel.org | |
10433 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10434 | W: https://linuxtv.org |
1f15a229 HV |
10435 | S: Odd Fixes |
10436 | F: drivers/media/i2c/saa6588* | |
10437 | ||
98ed12e6 | 10438 | SAA7134 VIDEO4LINUX DRIVER |
5dc8a864 MCC |
10439 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
10440 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
98ed12e6 | 10441 | L: linux-media@vger.kernel.org |
a825eaec | 10442 | W: https://linuxtv.org |
98ed12e6 MCC |
10443 | T: git git://linuxtv.org/media_tree.git |
10444 | S: Odd fixes | |
618cd932 | 10445 | F: Documentation/media/v4l-drivers/saa7134* |
98ed12e6 MCC |
10446 | F: drivers/media/pci/saa7134/ |
10447 | ||
1da177e4 | 10448 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 10449 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 10450 | L: linux-media@vger.kernel.org |
275ffde4 | 10451 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 10452 | S: Maintained |
90d72ac6 MCC |
10453 | F: drivers/media/common/saa7146/ |
10454 | F: drivers/media/pci/saa7146/ | |
10455 | F: include/media/saa7146* | |
1da177e4 | 10456 | |
92304a40 | 10457 | SAMSUNG LAPTOP DRIVER |
5909c654 | 10458 | M: Corentin Chary <corentin.chary@gmail.com> |
92304a40 CC |
10459 | L: platform-driver-x86@vger.kernel.org |
10460 | S: Maintained | |
10461 | F: drivers/platform/x86/samsung-laptop.c | |
10462 | ||
4a109cc0 | 10463 | SAMSUNG AUDIO (ASoC) DRIVERS |
326dce07 | 10464 | M: Krzysztof Kozlowski <krzk@kernel.org> |
250b6851 | 10465 | M: Sangbeom Kim <sbkim73@samsung.com> |
09a01028 | 10466 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
4a109cc0 MB |
10467 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
10468 | S: Supported | |
14430813 | 10469 | F: sound/soc/samsung/ |
4a109cc0 | 10470 | |
0d89a28b | 10471 | SAMSUNG FRAMEBUFFER DRIVER |
b7701755 | 10472 | M: Jingoo Han <jingoohan1@gmail.com> |
0d89a28b JH |
10473 | L: linux-fbdev@vger.kernel.org |
10474 | S: Maintained | |
8a61f013 | 10475 | F: drivers/video/fbdev/s3c-fb.c |
0d89a28b | 10476 | |
b40f0632 | 10477 | SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS |
f69d3a17 | 10478 | M: Sangbeom Kim <sbkim73@samsung.com> |
326dce07 KK |
10479 | M: Krzysztof Kozlowski <krzk@kernel.org> |
10480 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
f69d3a17 | 10481 | L: linux-kernel@vger.kernel.org |
b40f0632 | 10482 | L: linux-samsung-soc@vger.kernel.org |
f69d3a17 SK |
10483 | S: Supported |
10484 | F: drivers/mfd/sec*.c | |
10485 | F: drivers/regulator/s2m*.c | |
10486 | F: drivers/regulator/s5m*.c | |
b40f0632 KK |
10487 | F: drivers/clk/clk-s2mps11.c |
10488 | F: drivers/rtc/rtc-s5m.c | |
f69d3a17 | 10489 | F: include/linux/mfd/samsung/ |
a13c7c51 KK |
10490 | F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt |
10491 | F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt | |
27383ca9 | 10492 | F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt |
a13c7c51 | 10493 | F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt |
f69d3a17 | 10494 | |
038f5c4b SN |
10495 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
10496 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
10497 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> | |
10498 | L: linux-media@vger.kernel.org | |
10499 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
10500 | S: Supported | |
10501 | F: drivers/media/platform/exynos4-is/ | |
038f5c4b | 10502 | |
6fd86ab2 SN |
10503 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
10504 | M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com> | |
10505 | L: linux-media@vger.kernel.org | |
10506 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
10507 | S: Maintained | |
10508 | F: drivers/media/platform/s3c-camif/ | |
d647f0b7 | 10509 | F: include/media/drv-intf/s3c_camif.h |
6fd86ab2 | 10510 | |
b84ef24e AH |
10511 | SAMSUNG S5C73M3 CAMERA DRIVER |
10512 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
10513 | M: Andrzej Hajda <a.hajda@samsung.com> | |
10514 | L: linux-media@vger.kernel.org | |
10515 | S: Supported | |
10516 | F: drivers/media/i2c/s5c73m3/* | |
10517 | ||
7d459937 AH |
10518 | SAMSUNG S5K5BAF CAMERA DRIVER |
10519 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
10520 | M: Andrzej Hajda <a.hajda@samsung.com> | |
10521 | L: linux-media@vger.kernel.org | |
10522 | S: Supported | |
10523 | F: drivers/media/i2c/s5k5baf.c | |
10524 | ||
c04c674f RB |
10525 | SAMSUNG S3FWRN5 NFC DRIVER |
10526 | M: Robert Baldyga <r.baldyga@samsung.com> | |
079c2652 | 10527 | M: Krzysztof Opasiak <k.opasiak@samsung.com> |
c04c674f RB |
10528 | L: linux-nfc@lists.01.org (moderated for non-subscribers) |
10529 | S: Supported | |
10530 | F: drivers/nfc/s3fwrn5 | |
10531 | ||
310e39c9 | 10532 | SAMSUNG SOC CLOCK DRIVERS |
fea685e9 TF |
10533 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
10534 | M: Tomasz Figa <tomasz.figa@gmail.com> | |
490583f0 | 10535 | M: Chanwoo Choi <cw00.choi@samsung.com> |
310e39c9 TF |
10536 | S: Supported |
10537 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
10538 | F: drivers/clk/samsung/ | |
490583f0 CC |
10539 | F: include/dt-bindings/clock/exynos*.h |
10540 | F: Documentation/devicetree/bindings/clock/exynos*.txt | |
310e39c9 | 10541 | |
2e365a70 AS |
10542 | SAMSUNG SPI DRIVERS |
10543 | M: Kukjin Kim <kgene@kernel.org> | |
10544 | M: Krzysztof Kozlowski <krzk@kernel.org> | |
10545 | M: Andi Shyti <andi.shyti@samsung.com> | |
10546 | L: linux-spi@vger.kernel.org | |
10547 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
10548 | S: Maintained | |
10549 | F: Documentation/devicetree/bindings/spi/spi-samsung.txt | |
10550 | F: drivers/spi/spi-s3c* | |
10551 | F: include/linux/platform_data/spi-s3c64xx.h | |
10552 | ||
66890ed6 BA |
10553 | SAMSUNG SXGBE DRIVERS |
10554 | M: Byungho An <bh74.an@samsung.com> | |
10555 | M: Girish K S <ks.giri@samsung.com> | |
66890ed6 BA |
10556 | M: Vipul Pandya <vipul.pandya@samsung.com> |
10557 | S: Supported | |
10558 | L: netdev@vger.kernel.org | |
10559 | F: drivers/net/ethernet/samsung/sxgbe/ | |
10560 | ||
93c537af LM |
10561 | SAMSUNG THERMAL DRIVER |
10562 | M: Lukasz Majewski <l.majewski@samsung.com> | |
10563 | L: linux-pm@vger.kernel.org | |
10564 | L: linux-samsung-soc@vger.kernel.org | |
10565 | S: Supported | |
9f273c24 | 10566 | T: git https://github.com/lmajewski/linux-samsung-thermal.git |
93c537af LM |
10567 | F: drivers/thermal/samsung/ |
10568 | ||
e296cd32 | 10569 | SAMSUNG USB2 PHY DRIVER |
774e0362 KD |
10570 | M: Kamil Debski <kamil@wypas.org> |
10571 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> | |
e296cd32 KD |
10572 | L: linux-kernel@vger.kernel.org |
10573 | S: Supported | |
10574 | F: Documentation/devicetree/bindings/phy/samsung-phy.txt | |
10575 | F: Documentation/phy/samsung-usb2.txt | |
10576 | F: drivers/phy/phy-exynos4210-usb2.c | |
10577 | F: drivers/phy/phy-exynos4x12-usb2.c | |
10578 | F: drivers/phy/phy-exynos5250-usb2.c | |
10579 | F: drivers/phy/phy-s5pv210-usb2.c | |
10580 | F: drivers/phy/phy-samsung-usb2.c | |
10581 | F: drivers/phy/phy-samsung-usb2.h | |
10582 | ||
ca749e2a | 10583 | SERIAL DRIVERS |
5e30bbb7 | 10584 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
ca749e2a | 10585 | L: linux-serial@vger.kernel.org |
5e30bbb7 | 10586 | S: Maintained |
30743257 | 10587 | F: Documentation/devicetree/bindings/serial/ |
14430813 | 10588 | F: drivers/tty/serial/ |
ca749e2a | 10589 | |
49fc9361 BG |
10590 | STI CEC DRIVER |
10591 | M: Benjamin Gaignard <benjamin.gaignard@linaro.org> | |
10592 | L: kernel@stlinux.com | |
10593 | S: Maintained | |
10594 | F: drivers/staging/media/st-cec/ | |
10595 | F: Documentation/devicetree/bindings/media/stih-cec.txt | |
10596 | ||
aecb7b64 | 10597 | SYNOPSYS DESIGNWARE DMAC DRIVER |
da89947b | 10598 | M: Viresh Kumar <vireshk@kernel.org> |
337ae47c | 10599 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
aecb7b64 | 10600 | S: Maintained |
1fb200d6 | 10601 | F: include/linux/dma/dw.h |
3d598f47 | 10602 | F: include/linux/platform_data/dma-dw.h |
61a76496 | 10603 | F: drivers/dma/dw/ |
aecb7b64 | 10604 | |
058999cc LP |
10605 | SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver |
10606 | M: Lars Persson <lars.persson@axis.com> | |
10607 | L: netdev@vger.kernel.org | |
10608 | S: Supported | |
10609 | F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt | |
10610 | F: drivers/net/ethernet/synopsys/dwc_eth_qos.c | |
10611 | ||
fc531d98 | 10612 | SYNOPSYS DESIGNWARE I2C DRIVER |
fc531d98 | 10613 | M: Jarkko Nikula <jarkko.nikula@linux.intel.com> |
d0781b98 AS |
10614 | R: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
10615 | R: Mika Westerberg <mika.westerberg@linux.intel.com> | |
fc531d98 WS |
10616 | L: linux-i2c@vger.kernel.org |
10617 | S: Maintained | |
10618 | F: drivers/i2c/busses/i2c-designware-* | |
10619 | F: include/linux/platform_data/i2c-designware.h | |
10620 | ||
f9e37137 | 10621 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
f9e37137 SJ |
10622 | M: Jaehoon Chung <jh80.chung@samsung.com> |
10623 | L: linux-mmc@vger.kernel.org | |
10624 | S: Maintained | |
10625 | F: include/linux/mmc/dw_mmc.h | |
10626 | F: drivers/mmc/host/dw_mmc* | |
10627 | ||
a961e698 AS |
10628 | SYSTEM TRACE MODULE CLASS |
10629 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> | |
10630 | S: Maintained | |
e787bc46 | 10631 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git |
a961e698 AS |
10632 | F: Documentation/trace/stm.txt |
10633 | F: drivers/hwtracing/stm/ | |
10634 | F: include/linux/stm.h | |
10635 | F: include/uapi/linux/stm.h | |
10636 | ||
1db121d6 AN |
10637 | THUNDERBOLT DRIVER |
10638 | M: Andreas Noever <andreas.noever@gmail.com> | |
10639 | S: Maintained | |
10640 | F: drivers/thunderbolt/ | |
10641 | ||
e35a49b1 SR |
10642 | TI BQ27XXX POWER SUPPLY DRIVER |
10643 | R: Andrew F. Davis <afd@ti.com> | |
10644 | F: include/linux/power/bq27xxx_battery.h | |
8c0984e5 SR |
10645 | F: drivers/power/supply/bq27xxx_battery.c |
10646 | F: drivers/power/supply/bq27xxx_battery_i2c.c | |
e35a49b1 | 10647 | |
34db37c6 | 10648 | TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER |
50363737 | 10649 | M: John Stultz <john.stultz@linaro.org> |
88606e80 | 10650 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 10651 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 10652 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
10653 | S: Supported |
10654 | F: include/linux/clocksource.h | |
10655 | F: include/linux/time.h | |
10656 | F: include/linux/timex.h | |
c117ab84 CEB |
10657 | F: include/uapi/linux/time.h |
10658 | F: include/uapi/linux/timex.h | |
88606e80 TG |
10659 | F: kernel/time/clocksource.c |
10660 | F: kernel/time/time*.c | |
34db37c6 | 10661 | F: kernel/time/alarmtimer.c |
88606e80 | 10662 | F: kernel/time/ntp.c |
7fe5f1c1 | 10663 | F: tools/testing/selftests/timers/ |
88606e80 | 10664 | |
1da177e4 | 10665 | SC1200 WDT DRIVER |
b300645a | 10666 | M: Zwane Mwaikambo <zwanem@gmail.com> |
1da177e4 | 10667 | S: Maintained |
679655da | 10668 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
10669 | |
10670 | SCHEDULER | |
dd9b238c | 10671 | M: Ingo Molnar <mingo@redhat.com> |
8b58be88 | 10672 | M: Peter Zijlstra <peterz@infradead.org> |
981c3a4f | 10673 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 10674 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 10675 | S: Maintained |
95c0d71d | 10676 | F: kernel/sched/ |
679655da | 10677 | F: include/linux/sched.h |
c117ab84 | 10678 | F: include/uapi/linux/sched.h |
c2eb505b | 10679 | F: include/linux/wait.h |
1da177e4 | 10680 | |
6bcf6737 | 10681 | SCORE ARCHITECTURE |
ed38665e | 10682 | M: Chen Liqin <liqin.linux@gmail.com> |
a2681a75 | 10683 | M: Lennox Wu <lennox.wu@gmail.com> |
ed38665e | 10684 | W: http://www.sunplus.com |
6bcf6737 | 10685 | S: Supported |
a2681a75 | 10686 | F: arch/score/ |
6bcf6737 | 10687 | |
80f390ea SH |
10688 | SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers |
10689 | M: Sudeep Holla <sudeep.holla@arm.com> | |
10690 | L: linux-arm-kernel@lists.infradead.org | |
10691 | S: Maintained | |
10692 | F: Documentation/devicetree/bindings/arm/arm,scpi.txt | |
cd52c2a4 | 10693 | F: drivers/clk/clk-scpi.c |
8def3103 | 10694 | F: drivers/cpufreq/scpi-cpufreq.c |
8cb7cf56 SH |
10695 | F: drivers/firmware/arm_scpi.c |
10696 | F: include/linux/scpi_protocol.h | |
80f390ea | 10697 | |
1da177e4 | 10698 | SCSI CDROM DRIVER |
8b58be88 | 10699 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
10700 | L: linux-scsi@vger.kernel.org |
10701 | W: http://www.kernel.dk | |
10702 | S: Maintained | |
679655da | 10703 | F: drivers/scsi/sr* |
1da177e4 | 10704 | |
fb50a83d | 10705 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
3453bddb | 10706 | M: Bart Van Assche <bart.vanassche@sandisk.com> |
fb50a83d RD |
10707 | L: linux-rdma@vger.kernel.org |
10708 | S: Supported | |
10709 | W: http://www.openfabrics.org | |
10710 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
10711 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
10712 | F: drivers/infiniband/ulp/srp/ | |
10713 | F: include/scsi/srp.h | |
10714 | ||
1da177e4 | 10715 | SCSI SG DRIVER |
8b58be88 | 10716 | M: Doug Gilbert <dgilbert@interlog.com> |
1da177e4 | 10717 | L: linux-scsi@vger.kernel.org |
59ab3c93 | 10718 | W: http://sg.danny.cz/sg |
1da177e4 | 10719 | S: Maintained |
59ab3c93 | 10720 | F: Documentation/scsi/scsi-generic.txt |
679655da JP |
10721 | F: drivers/scsi/sg.c |
10722 | F: include/scsi/sg.h | |
1da177e4 LT |
10723 | |
10724 | SCSI SUBSYSTEM | |
7ee7895c | 10725 | M: "James E.J. Bottomley" <jejb@linux.vnet.ibm.com> |
0351b8f8 | 10726 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git |
f4ab421b MP |
10727 | M: "Martin K. Petersen" <martin.petersen@oracle.com> |
10728 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git | |
10729 | L: linux-scsi@vger.kernel.org | |
1da177e4 | 10730 | S: Maintained |
2c99a314 | 10731 | F: Documentation/devicetree/bindings/scsi/ |
679655da JP |
10732 | F: drivers/scsi/ |
10733 | F: include/scsi/ | |
1da177e4 LT |
10734 | |
10735 | SCSI TAPE DRIVER | |
8b58be88 | 10736 | M: Kai Mäkisara <Kai.Makisara@kolumbus.fi> |
1da177e4 LT |
10737 | L: linux-scsi@vger.kernel.org |
10738 | S: Maintained | |
679655da | 10739 | F: Documentation/scsi/st.txt |
f7269cfc JD |
10740 | F: drivers/scsi/st.* |
10741 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
10742 | |
10743 | SCTP PROTOCOL | |
8b6efb75 | 10744 | M: Vlad Yasevich <vyasevich@gmail.com> |
02c38d0a | 10745 | M: Neil Horman <nhorman@tuxdriver.com> |
1a418796 | 10746 | L: linux-sctp@vger.kernel.org |
5f85813c | 10747 | W: http://lksctp.sourceforge.net |
8b6efb75 | 10748 | S: Maintained |
679655da JP |
10749 | F: Documentation/networking/sctp.txt |
10750 | F: include/linux/sctp.h | |
4d58c025 | 10751 | F: include/uapi/linux/sctp.h |
679655da JP |
10752 | F: include/net/sctp/ |
10753 | F: net/sctp/ | |
1da177e4 LT |
10754 | |
10755 | SCx200 CPU SUPPORT | |
8b58be88 | 10756 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 10757 | S: Odd Fixes |
679655da | 10758 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 10759 | F: arch/x86/platform/scx200/ |
679655da JP |
10760 | F: drivers/watchdog/scx200_wdt.c |
10761 | F: drivers/i2c/busses/scx200* | |
10762 | F: drivers/mtd/maps/scx200_docflash.c | |
10763 | F: include/linux/scx200.h | |
1662d32c JC |
10764 | |
10765 | SCx200 GPIO DRIVER | |
8b58be88 | 10766 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 10767 | S: Maintained |
679655da JP |
10768 | F: drivers/char/scx200_gpio.c |
10769 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
10770 | |
10771 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 10772 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 10773 | S: Maintained |
679655da | 10774 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 10775 | |
6a36913a | 10776 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 10777 | M: Sascha Sommer <saschasommer@freenet.de> |
6a36913a SS |
10778 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
10779 | S: Maintained | |
679655da | 10780 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 10781 | |
e7839f25 | 10782 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
ddfe954d | 10783 | M: Adrian Hunter <adrian.hunter@intel.com> |
7a241d6e | 10784 | L: linux-mmc@vger.kernel.org |
ddfe954d UH |
10785 | T: git git://git.infradead.org/users/ahunter/linux-sdhci.git |
10786 | S: Maintained | |
10787 | F: drivers/mmc/host/sdhci* | |
10788 | F: include/linux/mmc/sdhci* | |
e2d1d6c0 | 10789 | |
c04f9d61 KC |
10790 | SECURE COMPUTING |
10791 | M: Kees Cook <keescook@chromium.org> | |
a0cfd75f KC |
10792 | R: Andy Lutomirski <luto@amacapital.net> |
10793 | R: Will Drewry <wad@chromium.org> | |
c04f9d61 KC |
10794 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp |
10795 | S: Supported | |
10796 | F: kernel/seccomp.c | |
10797 | F: include/uapi/linux/seccomp.h | |
10798 | F: include/linux/seccomp.h | |
c99ee51a | 10799 | F: tools/testing/selftests/seccomp/* |
c04f9d61 KC |
10800 | K: \bsecure_computing |
10801 | K: \bTIF_SECCOMP\b | |
10802 | ||
476bf3d6 AC |
10803 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER |
10804 | M: Al Cooper <alcooperx@gmail.com> | |
10805 | L: linux-mmc@vger.kernel.org | |
10806 | L: bcm-kernel-feedback-list@broadcom.com | |
10807 | S: Maintained | |
10808 | F: drivers/mmc/host/sdhci-brcmstb* | |
10809 | ||
0d1bb41a | 10810 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 10811 | M: Ben Dooks <ben-linux@fluff.org> |
dc524882 | 10812 | M: Jaehoon Chung <jh80.chung@samsung.com> |
7a241d6e | 10813 | L: linux-mmc@vger.kernel.org |
0d1bb41a | 10814 | S: Maintained |
dc524882 | 10815 | F: drivers/mmc/host/sdhci-s3c* |
0d1bb41a | 10816 | |
c63b3cba | 10817 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
da89947b | 10818 | M: Viresh Kumar <vireshk@kernel.org> |
c63b3cba VK |
10819 | L: linux-mmc@vger.kernel.org |
10820 | S: Maintained | |
10821 | F: drivers/mmc/host/sdhci-spear.c | |
10822 | ||
8711cca2 | 10823 | SECURITY SUBSYSTEM |
9b45c0d2 | 10824 | M: James Morris <james.l.morris@oracle.com> |
9c3646d1 | 10825 | M: "Serge E. Hallyn" <serge@hallyn.com> |
8711cca2 | 10826 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
89879a7e | 10827 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 10828 | W: http://kernsec.org/ |
8711cca2 | 10829 | S: Supported |
7d2c86b5 | 10830 | F: security/ |
8711cca2 | 10831 | |
1da177e4 | 10832 | SECURITY CONTACT |
8b58be88 | 10833 | M: Security Officers <security@kernel.org> |
1da177e4 LT |
10834 | S: Supported |
10835 | ||
10836 | SELINUX SECURITY MODULE | |
e0238b4c | 10837 | M: Paul Moore <paul@paul-moore.com> |
8b58be88 | 10838 | M: Stephen Smalley <sds@tycho.nsa.gov> |
8b58be88 | 10839 | M: Eric Paris <eparis@parisplace.org> |
e0238b4c | 10840 | L: selinux@tycho.nsa.gov (moderated for non-subscribers) |
f058925b | 10841 | W: http://selinuxproject.org |
5a5f2acf | 10842 | T: git git://git.infradead.org/users/pcmoore/selinux |
1da177e4 | 10843 | S: Supported |
679655da JP |
10844 | F: include/linux/selinux* |
10845 | F: security/selinux/ | |
6bde95ce | 10846 | F: scripts/selinux/ |
1da177e4 | 10847 | |
c1c124e9 JJ |
10848 | APPARMOR SECURITY MODULE |
10849 | M: John Johansen <john.johansen@canonical.com> | |
10850 | L: apparmor@lists.ubuntu.com (subscribers-only, general discussion) | |
10851 | W: apparmor.wiki.kernel.org | |
10852 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
10853 | S: Supported | |
10854 | F: security/apparmor/ | |
10855 | ||
9b091556 KC |
10856 | LOADPIN SECURITY MODULE |
10857 | M: Kees Cook <keescook@chromium.org> | |
10858 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin | |
10859 | S: Supported | |
10860 | F: security/loadpin/ | |
10861 | ||
730daa16 KC |
10862 | YAMA SECURITY MODULE |
10863 | M: Kees Cook <keescook@chromium.org> | |
10864 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip | |
10865 | S: Supported | |
10866 | F: security/yama/ | |
10867 | ||
cef2cf07 | 10868 | SENSABLE PHANTOM |
8b58be88 | 10869 | M: Jiri Slaby <jirislaby@gmail.com> |
cef2cf07 | 10870 | S: Maintained |
679655da | 10871 | F: drivers/misc/phantom.c |
c117ab84 | 10872 | F: include/uapi/linux/phantom.h |
cef2cf07 | 10873 | |
2a1e8447 JB |
10874 | Emulex 10Gbps iSCSI - OneConnect DRIVER |
10875 | M: Subbu Seetharaman <subbu.seetharaman@broadcom.com> | |
10876 | M: Ketan Mukadam <ketan.mukadam@broadcom.com> | |
10877 | M: Jitendra Bhivare <jitendra.bhivare@broadcom.com> | |
3387f656 | 10878 | L: linux-scsi@vger.kernel.org |
2a1e8447 | 10879 | W: http://www.broadcom.com |
3387f656 JP |
10880 | S: Supported |
10881 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 10882 | |
d2ee76fa | 10883 | Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net) |
aa7b4537 SP |
10884 | M: Sathya Perla <sathya.perla@broadcom.com> |
10885 | M: Ajit Khaparde <ajit.khaparde@broadcom.com> | |
aa7b4537 SP |
10886 | M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com> |
10887 | M: Somnath Kotur <somnath.kotur@broadcom.com> | |
7d2c86b5 | 10888 | L: netdev@vger.kernel.org |
fea3af67 | 10889 | W: http://www.emulex.com |
7d2c86b5 | 10890 | S: Supported |
9aebddd1 | 10891 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 10892 | |
d2928a8c | 10893 | EMULEX ONECONNECT ROCE DRIVER |
2b8e7333 LN |
10894 | M: Selvin Xavier <selvin.xavier@avagotech.com> |
10895 | M: Devesh Sharma <devesh.sharma@avagotech.com> | |
10896 | M: Mitesh Ahuja <mitesh.ahuja@avagotech.com> | |
d2928a8c SX |
10897 | L: linux-rdma@vger.kernel.org |
10898 | W: http://www.emulex.com | |
10899 | S: Supported | |
10900 | F: drivers/infiniband/hw/ocrdma/ | |
a7fe7380 | 10901 | F: include/uapi/rdma/ocrdma-abi.h |
d2928a8c | 10902 | |
8ceee660 | 10903 | SFC NETWORK DRIVER |
c06f51ea | 10904 | M: Solarflare linux maintainers <linux-net-drivers@solarflare.com> |
e00f8017 BK |
10905 | M: Edward Cree <ecree@solarflare.com> |
10906 | M: Bert Kenward <bkenward@solarflare.com> | |
c06f51ea | 10907 | L: netdev@vger.kernel.org |
8ceee660 | 10908 | S: Supported |
874aeea5 | 10909 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 10910 | |
e2d1d6c0 | 10911 | SGI GRU DRIVER |
cc883afc | 10912 | M: Dimitri Sivanich <sivanich@sgi.com> |
e2d1d6c0 | 10913 | S: Maintained |
679655da | 10914 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
10915 | |
10916 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 10917 | M: Pat Gefre <pfg@sgi.com> |
e2d1d6c0 RD |
10918 | L: linux-ia64@vger.kernel.org |
10919 | S: Supported | |
679655da | 10920 | F: Documentation/ia64/serial.txt |
df621252 | 10921 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 10922 | F: include/linux/ioc?.h |
e2d1d6c0 | 10923 | |
75312619 | 10924 | SGI XP/XPC/XPNET DRIVER |
e180383f RH |
10925 | M: Cliff Whickman <cpw@sgi.com> |
10926 | M: Robin Holt <robinmholt@gmail.com> | |
75312619 | 10927 | S: Maintained |
679655da | 10928 | F: drivers/misc/sgi-xp/ |
75312619 | 10929 | |
46eacf3b AP |
10930 | SI2157 MEDIA DRIVER |
10931 | M: Antti Palosaari <crope@iki.fi> | |
10932 | L: linux-media@vger.kernel.org | |
a825eaec | 10933 | W: https://linuxtv.org |
46eacf3b AP |
10934 | W: http://palosaari.fi/linux/ |
10935 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10936 | T: git git://linuxtv.org/anttip/media_tree.git | |
10937 | S: Maintained | |
10938 | F: drivers/media/tuners/si2157* | |
10939 | ||
75e2d5ba AP |
10940 | SI2168 MEDIA DRIVER |
10941 | M: Antti Palosaari <crope@iki.fi> | |
10942 | L: linux-media@vger.kernel.org | |
a825eaec | 10943 | W: https://linuxtv.org |
75e2d5ba AP |
10944 | W: http://palosaari.fi/linux/ |
10945 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10946 | T: git git://linuxtv.org/anttip/media_tree.git | |
10947 | S: Maintained | |
10948 | F: drivers/media/dvb-frontends/si2168* | |
10949 | ||
49cc629d HV |
10950 | SI470X FM RADIO RECEIVER I2C DRIVER |
10951 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10952 | L: linux-media@vger.kernel.org | |
10953 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10954 | W: https://linuxtv.org |
49cc629d HV |
10955 | S: Odd Fixes |
10956 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
10957 | ||
10958 | SI470X FM RADIO RECEIVER USB DRIVER | |
10959 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10960 | L: linux-media@vger.kernel.org | |
10961 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10962 | W: https://linuxtv.org |
49cc629d HV |
10963 | S: Maintained |
10964 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
10965 | F: drivers/media/radio/si470x/radio-si470x.h | |
10966 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
10967 | ||
c937ca03 EV |
10968 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
10969 | M: Eduardo Valentin <edubezval@gmail.com> | |
10970 | L: linux-media@vger.kernel.org | |
10971 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10972 | W: https://linuxtv.org |
c937ca03 | 10973 | S: Odd Fixes |
99995ded | 10974 | F: drivers/media/radio/si4713/si4713.? |
c937ca03 EV |
10975 | |
10976 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
10977 | M: Eduardo Valentin <edubezval@gmail.com> | |
10978 | L: linux-media@vger.kernel.org | |
10979 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10980 | W: https://linuxtv.org |
c937ca03 | 10981 | S: Odd Fixes |
99995ded DR |
10982 | F: drivers/media/radio/si4713/radio-platform-si4713.c |
10983 | ||
10984 | SI4713 FM RADIO TRANSMITTER USB DRIVER | |
10985 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10986 | L: linux-media@vger.kernel.org | |
10987 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 10988 | W: https://linuxtv.org |
99995ded DR |
10989 | S: Maintained |
10990 | F: drivers/media/radio/si4713/radio-usb-si4713.c | |
c937ca03 | 10991 | |
beb91d46 | 10992 | SIANO DVB DRIVER |
5dc8a864 MCC |
10993 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
10994 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
beb91d46 | 10995 | L: linux-media@vger.kernel.org |
a825eaec | 10996 | W: https://linuxtv.org |
beb91d46 MCC |
10997 | T: git git://linuxtv.org/media_tree.git |
10998 | S: Odd fixes | |
10999 | F: drivers/media/common/siano/ | |
beb91d46 | 11000 | F: drivers/media/usb/siano/ |
beb91d46 | 11001 | F: drivers/media/usb/siano/ |
14430813 | 11002 | F: drivers/media/mmc/siano/ |
beb91d46 | 11003 | |
6f15b602 HG |
11004 | SIMPLEFB FB DRIVER |
11005 | M: Hans de Goede <hdegoede@redhat.com> | |
11006 | L: linux-fbdev@vger.kernel.org | |
11007 | S: Maintained | |
2d799dde | 11008 | F: Documentation/devicetree/bindings/display/simple-framebuffer.txt |
6f15b602 HG |
11009 | F: drivers/video/fbdev/simplefb.c |
11010 | F: include/linux/platform_data/simplefb.h | |
11011 | ||
b618b69c | 11012 | SH_VEU V4L2 MEM2MEM DRIVER |
b618b69c | 11013 | L: linux-media@vger.kernel.org |
bb60fcb2 | 11014 | S: Orphan |
b618b69c | 11015 | F: drivers/media/platform/sh_veu.c |
b618b69c GL |
11016 | |
11017 | SH_VOU V4L2 OUTPUT DRIVER | |
b618b69c | 11018 | L: linux-media@vger.kernel.org |
bb60fcb2 | 11019 | S: Orphan |
b618b69c | 11020 | F: drivers/media/platform/sh_vou.c |
d647f0b7 | 11021 | F: include/media/drv-intf/sh_vou.h |
b618b69c | 11022 | |
6349d997 | 11023 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 11024 | M: Len Brown <lenb@kernel.org> |
6349d997 LB |
11025 | L: sfi-devel@simplefirmware.org |
11026 | W: http://simplefirmware.org/ | |
11027 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 11028 | S: Supported |
943fc810 | 11029 | F: arch/x86/platform/sfi/ |
6349d997 LB |
11030 | F: drivers/sfi/ |
11031 | F: include/linux/sfi*.h | |
e2d1d6c0 | 11032 | |
1da177e4 LT |
11033 | SIMTEC EB110ATX (Chalice CATS) |
11034 | P: Ben Dooks | |
b16957c6 BD |
11035 | P: Vincent Sanders <vince@simtec.co.uk> |
11036 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
11037 | W: http://www.simtec.co.uk/products/EB110ATX/ |
11038 | S: Supported | |
11039 | ||
11040 | SIMTEC EB2410ITX (BAST) | |
11041 | P: Ben Dooks | |
b16957c6 BD |
11042 | P: Vincent Sanders <vince@simtec.co.uk> |
11043 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
11044 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
11045 | S: Supported | |
15dba387 JP |
11046 | F: arch/arm/mach-s3c24xx/mach-bast.c |
11047 | F: arch/arm/mach-s3c24xx/bast-ide.c | |
11048 | F: arch/arm/mach-s3c24xx/bast-irq.c | |
1da177e4 | 11049 | |
4c5adde7 | 11050 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 | 11051 | M: Sekhar Nori <nsekhar@ti.com> |
3cf2efd5 | 11052 | M: Kevin Hilman <khilman@kernel.org> |
42c031df SN |
11053 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
11054 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git | |
4c5adde7 | 11055 | S: Supported |
14430813 | 11056 | F: arch/arm/mach-davinci/ |
046d0a37 | 11057 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 11058 | |
8d4b3f08 | 11059 | TI DAVINCI SERIES MEDIA DRIVER |
e43cdb56 | 11060 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
8d4b3f08 | 11061 | L: linux-media@vger.kernel.org |
a825eaec | 11062 | W: https://linuxtv.org |
8d4b3f08 LP |
11063 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
11064 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9ce5eca7 | 11065 | S: Maintained |
8d4b3f08 LP |
11066 | F: drivers/media/platform/davinci/ |
11067 | F: include/media/davinci/ | |
11068 | ||
417d2e50 | 11069 | TI AM437X VPFE DRIVER |
e43cdb56 | 11070 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
417d2e50 | 11071 | L: linux-media@vger.kernel.org |
a825eaec | 11072 | W: https://linuxtv.org |
417d2e50 BP |
11073 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
11074 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
11075 | S: Maintained | |
11076 | F: drivers/media/platform/am437x/ | |
11077 | ||
c4c0283a | 11078 | OV2659 OMNIVISION SENSOR DRIVER |
e43cdb56 | 11079 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
c4c0283a | 11080 | L: linux-media@vger.kernel.org |
a825eaec | 11081 | W: https://linuxtv.org |
c4c0283a BP |
11082 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
11083 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
11084 | S: Maintained | |
11085 | F: drivers/media/i2c/ov2659.c | |
b5dcee22 | 11086 | F: include/media/i2c/ov2659.h |
c4c0283a | 11087 | |
3a6779f5 SM |
11088 | SILICON MOTION SM712 FRAME BUFFER DRIVER |
11089 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
11090 | M: Teddy Wang <teddy.wang@siliconmotion.com> | |
11091 | M: Sudip Mukherjee <sudip@vectorindia.org> | |
11092 | L: linux-fbdev@vger.kernel.org | |
11093 | S: Maintained | |
11094 | F: drivers/video/fbdev/sm712* | |
11095 | F: Documentation/fb/sm712fb.txt | |
11096 | ||
92aab3c0 | 11097 | SIS 190 ETHERNET DRIVER |
8b58be88 | 11098 | M: Francois Romieu <romieu@fr.zoreil.com> |
92aab3c0 FR |
11099 | L: netdev@vger.kernel.org |
11100 | S: Maintained | |
8c7de408 | 11101 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 11102 | |
1da177e4 | 11103 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 11104 | M: Daniele Venzano <venza@brownhat.org> |
1da177e4 | 11105 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 11106 | L: netdev@vger.kernel.org |
1da177e4 | 11107 | S: Maintained |
8c7de408 | 11108 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
11109 | |
11110 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 11111 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 | 11112 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 11113 | S: Maintained |
679655da | 11114 | F: Documentation/fb/sisfb.txt |
8a61f013 | 11115 | F: drivers/video/fbdev/sis/ |
679655da | 11116 | F: include/video/sisfb.h |
1da177e4 LT |
11117 | |
11118 | SIS USB2VGA DRIVER | |
8b58be88 | 11119 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 LT |
11120 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
11121 | S: Maintained | |
679655da | 11122 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 11123 | |
415ad26d | 11124 | SLAB ALLOCATOR |
16e943bf | 11125 | M: Christoph Lameter <cl@linux.com> |
2ed1c525 | 11126 | M: Pekka Enberg <penberg@kernel.org> |
16e943bf CL |
11127 | M: David Rientjes <rientjes@google.com> |
11128 | M: Joonsoo Kim <iamjoonsoo.kim@lge.com> | |
11129 | M: Andrew Morton <akpm@linux-foundation.org> | |
415ad26d CL |
11130 | L: linux-mm@kvack.org |
11131 | S: Maintained | |
679655da | 11132 | F: include/linux/sl?b*.h |
16e943bf | 11133 | F: mm/sl?b* |
415ad26d | 11134 | |
9fab9787 | 11135 | SLEEPABLE READ-COPY UPDATE (SRCU) |
96a39bc4 | 11136 | M: Lai Jiangshan <jiangshanlai@gmail.com> |
9fab9787 | 11137 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
ab0afd6c | 11138 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
11139 | R: Steven Rostedt <rostedt@goodmis.org> |
11140 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
981c3a4f | 11141 | L: linux-kernel@vger.kernel.org |
9fab9787 PM |
11142 | W: http://www.rdrop.com/users/paulmck/RCU/ |
11143 | S: Supported | |
11144 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
4102adab PM |
11145 | F: include/linux/srcu.h |
11146 | F: kernel/rcu/srcu.c | |
9fab9787 | 11147 | |
66372841 CS |
11148 | SMACK SECURITY MODULE |
11149 | M: Casey Schaufler <casey@schaufler-ca.com> | |
11150 | L: linux-security-module@vger.kernel.org | |
11151 | W: http://schaufler-ca.com | |
ece38248 | 11152 | T: git git://github.com/cschaufler/smack-next |
66372841 CS |
11153 | S: Maintained |
11154 | F: Documentation/security/Smack.txt | |
11155 | F: security/smack/ | |
11156 | ||
20651e0b | 11157 | DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
68ace3e1 KH |
11158 | M: Kevin Hilman <khilman@kernel.org> |
11159 | M: Nishanth Menon <nm@ti.com> | |
11160 | S: Maintained | |
20651e0b | 11161 | F: drivers/power/avs/ |
68ace3e1 KH |
11162 | F: include/linux/power/smartreflex.h |
11163 | L: linux-pm@vger.kernel.org | |
11164 | ||
1da177e4 | 11165 | SMC91x ETHERNET DRIVER |
2f82af08 | 11166 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 11167 | S: Odd Fixes |
ae150435 | 11168 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 11169 | |
e8e31622 SA |
11170 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
11171 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
11172 | L: linux-media@vger.kernel.org | |
11173 | S: Maintained | |
14430813 | 11174 | F: drivers/media/i2c/smiapp/ |
b5dcee22 | 11175 | F: include/media/i2c/smiapp.h |
e8e31622 SA |
11176 | F: drivers/media/i2c/smiapp-pll.c |
11177 | F: drivers/media/i2c/smiapp-pll.h | |
fd2bfdc8 | 11178 | F: include/uapi/linux/smiapp.h |
a2cec3c0 | 11179 | F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt |
e8e31622 | 11180 | |
920fa1ff GR |
11181 | SMM665 HARDWARE MONITOR DRIVER |
11182 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 11183 | L: linux-hwmon@vger.kernel.org |
920fa1ff GR |
11184 | S: Maintained |
11185 | F: Documentation/hwmon/smm665 | |
11186 | F: drivers/hwmon/smm665.c | |
11187 | ||
9df7305b | 11188 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 11189 | M: Steve Glendinning <steve.glendinning@shawell.net> |
968ce1b1 | 11190 | L: linux-hwmon@vger.kernel.org |
90b24cfb | 11191 | S: Maintained |
9df7305b SG |
11192 | F: Documentation/hwmon/emc2103 |
11193 | F: drivers/hwmon/emc2103.c | |
11194 | ||
a98d506c HG |
11195 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
11196 | M: Hans de Goede <hdegoede@redhat.com> | |
968ce1b1 | 11197 | L: linux-hwmon@vger.kernel.org |
a98d506c HG |
11198 | S: Supported |
11199 | F: Documentation/hwmon/sch5627 | |
11200 | F: drivers/hwmon/sch5627.c | |
11201 | ||
6ea884db | 11202 | SMSC47B397 HARDWARE MONITOR DRIVER |
d8130624 | 11203 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 11204 | L: linux-hwmon@vger.kernel.org |
6ea884db | 11205 | S: Maintained |
679655da JP |
11206 | F: Documentation/hwmon/smsc47b397 |
11207 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 11208 | |
fd9abb3d | 11209 | SMSC911x ETHERNET DRIVER |
90b24cfb | 11210 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2cb37728 | 11211 | L: netdev@vger.kernel.org |
90b24cfb | 11212 | S: Maintained |
679655da | 11213 | F: include/linux/smsc911x.h |
ae150435 | 11214 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
11215 | |
11216 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 11217 | M: Steve Glendinning <steve.glendinning@shawell.net> |
fd9abb3d | 11218 | L: netdev@vger.kernel.org |
90b24cfb | 11219 | S: Maintained |
ae150435 | 11220 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 11221 | |
3c8a63e2 | 11222 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 11223 | M: Steve Glendinning <steve.glendinning@shawell.net> |
3c8a63e2 | 11224 | L: linux-fbdev@vger.kernel.org |
90b24cfb | 11225 | S: Maintained |
8a61f013 | 11226 | F: drivers/video/fbdev/smscufx.c |
3c8a63e2 | 11227 | |
668acf32 | 11228 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 11229 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
661263b5 | 11230 | L: linux-media@vger.kernel.org |
275ffde4 | 11231 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 11232 | S: Maintained |
90d72ac6 MCC |
11233 | F: include/media/soc* |
11234 | F: drivers/media/i2c/soc_camera/ | |
11235 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 11236 | |
e2d1d6c0 | 11237 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 11238 | M: Chris Boot <bootc@bootc.net> |
e2d1d6c0 | 11239 | S: Maintained |
679655da | 11240 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 11241 | |
e3994db1 | 11242 | SOFTLOGIC 6x10 MPEG CODEC |
9661975d AU |
11243 | M: Bluecherry Maintainers <maintainers@bluecherrydvr.com> |
11244 | M: Andrey Utkin <andrey.utkin@corp.bluecherry.net> | |
11245 | M: Andrey Utkin <andrey.krieger.utkin@gmail.com> | |
1f141f6b | 11246 | M: Ismael Luceno <ismael@iodev.co.uk> |
e3994db1 JP |
11247 | L: linux-media@vger.kernel.org |
11248 | S: Supported | |
11249 | F: drivers/media/pci/solo6x10/ | |
11250 | ||
1da177e4 | 11251 | SOFTWARE RAID (Multiple Disks) SUPPORT |
c2f662eb | 11252 | M: Shaohua Li <shli@kernel.org> |
1da177e4 | 11253 | L: linux-raid@vger.kernel.org |
0f9ce866 | 11254 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git |
524418bb | 11255 | S: Supported |
679655da JP |
11256 | F: drivers/md/ |
11257 | F: include/linux/raid/ | |
c117ab84 | 11258 | F: include/uapi/linux/raid/ |
1da177e4 | 11259 | |
1da177e4 | 11260 | SONIC NETWORK DRIVER |
8b58be88 | 11261 | M: Thomas Bogendoerfer <tsbogend@alpha.franken.de> |
979b6c13 | 11262 | L: netdev@vger.kernel.org |
1da177e4 | 11263 | S: Maintained |
d9fb9f38 | 11264 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 11265 | |
61e115a5 | 11266 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 11267 | M: Michael Buesch <m@bues.ch> |
e7828b28 | 11268 | L: linux-wireless@vger.kernel.org |
61e115a5 | 11269 | S: Maintained |
679655da JP |
11270 | F: drivers/ssb/ |
11271 | F: include/linux/ssb/ | |
61e115a5 | 11272 | |
1da177e4 | 11273 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 11274 | M: Mattia Dongili <malattia@linux.it> |
d0944853 | 11275 | L: platform-driver-x86@vger.kernel.org |
5b18167d | 11276 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 11277 | S: Maintained |
679655da JP |
11278 | F: Documentation/laptops/sony-laptop.txt |
11279 | F: drivers/char/sonypi.c | |
11280 | F: drivers/platform/x86/sony-laptop.c | |
11281 | F: include/linux/sony-laptop.h | |
1da177e4 | 11282 | |
baf8532a | 11283 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 11284 | M: Alex Dubov <oakad@yahoo.com> |
baf8532a AD |
11285 | W: http://tifmxx.berlios.de/ |
11286 | S: Maintained | |
679655da | 11287 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 11288 | |
0ab30494 ML |
11289 | SONY MEMORYSTICK STANDARD SUPPORT |
11290 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
11291 | S: Maintained | |
11292 | F: drivers/memstick/core/ms_block.* | |
11293 | ||
1da177e4 | 11294 | SOUND |
8b58be88 | 11295 | M: Jaroslav Kysela <perex@perex.cz> |
d8130624 | 11296 | M: Takashi Iwai <tiwai@suse.com> |
93711660 | 11297 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
3126a179 | 11298 | W: http://www.alsa-project.org/ |
dde7ad8d | 11299 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 11300 | T: git git://git.alsa-project.org/alsa-kernel.git |
ff4a8f32 | 11301 | Q: http://patchwork.kernel.org/project/alsa-devel/list/ |
1da177e4 | 11302 | S: Maintained |
3126a179 JP |
11303 | F: Documentation/sound/ |
11304 | F: include/sound/ | |
c117ab84 | 11305 | F: include/uapi/sound/ |
679655da | 11306 | F: sound/ |
1da177e4 | 11307 | |
33bbe149 MB |
11308 | SOUND - COMPRESSED AUDIO |
11309 | M: Vinod Koul <vinod.koul@intel.com> | |
11310 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
11311 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git | |
11312 | S: Supported | |
f672f31a | 11313 | F: Documentation/sound/alsa/compress_offload.txt |
33bbe149 | 11314 | F: include/sound/compress_driver.h |
f672f31a | 11315 | F: include/uapi/sound/compress_* |
33bbe149 MB |
11316 | F: sound/core/compress_offload.c |
11317 | F: sound/soc/soc-compress.c | |
11318 | ||
bd903bde | 11319 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 11320 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 11321 | M: Mark Brown <broonie@kernel.org> |
86f14df8 | 11322 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 11323 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
b0b8daf7 | 11324 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 11325 | S: Supported |
181ad2a5 | 11326 | F: Documentation/devicetree/bindings/sound/ |
2820f615 | 11327 | F: Documentation/sound/alsa/soc/ |
679655da | 11328 | F: sound/soc/ |
e6e55122 | 11329 | F: include/sound/soc* |
eb1a6af3 | 11330 | |
d7f8761b MB |
11331 | SOUND - DMAENGINE HELPERS |
11332 | M: Lars-Peter Clausen <lars@metafoo.de> | |
11333 | S: Supported | |
11334 | F: include/sound/dmaengine_pcm.h | |
11335 | F: sound/core/pcm_dmaengine.c | |
11336 | F: sound/soc/soc-generic-dmaengine-pcm.c | |
11337 | ||
990a6a99 OS |
11338 | SP2 MEDIA DRIVER |
11339 | M: Olli Salonen <olli.salonen@iki.fi> | |
11340 | L: linux-media@vger.kernel.org | |
a825eaec | 11341 | W: https://linuxtv.org |
990a6a99 OS |
11342 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
11343 | S: Maintained | |
11344 | F: drivers/media/dvb-frontends/sp2* | |
11345 | ||
473321fc | 11346 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 11347 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 11348 | L: sparclinux@vger.kernel.org |
8a6e2535 | 11349 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
11350 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
11351 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 11352 | S: Maintained |
679655da | 11353 | F: arch/sparc/ |
7765b8bb | 11354 | F: drivers/sbus/ |
1da177e4 | 11355 | |
6404fcca DM |
11356 | SPARC SERIAL DRIVERS |
11357 | M: "David S. Miller" <davem@davemloft.net> | |
11358 | L: sparclinux@vger.kernel.org | |
08deed1e JP |
11359 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
11360 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 11361 | S: Maintained |
6816383a | 11362 | F: include/linux/sunserialcore.h |
df621252 | 11363 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
11364 | F: drivers/tty/serial/sunhv.c |
11365 | F: drivers/tty/serial/sunsab.c | |
11366 | F: drivers/tty/serial/sunsab.h | |
11367 | F: drivers/tty/serial/sunsu.c | |
11368 | F: drivers/tty/serial/sunzilog.c | |
11369 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 11370 | |
389325b4 CL |
11371 | SPARSE CHECKER |
11372 | M: "Christopher Li" <sparse@chrisli.org> | |
11373 | L: linux-sparse@vger.kernel.org | |
11374 | W: https://sparse.wiki.kernel.org/ | |
11375 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
11376 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
11377 | S: Maintained | |
11378 | F: include/linux/compiler.h | |
11379 | ||
fc0c195a | 11380 | SPEAR PLATFORM SUPPORT |
da89947b | 11381 | M: Viresh Kumar <vireshk@kernel.org> |
9cc23682 | 11382 | M: Shiraz Hashim <shiraz.linux.kernel@gmail.com> |
fbfa0748 | 11383 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
fc0c195a VK |
11384 | W: http://www.st.com/spear |
11385 | S: Maintained | |
e68d7c14 | 11386 | F: arch/arm/boot/dts/spear* |
281e192f | 11387 | F: arch/arm/mach-spear/ |
fc0c195a VK |
11388 | |
11389 | SPEAR CLOCK FRAMEWORK SUPPORT | |
da89947b | 11390 | M: Viresh Kumar <vireshk@kernel.org> |
fbfa0748 | 11391 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
fc0c195a VK |
11392 | W: http://www.st.com/spear |
11393 | S: Maintained | |
5df33a62 | 11394 | F: drivers/clk/spear/ |
fc0c195a | 11395 | |
e2d1d6c0 | 11396 | SPI SUBSYSTEM |
b02e48f2 | 11397 | M: Mark Brown <broonie@kernel.org> |
dfbe403c | 11398 | L: linux-spi@vger.kernel.org |
e7e4e13c | 11399 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 11400 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 11401 | S: Maintained |
87306eb7 | 11402 | F: Documentation/devicetree/bindings/spi/ |
679655da JP |
11403 | F: Documentation/spi/ |
11404 | F: drivers/spi/ | |
11405 | F: include/linux/spi/ | |
c117ab84 | 11406 | F: include/uapi/linux/spi/ |
a43cd4bb | 11407 | F: tools/spi/ |
e2d1d6c0 | 11408 | |
2752e401 | 11409 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 | 11410 | M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp> |
2752e401 JL |
11411 | L: netdev@vger.kernel.org |
11412 | S: Supported | |
679655da | 11413 | F: Documentation/networking/spider_net.txt |
8df158ac | 11414 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 11415 | |
e2d1d6c0 | 11416 | SPU FILE SYSTEM |
8b58be88 | 11417 | M: Jeremy Kerr <jk@ozlabs.org> |
a4724ed6 | 11418 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 RD |
11419 | W: http://www.ibm.com/developerworks/power/cell/ |
11420 | S: Supported | |
679655da JP |
11421 | F: Documentation/filesystems/spufs.txt |
11422 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 11423 | |
fc555841 | 11424 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 11425 | M: Phillip Lougher <phillip@squashfs.org.uk> |
fc555841 PL |
11426 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
11427 | W: http://squashfs.org.uk | |
9f273c24 | 11428 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git |
fc555841 | 11429 | S: Maintained |
679655da JP |
11430 | F: Documentation/filesystems/squashfs.txt |
11431 | F: fs/squashfs/ | |
fc555841 | 11432 | |
1da177e4 | 11433 | SRM (Alpha) environment access |
8b58be88 | 11434 | M: Jan-Benedict Glaw <jbglaw@lug-owl.de> |
1da177e4 | 11435 | S: Maintained |
679655da | 11436 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 11437 | |
26e9a397 | 11438 | STABLE BRANCH |
879a5a00 | 11439 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
bc7a2f3a | 11440 | L: stable@vger.kernel.org |
879a5a00 | 11441 | S: Supported |
7b175c46 | 11442 | F: Documentation/stable_kernel_rules.txt |
e2d1d6c0 | 11443 | |
26e9a397 | 11444 | STAGING SUBSYSTEM |
879a5a00 | 11445 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
630081fd | 11446 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 11447 | L: devel@driverdev.osuosl.org |
879a5a00 | 11448 | S: Supported |
679655da | 11449 | F: drivers/staging/ |
dbc6c2cc | 11450 | |
ebd3d010 JP |
11451 | STAGING - COMEDI |
11452 | M: Ian Abbott <abbotti@mev.co.uk> | |
81b884c9 | 11453 | M: H Hartley Sweeten <hsweeten@visionengravers.com> |
ebd3d010 JP |
11454 | S: Odd Fixes |
11455 | F: drivers/staging/comedi/ | |
11456 | ||
a0138163 JP |
11457 | STAGING - FLARION FT1000 DRIVERS |
11458 | M: Marek Belisko <marek.belisko@gmail.com> | |
11459 | S: Odd Fixes | |
11460 | F: drivers/staging/ft1000/ | |
11461 | ||
6c1bb424 | 11462 | STAGING - INDUSTRIAL IO |
030a13d7 | 11463 | M: Jonathan Cameron <jic23@kernel.org> |
a0138163 | 11464 | L: linux-iio@vger.kernel.org |
6c1bb424 | 11465 | S: Odd Fixes |
5291582d | 11466 | F: Documentation/devicetree/bindings/staging/iio/ |
6c1bb424 JP |
11467 | F: drivers/staging/iio/ |
11468 | ||
a0138163 JP |
11469 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
11470 | M: Jarod Wilson <jarod@wilsonet.com> | |
11471 | W: http://www.lirc.org/ | |
11472 | S: Odd Fixes | |
b2b0186d | 11473 | F: drivers/staging/media/lirc/ |
a0138163 | 11474 | |
f5e5de1e OD |
11475 | STAGING - LUSTRE PARALLEL FILESYSTEM |
11476 | M: Oleg Drokin <oleg.drokin@intel.com> | |
11477 | M: Andreas Dilger <andreas.dilger@intel.com> | |
8701dbf9 | 11478 | M: James Simmons <jsimmons@infradead.org> |
d98229f0 AD |
11479 | L: lustre-devel@lists.lustre.org (moderated for non-subscribers) |
11480 | W: http://wiki.lustre.org/ | |
f5e5de1e OD |
11481 | S: Maintained |
11482 | F: drivers/staging/lustre | |
11483 | ||
7c6b6c71 MD |
11484 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
11485 | M: Marc Dietrich <marvin24@gmx.de> | |
11486 | L: ac100@lists.launchpad.net (moderated for non-subscribers) | |
5d96bf4d | 11487 | L: linux-tegra@vger.kernel.org |
7c6b6c71 MD |
11488 | S: Maintained |
11489 | F: drivers/staging/nvec/ | |
11490 | ||
53c43c5c GKH |
11491 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
11492 | M: Jens Frederich <jfrederich@gmail.com> | |
11493 | M: Daniel Drake <dsd@laptop.org> | |
11494 | M: Jon Nettleton <jon.nettleton@gmail.com> | |
11495 | W: http://wiki.laptop.org/go/DCON | |
11496 | S: Maintained | |
11497 | F: drivers/staging/olpc_dcon/ | |
11498 | ||
a0138163 JP |
11499 | STAGING - REALTEK RTL8712U DRIVERS |
11500 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
11501 | M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>. | |
11502 | S: Odd Fixes | |
11503 | F: drivers/staging/rtl8712/ | |
11504 | ||
980ac4d7 SM |
11505 | STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER |
11506 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
11507 | M: Teddy Wang <teddy.wang@siliconmotion.com> | |
11508 | M: Sudip Mukherjee <sudip@vectorindia.org> | |
11509 | L: linux-fbdev@vger.kernel.org | |
11510 | S: Maintained | |
11511 | F: drivers/staging/sm750fb/ | |
11512 | ||
510fa408 JP |
11513 | STAGING - SLICOSS |
11514 | M: Lior Dotan <liodot@gmail.com> | |
11515 | M: Christopher Harrer <charrer@alacritech.com> | |
11516 | S: Odd Fixes | |
11517 | F: drivers/staging/slicoss/ | |
11518 | ||
a0138163 JP |
11519 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER |
11520 | M: William Hubbs <w.d.hubbs@gmail.com> | |
11521 | M: Chris Brannon <chris@the-brannons.com> | |
d33bce31 | 11522 | M: Kirk Reiser <kirk@reisers.ca> |
a0138163 | 11523 | M: Samuel Thibault <samuel.thibault@ens-lyon.org> |
e6a152ef | 11524 | L: speakup@linux-speakup.org |
a0138163 JP |
11525 | W: http://www.linux-speakup.org/ |
11526 | S: Odd Fixes | |
11527 | F: drivers/staging/speakup/ | |
11528 | ||
b3e871ce JP |
11529 | STAGING - VIA VT665X DRIVERS |
11530 | M: Forest Bond <forest@alittletooquiet.net> | |
11531 | S: Odd Fixes | |
11532 | F: drivers/staging/vt665?/ | |
11533 | ||
a30baec1 | 11534 | STAGING - WILC1000 WIFI DRIVER |
d9a85940 AS |
11535 | M: Aditya Shankar <aditya.shankar@microchip.com> |
11536 | M: Ganesh Krishna <ganesh.krishna@microchip.com> | |
a30baec1 JK |
11537 | L: linux-wireless@vger.kernel.org |
11538 | S: Supported | |
11539 | F: drivers/staging/wilc1000/ | |
11540 | ||
709bcb07 | 11541 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 11542 | M: Arnaud Patard <arnaud.patard@rtp-net.org> |
709bcb07 JP |
11543 | S: Odd Fixes |
11544 | F: drivers/staging/xgifb/ | |
11545 | ||
1da177e4 | 11546 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 11547 | M: Ion Badulescu <ionut@badula.org> |
b4f90189 | 11548 | S: Odd Fixes |
9bba23b0 | 11549 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 11550 | |
e2d1d6c0 | 11551 | SUN3/3X |
8b58be88 | 11552 | M: Sam Creasey <sammy@sammy.net> |
e2d1d6c0 RD |
11553 | W: http://sammy.net/sun3/ |
11554 | S: Maintained | |
679655da JP |
11555 | F: arch/m68k/kernel/*sun3* |
11556 | F: arch/m68k/sun3*/ | |
11557 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 11558 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 11559 | |
af6a5af8 HG |
11560 | SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER |
11561 | M: Hans de Goede <hdegoede@redhat.com> | |
11562 | L: linux-input@vger.kernel.org | |
11563 | S: Maintained | |
11564 | F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt | |
11565 | F: drivers/input/keyboard/sun4i-lradc-keys.c | |
11566 | ||
2bc9ff01 DK |
11567 | SUNDANCE NETWORK DRIVER |
11568 | M: Denis Kirjanov <kda@linux-powerpc.org> | |
11569 | L: netdev@vger.kernel.org | |
11570 | S: Maintained | |
11571 | F: drivers/net/ethernet/dlink/sundance.c | |
11572 | ||
2cbb12a4 | 11573 | SUPERH |
114bf37e RF |
11574 | M: Yoshinori Sato <ysato@users.sourceforge.jp> |
11575 | M: Rich Felker <dalias@libc.org> | |
2cbb12a4 | 11576 | L: linux-sh@vger.kernel.org |
8a6e2535 | 11577 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
114bf37e | 11578 | S: Maintained |
066069e1 | 11579 | F: Documentation/sh/ |
679655da | 11580 | F: arch/sh/ |
066069e1 | 11581 | F: drivers/sh/ |
1da177e4 | 11582 | |
4480f15b | 11583 | SUSPEND TO RAM |
7fb06082 | 11584 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
8b58be88 JP |
11585 | M: Len Brown <len.brown@intel.com> |
11586 | M: Pavel Machek <pavel@ucw.cz> | |
bf1c138e | 11587 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 11588 | S: Supported |
679655da JP |
11589 | F: Documentation/power/ |
11590 | F: arch/x86/kernel/acpi/ | |
11591 | F: drivers/base/power/ | |
11592 | F: kernel/power/ | |
11593 | F: include/linux/suspend.h | |
11594 | F: include/linux/freezer.h | |
11595 | F: include/linux/pm.h | |
1da177e4 LT |
11596 | |
11597 | SVGA HANDLING | |
8b58be88 | 11598 | M: Martin Mares <mj@ucw.cz> |
1da177e4 LT |
11599 | L: linux-video@atrey.karlin.mff.cuni.cz |
11600 | S: Maintained | |
679655da JP |
11601 | F: Documentation/svga.txt |
11602 | F: arch/x86/boot/video* | |
1da177e4 | 11603 | |
6e28b761 KRW |
11604 | SWIOTLB SUBSYSTEM |
11605 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11606 | L: linux-kernel@vger.kernel.org | |
9f273c24 | 11607 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git |
6e28b761 KRW |
11608 | S: Supported |
11609 | F: lib/swiotlb.c | |
11610 | F: arch/*/kernel/pci-swiotlb.c | |
11611 | F: include/linux/swiotlb.h | |
11612 | ||
007f790c JP |
11613 | SWITCHDEV |
11614 | M: Jiri Pirko <jiri@resnulli.us> | |
11615 | L: netdev@vger.kernel.org | |
11616 | S: Supported | |
11617 | F: net/switchdev/ | |
11618 | F: include/net/switchdev.h | |
11619 | ||
db8e35d5 VG |
11620 | SYNOPSYS ARC ARCHITECTURE |
11621 | M: Vineet Gupta <vgupta@synopsys.com> | |
30b9dbee | 11622 | L: linux-snps-arc@lists.infradead.org |
db8e35d5 VG |
11623 | S: Supported |
11624 | F: arch/arc/ | |
9b28829d | 11625 | F: Documentation/devicetree/bindings/arc/* |
2d799dde | 11626 | F: Documentation/devicetree/bindings/interrupt-controller/snps,arc* |
c6a0fe4a | 11627 | F: drivers/tty/serial/arc_uart.c |
b7182d1a | 11628 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git |
db8e35d5 | 11629 | |
556cc1c5 AB |
11630 | SYNOPSYS ARC SDP platform support |
11631 | M: Alexey Brodkin <abrodkin@synopsys.com> | |
11632 | S: Supported | |
11633 | F: arch/arc/plat-axs10x | |
11634 | F: arch/arc/boot/dts/ax* | |
11635 | F: Documentation/devicetree/bindings/arc/axs10* | |
11636 | ||
6c284c9a LJ |
11637 | SYSTEM CONFIGURATION (SYSCON) |
11638 | M: Lee Jones <lee.jones@linaro.org> | |
11639 | M: Arnd Bergmann <arnd@arndb.de> | |
11640 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git | |
11641 | S: Supported | |
11642 | F: drivers/mfd/syscon.c | |
11643 | ||
8c0984e5 SR |
11644 | SYSTEM RESET/SHUTDOWN DRIVERS |
11645 | M: Sebastian Reichel <sre@kernel.org> | |
8c0984e5 | 11646 | L: linux-pm@vger.kernel.org |
58db9505 | 11647 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git |
8c0984e5 SR |
11648 | S: Maintained |
11649 | F: Documentation/devicetree/bindings/power/reset/ | |
11650 | F: drivers/power/reset/ | |
11651 | ||
1da177e4 | 11652 | SYSV FILESYSTEM |
8b58be88 | 11653 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 | 11654 | S: Maintained |
679655da JP |
11655 | F: Documentation/filesystems/sysv-fs.txt |
11656 | F: fs/sysv/ | |
11657 | F: include/linux/sysv_fs.h | |
1da177e4 | 11658 | |
86cfa7fc | 11659 | TARGET SUBSYSTEM |
9c3646d1 | 11660 | M: "Nicholas A. Bellinger" <nab@linux-iscsi.org> |
86cfa7fc | 11661 | L: linux-scsi@vger.kernel.org |
b9f5edc2 | 11662 | L: target-devel@vger.kernel.org |
86cfa7fc | 11663 | W: http://www.linux-iscsi.org |
cf015e9f | 11664 | W: http://groups.google.com/group/linux-iscsi-target-dev |
452cf324 | 11665 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
11666 | S: Supported |
11667 | F: drivers/target/ | |
11668 | F: include/target/ | |
11669 | F: Documentation/target/ | |
11670 | ||
4e68852d | 11671 | TASKSTATS STATISTICS INTERFACE |
185e595f | 11672 | M: Balbir Singh <bsingharora@gmail.com> |
4e68852d | 11673 | S: Maintained |
679655da JP |
11674 | F: Documentation/accounting/taskstats* |
11675 | F: include/linux/taskstats* | |
11676 | F: kernel/taskstats.c | |
4e68852d | 11677 | |
781b456a | 11678 | TC CLASSIFIER |
f935f3f8 | 11679 | M: Jamal Hadi Salim <jhs@mojatatu.com> |
781b456a SH |
11680 | L: netdev@vger.kernel.org |
11681 | S: Maintained | |
679655da | 11682 | F: include/net/pkt_cls.h |
c117ab84 | 11683 | F: include/uapi/linux/pkt_cls.h |
679655da | 11684 | F: net/sched/ |
781b456a | 11685 | |
5067f08a | 11686 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
11687 | M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com> |
11688 | M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com> | |
5067f08a WHSE |
11689 | W: http://tcp-lp-mod.sourceforge.net/ |
11690 | S: Maintained | |
679655da | 11691 | F: net/ipv4/tcp_lp.c |
5067f08a | 11692 | |
91952bc0 AP |
11693 | TDA10071 MEDIA DRIVER |
11694 | M: Antti Palosaari <crope@iki.fi> | |
11695 | L: linux-media@vger.kernel.org | |
a825eaec | 11696 | W: https://linuxtv.org |
91952bc0 AP |
11697 | W: http://palosaari.fi/linux/ |
11698 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11699 | T: git git://linuxtv.org/anttip/media_tree.git | |
11700 | S: Maintained | |
11701 | F: drivers/media/dvb-frontends/tda10071* | |
11702 | ||
11703 | TDA18212 MEDIA DRIVER | |
11704 | M: Antti Palosaari <crope@iki.fi> | |
11705 | L: linux-media@vger.kernel.org | |
a825eaec | 11706 | W: https://linuxtv.org |
91952bc0 AP |
11707 | W: http://palosaari.fi/linux/ |
11708 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11709 | T: git git://linuxtv.org/anttip/media_tree.git | |
11710 | S: Maintained | |
11711 | F: drivers/media/tuners/tda18212* | |
11712 | ||
11713 | TDA18218 MEDIA DRIVER | |
11714 | M: Antti Palosaari <crope@iki.fi> | |
11715 | L: linux-media@vger.kernel.org | |
a825eaec | 11716 | W: https://linuxtv.org |
91952bc0 AP |
11717 | W: http://palosaari.fi/linux/ |
11718 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11719 | T: git git://linuxtv.org/anttip/media_tree.git | |
11720 | S: Maintained | |
11721 | F: drivers/media/tuners/tda18218* | |
11722 | ||
3b2f6aba MK |
11723 | TDA18271 MEDIA DRIVER |
11724 | M: Michael Krufky <mkrufky@linuxtv.org> | |
11725 | L: linux-media@vger.kernel.org | |
a825eaec | 11726 | W: https://linuxtv.org |
3b2f6aba MK |
11727 | W: http://github.com/mkrufky |
11728 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11729 | T: git git://linuxtv.org/mkrufky/tuners.git | |
11730 | S: Maintained | |
11731 | F: drivers/media/tuners/tda18271* | |
11732 | ||
e48307a9 MK |
11733 | TDA827x MEDIA DRIVER |
11734 | M: Michael Krufky <mkrufky@linuxtv.org> | |
11735 | L: linux-media@vger.kernel.org | |
a825eaec | 11736 | W: https://linuxtv.org |
e48307a9 MK |
11737 | W: http://github.com/mkrufky |
11738 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11739 | T: git git://linuxtv.org/mkrufky/tuners.git | |
11740 | S: Maintained | |
11741 | F: drivers/media/tuners/tda8290.* | |
11742 | ||
66cf9212 MK |
11743 | TDA8290 MEDIA DRIVER |
11744 | M: Michael Krufky <mkrufky@linuxtv.org> | |
11745 | L: linux-media@vger.kernel.org | |
a825eaec | 11746 | W: https://linuxtv.org |
66cf9212 MK |
11747 | W: http://github.com/mkrufky |
11748 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11749 | T: git git://linuxtv.org/mkrufky/tuners.git | |
11750 | S: Maintained | |
11751 | F: drivers/media/tuners/tda8290.* | |
11752 | ||
4b9fba30 HV |
11753 | TDA9840 MEDIA DRIVER |
11754 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11755 | L: linux-media@vger.kernel.org | |
11756 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11757 | W: https://linuxtv.org |
4b9fba30 HV |
11758 | S: Maintained |
11759 | F: drivers/media/i2c/tda9840* | |
11760 | ||
2cb654fd | 11761 | TEA5761 TUNER DRIVER |
5dc8a864 MCC |
11762 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
11763 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
2cb654fd | 11764 | L: linux-media@vger.kernel.org |
a825eaec | 11765 | W: https://linuxtv.org |
2cb654fd MCC |
11766 | T: git git://linuxtv.org/media_tree.git |
11767 | S: Odd fixes | |
11768 | F: drivers/media/tuners/tea5761.* | |
11769 | ||
11770 | TEA5767 TUNER DRIVER | |
5dc8a864 MCC |
11771 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
11772 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
2cb654fd | 11773 | L: linux-media@vger.kernel.org |
a825eaec | 11774 | W: https://linuxtv.org |
2cb654fd MCC |
11775 | T: git git://linuxtv.org/media_tree.git |
11776 | S: Maintained | |
11777 | F: drivers/media/tuners/tea5767.* | |
11778 | ||
4b9fba30 HV |
11779 | TEA6415C MEDIA DRIVER |
11780 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11781 | L: linux-media@vger.kernel.org | |
11782 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11783 | W: https://linuxtv.org |
4b9fba30 HV |
11784 | S: Maintained |
11785 | F: drivers/media/i2c/tea6415c* | |
11786 | ||
11787 | TEA6420 MEDIA DRIVER | |
11788 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11789 | L: linux-media@vger.kernel.org | |
11790 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11791 | W: https://linuxtv.org |
4b9fba30 HV |
11792 | S: Maintained |
11793 | F: drivers/media/i2c/tea6420* | |
11794 | ||
3d249d4c | 11795 | TEAM DRIVER |
dca9ab92 | 11796 | M: Jiri Pirko <jiri@resnulli.us> |
3d249d4c JP |
11797 | L: netdev@vger.kernel.org |
11798 | S: Supported | |
11799 | F: drivers/net/team/ | |
11800 | F: include/linux/if_team.h | |
c117ab84 | 11801 | F: include/uapi/linux/if_team.h |
3d249d4c | 11802 | |
7d029125 | 11803 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
9c3646d1 | 11804 | M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com> |
7d029125 VD |
11805 | S: Maintained |
11806 | F: arch/x86/platform/ts5500/ | |
11807 | ||
40ad4a30 SY |
11808 | TECHNOTREND USB IR RECEIVER |
11809 | M: Sean Young <sean@mess.org> | |
11810 | L: linux-media@vger.kernel.org | |
11811 | S: Maintained | |
11812 | F: drivers/media/rc/ttusbir.c | |
11813 | ||
adabdb0c | 11814 | TEGRA ARCHITECTURE SUPPORT |
243d58ec | 11815 | M: Stephen Warren <swarren@wwwdotorg.org> |
adabdb0c | 11816 | M: Thierry Reding <thierry.reding@gmail.com> |
554077c5 | 11817 | M: Alexandre Courbot <gnurou@gmail.com> |
84b9414b | 11818 | L: linux-tegra@vger.kernel.org |
fd117cd1 | 11819 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
b779b88d | 11820 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git |
84b9414b | 11821 | S: Supported |
bbbe96ed | 11822 | N: [^a-z]tegra |
84b9414b | 11823 | |
adabdb0c SW |
11824 | TEGRA CLOCK DRIVER |
11825 | M: Peter De Schrijver <pdeschrijver@nvidia.com> | |
11826 | M: Prashant Gaikwad <pgaikwad@nvidia.com> | |
11827 | S: Supported | |
11828 | F: drivers/clk/tegra/ | |
11829 | ||
86e486a0 | 11830 | TEGRA DMA DRIVERS |
adabdb0c | 11831 | M: Laxman Dewangan <ldewangan@nvidia.com> |
86e486a0 | 11832 | M: Jon Hunter <jonathanh@nvidia.com> |
adabdb0c | 11833 | S: Supported |
86e486a0 | 11834 | F: drivers/dma/tegra* |
adabdb0c | 11835 | |
adabdb0c SW |
11836 | TEGRA I2C DRIVER |
11837 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
11838 | S: Supported | |
11839 | F: drivers/i2c/busses/i2c-tegra.c | |
11840 | ||
11841 | TEGRA IOMMU DRIVERS | |
11842 | M: Hiroshi Doyu <hdoyu@nvidia.com> | |
11843 | S: Supported | |
11844 | F: drivers/iommu/tegra* | |
11845 | ||
11846 | TEGRA KBC DRIVER | |
11847 | M: Rakesh Iyer <riyer@nvidia.com> | |
11848 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
11849 | S: Supported | |
11850 | F: drivers/input/keyboard/tegra-kbc.c | |
11851 | ||
adabdb0c SW |
11852 | TEGRA PWM DRIVER |
11853 | M: Thierry Reding <thierry.reding@gmail.com> | |
11854 | S: Supported | |
11855 | F: drivers/pwm/pwm-tegra.c | |
11856 | ||
11857 | TEGRA SERIAL DRIVER | |
11858 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
11859 | S: Supported | |
11860 | F: drivers/tty/serial/serial-tegra.c | |
11861 | ||
11862 | TEGRA SPI DRIVER | |
11863 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
11864 | S: Supported | |
11865 | F: drivers/spi/spi-tegra* | |
11866 | ||
1a348ccc | 11867 | TEHUTI ETHERNET DRIVER |
8b58be88 | 11868 | M: Andy Gospodarek <andy@greyhouse.net> |
1a348ccc AG |
11869 | L: netdev@vger.kernel.org |
11870 | S: Supported | |
ef7f5429 | 11871 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 11872 | |
4e68852d | 11873 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 11874 | M: Mark Gross <mark.gross@intel.com> |
4e68852d | 11875 | S: Supported |
679655da | 11876 | F: drivers/char/tlclk.c |
4e68852d | 11877 | |
4480f15b | 11878 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 11879 | M: Chris Zankel <chris@zankel.net> |
f959ed2f CZ |
11880 | M: Max Filippov <jcmvbkbc@gmail.com> |
11881 | L: linux-xtensa@linux-xtensa.org | |
9f273c24 | 11882 | T: git git://github.com/czankel/xtensa-linux.git |
4e68852d | 11883 | S: Maintained |
679655da | 11884 | F: arch/xtensa/ |
3dc99857 | 11885 | F: drivers/irqchip/irq-xtensa-* |
4e68852d | 11886 | |
5313ba66 HV |
11887 | THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER |
11888 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11889 | L: linux-media@vger.kernel.org | |
11890 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11891 | W: https://linuxtv.org |
5313ba66 HV |
11892 | S: Maintained |
11893 | F: drivers/media/radio/radio-raremono.c | |
11894 | ||
d3fb6955 | 11895 | THERMAL |
b75f0050 | 11896 | M: Zhang Rui <rui.zhang@intel.com> |
f14d1c24 | 11897 | M: Eduardo Valentin <edubezval@gmail.com> |
b75f0050 JP |
11898 | L: linux-pm@vger.kernel.org |
11899 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
11900 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git | |
11901 | Q: https://patchwork.kernel.org/project/linux-pm/list/ | |
11902 | S: Supported | |
11903 | F: drivers/thermal/ | |
11904 | F: include/linux/thermal.h | |
af6c9f16 | 11905 | F: include/uapi/linux/thermal.h |
b75f0050 JP |
11906 | F: include/linux/cpu_cooling.h |
11907 | F: Documentation/devicetree/bindings/thermal/ | |
d3fb6955 | 11908 | |
64e05d8b VK |
11909 | THERMAL/CPU_COOLING |
11910 | M: Amit Daniel Kachhap <amit.kachhap@gmail.com> | |
11911 | M: Viresh Kumar <viresh.kumar@linaro.org> | |
9a2172a8 | 11912 | M: Javi Merino <javi.merino@kernel.org> |
64e05d8b VK |
11913 | L: linux-pm@vger.kernel.org |
11914 | S: Supported | |
11915 | F: Documentation/thermal/cpu-cooling-api.txt | |
11916 | F: drivers/thermal/cpu_cooling.c | |
11917 | F: include/linux/cpu_cooling.h | |
11918 | ||
4e68852d | 11919 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 11920 | M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br> |
4e68852d | 11921 | L: ibm-acpi-devel@lists.sourceforge.net |
d0944853 | 11922 | L: platform-driver-x86@vger.kernel.org |
4e68852d AC |
11923 | W: http://ibm-acpi.sourceforge.net |
11924 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 11925 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 11926 | S: Maintained |
679655da | 11927 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 11928 | |
1b46f2a2 | 11929 | TI BANDGAP AND THERMAL DRIVER |
f14d1c24 | 11930 | M: Eduardo Valentin <edubezval@gmail.com> |
ef41be81 | 11931 | M: Keerthy <j-keerthy@ti.com> |
1b46f2a2 | 11932 | L: linux-pm@vger.kernel.org |
531ff13e | 11933 | L: linux-omap@vger.kernel.org |
5a723e81 | 11934 | S: Maintained |
794b2e25 | 11935 | F: drivers/thermal/ti-soc-thermal/ |
1b46f2a2 | 11936 | |
ccf963d3 BP |
11937 | TI VPE/CAL DRIVERS |
11938 | M: Benoit Parrot <bparrot@ti.com> | |
11939 | L: linux-media@vger.kernel.org | |
11940 | W: http://linuxtv.org/ | |
11941 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11942 | S: Maintained | |
11943 | F: drivers/media/platform/ti-vpe/ | |
11944 | ||
0c7665c3 MF |
11945 | TI CDCE706 CLOCK DRIVER |
11946 | M: Max Filippov <jcmvbkbc@gmail.com> | |
11947 | S: Maintained | |
11948 | F: drivers/clk/clk-cdce706.c | |
11949 | ||
49b6a5e3 TK |
11950 | TI CLOCK DRIVER |
11951 | M: Tero Kristo <t-kristo@ti.com> | |
11952 | L: linux-omap@vger.kernel.org | |
11953 | S: Maintained | |
11954 | F: drivers/clk/ti/ | |
11955 | F: include/linux/clk/ti.h | |
11956 | ||
f75cfbad GS |
11957 | TI ETHERNET SWITCH DRIVER (CPSW) |
11958 | M: Mugunthan V N <mugunthanvnm@ti.com> | |
11959 | R: Grygorii Strashko <grygorii.strashko@ti.com> | |
11960 | L: linux-omap@vger.kernel.org | |
11961 | L: netdev@vger.kernel.org | |
11962 | S: Maintained | |
11963 | F: drivers/net/ethernet/ti/cpsw* | |
11964 | F: drivers/net/ethernet/ti/davinci* | |
11965 | ||
4020f2d7 | 11966 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 11967 | M: Alex Dubov <oakad@yahoo.com> |
795fb7e7 | 11968 | S: Maintained |
679655da JP |
11969 | F: drivers/misc/tifm* |
11970 | F: drivers/mmc/host/tifm_sd.c | |
11971 | F: include/linux/tifm.h | |
4020f2d7 | 11972 | |
e0c52404 | 11973 | TI KEYSTONE MULTICORE NAVIGATOR DRIVERS |
97215800 | 11974 | M: Santosh Shilimkar <ssantosh@kernel.org> |
e0c52404 SS |
11975 | L: linux-kernel@vger.kernel.org |
11976 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
11977 | S: Maintained | |
11978 | F: drivers/soc/ti/* | |
11979 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git | |
11980 | ||
11981 | ||
152ad442 SR |
11982 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
11983 | M: M R Swami Reddy <mr.swami.reddy@ti.com> | |
d392dead | 11984 | M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com> |
152ad442 SR |
11985 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
11986 | S: Maintained | |
11987 | F: sound/soc/codecs/lm49453* | |
d392dead | 11988 | F: sound/soc/codecs/isabelle* |
152ad442 | 11989 | |
0edd807d KM |
11990 | TI LP855x BACKLIGHT DRIVER |
11991 | M: Milo Kim <milo.kim@ti.com> | |
11992 | S: Maintained | |
11993 | F: Documentation/backlight/lp855x-driver.txt | |
11994 | F: drivers/video/backlight/lp855x_bl.c | |
11995 | F: include/linux/platform_data/lp855x.h | |
11996 | ||
faf13f6d KM |
11997 | TI LP8727 CHARGER DRIVER |
11998 | M: Milo Kim <milo.kim@ti.com> | |
11999 | S: Maintained | |
8c0984e5 | 12000 | F: drivers/power/supply/lp8727_charger.c |
faf13f6d KM |
12001 | F: include/linux/platform_data/lp8727.h |
12002 | ||
22f1229f KM |
12003 | TI LP8788 MFD DRIVER |
12004 | M: Milo Kim <milo.kim@ti.com> | |
12005 | S: Maintained | |
12006 | F: drivers/iio/adc/lp8788_adc.c | |
12007 | F: drivers/leds/leds-lp8788.c | |
12008 | F: drivers/mfd/lp8788*.c | |
8c0984e5 | 12009 | F: drivers/power/supply/lp8788-charger.c |
22f1229f KM |
12010 | F: drivers/regulator/lp8788-*.c |
12011 | F: include/linux/mfd/lp8788*.h | |
12012 | ||
84640e27 KM |
12013 | TI NETCP ETHERNET DRIVER |
12014 | M: Wingman Kwok <w-kwok2@ti.com> | |
12015 | M: Murali Karicheri <m-karicheri2@ti.com> | |
12016 | L: netdev@vger.kernel.org | |
12017 | S: Maintained | |
12018 | F: drivers/net/ethernet/ti/netcp* | |
12019 | ||
217e0ca9 KC |
12020 | TI TAS571X FAMILY ASoC CODEC DRIVER |
12021 | M: Kevin Cernekee <cernekee@chromium.org> | |
12022 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
12023 | S: Odd Fixes | |
12024 | F: sound/soc/codecs/tas571x* | |
12025 | ||
dd5e8e6b | 12026 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 12027 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
dd5e8e6b PU |
12028 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
12029 | S: Maintained | |
12030 | F: sound/soc/codecs/twl4030* | |
12031 | ||
90921014 | 12032 | TI WILINK WIRELESS DRIVERS |
90921014 LC |
12033 | L: linux-wireless@vger.kernel.org |
12034 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
12035 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
12036 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
22d072f6 | 12037 | S: Orphan |
90921014 LC |
12038 | F: drivers/net/wireless/ti/ |
12039 | F: include/linux/wl12xx.h | |
12040 | ||
e86eaa3a | 12041 | TIPC NETWORK LAYER |
8b58be88 | 12042 | M: Jon Maloy <jon.maloy@ericsson.com> |
115403df | 12043 | M: Ying Xue <ying.xue@windriver.com> |
633d2bde AS |
12044 | L: netdev@vger.kernel.org (core kernel code) |
12045 | L: tipc-discussion@lists.sourceforge.net (user apps, general discussion) | |
e86eaa3a | 12046 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 12047 | S: Maintained |
c117ab84 | 12048 | F: include/uapi/linux/tipc*.h |
679655da | 12049 | F: net/tipc/ |
e86eaa3a | 12050 | |
867e359b | 12051 | TILE ARCHITECTURE |
b9a279f6 | 12052 | M: Chris Metcalf <cmetcalf@mellanox.com> |
8c34d8d9 | 12053 | W: http://www.mellanox.com/repository/solutions/tile-scm/ |
7fa129cc | 12054 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git |
867e359b CM |
12055 | S: Supported |
12056 | F: arch/tile/ | |
6b940606 | 12057 | F: drivers/char/tile-srom.c |
5c770755 | 12058 | F: drivers/edac/tile_edac.c |
6b940606 CM |
12059 | F: drivers/net/ethernet/tile/ |
12060 | F: drivers/rtc/rtc-tile.c | |
12061 | F: drivers/tty/hvc/hvc_tile.c | |
b5c6c1a7 | 12062 | F: drivers/tty/serial/tilegx.c |
6b940606 CM |
12063 | F: drivers/usb/host/*-tilegx.c |
12064 | F: include/linux/usb/tilegx.h | |
867e359b | 12065 | |
1da177e4 | 12066 | TLAN NETWORK DRIVER |
8b58be88 | 12067 | M: Samuel Chessman <chessman@tux.org> |
88c07dde | 12068 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
1da177e4 LT |
12069 | W: http://sourceforge.net/projects/tlan/ |
12070 | S: Maintained | |
679655da | 12071 | F: Documentation/networking/tlan.txt |
b544dbac | 12072 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 12073 | |
d74db3b2 | 12074 | TOMOYO SECURITY MODULE |
8b58be88 JP |
12075 | M: Kentaro Takeda <takedakn@nttdata.co.jp> |
12076 | M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> | |
d03a5d88 TH |
12077 | L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English) |
12078 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English) | |
d74db3b2 KT |
12079 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
12080 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) | |
12081 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 12082 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 12083 | S: Maintained |
679655da | 12084 | F: security/tomoyo/ |
d74db3b2 | 12085 | |
9caeb532 | 12086 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 12087 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
d0944853 | 12088 | L: platform-driver-x86@vger.kernel.org |
9caeb532 HRK |
12089 | S: Maintained |
12090 | F: drivers/platform/x86/topstar-laptop.c | |
12091 | ||
1da177e4 | 12092 | TOSHIBA ACPI EXTRAS DRIVER |
0a63ca11 | 12093 | M: Azael Avalos <coproscefalo@gmail.com> |
d0944853 | 12094 | L: platform-driver-x86@vger.kernel.org |
0a63ca11 | 12095 | S: Maintained |
679655da | 12096 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 | 12097 | |
0a63ca11 AA |
12098 | TOSHIBA BLUETOOTH DRIVER |
12099 | M: Azael Avalos <coproscefalo@gmail.com> | |
12100 | L: platform-driver-x86@vger.kernel.org | |
12101 | S: Maintained | |
12102 | F: drivers/platform/x86/toshiba_bluetooth.c | |
12103 | ||
12104 | TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER | |
12105 | M: Azael Avalos <coproscefalo@gmail.com> | |
12106 | L: platform-driver-x86@vger.kernel.org | |
12107 | S: Maintained | |
12108 | F: drivers/platform/x86/toshiba_haps.c | |
12109 | ||
14991fc7 AA |
12110 | TOSHIBA WMI HOTKEYS DRIVER |
12111 | M: Azael Avalos <coproscefalo@gmail.com> | |
12112 | L: platform-driver-x86@vger.kernel.org | |
12113 | S: Maintained | |
12114 | F: drivers/platform/x86/toshiba-wmi.c | |
12115 | ||
1da177e4 | 12116 | TOSHIBA SMM DRIVER |
8b58be88 | 12117 | M: Jonathan Buzzard <jonathan@buzzard.org.uk> |
1da177e4 LT |
12118 | W: http://www.buzzard.org.uk/toshiba/ |
12119 | S: Maintained | |
679655da JP |
12120 | F: drivers/char/toshiba.c |
12121 | F: include/linux/toshiba.h | |
c117ab84 | 12122 | F: include/uapi/linux/toshiba.h |
1da177e4 | 12123 | |
d32d9864 MR |
12124 | TOSHIBA TC358743 DRIVER |
12125 | M: Mats Randgaard <matrandg@cisco.com> | |
12126 | L: linux-media@vger.kernel.org | |
12127 | S: Maintained | |
12128 | F: drivers/media/i2c/tc358743* | |
b5dcee22 | 12129 | F: include/media/i2c/tc358743.h |
d32d9864 | 12130 | |
560e6475 WS |
12131 | TMIO/SDHI MMC DRIVER |
12132 | M: Wolfram Sang <wsa+renesas@sang-engineering.com> | |
d1057c40 | 12133 | L: linux-mmc@vger.kernel.org |
560e6475 | 12134 | S: Supported |
d1057c40 GL |
12135 | F: drivers/mmc/host/tmio_mmc* |
12136 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
560e6475 | 12137 | F: include/linux/mfd/tmio.h |
d719f900 | 12138 | |
917cc4e6 GR |
12139 | TMP401 HARDWARE MONITOR DRIVER |
12140 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 12141 | L: linux-hwmon@vger.kernel.org |
917cc4e6 GR |
12142 | S: Maintained |
12143 | F: Documentation/hwmon/tmp401 | |
12144 | F: drivers/hwmon/tmp401.c | |
12145 | ||
98f32602 | 12146 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 12147 | M: Hugh Dickins <hughd@google.com> |
98f32602 HD |
12148 | L: linux-mm@kvack.org |
12149 | S: Maintained | |
12150 | F: include/linux/shmem_fs.h | |
12151 | F: mm/shmem.c | |
12152 | ||
45f95b53 | 12153 | TM6000 VIDEO4LINUX DRIVER |
5dc8a864 MCC |
12154 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
12155 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
45f95b53 | 12156 | L: linux-media@vger.kernel.org |
a825eaec | 12157 | W: https://linuxtv.org |
45f95b53 MCC |
12158 | T: git git://linuxtv.org/media_tree.git |
12159 | S: Odd fixes | |
12160 | F: drivers/media/usb/tm6000/ | |
618cd932 | 12161 | F: Documentation/media/v4l-drivers/tm6000* |
45f95b53 | 12162 | |
34d1324e AU |
12163 | TW5864 VIDEO4LINUX DRIVER |
12164 | M: Bluecherry Maintainers <maintainers@bluecherrydvr.com> | |
12165 | M: Andrey Utkin <andrey.utkin@corp.bluecherry.net> | |
12166 | M: Andrey Utkin <andrey_utkin@fastmail.com> | |
12167 | L: linux-media@vger.kernel.org | |
12168 | S: Supported | |
12169 | F: drivers/media/pci/tw5864/ | |
45f95b53 | 12170 | |
c65fde19 HV |
12171 | TW68 VIDEO4LINUX DRIVER |
12172 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
12173 | L: linux-media@vger.kernel.org | |
12174 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 12175 | W: https://linuxtv.org |
c65fde19 HV |
12176 | S: Odd Fixes |
12177 | F: drivers/media/pci/tw68/ | |
12178 | ||
704a84cc EG |
12179 | TW686X VIDEO4LINUX DRIVER |
12180 | M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> | |
12181 | L: linux-media@vger.kernel.org | |
12182 | T: git git://linuxtv.org/media_tree.git | |
12183 | W: http://linuxtv.org | |
12184 | S: Maintained | |
12185 | F: drivers/media/pci/tw686x/ | |
12186 | ||
4e68852d | 12187 | TPM DEVICE DRIVER |
901486b8 | 12188 | M: Peter Huewe <peterhuewe@gmx.de> |
cbb2d5e4 | 12189 | M: Marcel Selhorst <tpmdd@selhorst.net> |
89adb83c | 12190 | M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> |
ce93b4b0 | 12191 | R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> |
383dec1f | 12192 | W: http://tpmdd.sourceforge.net |
63a10dfd | 12193 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
d9912846 JS |
12194 | Q: https://patchwork.kernel.org/project/tpmdd-devel/list/ |
12195 | T: git git://git.infradead.org/users/jjs/linux-tpmdd.git | |
4e68852d | 12196 | S: Maintained |
679655da | 12197 | F: drivers/char/tpm/ |
4e68852d | 12198 | |
1a0f1b27 AL |
12199 | TPM IBM_VTPM DEVICE DRIVER |
12200 | M: Ashley Lai <ashleydlai@gmail.com> | |
12201 | W: http://tpmdd.sourceforge.net | |
12202 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) | |
12203 | S: Maintained | |
12204 | F: drivers/char/tpm/tpm_ibmvtpm* | |
12205 | ||
d6f005a1 JP |
12206 | TRACING |
12207 | M: Steven Rostedt <rostedt@goodmis.org> | |
d6f005a1 | 12208 | M: Ingo Molnar <mingo@redhat.com> |
75fc2d37 | 12209 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
12210 | S: Maintained |
12211 | F: Documentation/trace/ftrace.txt | |
12212 | F: arch/*/*/*/ftrace.h | |
12213 | F: arch/*/kernel/ftrace.c | |
12214 | F: include/*/ftrace.h | |
12215 | F: include/linux/trace*.h | |
12216 | F: include/trace/ | |
12217 | F: kernel/trace/ | |
6e68e6c5 | 12218 | F: tools/testing/selftests/ftrace/ |
d6f005a1 | 12219 | |
4abac0d0 IM |
12220 | TRACING MMIO ACCESSES (MMIOTRACE) |
12221 | M: Steven Rostedt <rostedt@goodmis.org> | |
12222 | M: Ingo Molnar <mingo@kernel.org> | |
12223 | R: Karol Herbst <karolherbst@gmail.com> | |
12224 | R: Pekka Paalanen <ppaalanen@gmail.com> | |
12225 | S: Maintained | |
12226 | L: linux-kernel@vger.kernel.org | |
12227 | L: nouveau@lists.freedesktop.org | |
12228 | F: kernel/trace/trace_mmiotrace.c | |
12229 | F: include/linux/mmiotrace.h | |
12230 | F: arch/x86/mm/kmmio.c | |
12231 | F: arch/x86/mm/mmio-mod.c | |
12232 | F: arch/x86/mm/testmmiotrace.c | |
12233 | ||
1da177e4 | 12234 | TRIVIAL PATCHES |
8b58be88 | 12235 | M: Jiri Kosina <trivial@kernel.org> |
54e5881d | 12236 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 12237 | S: Maintained |
86ef925f | 12238 | K: ^Subject:.*(?i)trivial |
1da177e4 | 12239 | |
4e68852d | 12240 | TTY LAYER |
879a5a00 | 12241 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
d8130624 | 12242 | M: Jiri Slaby <jslaby@suse.com> |
879a5a00 | 12243 | S: Supported |
08deed1e | 12244 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
84e1eb83 | 12245 | F: Documentation/serial/ |
8dd5d2f1 | 12246 | F: drivers/tty/ |
df621252 | 12247 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
12248 | F: include/linux/serial_core.h |
12249 | F: include/linux/serial.h | |
12250 | F: include/linux/tty.h | |
c117ab84 CEB |
12251 | F: include/uapi/linux/serial_core.h |
12252 | F: include/uapi/linux/serial.h | |
12253 | F: include/uapi/linux/tty.h | |
4e68852d | 12254 | |
91952bc0 AP |
12255 | TUA9001 MEDIA DRIVER |
12256 | M: Antti Palosaari <crope@iki.fi> | |
12257 | L: linux-media@vger.kernel.org | |
a825eaec | 12258 | W: https://linuxtv.org |
91952bc0 AP |
12259 | W: http://palosaari.fi/linux/ |
12260 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
12261 | T: git git://linuxtv.org/anttip/media_tree.git | |
12262 | S: Maintained | |
12263 | F: drivers/media/tuners/tua9001* | |
12264 | ||
740db6d7 | 12265 | TULIP NETWORK DRIVERS |
740db6d7 | 12266 | L: netdev@vger.kernel.org |
cf869eb1 GG |
12267 | L: linux-parisc@vger.kernel.org |
12268 | S: Orphan | |
0f04e2aa | 12269 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
12270 | |
12271 | TUN/TAP driver | |
ba57b6f2 | 12272 | M: Maxim Krasnyansky <maxk@qti.qualcomm.com> |
1da177e4 LT |
12273 | W: http://vtun.sourceforge.net/tun |
12274 | S: Maintained | |
679655da JP |
12275 | F: Documentation/networking/tuntap.txt |
12276 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 12277 | |
b454cc66 | 12278 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 12279 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
c406339c RB |
12280 | M: Ralf Baechle <ralf@linux-mips.org> |
12281 | L: linux-mips@linux-mips.org | |
12282 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ | |
b454cc66 | 12283 | S: Maintained |
679655da JP |
12284 | F: drivers/tc/ |
12285 | F: include/linux/tc.h | |
b454cc66 | 12286 | |
e2d1d6c0 | 12287 | UBI FILE SYSTEM (UBIFS) |
a7859936 | 12288 | M: Richard Weinberger <richard@nod.at> |
949cb623 | 12289 | M: Artem Bityutskiy <dedekind1@gmail.com> |
cc8f9b99 | 12290 | M: Adrian Hunter <adrian.hunter@intel.com> |
e2d1d6c0 | 12291 | L: linux-mtd@lists.infradead.org |
e2966cbe | 12292 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 | 12293 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
a7859936 | 12294 | S: Supported |
679655da JP |
12295 | F: Documentation/filesystems/ubifs.txt |
12296 | F: fs/ubifs/ | |
e2d1d6c0 | 12297 | |
e1632fa2 | 12298 | UCLINUX (M68KNOMMU AND COLDFIRE) |
44156aff GU |
12299 | M: Greg Ungerer <gerg@linux-m68k.org> |
12300 | W: http://www.linux-m68k.org/ | |
cc2020e6 | 12301 | W: http://www.uclinux.org/ |
e1632fa2 | 12302 | L: linux-m68k@lists.linux-m68k.org |
cc2020e6 | 12303 | L: uclinux-dev@uclinux.org (subscribers-only) |
e1632fa2 | 12304 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git |
cc2020e6 | 12305 | S: Maintained |
e1632fa2 GU |
12306 | F: arch/m68k/coldfire/ |
12307 | F: arch/m68k/68*/ | |
61bc02bb JP |
12308 | F: arch/m68k/*/*_no.* |
12309 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 12310 | |
1da177e4 | 12311 | UDF FILESYSTEM |
d8130624 | 12312 | M: Jan Kara <jack@suse.com> |
1da177e4 | 12313 | S: Maintained |
679655da JP |
12314 | F: Documentation/filesystems/udf.txt |
12315 | F: fs/udf/ | |
1da177e4 | 12316 | |
cc2020e6 | 12317 | UFS FILESYSTEM |
8b58be88 | 12318 | M: Evgeniy Dushistov <dushistov@mail.ru> |
cc2020e6 | 12319 | S: Maintained |
679655da JP |
12320 | F: Documentation/filesystems/ufs.txt |
12321 | F: fs/ufs/ | |
cc2020e6 | 12322 | |
0a09d3ab DH |
12323 | UHID USERSPACE HID IO DRIVER: |
12324 | M: David Herrmann <dh.herrmann@googlemail.com> | |
12325 | L: linux-input@vger.kernel.org | |
12326 | S: Maintained | |
12327 | F: drivers/hid/uhid.c | |
c117ab84 | 12328 | F: include/uapi/linux/uhid.h |
0a09d3ab | 12329 | |
18332a80 | 12330 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 12331 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 12332 | S: Orphan |
355ffe69 | 12333 | F: drivers/uwb/ |
679655da JP |
12334 | F: include/linux/uwb.h |
12335 | F: include/linux/uwb/ | |
18332a80 | 12336 | |
b31d8273 G |
12337 | UNICORE32 ARCHITECTURE: |
12338 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
12339 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
12340 | S: Maintained | |
ceebf4d5 | 12341 | T: git git://github.com/gxt/linux.git |
b31d8273 G |
12342 | F: arch/unicore32/ |
12343 | ||
d8379ab1 TF |
12344 | UNIFDEF |
12345 | M: Tony Finch <dot@dotat.at> | |
12346 | W: http://dotat.at/prog/unifdef | |
12347 | S: Maintained | |
12348 | F: scripts/unifdef.c | |
12349 | ||
1da177e4 | 12350 | UNIFORM CDROM DRIVER |
8b58be88 | 12351 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
12352 | W: http://www.kernel.dk |
12353 | S: Maintained | |
679655da JP |
12354 | F: Documentation/cdrom/ |
12355 | F: drivers/cdrom/cdrom.c | |
12356 | F: include/linux/cdrom.h | |
c117ab84 | 12357 | F: include/uapi/linux/cdrom.h |
1da177e4 | 12358 | |
56df0122 | 12359 | UNISYS S-PAR DRIVERS |
49e7d9df JP |
12360 | M: David Kershner <david.kershner@unisys.com> |
12361 | L: sparmaintainer@unisys.com (Unisys internal) | |
12362 | S: Supported | |
12363 | F: drivers/staging/unisys/ | |
56df0122 | 12364 | |
9941fa6e VH |
12365 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
12366 | M: Vinayak Holikatti <vinholikatti@gmail.com> | |
9941fa6e VH |
12367 | L: linux-scsi@vger.kernel.org |
12368 | S: Supported | |
12369 | F: Documentation/scsi/ufs.txt | |
12370 | F: drivers/scsi/ufs/ | |
12371 | ||
4b9ffb5a JP |
12372 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS |
12373 | M: Joao Pinto <Joao.Pinto@synopsys.com> | |
12374 | L: linux-scsi@vger.kernel.org | |
12375 | S: Supported | |
12376 | F: drivers/scsi/ufs/*dwc* | |
12377 | ||
e2d1d6c0 | 12378 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 12379 | M: Artem Bityutskiy <dedekind1@gmail.com> |
346be9bc | 12380 | M: Richard Weinberger <richard@nod.at> |
e2d1d6c0 RD |
12381 | W: http://www.linux-mtd.infradead.org/ |
12382 | L: linux-mtd@lists.infradead.org | |
b6b44e0a | 12383 | T: git git://git.infradead.org/ubifs-2.6.git |
346be9bc | 12384 | S: Supported |
80811493 | 12385 | F: drivers/mtd/ubi/ |
679655da | 12386 | F: include/linux/mtd/ubi.h |
c117ab84 | 12387 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 12388 | |
1da177e4 | 12389 | USB ACM DRIVER |
ca1c3e6f | 12390 | M: Oliver Neukum <oneukum@suse.com> |
6372594a | 12391 | L: linux-usb@vger.kernel.org |
1da177e4 | 12392 | S: Maintained |
679655da JP |
12393 | F: Documentation/usb/acm.txt |
12394 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 12395 | |
b7d572e1 PF |
12396 | USB AR5523 WIRELESS DRIVER |
12397 | M: Pontus Fuchs <pontus.fuchs@gmail.com> | |
12398 | L: linux-wireless@vger.kernel.org | |
12399 | S: Maintained | |
12400 | F: drivers/net/wireless/ath/ar5523/ | |
12401 | ||
115bb1ff | 12402 | USB ATTACHED SCSI |
866d372e | 12403 | M: Oliver Neukum <oneukum@suse.com> |
115bb1ff MW |
12404 | L: linux-usb@vger.kernel.org |
12405 | L: linux-scsi@vger.kernel.org | |
8eae0fb7 | 12406 | S: Maintained |
115bb1ff MW |
12407 | F: drivers/usb/storage/uas.c |
12408 | ||
1da177e4 | 12409 | USB CDC ETHERNET DRIVER |
61eee9a7 | 12410 | M: Oliver Neukum <oliver@neukum.org> |
795fb7e7 | 12411 | L: linux-usb@vger.kernel.org |
1da177e4 | 12412 | S: Maintained |
679655da | 12413 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 12414 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 12415 | |
66e3e591 KP |
12416 | USB CHAOSKEY DRIVER |
12417 | M: Keith Packard <keithp@keithp.com> | |
12418 | L: linux-usb@vger.kernel.org | |
12419 | S: Maintained | |
12420 | F: drivers/usb/misc/chaoskey.c | |
12421 | ||
b02b371e | 12422 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 12423 | M: Peter Korsgaard <jacmet@sunsite.dk> |
b02b371e PK |
12424 | L: linux-usb@vger.kernel.org |
12425 | S: Maintained | |
679655da | 12426 | F: drivers/usb/c67x00/ |
b02b371e | 12427 | |
d0374f4f | 12428 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 12429 | M: Peter Korsgaard <jacmet@sunsite.dk> |
043600a6 | 12430 | L: netdev@vger.kernel.org |
d0374f4f PK |
12431 | W: http://www.linux-usb.org/usbnet |
12432 | S: Maintained | |
679655da | 12433 | F: drivers/net/usb/dm9601.c |
d0374f4f | 12434 | |
cc2020e6 | 12435 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 12436 | M: Cesar Miquel <miquel@df.uba.ar> |
cc2020e6 AC |
12437 | L: rio500-users@lists.sourceforge.net |
12438 | W: http://rio500.sourceforge.net | |
12439 | S: Maintained | |
679655da | 12440 | F: drivers/usb/misc/rio500* |
cc2020e6 | 12441 | |
1da177e4 | 12442 | USB EHCI DRIVER |
578333ab | 12443 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 12444 | L: linux-usb@vger.kernel.org |
578333ab | 12445 | S: Maintained |
679655da JP |
12446 | F: Documentation/usb/ehci.txt |
12447 | F: drivers/usb/host/ehci* | |
1da177e4 | 12448 | |
69ae9e3e | 12449 | USB GADGET/PERIPHERAL SUBSYSTEM |
a55f6286 | 12450 | M: Felipe Balbi <balbi@kernel.org> |
795fb7e7 | 12451 | L: linux-usb@vger.kernel.org |
69ae9e3e | 12452 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
12453 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
12454 | S: Maintained | |
679655da JP |
12455 | F: drivers/usb/gadget/ |
12456 | F: include/linux/usb/gadget* | |
69ae9e3e | 12457 | |
2dea64b4 | 12458 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
e5f6450c | 12459 | M: Jiri Kosina <jikos@kernel.org> |
406df153 | 12460 | R: Benjamin Tissoires <benjamin.tissoires@redhat.com> |
795fb7e7 | 12461 | L: linux-usb@vger.kernel.org |
54e5881d | 12462 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 12463 | S: Maintained |
c2f01971 | 12464 | F: Documentation/hid/hiddev.txt |
679655da | 12465 | F: drivers/hid/usbhid/ |
1da177e4 | 12466 | |
959eea21 | 12467 | USB ISP116X DRIVER |
8b58be88 | 12468 | M: Olav Kongas <ok@artecdesign.ee> |
795fb7e7 | 12469 | L: linux-usb@vger.kernel.org |
959eea21 | 12470 | S: Maintained |
679655da JP |
12471 | F: drivers/usb/host/isp116x* |
12472 | F: include/linux/usb/isp116x.h | |
959eea21 | 12473 | |
146498ea WH |
12474 | USB LAN78XX ETHERNET DRIVER |
12475 | M: Woojung Huh <woojung.huh@microchip.com> | |
12476 | M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com> | |
12477 | L: netdev@vger.kernel.org | |
12478 | S: Maintained | |
12479 | F: drivers/net/usb/lan78xx.* | |
12480 | ||
1da177e4 | 12481 | USB MASS STORAGE DRIVER |
fc8b690d | 12482 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 12483 | L: linux-usb@vger.kernel.org |
8836aeb8 | 12484 | L: usb-storage@lists.one-eyed-alien.net |
1da177e4 LT |
12485 | S: Maintained |
12486 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 12487 | F: drivers/usb/storage/ |
1da177e4 | 12488 | |
af39917d CL |
12489 | USB MIDI DRIVER |
12490 | M: Clemens Ladisch <clemens@ladisch.de> | |
12491 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
12492 | T: git git://git.alsa-project.org/alsa-kernel.git | |
12493 | S: Maintained | |
12494 | F: sound/usb/midi.* | |
12495 | ||
444ce9d4 JP |
12496 | USB NETWORKING DRIVERS |
12497 | L: linux-usb@vger.kernel.org | |
12498 | S: Odd Fixes | |
12499 | F: drivers/net/usb/ | |
12500 | ||
1da177e4 | 12501 | USB OHCI DRIVER |
578333ab | 12502 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 12503 | L: linux-usb@vger.kernel.org |
578333ab | 12504 | S: Maintained |
679655da JP |
12505 | F: Documentation/usb/ohci.txt |
12506 | F: drivers/usb/host/ohci* | |
1da177e4 | 12507 | |
963ffa3e | 12508 | USB OTG FSM (Finite State Machine) |
60d77b3d | 12509 | M: Peter Chen <Peter.Chen@nxp.com> |
8373856d | 12510 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
963ffa3e PC |
12511 | L: linux-usb@vger.kernel.org |
12512 | S: Maintained | |
12513 | F: drivers/usb/common/usb-otg-fsm.c | |
12514 | ||
563da3a9 VM |
12515 | USB OVER IP DRIVER |
12516 | M: Valentina Manea <valentina.manea.m@gmail.com> | |
90effdcd SK |
12517 | M: Shuah Khan <shuahkh@osg.samsung.com> |
12518 | M: Shuah Khan <shuah@kernel.org> | |
563da3a9 VM |
12519 | L: linux-usb@vger.kernel.org |
12520 | S: Maintained | |
a6d6fc2b | 12521 | F: Documentation/usb/usbip_protocol.txt |
563da3a9 VM |
12522 | F: drivers/usb/usbip/ |
12523 | F: tools/usb/usbip/ | |
12524 | ||
1da177e4 | 12525 | USB PEGASUS DRIVER |
a16b945c | 12526 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 12527 | L: linux-usb@vger.kernel.org |
043600a6 | 12528 | L: netdev@vger.kernel.org |
052e3128 PM |
12529 | T: git git://github.com/petkan/pegasus.git |
12530 | W: https://github.com/petkan/pegasus | |
1da177e4 | 12531 | S: Maintained |
679655da | 12532 | F: drivers/net/usb/pegasus.* |
1da177e4 | 12533 | |
d3ad558f | 12534 | USB PHY LAYER |
a55f6286 | 12535 | M: Felipe Balbi <balbi@kernel.org> |
d3ad558f FB |
12536 | L: linux-usb@vger.kernel.org |
12537 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
12538 | S: Maintained | |
12539 | F: drivers/usb/phy/ | |
d3ad558f | 12540 | |
73e4fb3f | 12541 | USB PRINTER DRIVER (usblp) |
8b58be88 | 12542 | M: Pete Zaitcev <zaitcev@redhat.com> |
795fb7e7 | 12543 | L: linux-usb@vger.kernel.org |
73e4fb3f | 12544 | S: Supported |
679655da | 12545 | F: drivers/usb/class/usblp.c |
1da177e4 | 12546 | |
4521b477 BM |
12547 | USB QMI WWAN NETWORK DRIVER |
12548 | M: Bjørn Mork <bjorn@mork.no> | |
12549 | L: netdev@vger.kernel.org | |
12550 | S: Maintained | |
12551 | F: Documentation/ABI/testing/sysfs-class-net-qmi | |
12552 | F: drivers/net/usb/qmi_wwan.c | |
12553 | ||
1da177e4 | 12554 | USB RTL8150 DRIVER |
a16b945c | 12555 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 12556 | L: linux-usb@vger.kernel.org |
043600a6 | 12557 | L: netdev@vger.kernel.org |
052e3128 PM |
12558 | T: git git://github.com/petkan/rtl8150.git |
12559 | W: https://github.com/petkan/rtl8150 | |
1da177e4 | 12560 | S: Maintained |
679655da | 12561 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 12562 | |
f896b796 | 12563 | USB SERIAL SUBSYSTEM |
66085694 | 12564 | M: Johan Hovold <johan@kernel.org> |
795fb7e7 | 12565 | L: linux-usb@vger.kernel.org |
5ee05309 | 12566 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git |
4e68852d | 12567 | S: Maintained |
679655da | 12568 | F: Documentation/usb/usb-serial.txt |
f896b796 | 12569 | F: drivers/usb/serial/ |
679655da | 12570 | F: include/linux/usb/serial.h |
1da177e4 | 12571 | |
b3f0db1c SG |
12572 | USB SMSC75XX ETHERNET DRIVER |
12573 | M: Steve Glendinning <steve.glendinning@shawell.net> | |
12574 | L: netdev@vger.kernel.org | |
12575 | S: Maintained | |
12576 | F: drivers/net/usb/smsc75xx.* | |
12577 | ||
2f7ca802 | 12578 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 12579 | M: Steve Glendinning <steve.glendinning@shawell.net> |
983ccd74 | 12580 | M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com> |
2f7ca802 | 12581 | L: netdev@vger.kernel.org |
90b24cfb | 12582 | S: Maintained |
679655da | 12583 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 12584 | |
1da177e4 | 12585 | USB SUBSYSTEM |
879a5a00 | 12586 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
795fb7e7 | 12587 | L: linux-usb@vger.kernel.org |
1da177e4 | 12588 | W: http://www.linux-usb.org |
08deed1e | 12589 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 12590 | S: Supported |
1700bd98 | 12591 | F: Documentation/devicetree/bindings/usb/ |
679655da | 12592 | F: Documentation/usb/ |
679655da JP |
12593 | F: drivers/usb/ |
12594 | F: include/linux/usb.h | |
12595 | F: include/linux/usb/ | |
1da177e4 LT |
12596 | |
12597 | USB UHCI DRIVER | |
8b58be88 | 12598 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 12599 | L: linux-usb@vger.kernel.org |
1da177e4 | 12600 | S: Maintained |
679655da | 12601 | F: drivers/usb/host/uhci* |
1da177e4 | 12602 | |
69ae9e3e | 12603 | USB "USBNET" DRIVER FRAMEWORK |
d8130624 | 12604 | M: Oliver Neukum <oneukum@suse.com> |
043600a6 | 12605 | L: netdev@vger.kernel.org |
69ae9e3e | 12606 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 12607 | S: Maintained |
679655da JP |
12608 | F: drivers/net/usb/usbnet.c |
12609 | F: include/linux/usb/usbnet.h | |
1da177e4 | 12610 | |
c0efd232 | 12611 | USB VIDEO CLASS |
c53ac071 | 12612 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
616bd4e2 | 12613 | L: linux-uvc-devel@lists.sourceforge.net (subscribers-only) |
661263b5 | 12614 | L: linux-media@vger.kernel.org |
275ffde4 | 12615 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 12616 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 12617 | S: Maintained |
0c0d06ca | 12618 | F: drivers/media/usb/uvc/ |
6c0f0359 | 12619 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 12620 | |
b60b9c45 HV |
12621 | USB VISION DRIVER |
12622 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
12623 | L: linux-media@vger.kernel.org | |
12624 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 12625 | W: https://linuxtv.org |
b60b9c45 HV |
12626 | S: Odd Fixes |
12627 | F: drivers/media/usb/usbvision/ | |
12628 | ||
8282da47 LP |
12629 | USB WEBCAM GADGET |
12630 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
12631 | L: linux-usb@vger.kernel.org | |
12632 | S: Maintained | |
3a83c16e | 12633 | F: drivers/usb/gadget/function/*uvc* |
faf2e1db | 12634 | F: drivers/usb/gadget/legacy/webcam.c |
8282da47 | 12635 | |
bf164cc0 | 12636 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 12637 | M: Jussi Kivilinna <jussi.kivilinna@iki.fi> |
bf164cc0 JK |
12638 | L: linux-wireless@vger.kernel.org |
12639 | S: Maintained | |
679655da | 12640 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 12641 | |
eb6bab13 | 12642 | USB XHCI DRIVER |
03d85053 | 12643 | M: Mathias Nyman <mathias.nyman@intel.com> |
eb6bab13 SS |
12644 | L: linux-usb@vger.kernel.org |
12645 | S: Supported | |
36d0344c SS |
12646 | F: drivers/usb/host/xhci* |
12647 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 12648 | |
1da177e4 | 12649 | USB ZD1201 DRIVER |
4086b9ca | 12650 | L: linux-wireless@vger.kernel.org |
1da177e4 | 12651 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 12652 | S: Orphan |
ed0ad06f | 12653 | F: drivers/net/wireless/zydas/zd1201.* |
1da177e4 | 12654 | |
b7eee616 | 12655 | USB ZR364XX DRIVER |
8b58be88 | 12656 | M: Antoine Jacquet <royale@zerezo.com> |
795fb7e7 | 12657 | L: linux-usb@vger.kernel.org |
661263b5 | 12658 | L: linux-media@vger.kernel.org |
275ffde4 | 12659 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
12660 | W: http://royale.zerezo.com/zr364xx/ |
12661 | S: Maintained | |
618cd932 | 12662 | F: Documentation/media/v4l-drivers/zr364xx* |
90d72ac6 | 12663 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 12664 | |
289fcff4 HK |
12665 | ULPI BUS |
12666 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> | |
12667 | L: linux-usb@vger.kernel.org | |
12668 | S: Maintained | |
12669 | F: drivers/usb/common/ulpi.c | |
12670 | F: include/linux/ulpi/ | |
12671 | ||
e7839f25 | 12672 | USER-MODE LINUX (UML) |
8b58be88 | 12673 | M: Jeff Dike <jdike@addtoit.com> |
b15194b7 | 12674 | M: Richard Weinberger <richard@nod.at> |
1da177e4 LT |
12675 | L: user-mode-linux-devel@lists.sourceforge.net |
12676 | L: user-mode-linux-user@lists.sourceforge.net | |
12677 | W: http://user-mode-linux.sourceforge.net | |
9f273c24 | 12678 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git |
1da177e4 | 12679 | S: Maintained |
61516587 | 12680 | F: Documentation/virtual/uml/ |
679655da | 12681 | F: arch/um/ |
b070989a | 12682 | F: arch/x86/um/ |
679655da JP |
12683 | F: fs/hostfs/ |
12684 | F: fs/hppfs/ | |
b7eee616 | 12685 | |
e5f114e9 | 12686 | USERSPACE I/O (UIO) |
879a5a00 | 12687 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
e5f114e9 | 12688 | S: Maintained |
3d3fecbd | 12689 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
679655da JP |
12690 | F: Documentation/DocBook/uio-howto.tmpl |
12691 | F: drivers/uio/ | |
12692 | F: include/linux/uio*.h | |
e5f114e9 | 12693 | |
256cccbe | 12694 | UTIL-LINUX PACKAGE |
8b58be88 | 12695 | M: Karel Zak <kzak@redhat.com> |
256cccbe KZ |
12696 | L: util-linux@vger.kernel.org |
12697 | W: http://en.wikipedia.org/wiki/Util-linux | |
12698 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
12699 | S: Maintained |
12700 | ||
c1fd1c07 | 12701 | UVESAFB DRIVER |
8b58be88 | 12702 | M: Michal Januszewski <spock@gentoo.org> |
c69f677c | 12703 | L: linux-fbdev@vger.kernel.org |
c1fd1c07 MJ |
12704 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
12705 | S: Maintained | |
679655da | 12706 | F: Documentation/fb/uvesafb.txt |
8a61f013 | 12707 | F: drivers/video/fbdev/uvesafb.* |
c1fd1c07 | 12708 | |
456930d8 SA |
12709 | VF610 NAND DRIVER |
12710 | M: Stefan Agner <stefan@agner.ch> | |
12711 | L: linux-mtd@lists.infradead.org | |
12712 | S: Supported | |
12713 | F: drivers/mtd/nand/vf610_nfc.c | |
12714 | ||
4480f15b | 12715 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 12716 | M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> |
1da177e4 | 12717 | S: Maintained |
679655da JP |
12718 | F: Documentation/filesystems/vfat.txt |
12719 | F: fs/fat/ | |
1da177e4 | 12720 | |
cba3345c AW |
12721 | VFIO DRIVER |
12722 | M: Alex Williamson <alex.williamson@redhat.com> | |
12723 | L: kvm@vger.kernel.org | |
9f273c24 | 12724 | T: git git://github.com/awilliam/linux-vfio.git |
cba3345c AW |
12725 | S: Maintained |
12726 | F: Documentation/vfio.txt | |
12727 | F: drivers/vfio/ | |
12728 | F: include/linux/vfio.h | |
c117ab84 | 12729 | F: include/uapi/linux/vfio.h |
cba3345c | 12730 | |
a714ea5f AW |
12731 | VFIO PLATFORM DRIVER |
12732 | M: Baptiste Reynal <b.reynal@virtualopensystems.com> | |
12733 | L: kvm@vger.kernel.org | |
12734 | S: Maintained | |
12735 | F: drivers/vfio/platform/ | |
12736 | ||
9e6f3438 PO |
12737 | VIDEOBUF2 FRAMEWORK |
12738 | M: Pawel Osciak <pawel@osciak.com> | |
12739 | M: Marek Szyprowski <m.szyprowski@samsung.com> | |
e76e4706 | 12740 | M: Kyungmin Park <kyungmin.park@samsung.com> |
9e6f3438 PO |
12741 | L: linux-media@vger.kernel.org |
12742 | S: Maintained | |
90d72ac6 | 12743 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
12744 | F: include/media/videobuf2-* |
12745 | ||
06a8fc78 AH |
12746 | VIRTIO AND VHOST VSOCK DRIVER |
12747 | M: Stefan Hajnoczi <stefanha@redhat.com> | |
12748 | L: kvm@vger.kernel.org | |
12749 | L: virtualization@lists.linux-foundation.org | |
12750 | L: netdev@vger.kernel.org | |
12751 | S: Maintained | |
12752 | F: include/linux/virtio_vsock.h | |
12753 | F: include/uapi/linux/virtio_vsock.h | |
12754 | F: net/vmw_vsock/virtio_transport_common.c | |
0ea9e1d3 | 12755 | F: net/vmw_vsock/virtio_transport.c |
433fc58e AH |
12756 | F: drivers/vhost/vsock.c |
12757 | F: drivers/vhost/vsock.h | |
06a8fc78 | 12758 | |
5523662e SCP |
12759 | VIRTUAL SERIO DEVICE DRIVER |
12760 | M: Stephen Chandler Paul <thatslyude@gmail.com> | |
12761 | S: Maintained | |
12762 | F: drivers/input/serio/userio.c | |
12763 | F: include/uapi/linux/userio.h | |
12764 | ||
9a82446b AS |
12765 | VIRTIO CONSOLE DRIVER |
12766 | M: Amit Shah <amit.shah@redhat.com> | |
12767 | L: virtualization@lists.linux-foundation.org | |
12768 | S: Maintained | |
12769 | F: drivers/char/virtio_console.c | |
12770 | F: include/linux/virtio_console.h | |
c117ab84 | 12771 | F: include/uapi/linux/virtio_console.h |
9a82446b | 12772 | |
2426ec8f | 12773 | VIRTIO CORE, NET AND BLOCK DRIVERS |
2426ec8f MT |
12774 | M: "Michael S. Tsirkin" <mst@redhat.com> |
12775 | L: virtualization@lists.linux-foundation.org | |
12776 | S: Maintained | |
0e4191fe | 12777 | F: Documentation/devicetree/bindings/virtio/ |
2426ec8f | 12778 | F: drivers/virtio/ |
c893c8d7 | 12779 | F: tools/virtio/ |
2426ec8f MT |
12780 | F: drivers/net/virtio_net.c |
12781 | F: drivers/block/virtio_blk.c | |
12782 | F: include/linux/virtio_*.h | |
916cdabc | 12783 | F: include/uapi/linux/virtio_*.h |
2426ec8f | 12784 | |
f2dbda3b CH |
12785 | VIRTIO DRIVERS FOR S390 |
12786 | M: Christian Borntraeger <borntraeger@de.ibm.com> | |
12787 | M: Cornelia Huck <cornelia.huck@de.ibm.com> | |
12788 | L: linux-s390@vger.kernel.org | |
12789 | L: virtualization@lists.linux-foundation.org | |
12790 | L: kvm@vger.kernel.org | |
12791 | S: Supported | |
1b568d93 | 12792 | F: drivers/s390/virtio/ |
f2dbda3b | 12793 | |
4ad6ee91 GH |
12794 | VIRTIO GPU DRIVER |
12795 | M: David Airlie <airlied@linux.ie> | |
12796 | M: Gerd Hoffmann <kraxel@redhat.com> | |
12797 | L: dri-devel@lists.freedesktop.org | |
12798 | L: virtualization@lists.linux-foundation.org | |
12799 | S: Maintained | |
12800 | F: drivers/gpu/drm/virtio/ | |
12801 | F: include/uapi/linux/virtio_gpu.h | |
12802 | ||
3a4d5c94 MT |
12803 | VIRTIO HOST (VHOST) |
12804 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
12805 | L: kvm@vger.kernel.org | |
c996d8b9 | 12806 | L: virtualization@lists.linux-foundation.org |
3a4d5c94 | 12807 | L: netdev@vger.kernel.org |
9f273c24 | 12808 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git |
3a4d5c94 MT |
12809 | S: Maintained |
12810 | F: drivers/vhost/ | |
c117ab84 | 12811 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 12812 | |
271c8651 GH |
12813 | VIRTIO INPUT DRIVER |
12814 | M: Gerd Hoffmann <kraxel@redhat.com> | |
12815 | S: Maintained | |
12816 | F: drivers/virtio/virtio_input.c | |
12817 | F: include/uapi/linux/virtio_input.h | |
12818 | ||
1da177e4 | 12819 | VIA RHINE NETWORK DRIVER |
210347e1 | 12820 | S: Orphan |
f2148a47 | 12821 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 12822 | |
f0bf7f61 | 12823 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 12824 | M: Bruce Chang <brucechang@via.com.tw> |
8b58be88 | 12825 | M: Harald Welte <HaraldWelte@viatech.com> |
f0bf7f61 HW |
12826 | S: Maintained |
12827 | F: drivers/mmc/host/via-sdmmc.c | |
12828 | ||
69e4a7c2 | 12829 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 12830 | M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> |
c69f677c | 12831 | L: linux-fbdev@vger.kernel.org |
69e4a7c2 | 12832 | S: Maintained |
c7babebd FTS |
12833 | F: include/linux/via-core.h |
12834 | F: include/linux/via-gpio.h | |
12835 | F: include/linux/via_i2c.h | |
8a61f013 | 12836 | F: drivers/video/fbdev/via/ |
69e4a7c2 | 12837 | |
01f20734 | 12838 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 12839 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 FR |
12840 | L: netdev@vger.kernel.org |
12841 | S: Maintained | |
f2148a47 | 12842 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 12843 | |
f73f8173 AW |
12844 | VIRT LIB |
12845 | M: Alex Williamson <alex.williamson@redhat.com> | |
12846 | M: Paolo Bonzini <pbonzini@redhat.com> | |
12847 | L: kvm@vger.kernel.org | |
12848 | S: Supported | |
12849 | F: virt/lib/ | |
12850 | ||
77911fd2 | 12851 | VIVID VIRTUAL VIDEO DRIVER |
0b7bc1fa HV |
12852 | M: Hans Verkuil <hverkuil@xs4all.nl> |
12853 | L: linux-media@vger.kernel.org | |
12854 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 12855 | W: https://linuxtv.org |
0b7bc1fa | 12856 | S: Maintained |
77911fd2 | 12857 | F: drivers/media/platform/vivid/* |
0b7bc1fa | 12858 | |
be7f8273 | 12859 | VLAN (802.1Q) |
8b58be88 | 12860 | M: Patrick McHardy <kaber@trash.net> |
be7f8273 PM |
12861 | L: netdev@vger.kernel.org |
12862 | S: Maintained | |
679655da JP |
12863 | F: drivers/net/macvlan.c |
12864 | F: include/linux/if_*vlan.h | |
12865 | F: net/8021q/ | |
be7f8273 | 12866 | |
55e331cf | 12867 | VLYNQ BUS |
08eeb306 | 12868 | M: Florian Fainelli <f.fainelli@gmail.com> |
8578d7af | 12869 | L: openwrt-devel@lists.openwrt.org (subscribers-only) |
55e331cf FF |
12870 | S: Maintained |
12871 | F: drivers/vlynq/vlynq.c | |
12872 | F: include/linux/vlynq.h | |
12873 | ||
390beae4 | 12874 | VME SUBSYSTEM |
74c600e3 | 12875 | M: Martyn Welch <martyn@welchs.me.uk> |
1bd289d1 | 12876 | M: Manohar Vanga <manohar.vanga@gmail.com> |
390beae4 MW |
12877 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
12878 | L: devel@driverdev.osuosl.org | |
12879 | S: Maintained | |
12880 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
12881 | F: Documentation/vme_api.txt | |
12882 | F: drivers/staging/vme/ | |
12883 | F: drivers/vme/ | |
12884 | F: include/linux/vme* | |
12885 | ||
4488e09b AK |
12886 | VMWARE HYPERVISOR INTERFACE |
12887 | M: Alok Kataria <akataria@vmware.com> | |
12888 | L: virtualization@lists.linux-foundation.org | |
12889 | S: Supported | |
12890 | F: arch/x86/kernel/cpu/vmware.c | |
12891 | ||
73b35d07 DT |
12892 | VMWARE BALLOON DRIVER |
12893 | M: Xavier Deguillard <xdeguillard@vmware.com> | |
12894 | M: Philip Moltmann <moltmann@vmware.com> | |
12895 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
12896 | L: linux-kernel@vger.kernel.org | |
12897 | S: Maintained | |
12898 | F: drivers/misc/vmw_balloon.c | |
12899 | ||
8b8be51b TH |
12900 | VMWARE VMMOUSE SUBDRIVER |
12901 | M: "VMware Graphics" <linux-graphics-maintainer@vmware.com> | |
12902 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
12903 | L: linux-input@vger.kernel.org | |
12904 | S: Maintained | |
12905 | F: drivers/input/mouse/vmmouse.c | |
12906 | F: drivers/input/mouse/vmmouse.h | |
12907 | ||
d1a890fa | 12908 | VMWARE VMXNET3 ETHERNET DRIVER |
04e1b734 | 12909 | M: Shrikrishna Khare <skhare@vmware.com> |
65c8bb5b JP |
12910 | M: "VMware, Inc." <pv-drivers@vmware.com> |
12911 | L: netdev@vger.kernel.org | |
12912 | S: Maintained | |
12913 | F: drivers/net/vmxnet3/ | |
d1a890fa | 12914 | |
851b1642 | 12915 | VMware PVSCSI driver |
29374ec6 | 12916 | M: Jim Gill <jgill@vmware.com> |
851b1642 AK |
12917 | M: VMware PV-Drivers <pv-drivers@vmware.com> |
12918 | L: linux-scsi@vger.kernel.org | |
12919 | S: Maintained | |
12920 | F: drivers/scsi/vmw_pvscsi.c | |
12921 | F: drivers/scsi/vmw_pvscsi.h | |
12922 | ||
e53e86c7 | 12923 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 12924 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 12925 | M: Mark Brown <broonie@kernel.org> |
5cdeb2c8 | 12926 | L: linux-kernel@vger.kernel.org |
1dd68f01 | 12927 | W: http://www.slimlogic.co.uk/?p=48 |
6febb5ab | 12928 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
e53e86c7 | 12929 | S: Supported |
9d2597e8 | 12930 | F: Documentation/devicetree/bindings/regulator/ |
679655da | 12931 | F: drivers/regulator/ |
9d2597e8 | 12932 | F: include/dt-bindings/regulator/ |
679655da | 12933 | F: include/linux/regulator/ |
e53e86c7 | 12934 | |
081958eb DA |
12935 | VRF |
12936 | M: David Ahern <dsa@cumulusnetworks.com> | |
12937 | M: Shrijeet Mukherjee <shm@cumulusnetworks.com> | |
12938 | L: netdev@vger.kernel.org | |
12939 | S: Maintained | |
12940 | F: drivers/net/vrf.c | |
562d897d | 12941 | F: Documentation/networking/vrf.txt |
081958eb | 12942 | |
ab41319e | 12943 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 12944 | M: Juerg Haefliger <juergh@gmail.com> |
968ce1b1 | 12945 | L: linux-hwmon@vger.kernel.org |
ab41319e | 12946 | S: Maintained |
679655da JP |
12947 | F: Documentation/hwmon/vt1211 |
12948 | F: drivers/hwmon/vt1211.c | |
ab41319e | 12949 | |
1de9e371 | 12950 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 12951 | M: Roger Lucas <vt8231@hiddenengine.co.uk> |
968ce1b1 | 12952 | L: linux-hwmon@vger.kernel.org |
1de9e371 | 12953 | S: Maintained |
679655da | 12954 | F: drivers/hwmon/vt8231.c |
1de9e371 | 12955 | |
88095e7b TO |
12956 | VUB300 USB to SDIO/SD/MMC bridge chip |
12957 | M: Tony Olech <tony.olech@elandigitalsystems.com> | |
12958 | L: linux-mmc@vger.kernel.org | |
12959 | L: linux-usb@vger.kernel.org | |
12960 | S: Supported | |
12961 | F: drivers/mmc/host/vub300.c | |
12962 | ||
1da177e4 | 12963 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 12964 | M: Evgeniy Polyakov <zbr@ioremap.net> |
1da177e4 | 12965 | S: Maintained |
679655da JP |
12966 | F: Documentation/w1/ |
12967 | F: drivers/w1/ | |
1da177e4 | 12968 | |
13927079 | 12969 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 12970 | M: Marc Hulsman <m.hulsman@tudelft.nl> |
968ce1b1 | 12971 | L: linux-hwmon@vger.kernel.org |
25845c22 | 12972 | S: Maintained |
679655da JP |
12973 | F: Documentation/hwmon/w83791d |
12974 | F: drivers/hwmon/w83791d.c | |
13927079 | 12975 | |
61db011d | 12976 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 12977 | M: Rudolf Marek <r.marek@assembler.cz> |
968ce1b1 | 12978 | L: linux-hwmon@vger.kernel.org |
61db011d | 12979 | S: Maintained |
679655da JP |
12980 | F: Documentation/hwmon/w83793 |
12981 | F: drivers/hwmon/w83793.c | |
61db011d | 12982 | |
e3760b43 | 12983 | W83795 HARDWARE MONITORING DRIVER |
d8130624 | 12984 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 12985 | L: linux-hwmon@vger.kernel.org |
e3760b43 JD |
12986 | S: Maintained |
12987 | F: drivers/hwmon/w83795.c | |
12988 | ||
1da177e4 | 12989 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 12990 | M: Pierre Ossman <pierre@ossman.eu> |
1da177e4 | 12991 | S: Maintained |
679655da | 12992 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 12993 | |
b4e05923 HG |
12994 | WACOM PROTOCOL 4 SERIAL TABLETS |
12995 | M: Julian Squires <julian@cipht.net> | |
12996 | M: Hans de Goede <hdegoede@redhat.com> | |
12997 | L: linux-input@vger.kernel.org | |
12998 | S: Maintained | |
12999 | F: drivers/input/tablet/wacom_serial4.c | |
13000 | ||
3527761c | 13001 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 13002 | M: Wim Van Sebroeck <wim@iguana.be> |
1f32f83e | 13003 | R: Guenter Roeck <linux@roeck-us.net> |
230a5cef WVS |
13004 | L: linux-watchdog@vger.kernel.org |
13005 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 13006 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 13007 | S: Maintained |
540be8b2 | 13008 | F: Documentation/devicetree/bindings/watchdog/ |
679655da JP |
13009 | F: Documentation/watchdog/ |
13010 | F: drivers/watchdog/ | |
13011 | F: include/linux/watchdog.h | |
c117ab84 | 13012 | F: include/uapi/linux/watchdog.h |
3527761c | 13013 | |
b22e00f3 DH |
13014 | WIIMOTE HID DRIVER |
13015 | M: David Herrmann <dh.herrmann@googlemail.com> | |
13016 | L: linux-input@vger.kernel.org | |
13017 | S: Maintained | |
13018 | F: drivers/hid/hid-wiimote* | |
13019 | ||
e258b80e | 13020 | WINBOND CIR DRIVER |
364e9e18 | 13021 | M: David Härdeman <david@hardeman.nu> |
e258b80e | 13022 | S: Maintained |
116ab806 | 13023 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 13024 | |
c36a483d WBG |
13025 | WINSYSTEMS EBC-C384 WATCHDOG DRIVER |
13026 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
13027 | L: linux-watchdog@vger.kernel.org | |
13028 | S: Maintained | |
13029 | F: drivers/watchdog/ebc-c384_wdt.c | |
13030 | ||
9c26df9b WBG |
13031 | WINSYSTEMS WS16C48 GPIO DRIVER |
13032 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
13033 | L: linux-gpio@vger.kernel.org | |
13034 | S: Maintained | |
13035 | F: drivers/gpio/gpio-ws16c48.c | |
e258b80e | 13036 | |
8a70da82 | 13037 | WIMAX STACK |
8b58be88 | 13038 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 13039 | M: linux-wimax@intel.com |
49e7d9df | 13040 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
13041 | S: Supported |
13042 | W: http://linuxwimax.org | |
315987dc | 13043 | F: Documentation/wimax/README.wimax |
315987dc JP |
13044 | F: include/linux/wimax/debug.h |
13045 | F: include/net/wimax.h | |
c117ab84 | 13046 | F: include/uapi/linux/wimax.h |
315987dc | 13047 | F: net/wimax/ |
8a70da82 | 13048 | |
5fc14680 | 13049 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 13050 | M: Miloslav Trmac <mitr@volny.cz> |
5fc14680 | 13051 | S: Maintained |
679655da | 13052 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 13053 | |
1da177e4 | 13054 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 13055 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
724c6b35 | 13056 | L: linux-wireless@vger.kernel.org |
926554c4 | 13057 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 13058 | S: Maintained |
679655da | 13059 | F: drivers/net/wireless/wl3501* |
1da177e4 | 13060 | |
055bcbcb | 13061 | WOLFSON MICROELECTRONICS DRIVERS |
fef95164 | 13062 | L: patches@opensource.wolfsonmicro.com |
f0e03dbd RF |
13063 | T: git https://github.com/CirrusLogic/linux-drivers.git |
13064 | W: https://github.com/CirrusLogic/linux-drivers/wiki | |
b75ea16a | 13065 | S: Supported |
3768f0b1 | 13066 | F: Documentation/hwmon/wm83?? |
f494993f CK |
13067 | F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt |
13068 | F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt | |
13069 | F: Documentation/devicetree/bindings/mfd/arizona.txt | |
af1c5386 | 13070 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 13071 | F: drivers/clk/clk-wm83*.c |
9c309598 | 13072 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 13073 | F: drivers/leds/leds-wm83*.c |
25b273ba | 13074 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 13075 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 13076 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
13077 | F: drivers/input/misc/wm831x-on.c |
13078 | F: drivers/input/touchscreen/wm831x-ts.c | |
13079 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
13080 | F: drivers/mfd/arizona* |
13081 | F: drivers/mfd/wm*.c | |
12ebc137 | 13082 | F: drivers/mfd/cs47l24* |
8c0984e5 | 13083 | F: drivers/power/supply/wm83*.c |
b75ea16a MB |
13084 | F: drivers/rtc/rtc-wm83*.c |
13085 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 13086 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 13087 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 13088 | F: include/linux/mfd/arizona/ |
3860e6c4 | 13089 | F: include/linux/mfd/wm831x/ |
b75ea16a | 13090 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 13091 | F: include/linux/mfd/wm8400* |
59ec6da2 | 13092 | F: include/linux/wm97xx.h |
055bcbcb | 13093 | F: include/sound/wm????.h |
9c309598 | 13094 | F: sound/soc/codecs/arizona.? |
055bcbcb | 13095 | F: sound/soc/codecs/wm* |
12ebc137 | 13096 | F: sound/soc/codecs/cs47l24* |
b75ea16a | 13097 | |
3e6cd7a4 TH |
13098 | WORKQUEUE |
13099 | M: Tejun Heo <tj@kernel.org> | |
badb7f5e | 13100 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
3e6cd7a4 TH |
13101 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
13102 | S: Maintained | |
13103 | F: include/linux/workqueue.h | |
13104 | F: kernel/workqueue.c | |
13105 | F: Documentation/workqueue.txt | |
13106 | ||
39ac9f48 CYT |
13107 | X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS |
13108 | M: Chen-Yu Tsai <wens@csie.org> | |
13109 | L: linux-kernel@vger.kernel.org | |
13110 | S: Maintained | |
13111 | N: axp[128] | |
13112 | ||
1da177e4 | 13113 | X.25 NETWORK LAYER |
8bf28059 | 13114 | M: Andrew Hendry <andrew.hendry@gmail.com> |
1da177e4 | 13115 | L: linux-x25@vger.kernel.org |
8bf28059 | 13116 | S: Odd Fixes |
679655da JP |
13117 | F: Documentation/networking/x25* |
13118 | F: include/net/x25* | |
13119 | F: net/x25/ | |
1da177e4 | 13120 | |
e2d1d6c0 | 13121 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
13122 | M: Thomas Gleixner <tglx@linutronix.de> |
13123 | M: Ingo Molnar <mingo@redhat.com> | |
13124 | M: "H. Peter Anvin" <hpa@zytor.com> | |
bcde563c | 13125 | M: x86@kernel.org |
981c3a4f | 13126 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 13127 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 13128 | S: Maintained |
679655da JP |
13129 | F: Documentation/x86/ |
13130 | F: arch/x86/ | |
e2d1d6c0 | 13131 | |
d0944853 | 13132 | X86 PLATFORM DRIVERS |
e181ba15 | 13133 | M: Darren Hart <dvhart@infradead.org> |
d0944853 | 13134 | L: platform-driver-x86@vger.kernel.org |
e181ba15 | 13135 | T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git |
d0944853 | 13136 | S: Maintained |
14430813 | 13137 | F: drivers/platform/x86/ |
3a4bceef | 13138 | F: drivers/platform/olpc/ |
d0944853 | 13139 | |
c1f5c54b IM |
13140 | X86 MCE INFRASTRUCTURE |
13141 | M: Tony Luck <tony.luck@intel.com> | |
487ba8e8 | 13142 | M: Borislav Petkov <bp@alien8.de> |
c1f5c54b IM |
13143 | L: linux-edac@vger.kernel.org |
13144 | S: Maintained | |
13145 | F: arch/x86/kernel/cpu/mcheck/* | |
13146 | ||
79ebdc95 BP |
13147 | X86 MICROCODE UPDATE SUPPORT |
13148 | M: Borislav Petkov <bp@alien8.de> | |
13149 | S: Maintained | |
13150 | F: arch/x86/kernel/cpu/microcode/* | |
13151 | ||
f0905c5a AL |
13152 | X86 VDSO |
13153 | M: Andy Lutomirski <luto@amacapital.net> | |
13154 | L: linux-kernel@vger.kernel.org | |
13155 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso | |
13156 | S: Maintained | |
d603c8e1 | 13157 | F: arch/x86/entry/vdso/ |
f0905c5a | 13158 | |
d6fad502 | 13159 | XC2028/3028 TUNER DRIVER |
5dc8a864 MCC |
13160 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
13161 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
d6fad502 | 13162 | L: linux-media@vger.kernel.org |
a825eaec | 13163 | W: https://linuxtv.org |
d6fad502 MCC |
13164 | T: git git://linuxtv.org/media_tree.git |
13165 | S: Maintained | |
13166 | F: drivers/media/tuners/tuner-xc2028.* | |
13167 | ||
c4468085 | 13168 | XEN HYPERVISOR INTERFACE |
3eeef8f7 KRW |
13169 | M: Boris Ostrovsky <boris.ostrovsky@oracle.com> |
13170 | M: David Vrabel <david.vrabel@citrix.com> | |
101ecde5 | 13171 | M: Juergen Gross <jgross@suse.com> |
11dbb52b | 13172 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
ea70ba3a | 13173 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git |
c4468085 IC |
13174 | S: Supported |
13175 | F: arch/x86/xen/ | |
13176 | F: drivers/*/xen-*front.c | |
13177 | F: drivers/xen/ | |
13178 | F: arch/x86/include/asm/xen/ | |
13179 | F: include/xen/ | |
c117ab84 | 13180 | F: include/uapi/xen/ |
c4468085 | 13181 | |
77bfb479 | 13182 | XEN HYPERVISOR ARM |
85d1a29d | 13183 | M: Stefano Stabellini <sstabellini@kernel.org> |
11dbb52b | 13184 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
85d1a29d | 13185 | S: Maintained |
77bfb479 SS |
13186 | F: arch/arm/xen/ |
13187 | F: arch/arm/include/asm/xen/ | |
13188 | ||
b475e83f | 13189 | XEN HYPERVISOR ARM64 |
85d1a29d | 13190 | M: Stefano Stabellini <sstabellini@kernel.org> |
11dbb52b | 13191 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
85d1a29d | 13192 | S: Maintained |
b475e83f SS |
13193 | F: arch/arm64/xen/ |
13194 | F: arch/arm64/include/asm/xen/ | |
13195 | ||
9b57e1a7 | 13196 | XEN NETWORK BACKEND DRIVER |
8386040b | 13197 | M: Wei Liu <wei.liu2@citrix.com> |
7d3cfc36 | 13198 | M: Paul Durrant <paul.durrant@citrix.com> |
11dbb52b | 13199 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
9b57e1a7 IC |
13200 | L: netdev@vger.kernel.org |
13201 | S: Supported | |
13202 | F: drivers/net/xen-netback/* | |
13203 | ||
c5f8e29d KRW |
13204 | XEN PCI SUBSYSTEM |
13205 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 13206 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
13207 | S: Supported |
13208 | F: arch/x86/pci/*xen* | |
13209 | F: drivers/pci/*xen* | |
13210 | ||
a2c5ae65 KRW |
13211 | XEN BLOCK SUBSYSTEM |
13212 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
bcadb699 | 13213 | M: Roger Pau Monné <roger.pau@citrix.com> |
a2c5ae65 KRW |
13214 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
13215 | S: Supported | |
13216 | F: drivers/block/xen-blkback/* | |
13217 | F: drivers/block/xen* | |
13218 | ||
15d03609 JG |
13219 | XEN PVSCSI DRIVERS |
13220 | M: Juergen Gross <jgross@suse.com> | |
13221 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) | |
13222 | L: linux-scsi@vger.kernel.org | |
13223 | S: Supported | |
13224 | F: drivers/scsi/xen-scsifront.c | |
13225 | F: drivers/xen/xen-scsiback.c | |
13226 | F: include/xen/interface/io/vscsiif.h | |
13227 | ||
c5f8e29d KRW |
13228 | XEN SWIOTLB SUBSYSTEM |
13229 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 13230 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
13231 | S: Supported |
13232 | F: arch/x86/xen/*swiotlb* | |
13233 | F: drivers/xen/*swiotlb* | |
13234 | ||
1da177e4 | 13235 | XFS FILESYSTEM |
809625ca | 13236 | M: Dave Chinner <david@fromorbit.com> |
541d48f0 DC |
13237 | M: linux-xfs@vger.kernel.org |
13238 | L: linux-xfs@vger.kernel.org | |
13239 | W: http://xfs.org/ | |
9f273c24 | 13240 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git |
1da177e4 | 13241 | S: Supported |
679655da JP |
13242 | F: Documentation/filesystems/xfs.txt |
13243 | F: fs/xfs/ | |
1da177e4 | 13244 | |
8a3b7a25 | 13245 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
13246 | M: Anirudha Sarangi <anirudh@xilinx.com> |
13247 | M: John Linn <John.Linn@xilinx.com> | |
8a3b7a25 | 13248 | S: Maintained |
13249 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
13250 | ||
238b8721 | 13251 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 13252 | M: Peter Korsgaard <jacmet@sunsite.dk> |
238b8721 PK |
13253 | L: linux-serial@vger.kernel.org |
13254 | S: Maintained | |
df621252 | 13255 | F: drivers/tty/serial/uartlite.c |
238b8721 | 13256 | |
df330515 LP |
13257 | XILINX VIDEO IP CORES |
13258 | M: Hyun Kwon <hyun.kwon@xilinx.com> | |
13259 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
13260 | L: linux-media@vger.kernel.org | |
13261 | T: git git://linuxtv.org/media_tree.git | |
13262 | S: Supported | |
13263 | F: Documentation/devicetree/bindings/media/xilinx/ | |
13264 | F: drivers/media/platform/xilinx/ | |
a5562f65 | 13265 | F: include/uapi/linux/xilinx-v4l2-controls.h |
df330515 | 13266 | |
74316949 EB |
13267 | XILLYBUS DRIVER |
13268 | M: Eli Billauer <eli.billauer@gmail.com> | |
13269 | L: linux-kernel@vger.kernel.org | |
13270 | S: Supported | |
13271 | F: drivers/char/xillybus/ | |
13272 | ||
f620e4b8 MF |
13273 | XTENSA XTFPGA PLATFORM SUPPORT |
13274 | M: Max Filippov <jcmvbkbc@gmail.com> | |
13275 | L: linux-xtensa@linux-xtensa.org | |
13276 | S: Maintained | |
13277 | F: drivers/spi/spi-xtensa-xtfpga.c | |
57b7068d | 13278 | F: sound/soc/xtensa/xtfpga-i2s.c |
f620e4b8 | 13279 | |
1da177e4 | 13280 | YAM DRIVER FOR AX.25 |
8b58be88 | 13281 | M: Jean-Paul Roubelat <jpr@f6fbb.org> |
1da177e4 LT |
13282 | L: linux-hams@vger.kernel.org |
13283 | S: Maintained | |
679655da JP |
13284 | F: drivers/net/hamradio/yam* |
13285 | F: include/linux/yam.h | |
1da177e4 | 13286 | |
af64a5eb | 13287 | YEALINK PHONE DRIVER |
8b58be88 | 13288 | M: Henk Vergonet <Henk.Vergonet@gmail.com> |
af64a5eb HV |
13289 | L: usbb2k-api-dev@nongnu.org |
13290 | S: Maintained | |
679655da JP |
13291 | F: Documentation/input/yealink.txt |
13292 | F: drivers/input/misc/yealink.* | |
af64a5eb | 13293 | |
1da177e4 | 13294 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 13295 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
13296 | W: http://yaina.de/jreuter/ |
13297 | W: http://www.qsl.net/dl1bke/ | |
13298 | L: linux-hams@vger.kernel.org | |
13299 | S: Maintained | |
679655da JP |
13300 | F: Documentation/networking/z8530drv.txt |
13301 | F: drivers/net/hamradio/*scc.c | |
13302 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 13303 | |
0cf31ec1 | 13304 | ZBUD COMPRESSED PAGE ALLOCATOR |
0bb181c7 | 13305 | M: Seth Jennings <sjenning@redhat.com> |
0cf31ec1 SJ |
13306 | L: linux-mm@kvack.org |
13307 | S: Maintained | |
13308 | F: mm/zbud.c | |
13309 | F: include/linux/zbud.h | |
13310 | ||
7c0c3afb | 13311 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
13312 | M: Daniel Drake <dsd@gentoo.org> |
13313 | M: Ulrich Kunitz <kune@deine-taler.de> | |
7c0c3afb | 13314 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 13315 | L: linux-wireless@vger.kernel.org |
7c0c3afb DD |
13316 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
13317 | S: Maintained | |
6948300c | 13318 | F: drivers/net/wireless/zydas/zd1211rw/ |
7c0c3afb | 13319 | |
20263029 DS |
13320 | ZPOOL COMPRESSED PAGE STORAGE API |
13321 | M: Dan Streetman <ddstreet@ieee.org> | |
13322 | L: linux-mm@kvack.org | |
13323 | S: Maintained | |
13324 | F: mm/zpool.c | |
13325 | F: include/linux/zpool.h | |
13326 | ||
1da177e4 | 13327 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 13328 | L: mjpeg-users@lists.sourceforge.net |
f63145e2 | 13329 | L: linux-media@vger.kernel.org |
1da177e4 | 13330 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
a825eaec | 13331 | T: hg https://linuxtv.org/hg/v4l-dvb |
f63145e2 | 13332 | S: Odd Fixes |
90d72ac6 | 13333 | F: drivers/media/pci/zoran/ |
1da177e4 | 13334 | |
6920f2cc MK |
13335 | ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER |
13336 | M: Minchan Kim <minchan@kernel.org> | |
13337 | M: Nitin Gupta <ngupta@vflare.org> | |
74f3037c | 13338 | R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
6920f2cc MK |
13339 | L: linux-kernel@vger.kernel.org |
13340 | S: Maintained | |
13341 | F: drivers/block/zram/ | |
13342 | F: Documentation/blockdev/zram.txt | |
13343 | ||
8b4a4080 | 13344 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 13345 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
8b4a4080 | 13346 | S: Maintained |
df621252 | 13347 | F: drivers/tty/serial/zs.* |
8b4a4080 | 13348 | |
eae70d06 MK |
13349 | ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR |
13350 | M: Minchan Kim <minchan@kernel.org> | |
13351 | M: Nitin Gupta <ngupta@vflare.org> | |
41192a2d | 13352 | R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
eae70d06 MK |
13353 | L: linux-mm@kvack.org |
13354 | S: Maintained | |
13355 | F: mm/zsmalloc.c | |
13356 | F: include/linux/zsmalloc.h | |
d02be50d | 13357 | F: Documentation/vm/zsmalloc.txt |
eae70d06 | 13358 | |
0cf31ec1 | 13359 | ZSWAP COMPRESSED SWAP CACHING |
0bb181c7 | 13360 | M: Seth Jennings <sjenning@redhat.com> |
0cf31ec1 SJ |
13361 | L: linux-mm@kvack.org |
13362 | S: Maintained | |
13363 | F: mm/zswap.c | |
13364 | ||
1da177e4 | 13365 | THE REST |
8b58be88 | 13366 | M: Linus Torvalds <torvalds@linux-foundation.org> |
34d03cc1 | 13367 | L: linux-kernel@vger.kernel.org |
8a6e2535 | 13368 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 13369 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 13370 | S: Buried alive in reporters |
34d03cc1 JP |
13371 | F: * |
13372 | F: */ |