]>
Commit | Line | Data |
---|---|---|
1da177e4 | 1 | |
cc8f9b99 | 2 | |
1da177e4 LT |
3 | List of maintainers and how to submit kernel changes |
4 | ||
5 | Please try to follow the guidelines below. This will make things | |
6 | easier on the maintainers. Not all of these guidelines matter for every | |
7 | trivial patch so apply some common sense. | |
8 | ||
9 | 1. Always _test_ your changes, however small, on at least 4 or | |
10 | 5 people, preferably many more. | |
11 | ||
12 | 2. Try to release a few ALPHA test versions to the net. Announce | |
13 | them onto the kernel channel and await results. This is especially | |
14 | important for device drivers, because often that's the only way | |
15 | you will find things like the fact version 3 firmware needs | |
16 | a magic fix you didn't know about, or some clown changed the | |
17 | chips on a board and not its name. (Don't laugh! Look at the | |
18 | SMC etherpower for that.) | |
19 | ||
20 | 3. Make sure your changes compile correctly in multiple | |
21 | configurations. In particular check that changes work both as a | |
22 | module and built into the kernel. | |
23 | ||
24 | 4. When you are happy with a change make it generally available for | |
25 | testing and await feedback. | |
26 | ||
27 | 5. Make a patch available to the relevant maintainer in the list. Use | |
28 | 'diff -u' to make the patch easy to merge. Be prepared to get your | |
29 | changes sent back with seemingly silly requests about formatting | |
30 | and variable names. These aren't as silly as they seem. One | |
31 | job the maintainers (and especially Linus) do is to keep things | |
32 | looking the same. Sometimes this means that the clever hack in | |
33 | your driver to get around a problem actually needs to become a | |
0a920b5b AW |
34 | generalized kernel feature ready for next time. |
35 | ||
36 | PLEASE check your patch with the automated style checker | |
6f9e2456 | 37 | (scripts/checkpatch.pl) to catch trivial style violations. |
8c27ceff | 38 | See Documentation/process/coding-style.rst for guidance here. |
1da177e4 | 39 | |
f70f873b JP |
40 | PLEASE CC: the maintainers and mailing lists that are generated |
41 | by scripts/get_maintainer.pl. The results returned by the | |
42 | script will be best if you have git installed and are making | |
43 | your changes in a branch derived from Linus' latest git tree. | |
8c27ceff | 44 | See Documentation/process/submitting-patches.rst for details. |
f70f873b | 45 | |
1da177e4 LT |
46 | PLEASE try to include any credit lines you want added with the |
47 | patch. It avoids people being missed off by mistake and makes | |
48 | it easier to know who wants adding and who doesn't. | |
49 | ||
50 | PLEASE document known bugs. If it doesn't work for everything | |
51 | or does something very odd once a month document it. | |
52 | ||
c9ee133b | 53 | PLEASE remember that submissions must be made under the terms |
08602d74 SH |
54 | of the Linux Foundation certificate of contribution and should |
55 | include a Signed-off-by: line. The current version of this | |
56 | "Developer's Certificate of Origin" (DCO) is listed in the file | |
8c27ceff | 57 | Documentation/process/submitting-patches.rst. |
c9ee133b | 58 | |
1da177e4 LT |
59 | 6. Make sure you have the right to send any changes you make. If you |
60 | do changes at work you may find your employer owns the patch | |
61 | not you. | |
62 | ||
c9ee133b AC |
63 | 7. When sending security related changes or reports to a maintainer |
64 | please Cc: security@kernel.org, especially if the maintainer | |
65 | does not respond. | |
66 | ||
67 | 8. Happy hacking. | |
1da177e4 | 68 | |
c7c4fb18 JP |
69 | Descriptions of section entries: |
70 | ||
71 | P: Person (obsolete) | |
72 | M: Mail patches to: FullName <address@domain> | |
eafbaac3 PM |
73 | R: Designated reviewer: FullName <address@domain> |
74 | These reviewers should be CCed on patches. | |
c7c4fb18 JP |
75 | L: Mailing list that is relevant to this area |
76 | W: Web-page with status/info | |
2de2bd95 JN |
77 | B: URI for where to file bugs. A web-page with detailed bug |
78 | filing info, a direct bug tracker link, or a mailto: URI. | |
57599f9b JN |
79 | C: URI for chat protocol, server and channel where developers |
80 | usually hang out, for example irc://server/channel. | |
8a6e2535 | 81 | Q: Patchwork web based patch tracking system site |
cea8321c JP |
82 | T: SCM tree type and location. |
83 | Type is one of: git, hg, quilt, stgit, topgit | |
c7c4fb18 JP |
84 | S: Status, one of the following: |
85 | Supported: Someone is actually paid to look after this. | |
86 | Maintained: Someone actually looks after it. | |
87 | Odd Fixes: It has a maintainer but they don't have time to do | |
88 | much other than throw the odd patch in. See below.. | |
89 | Orphan: No current maintainer [but maybe you could take the | |
90 | role as you write your new code]. | |
91 | Obsolete: Old code. Something tagged obsolete generally means | |
92 | it has been replaced by a better system and you | |
93 | should be using that. | |
94 | F: Files and directories with wildcard patterns. | |
95 | A trailing slash includes all files and subdirectory files. | |
96 | F: drivers/net/ all files in and below drivers/net | |
97 | F: drivers/net/* all files in drivers/net, but not below | |
98 | F: */net/* all files in "any top level directory"/net | |
99 | One pattern per line. Multiple F: lines acceptable. | |
bbbe96ed SW |
100 | N: Files and directories with regex patterns. |
101 | N: [^a-z]tegra all files whose path contains the word tegra | |
102 | One pattern per line. Multiple N: lines acceptable. | |
6ab88e00 JP |
103 | scripts/get_maintainer.pl has different behavior for files that |
104 | match F: pattern and matches of N: patterns. By default, | |
105 | get_maintainer will not look at git log history when an F: pattern | |
106 | match occurs. When an N: match occurs, git log history is used | |
107 | to also notify the people that have git commit signatures. | |
c7c4fb18 JP |
108 | X: Files and directories that are NOT maintained, same rules as F: |
109 | Files exclusions are tested before file matches. | |
110 | Can be useful for excluding a specific subdirectory, for instance: | |
111 | F: net/ | |
112 | X: net/ipv6/ | |
113 | matches all files in and below net excluding net/ipv6/ | |
114 | K: Keyword perl extended regex pattern to match content in a | |
bbbe96ed | 115 | patch or file. For instance: |
c7c4fb18 | 116 | K: of_get_profile |
bbbe96ed | 117 | matches patches or files that contain "of_get_profile" |
c7c4fb18 | 118 | K: \b(printk|pr_(info|err))\b |
bbbe96ed SW |
119 | matches patches or files that contain one or more of the words |
120 | printk, pr_info or pr_err | |
c7c4fb18 | 121 | One regex pattern per line. Multiple K: lines acceptable. |
1da177e4 LT |
122 | |
123 | Note: For the hard of thinking, this list is meant to remain in alphabetical | |
124 | order. If you could add yourselves to it in alphabetical order that would be | |
125 | so much easier [Ed] | |
126 | ||
c7c4fb18 | 127 | Maintainers List (try to look for most precise areas first) |
1da177e4 | 128 | |
c7c4fb18 | 129 | ----------------------------------- |
679655da | 130 | |
a6d89915 | 131 | 3C59X NETWORK DRIVER |
8b58be88 | 132 | M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de> |
a6d89915 SK |
133 | L: netdev@vger.kernel.org |
134 | S: Maintained | |
679655da | 135 | F: Documentation/networking/vortex.txt |
ca7a8e85 | 136 | F: drivers/net/ethernet/3com/3c59x.c |
a6d89915 | 137 | |
1da177e4 | 138 | 3CR990 NETWORK DRIVER |
8b58be88 | 139 | M: David Dillow <dave@thedillows.org> |
979b6c13 | 140 | L: netdev@vger.kernel.org |
1da177e4 | 141 | S: Maintained |
ca7a8e85 | 142 | F: drivers/net/ethernet/3com/typhoon* |
1da177e4 | 143 | |
c4de0ceb | 144 | 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) |
2c9bce5b | 145 | M: Adam Radford <aradford@gmail.com> |
1da177e4 | 146 | L: linux-scsi@vger.kernel.org |
c4de0ceb | 147 | W: http://www.lsi.com |
1da177e4 | 148 | S: Supported |
c4de0ceb | 149 | F: drivers/scsi/3w-* |
1da177e4 LT |
150 | |
151 | 53C700 AND 53C700-66 SCSI DRIVER | |
8b58be88 | 152 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
153 | L: linux-scsi@vger.kernel.org |
154 | S: Maintained | |
679655da | 155 | F: drivers/scsi/53c700* |
1da177e4 | 156 | |
68d96dcf | 157 | 6LOWPAN GENERIC (BTLE/IEEE 802.15.4) |
5bd425aa | 158 | M: Alexander Aring <alex.aring@gmail.com> |
6970c34c | 159 | M: Jukka Rissanen <jukka.rissanen@linux.intel.com> |
68d96dcf | 160 | L: linux-bluetooth@vger.kernel.org |
ebef9c12 | 161 | L: linux-wpan@vger.kernel.org |
68d96dcf AA |
162 | S: Maintained |
163 | F: net/6lowpan/ | |
6304f8fc | 164 | F: include/net/6lowpan.h |
ea9eb698 | 165 | F: Documentation/networking/6lowpan.txt |
68d96dcf | 166 | |
1da177e4 | 167 | 6PACK NETWORK DRIVER FOR AX.25 |
8b58be88 | 168 | M: Andreas Koensgen <ajk@comnets.uni-bremen.de> |
1da177e4 LT |
169 | L: linux-hams@vger.kernel.org |
170 | S: Maintained | |
679655da | 171 | F: drivers/net/hamradio/6pack.c |
1da177e4 | 172 | |
1da177e4 | 173 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
c8a75b34 | 174 | M: Realtek linux nic maintainers <nic_swsd@realtek.com> |
979b6c13 | 175 | L: netdev@vger.kernel.org |
1da177e4 | 176 | S: Maintained |
a8fe65b8 | 177 | F: drivers/net/ethernet/realtek/r8169.c |
1da177e4 LT |
178 | |
179 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER | |
879a5a00 | 180 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
1da177e4 | 181 | L: linux-serial@vger.kernel.org |
8ee16a1b | 182 | S: Maintained |
08deed1e | 183 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
df621252 | 184 | F: drivers/tty/serial/8250* |
679655da | 185 | F: include/linux/serial_8250.h |
1da177e4 LT |
186 | |
187 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] | |
979b6c13 | 188 | L: netdev@vger.kernel.org |
0cf445ce | 189 | S: Orphan / Obsolete |
644570b8 | 190 | F: drivers/net/ethernet/8390/ |
1da177e4 | 191 | |
67543e50 | 192 | 9P FILE SYSTEM |
8b58be88 JP |
193 | M: Eric Van Hensbergen <ericvh@gmail.com> |
194 | M: Ron Minnich <rminnich@sandia.gov> | |
195 | M: Latchesar Ionkov <lucho@ionkov.net> | |
ce00f85c | 196 | L: v9fs-developer@lists.sourceforge.net |
27a2a5ff | 197 | W: http://swik.net/v9fs |
8a6e2535 | 198 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
eeba444a | 199 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
ce00f85c | 200 | S: Maintained |
679655da JP |
201 | F: Documentation/filesystems/9p.txt |
202 | F: fs/9p/ | |
2315cb14 RL |
203 | F: net/9p/ |
204 | F: include/net/9p/ | |
205 | F: include/uapi/linux/virtio_9p.h | |
206 | F: include/trace/events/9p.h | |
207 | ||
91952bc0 AP |
208 | A8293 MEDIA DRIVER |
209 | M: Antti Palosaari <crope@iki.fi> | |
210 | L: linux-media@vger.kernel.org | |
a825eaec | 211 | W: https://linuxtv.org |
91952bc0 AP |
212 | W: http://palosaari.fi/linux/ |
213 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
214 | T: git git://linuxtv.org/anttip/media_tree.git | |
215 | S: Maintained | |
216 | F: drivers/media/dvb-frontends/a8293* | |
217 | ||
e2d1d6c0 | 218 | AACRAID SCSI RAID DRIVER |
2a81ffdd | 219 | M: Adaptec OEM Raid Solutions <aacraid@microsemi.com> |
e2d1d6c0 RD |
220 | L: linux-scsi@vger.kernel.org |
221 | W: http://www.adaptec.com/ | |
1da177e4 | 222 | S: Supported |
679655da JP |
223 | F: Documentation/scsi/aacraid.txt |
224 | F: drivers/scsi/aacraid/ | |
1da177e4 | 225 | |
ea8f8fc8 JT |
226 | ABI/API |
227 | L: linux-api@vger.kernel.org | |
ea8f8fc8 | 228 | F: include/linux/syscalls.h |
ea8f8fc8 JT |
229 | F: kernel/sys_ni.c |
230 | ||
249e3c85 | 231 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
93d0cc58 | 232 | M: Hans de Goede <hdegoede@redhat.com> |
968ce1b1 | 233 | L: linux-hwmon@vger.kernel.org |
f2b84bbc | 234 | S: Maintained |
679655da | 235 | F: drivers/hwmon/abituguru.c |
f2b84bbc | 236 | |
249e3c85 | 237 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
8b58be88 | 238 | M: Alistair John Strachan <alistair@devzero.co.uk> |
968ce1b1 | 239 | L: linux-hwmon@vger.kernel.org |
249e3c85 | 240 | S: Maintained |
679655da | 241 | F: drivers/hwmon/abituguru3.c |
249e3c85 | 242 | |
1b06d64f WBG |
243 | ACCES 104-DIO-48E GPIO DRIVER |
244 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
245 | L: linux-gpio@vger.kernel.org | |
246 | S: Maintained | |
247 | F: drivers/gpio/gpio-104-dio-48e.c | |
248 | ||
6ddcf9b4 WBG |
249 | ACCES 104-IDI-48 GPIO DRIVER |
250 | M: "William Breathitt Gray" <vilhelm.gray@gmail.com> | |
251 | L: linux-gpio@vger.kernel.org | |
252 | S: Maintained | |
253 | F: drivers/gpio/gpio-104-idi-48.c | |
254 | ||
e2558989 WBG |
255 | ACCES 104-IDIO-16 GPIO DRIVER |
256 | M: "William Breathitt Gray" <vilhelm.gray@gmail.com> | |
257 | L: linux-gpio@vger.kernel.org | |
258 | S: Maintained | |
259 | F: drivers/gpio/gpio-104-idio-16.c | |
260 | ||
28e5d3bb WBG |
261 | ACCES 104-QUAD-8 IIO DRIVER |
262 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
263 | L: linux-iio@vger.kernel.org | |
264 | S: Maintained | |
265 | F: drivers/iio/counter/104-quad-8.c | |
266 | ||
02e74fc0 WBG |
267 | ACCES PCI-IDIO-16 GPIO DRIVER |
268 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
269 | L: linux-gpio@vger.kernel.org | |
270 | S: Maintained | |
271 | F: drivers/gpio/gpio-pci-idio-16.c | |
272 | ||
1da177e4 | 273 | ACENIC DRIVER |
8b58be88 | 274 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
275 | L: linux-acenic@sunsite.dk |
276 | S: Maintained | |
531c4f89 | 277 | F: drivers/net/ethernet/alteon/acenic* |
1da177e4 | 278 | |
e86435eb | 279 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 280 | M: Peter Feuerer <peter@piie.net> |
d0944853 | 281 | L: platform-driver-x86@vger.kernel.org |
4fc26e36 JP |
282 | W: http://piie.net/?section=acerhdf |
283 | S: Maintained | |
284 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 285 | |
745a5d21 | 286 | ACER WMI LAPTOP EXTRAS |
182ae55c | 287 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 288 | L: platform-driver-x86@vger.kernel.org |
745a5d21 | 289 | S: Maintained |
679655da | 290 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 291 | |
1da177e4 | 292 | ACPI |
9c3646d1 | 293 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 294 | M: Len Brown <lenb@kernel.org> |
6968e50c | 295 | L: linux-acpi@vger.kernel.org |
360818b8 RW |
296 | W: https://01.org/linux-acpi |
297 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
298 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
68656443 | 299 | B: https://bugzilla.kernel.org |
8b59a454 | 300 | S: Supported |
679655da JP |
301 | F: drivers/acpi/ |
302 | F: drivers/pnp/pnpacpi/ | |
303 | F: include/linux/acpi.h | |
43368e74 | 304 | F: include/acpi/ |
3a75ef0c | 305 | F: Documentation/acpi/ |
89ca78a0 | 306 | F: Documentation/ABI/testing/sysfs-bus-acpi |
0bf54fcd | 307 | F: Documentation/ABI/testing/configfs-acpi |
15fd830d BH |
308 | F: drivers/pci/*acpi* |
309 | F: drivers/pci/*/*acpi* | |
310 | F: drivers/pci/*/*/*acpi* | |
3a75ef0c | 311 | F: tools/power/acpi/ |
8b59a454 | 312 | |
3774929d RW |
313 | ACPI COMPONENT ARCHITECTURE (ACPICA) |
314 | M: Robert Moore <robert.moore@intel.com> | |
315 | M: Lv Zheng <lv.zheng@intel.com> | |
9c3646d1 | 316 | M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> |
3774929d RW |
317 | L: linux-acpi@vger.kernel.org |
318 | L: devel@acpica.org | |
319 | W: https://acpica.org/ | |
320 | W: https://github.com/acpica/acpica/ | |
321 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
322 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
68656443 RW |
323 | B: https://bugzilla.kernel.org |
324 | B: https://bugs.acpica.org | |
3774929d RW |
325 | S: Supported |
326 | F: drivers/acpi/acpica/ | |
327 | F: include/acpi/ | |
2754c447 | 328 | F: tools/power/acpi/ |
3774929d | 329 | |
8b59a454 | 330 | ACPI FAN DRIVER |
8b58be88 | 331 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 332 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 333 | W: https://01.org/linux-acpi |
68656443 | 334 | B: https://bugzilla.kernel.org |
8b59a454 | 335 | S: Supported |
679655da | 336 | F: drivers/acpi/fan.c |
1da177e4 | 337 | |
daeb2016 LP |
338 | ACPI FOR ARM64 (ACPI/arm64) |
339 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
340 | M: Hanjun Guo <hanjun.guo@linaro.org> | |
341 | M: Sudeep Holla <sudeep.holla@arm.com> | |
342 | L: linux-acpi@vger.kernel.org | |
343 | S: Maintained | |
344 | F: drivers/acpi/arm64 | |
345 | ||
8b59a454 | 346 | ACPI THERMAL DRIVER |
8b58be88 | 347 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 348 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 349 | W: https://01.org/linux-acpi |
68656443 | 350 | B: https://bugzilla.kernel.org |
8b59a454 | 351 | S: Supported |
679655da | 352 | F: drivers/acpi/*thermal* |
998be20f | 353 | |
359acec8 | 354 | ACPI VIDEO DRIVER |
8b58be88 | 355 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 356 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 357 | W: https://01.org/linux-acpi |
68656443 | 358 | B: https://bugzilla.kernel.org |
8b59a454 | 359 | S: Supported |
86f98a3a | 360 | F: drivers/acpi/acpi_video.c |
998be20f | 361 | |
bff431e4 | 362 | ACPI WMI DRIVER |
d0944853 | 363 | L: platform-driver-x86@vger.kernel.org |
5b927259 | 364 | S: Orphan |
679655da | 365 | F: drivers/platform/x86/wmi.c |
bff431e4 | 366 | |
2f39d519 | 367 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 368 | M: Thibaut Varene <T-Bone@parisc-linux.org> |
795fb7e7 JD |
369 | W: http://wiki.parisc-linux.org/AD1889 |
370 | L: linux-parisc@vger.kernel.org | |
371 | S: Maintained | |
679655da | 372 | F: sound/pci/ad1889.* |
2f39d519 | 373 | |
527a1a83 MH |
374 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
375 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 376 | W: http://wiki.analog.com/AD5254 |
a4edbc10 | 377 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
378 | S: Supported |
379 | F: drivers/misc/ad525x_dpot.c | |
380 | ||
381 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
382 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 383 | W: http://wiki.analog.com/AD5398 |
a4edbc10 | 384 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
385 | S: Supported |
386 | F: drivers/regulator/ad5398.c | |
387 | ||
388 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
389 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 390 | W: http://wiki.analog.com/AD7142 |
a4edbc10 | 391 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
392 | S: Supported |
393 | F: drivers/input/misc/ad714x.c | |
394 | ||
395 | AD7877 TOUCHSCREEN DRIVER | |
396 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 397 | W: http://wiki.analog.com/AD7877 |
a4edbc10 | 398 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
399 | S: Supported |
400 | F: drivers/input/touchscreen/ad7877.c | |
401 | ||
402 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
403 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 404 | W: http://wiki.analog.com/AD7879 |
a4edbc10 | 405 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
406 | S: Supported |
407 | F: drivers/input/touchscreen/ad7879.c | |
408 | ||
1330b0dc | 409 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
e5f6450c | 410 | M: Jiri Kosina <jikos@kernel.org> |
1330b0dc JK |
411 | S: Maintained |
412 | ||
7302b9d9 MH |
413 | ADF7242 IEEE 802.15.4 RADIO DRIVER |
414 | M: Michael Hennerich <michael.hennerich@analog.com> | |
415 | W: https://wiki.analog.com/ADF7242 | |
416 | W: http://ez.analog.com/community/linux-device-drivers | |
417 | L: linux-wpan@vger.kernel.org | |
418 | S: Supported | |
419 | F: drivers/net/ieee802154/adf7242.c | |
420 | F: Documentation/devicetree/bindings/net/ieee802154/adf7242.txt | |
421 | ||
1da177e4 | 422 | ADM1025 HARDWARE MONITOR DRIVER |
d8130624 | 423 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 424 | L: linux-hwmon@vger.kernel.org |
1da177e4 | 425 | S: Maintained |
679655da JP |
426 | F: Documentation/hwmon/adm1025 |
427 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 428 | |
cae2caae | 429 | ADM1029 HARDWARE MONITOR DRIVER |
fce8ffa3 | 430 | M: Corentin Labbe <clabbe.montjoie@gmail.com> |
968ce1b1 | 431 | L: linux-hwmon@vger.kernel.org |
cae2caae | 432 | S: Maintained |
679655da | 433 | F: drivers/hwmon/adm1029.c |
cae2caae | 434 | |
cc0b88cf | 435 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 436 | L: linux-wireless@vger.kernel.org |
491b26b4 | 437 | W: http://wireless.kernel.org/ |
e71bcbd0 | 438 | S: Orphan |
d4a17304 | 439 | F: drivers/net/wireless/admtek/adm8211.* |
cc0b88cf | 440 | |
e8e31622 SA |
441 | ADP1653 FLASH CONTROLLER DRIVER |
442 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
443 | L: linux-media@vger.kernel.org | |
444 | S: Maintained | |
445 | F: drivers/media/i2c/adp1653.c | |
b5dcee22 | 446 | F: include/media/i2c/adp1653.h |
e8e31622 | 447 | |
527a1a83 MH |
448 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
449 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 450 | W: http://wiki.analog.com/ADP5520 |
a4edbc10 | 451 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
452 | S: Supported |
453 | F: drivers/mfd/adp5520.c | |
454 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 455 | F: drivers/leds/leds-adp5520.c |
77278d50 | 456 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
457 | F: drivers/input/keyboard/adp5520-keys.c |
458 | ||
459 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
460 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 461 | W: http://wiki.analog.com/ADP5588 |
a4edbc10 | 462 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
463 | S: Supported |
464 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 465 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
466 | |
467 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
468 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 469 | W: http://wiki.analog.com/ADP8860 |
a4edbc10 | 470 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
471 | S: Supported |
472 | F: drivers/video/backlight/adp8860_bl.c | |
473 | ||
8c22a8f5 DE |
474 | ADS1015 HARDWARE MONITOR DRIVER |
475 | M: Dirk Eibach <eibach@gdsys.de> | |
968ce1b1 | 476 | L: linux-hwmon@vger.kernel.org |
8c22a8f5 DE |
477 | S: Maintained |
478 | F: Documentation/hwmon/ads1015 | |
479 | F: drivers/hwmon/ads1015.c | |
9010624c | 480 | F: include/linux/platform_data/ads1015.h |
8c22a8f5 | 481 | |
1da177e4 | 482 | ADT746X FAN DRIVER |
8b58be88 | 483 | M: Colin Leroy <colin@colino.net> |
1da177e4 | 484 | S: Maintained |
679655da | 485 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 486 | |
b058b859 | 487 | ADT7475 HARDWARE MONITOR DRIVER |
d8130624 | 488 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 489 | L: linux-hwmon@vger.kernel.org |
b058b859 JD |
490 | S: Maintained |
491 | F: Documentation/hwmon/adt7475 | |
492 | F: drivers/hwmon/adt7475.c | |
493 | ||
8c6af9e1 | 494 | ADVANSYS SCSI DRIVER |
8b58be88 | 495 | M: Matthew Wilcox <matthew@wil.cx> |
d8130624 | 496 | M: Hannes Reinecke <hare@suse.com> |
8c6af9e1 MW |
497 | L: linux-scsi@vger.kernel.org |
498 | S: Maintained | |
679655da JP |
499 | F: Documentation/scsi/advansys.txt |
500 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 501 | |
82abbea7 RD |
502 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
503 | M: Michael Hennerich <michael.hennerich@analog.com> | |
504 | W: http://wiki.analog.com/ADXL345 | |
505 | W: http://ez.analog.com/community/linux-device-drivers | |
506 | S: Supported | |
507 | F: drivers/input/misc/adxl34x.c | |
508 | ||
1da177e4 | 509 | AEDSP16 DRIVER |
8b58be88 | 510 | M: Riccardo Facchetti <fizban@tin.it> |
1da177e4 | 511 | S: Maintained |
679655da | 512 | F: sound/oss/aedsp16.c |
1da177e4 | 513 | |
91952bc0 AP |
514 | AF9013 MEDIA DRIVER |
515 | M: Antti Palosaari <crope@iki.fi> | |
516 | L: linux-media@vger.kernel.org | |
a825eaec | 517 | W: https://linuxtv.org |
91952bc0 AP |
518 | W: http://palosaari.fi/linux/ |
519 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
520 | T: git git://linuxtv.org/anttip/media_tree.git | |
521 | S: Maintained | |
522 | F: drivers/media/dvb-frontends/af9013* | |
523 | ||
524 | AF9033 MEDIA DRIVER | |
525 | M: Antti Palosaari <crope@iki.fi> | |
526 | L: linux-media@vger.kernel.org | |
a825eaec | 527 | W: https://linuxtv.org |
91952bc0 AP |
528 | W: http://palosaari.fi/linux/ |
529 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
530 | T: git git://linuxtv.org/anttip/media_tree.git | |
531 | S: Maintained | |
532 | F: drivers/media/dvb-frontends/af9033* | |
533 | ||
1da177e4 | 534 | AFFS FILE SYSTEM |
6cf515e1 GU |
535 | L: linux-fsdevel@vger.kernel.org |
536 | S: Orphan | |
679655da JP |
537 | F: Documentation/filesystems/affs.txt |
538 | F: fs/affs/ | |
1da177e4 | 539 | |
e2d1d6c0 | 540 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 541 | M: David Howells <dhowells@redhat.com> |
e2d1d6c0 RD |
542 | L: linux-afs@lists.infradead.org |
543 | S: Supported | |
679655da JP |
544 | F: fs/afs/ |
545 | F: include/net/af_rxrpc.h | |
546 | F: net/rxrpc/af_rxrpc.c | |
ee84595a | 547 | W: https://www.infradead.org/~dhowells/kafs/ |
e2d1d6c0 | 548 | |
1da177e4 | 549 | AGPGART DRIVER |
8b58be88 | 550 | M: David Airlie <airlied@linux.ie> |
878eaf61 | 551 | T: git git://people.freedesktop.org/~airlied/linux (part of drm maint) |
1da177e4 | 552 | S: Maintained |
679655da JP |
553 | F: drivers/char/agp/ |
554 | F: include/linux/agp* | |
c117ab84 | 555 | F: include/uapi/linux/agp* |
1da177e4 LT |
556 | |
557 | AHA152X SCSI DRIVER | |
8b58be88 | 558 | M: "Juergen E. Fischer" <fischer@norbit.de> |
1da177e4 LT |
559 | L: linux-scsi@vger.kernel.org |
560 | S: Maintained | |
679655da JP |
561 | F: drivers/scsi/aha152x* |
562 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 563 | |
64624d4f | 564 | AIC7XXX / AIC79XX SCSI DRIVER |
d8130624 | 565 | M: Hannes Reinecke <hare@suse.com> |
64624d4f | 566 | L: linux-scsi@vger.kernel.org |
1da177e4 | 567 | S: Maintained |
679655da | 568 | F: drivers/scsi/aic7xxx/ |
1da177e4 | 569 | |
450500ad HV |
570 | AIMSLAB FM RADIO RECEIVER DRIVER |
571 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
572 | L: linux-media@vger.kernel.org | |
573 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 574 | W: https://linuxtv.org |
450500ad HV |
575 | S: Maintained |
576 | F: drivers/media/radio/radio-aimslab* | |
577 | ||
e2d1d6c0 | 578 | AIO |
8b58be88 | 579 | M: Benjamin LaHaise <bcrl@kvack.org> |
e2d1d6c0 RD |
580 | L: linux-aio@kvack.org |
581 | S: Supported | |
679655da JP |
582 | F: fs/aio.c |
583 | F: include/linux/*aio*.h | |
e2d1d6c0 | 584 | |
469d4ec8 AP |
585 | AIRSPY MEDIA DRIVER |
586 | M: Antti Palosaari <crope@iki.fi> | |
587 | L: linux-media@vger.kernel.org | |
a825eaec | 588 | W: https://linuxtv.org |
469d4ec8 AP |
589 | W: http://palosaari.fi/linux/ |
590 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
591 | T: git git://linuxtv.org/anttip/media_tree.git | |
592 | S: Maintained | |
593 | F: drivers/media/usb/airspy/ | |
594 | ||
b9567027 LS |
595 | ALACRITECH GIGABIT ETHERNET DRIVER |
596 | M: Lino Sanfilippo <LinoSanfilippo@gmx.de> | |
597 | S: Maintained | |
598 | F: drivers/net/ethernet/alacritech/* | |
599 | ||
1da177e4 | 600 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 601 | M: Duncan Sands <duncan.sands@free.fr> |
6372594a | 602 | L: linux-usb@vger.kernel.org |
1da177e4 LT |
603 | W: http://www.linux-usb.org/SpeedTouch/ |
604 | S: Maintained | |
679655da JP |
605 | F: drivers/usb/atm/speedtch.c |
606 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 607 | |
272f133a | 608 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 609 | M: Manuel Lauss <manuel.lauss@gmail.com> |
08fcb720 | 610 | S: Maintained |
679655da | 611 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 612 | |
4a4e5787 | 613 | ALI1563 I2C DRIVER |
8b58be88 | 614 | M: Rudolf Marek <r.marek@assembler.cz> |
846557d3 | 615 | L: linux-i2c@vger.kernel.org |
4a4e5787 | 616 | S: Maintained |
679655da JP |
617 | F: Documentation/i2c/busses/i2c-ali1563 |
618 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 619 | |
bc368798 LC |
620 | ALLWINNER SECURITY SYSTEM |
621 | M: Corentin Labbe <clabbe.montjoie@gmail.com> | |
622 | L: linux-crypto@vger.kernel.org | |
623 | S: Maintained | |
624 | F: drivers/crypto/sunxi-ss/ | |
625 | ||
1da177e4 | 626 | ALPHA PORT |
8b58be88 | 627 | M: Richard Henderson <rth@twiddle.net> |
8b58be88 | 628 | M: Ivan Kokshaysky <ink@jurassic.park.msu.ru> |
abd4d609 | 629 | M: Matt Turner <mattst88@gmail.com> |
c89f4f9a | 630 | S: Odd Fixes |
a9406699 | 631 | L: linux-alpha@vger.kernel.org |
679655da | 632 | F: arch/alpha/ |
1da177e4 | 633 | |
30172936 PR |
634 | ALPS PS/2 TOUCHPAD DRIVER |
635 | R: Pali Rohár <pali.rohar@gmail.com> | |
636 | F: drivers/input/mouse/alps.* | |
637 | ||
f62092f6 LFT |
638 | ALTERA MAILBOX DRIVER |
639 | M: Ley Foon Tan <lftan@altera.com> | |
640 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
641 | S: Maintained | |
642 | F: drivers/mailbox/mailbox-altera.c | |
643 | ||
c5abbba9 THL |
644 | ALTERA PIO DRIVER |
645 | M: Tien Hock Loh <thloh@altera.com> | |
646 | L: linux-gpio@vger.kernel.org | |
647 | S: Maintained | |
648 | F: drivers/gpio/gpio-altera.c | |
649 | ||
8ce064bf | 650 | ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT |
06c177cb | 651 | M: Thor Thayer <thor.thayer@linux.intel.com> |
8ce064bf TT |
652 | S: Maintained |
653 | F: drivers/gpio/gpio-altera-a10sr.c | |
654 | F: drivers/mfd/altera-a10sr.c | |
62700682 | 655 | F: drivers/reset/reset-a10sr.c |
8ce064bf | 656 | F: include/linux/mfd/altera-a10sr.h |
843fc75a | 657 | F: include/dt-bindings/reset/altr,rst-mgr-a10sr.h |
8ce064bf | 658 | |
16b8b922 | 659 | ALTERA TRIPLE SPEED ETHERNET DRIVER |
c53fed07 | 660 | M: Vince Bridgers <vbridger@opensource.altera.com> |
16b8b922 VB |
661 | L: netdev@vger.kernel.org |
662 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
663 | S: Maintained | |
664 | F: drivers/net/ethernet/altera/ | |
665 | ||
adf9251f TK |
666 | ALTERA UART/JTAG UART SERIAL DRIVERS |
667 | M: Tobias Klauser <tklauser@distanz.ch> | |
668 | L: linux-serial@vger.kernel.org | |
61bd0943 | 669 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
adf9251f TK |
670 | S: Maintained |
671 | F: drivers/tty/serial/altera_uart.c | |
672 | F: drivers/tty/serial/altera_jtaguart.c | |
673 | F: include/linux/altera_uart.h | |
674 | F: include/linux/altera_jtaguart.h | |
675 | ||
1738cd3e NB |
676 | AMAZON ETHERNET DRIVERS |
677 | M: Netanel Belgazal <netanel@annapurnalabs.com> | |
678 | R: Saeed Bishara <saeed@annapurnalabs.com> | |
679 | R: Zorik Machulsky <zorik@annapurnalabs.com> | |
680 | L: netdev@vger.kernel.org | |
681 | S: Supported | |
682 | F: Documentation/networking/ena.txt | |
683 | F: drivers/net/ethernet/amazon/ | |
684 | ||
f4875e12 TL |
685 | AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER |
686 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
29e9330f | 687 | M: Gary Hook <gary.hook@amd.com> |
f4875e12 TL |
688 | L: linux-crypto@vger.kernel.org |
689 | S: Supported | |
690 | F: drivers/crypto/ccp/ | |
691 | F: include/linux/ccp.h | |
692 | ||
512d1027 | 693 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
96818b58 | 694 | M: Huang Rui <ray.huang@amd.com> |
968ce1b1 | 695 | L: linux-hwmon@vger.kernel.org |
96818b58 | 696 | S: Supported |
512d1027 AH |
697 | F: Documentation/hwmon/fam15h_power |
698 | F: drivers/hwmon/fam15h_power.c | |
699 | ||
167a675a | 700 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
67d76710 | 701 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
b4731977 | 702 | S: Orphan |
faf2e1db | 703 | F: drivers/usb/gadget/udc/amd5536udc.* |
167a675a | 704 | |
f90b8116 | 705 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 706 | P: Andres Salomon <dilinger@queued.net> |
67d76710 | 707 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
f90b8116 JC |
708 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
709 | S: Supported | |
679655da JP |
710 | F: drivers/char/hw_random/geode-rng.c |
711 | F: drivers/crypto/geode* | |
8a61f013 | 712 | F: drivers/video/fbdev/geode/ |
679655da | 713 | F: arch/x86/include/asm/geode.h |
f90b8116 | 714 | |
919ee7dd | 715 | AMD IOMMU (AMD-VI) |
e4110568 | 716 | M: Joerg Roedel <joro@8bytes.org> |
919ee7dd | 717 | L: iommu@lists.linux-foundation.org |
525b233c | 718 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 719 | S: Maintained |
b2c16391 JP |
720 | F: drivers/iommu/amd_iommu*.[ch] |
721 | F: include/linux/amd-iommu.h | |
919ee7dd | 722 | |
16423d67 | 723 | AMD KFD |
1241e0b4 | 724 | M: Oded Gabbay <oded.gabbay@gmail.com> |
49e7d9df JP |
725 | L: dri-devel@lists.freedesktop.org |
726 | T: git git://people.freedesktop.org/~gabbayo/linux.git | |
727 | S: Supported | |
130e0371 OG |
728 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c |
729 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h | |
32c22e99 | 730 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c |
ff758a12 | 731 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c |
49e7d9df | 732 | F: drivers/gpu/drm/amd/amdkfd/ |
04df25d1 OG |
733 | F: drivers/gpu/drm/amd/include/cik_structs.h |
734 | F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h | |
ff758a12 | 735 | F: drivers/gpu/drm/amd/include/vi_structs.h |
49e7d9df JP |
736 | F: drivers/gpu/drm/radeon/radeon_kfd.c |
737 | F: drivers/gpu/drm/radeon/radeon_kfd.h | |
738 | F: include/uapi/linux/kfd_ioctl.h | |
16423d67 | 739 | |
2510eb74 SS |
740 | AMD SEATTLE DEVICE TREE SUPPORT |
741 | M: Brijesh Singh <brijeshkumar.singh@amd.com> | |
742 | M: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com> | |
743 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
744 | S: Supported | |
745 | F: arch/arm64/boot/dts/amd/ | |
746 | ||
45198c7b LT |
747 | AMD XGBE DRIVER |
748 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
749 | L: netdev@vger.kernel.org | |
750 | S: Supported | |
751 | F: drivers/net/ethernet/amd/xgbe/ | |
08b8940e | 752 | F: arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi |
45198c7b | 753 | |
284f42b6 | 754 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 | 755 | M: Michael Hanselmann <linux-kernel@hansmi.ch> |
284f42b6 | 756 | S: Supported |
bd5f47ec | 757 | F: drivers/macintosh/ams/ |
284f42b6 | 758 | |
531fca16 HV |
759 | ANALOG DEVICES INC AD9389B DRIVER |
760 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
761 | L: linux-media@vger.kernel.org | |
762 | S: Maintained | |
763 | F: drivers/media/i2c/ad9389b* | |
764 | ||
614b4384 LPC |
765 | ANALOG DEVICES INC ADV7180 DRIVER |
766 | M: Lars-Peter Clausen <lars@metafoo.de> | |
767 | L: linux-media@vger.kernel.org | |
768 | W: http://ez.analog.com/community/linux-device-drivers | |
769 | S: Supported | |
770 | F: drivers/media/i2c/adv7180.c | |
771 | ||
c40ddfa3 HV |
772 | ANALOG DEVICES INC ADV7511 DRIVER |
773 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
774 | L: linux-media@vger.kernel.org | |
775 | S: Maintained | |
776 | F: drivers/media/i2c/adv7511* | |
777 | ||
531fca16 HV |
778 | ANALOG DEVICES INC ADV7604 DRIVER |
779 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
780 | L: linux-media@vger.kernel.org | |
781 | S: Maintained | |
782 | F: drivers/media/i2c/adv7604* | |
783 | ||
c40ddfa3 HV |
784 | ANALOG DEVICES INC ADV7842 DRIVER |
785 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
786 | L: linux-media@vger.kernel.org | |
787 | S: Maintained | |
788 | F: drivers/media/i2c/adv7842* | |
789 | ||
527a1a83 | 790 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 791 | M: Lars-Peter Clausen <lars@metafoo.de> |
4bdef3bd | 792 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a3f531ac | 793 | W: http://wiki.analog.com/ |
a4edbc10 | 794 | W: http://ez.analog.com/community/linux-device-drivers |
4bdef3bd | 795 | S: Supported |
39c9d199 | 796 | F: sound/soc/codecs/adau* |
cc52688a | 797 | F: sound/soc/codecs/adav* |
4bdef3bd | 798 | F: sound/soc/codecs/ad1* |
ae48f5ef | 799 | F: sound/soc/codecs/ad7* |
4bdef3bd | 800 | F: sound/soc/codecs/ssm* |
40216ce7 | 801 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 802 | |
527a1a83 | 803 | ANALOG DEVICES INC ASOC DRIVERS |
b3fe92b0 | 804 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
527a1a83 MH |
805 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
806 | W: http://blackfin.uclinux.org/ | |
807 | S: Supported | |
808 | F: sound/soc/blackfin/* | |
7d1f9018 | 809 | |
7683e9e5 LT |
810 | ANALOG DEVICES INC DMA DRIVERS |
811 | M: Lars-Peter Clausen <lars@metafoo.de> | |
812 | W: http://ez.analog.com/community/linux-device-drivers | |
813 | S: Supported | |
814 | F: drivers/dma/dma-axi-dmac.c | |
815 | ||
4ce72abc LPC |
816 | ANALOG DEVICES INC IIO DRIVERS |
817 | M: Lars-Peter Clausen <lars@metafoo.de> | |
818 | M: Michael Hennerich <Michael.Hennerich@analog.com> | |
819 | W: http://wiki.analog.com/ | |
820 | W: http://ez.analog.com/community/linux-device-drivers | |
821 | S: Supported | |
822 | F: drivers/iio/*/ad* | |
bc82222f | 823 | F: drivers/iio/adc/ltc2497* |
4ce72abc LPC |
824 | X: drivers/iio/*/adjd* |
825 | F: drivers/staging/iio/*/ad* | |
d5d4602e | 826 | F: drivers/staging/iio/trigger/iio-trig-bfin-timer.c |
527a1a83 | 827 | |
27eb6622 RH |
828 | ANDROID CONFIG FRAGMENTS |
829 | M: Rob Herring <robh@kernel.org> | |
830 | S: Supported | |
831 | F: kernel/configs/android* | |
832 | ||
41c9e95d GK |
833 | ANDROID DRIVERS |
834 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
27682407 | 835 | M: Arve Hjønnevåg <arve@android.com> |
41c9e95d | 836 | M: Riley Andrews <riandrews@android.com> |
0e4a566b | 837 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
41c9e95d GK |
838 | L: devel@driverdev.osuosl.org |
839 | S: Supported | |
840 | F: drivers/android/ | |
841 | F: drivers/staging/android/ | |
842 | ||
d03c023e LA |
843 | ANDROID ION DRIVER |
844 | M: Laura Abbott <labbott@redhat.com> | |
845 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
846 | L: devel@driverdev.osuosl.org | |
847 | S: Supported | |
848 | F: drivers/staging/android/ion | |
849 | F: drivers/staging/android/uapi/ion.h | |
850 | F: drivers/staging/android/uapi/ion_test.h | |
851 | ||
42269063 | 852 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 853 | M: Johannes Berg <johannes@sipsolutions.net> |
a4724ed6 | 854 | L: linuxppc-dev@lists.ozlabs.org |
93711660 | 855 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
42269063 | 856 | S: Maintained |
679655da | 857 | F: sound/aoa/ |
42269063 | 858 | |
4075a283 | 859 | APEX EMBEDDED SYSTEMS STX104 IIO DRIVER |
97a445da WBG |
860 | M: William Breathitt Gray <vilhelm.gray@gmail.com> |
861 | L: linux-iio@vger.kernel.org | |
862 | S: Maintained | |
4075a283 | 863 | F: drivers/iio/adc/stx104.c |
97a445da | 864 | |
1da177e4 | 865 | APM DRIVER |
e5f6450c | 866 | M: Jiri Kosina <jikos@kernel.org> |
81024fc4 | 867 | S: Odd fixes |
9f273c24 | 868 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git |
679655da JP |
869 | F: arch/x86/kernel/apm_32.c |
870 | F: include/linux/apm_bios.h | |
c117ab84 | 871 | F: include/uapi/linux/apm_bios.h |
81024fc4 | 872 | F: drivers/char/apm-emulation.c |
1da177e4 | 873 | |
82abbea7 RD |
874 | APPARMOR SECURITY MODULE |
875 | M: John Johansen <john.johansen@canonical.com> | |
876 | L: apparmor@lists.ubuntu.com (subscribers-only, general discussion) | |
877 | W: apparmor.wiki.kernel.org | |
878 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
879 | S: Supported | |
880 | F: security/apparmor/ | |
881 | F: Documentation/admin-guide/LSM/apparmor.rst | |
882 | ||
bd7aa4b2 | 883 | APPLE BCM5974 MULTITOUCH DRIVER |
75dd112a | 884 | M: Henrik Rydberg <rydberg@bitmath.org> |
bd7aa4b2 | 885 | L: linux-input@vger.kernel.org |
75dd112a | 886 | S: Odd fixes |
679655da | 887 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 888 | |
6f2fad74 | 889 | APPLE SMC DRIVER |
75dd112a | 890 | M: Henrik Rydberg <rydberg@bitmath.org> |
968ce1b1 | 891 | L: linux-hwmon@vger.kernel.org |
75dd112a | 892 | S: Odd fixes |
679655da | 893 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 894 | |
1da177e4 | 895 | APPLETALK NETWORK LAYER |
0c59d281 ACM |
896 | L: netdev@vger.kernel.org |
897 | S: Odd fixes | |
679655da JP |
898 | F: drivers/net/appletalk/ |
899 | F: net/appletalk/ | |
1da177e4 | 900 | |
21c75328 DD |
901 | APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT |
902 | M: Duc Dang <dhdang@apm.com> | |
903 | S: Supported | |
904 | F: arch/arm64/boot/dts/apm/ | |
905 | ||
7683e9e5 LT |
906 | APPLIED MICRO (APM) X-GENE SOC EDAC |
907 | M: Loc Ho <lho@apm.com> | |
908 | S: Supported | |
909 | F: drivers/edac/xgene_edac.c | |
910 | F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt | |
911 | ||
912 | APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER | |
913 | M: Iyappan Subramanian <isubramanian@apm.com> | |
914 | M: Keyur Chudgar <kchudgar@apm.com> | |
915 | S: Supported | |
916 | F: drivers/net/ethernet/apm/xgene-v2/ | |
917 | ||
24299502 IS |
918 | APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER |
919 | M: Iyappan Subramanian <isubramanian@apm.com> | |
920 | M: Keyur Chudgar <kchudgar@apm.com> | |
b3fd38d2 | 921 | M: Quan Nguyen <qnguyen@apm.com> |
24299502 IS |
922 | S: Supported |
923 | F: drivers/net/ethernet/apm/xgene/ | |
2efccc60 | 924 | F: drivers/net/phy/mdio-xgene.c |
24299502 | 925 | F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt |
2efccc60 | 926 | F: Documentation/devicetree/bindings/net/apm-xgene-mdio.txt |
24299502 | 927 | |
fd3a628e TN |
928 | APPLIED MICRO (APM) X-GENE SOC PMU |
929 | M: Tai Nguyen <ttnguyen@apm.com> | |
930 | S: Supported | |
931 | F: drivers/perf/xgene_pmu.c | |
932 | F: Documentation/perf/xgene-pmu.txt | |
933 | F: Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt | |
934 | ||
62a37dc7 LP |
935 | APTINA CAMERA SENSOR PLL |
936 | M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com> | |
937 | L: linux-media@vger.kernel.org | |
938 | S: Maintained | |
939 | F: drivers/media/i2c/aptina-pll.* | |
940 | ||
1154ea7d | 941 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 942 | M: Jaya Kumar <jayalk@intworks.biz> |
1154ea7d | 943 | S: Maintained |
8a61f013 JH |
944 | F: drivers/video/fbdev/arcfb.c |
945 | F: drivers/video/fbdev/core/fb_defio.c | |
1154ea7d | 946 | |
82abbea7 RD |
947 | ARC PGU DRM DRIVER |
948 | M: Alexey Brodkin <abrodkin@synopsys.com> | |
949 | S: Supported | |
950 | F: drivers/gpu/drm/arc/ | |
951 | F: Documentation/devicetree/bindings/display/snps,arcpgu.txt | |
952 | ||
c38f6ac7 MG |
953 | ARCNET NETWORK LAYER |
954 | M: Michael Grzeschik <m.grzeschik@pengutronix.de> | |
955 | L: netdev@vger.kernel.org | |
956 | S: Maintained | |
957 | F: drivers/net/arcnet/ | |
958 | F: include/uapi/linux/if_arcnet.h | |
959 | ||
588deb61 MR |
960 | ARM ARCHITECTED TIMER DRIVER |
961 | M: Mark Rutland <mark.rutland@arm.com> | |
962 | M: Marc Zyngier <marc.zyngier@arm.com> | |
963 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
964 | S: Maintained | |
965 | F: arch/arm/include/asm/arch_timer.h | |
966 | F: arch/arm64/include/asm/arch_timer.h | |
967 | F: drivers/clocksource/arm_arch_timer.c | |
968 | ||
c5a906a5 LD |
969 | ARM HDLCD DRM DRIVER |
970 | M: Liviu Dudau <liviu.dudau@arm.com> | |
971 | S: Supported | |
59ba2422 | 972 | F: drivers/gpu/drm/arm/hdlcd_* |
c5a906a5 LD |
973 | F: Documentation/devicetree/bindings/display/arm,hdlcd.txt |
974 | ||
59ba2422 LD |
975 | ARM MALI-DP DRM DRIVER |
976 | M: Liviu Dudau <liviu.dudau@arm.com> | |
977 | M: Brian Starkey <brian.starkey@arm.com> | |
978 | M: Mali DP Maintainers <malidp@foss.arm.com> | |
979 | S: Supported | |
980 | F: drivers/gpu/drm/arm/ | |
981 | F: Documentation/devicetree/bindings/display/arm,malidp.txt | |
982 | ||
1da177e4 | 983 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 984 | M: Ian Molton <spyro@f2s.com> |
1da177e4 | 985 | S: Maintained |
679655da JP |
986 | F: arch/arm/lib/floppydma.S |
987 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 988 | |
6f96521f WD |
989 | ARM PMU PROFILING AND DEBUGGING |
990 | M: Will Deacon <will.deacon@arm.com> | |
55d5c4ab | 991 | M: Mark Rutland <mark.rutland@arm.com> |
6f96521f | 992 | S: Maintained |
55d5c4ab | 993 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
dd06a84b | 994 | F: arch/arm*/kernel/perf_* |
6f96521f | 995 | F: arch/arm/oprofile/common.c |
dd06a84b MR |
996 | F: arch/arm*/kernel/hw_breakpoint.c |
997 | F: arch/arm*/include/asm/hw_breakpoint.h | |
998 | F: arch/arm*/include/asm/perf_event.h | |
55d5c4ab | 999 | F: drivers/perf/* |
fa8ad788 | 1000 | F: include/linux/perf/arm_pmu.h |
55d5c4ab | 1001 | F: Documentation/devicetree/bindings/arm/pmu.txt |
5d3fa803 | 1002 | F: Documentation/devicetree/bindings/perf/ |
6f96521f | 1003 | |
d4275354 | 1004 | ARM PORT |
54176cc6 | 1005 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1006 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1007 | W: http://www.armlinux.org.uk/ |
d4275354 | 1008 | S: Maintained |
0d7f4f05 | 1009 | T: git git://git.armlinux.org.uk/~rmk/linux-arm.git |
d4275354 RK |
1010 | F: arch/arm/ |
1011 | ||
cefbf4ea | 1012 | ARM PRIMECELL AACI PL041 DRIVER |
54176cc6 | 1013 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea RK |
1014 | S: Maintained |
1015 | F: sound/arm/aaci.* | |
1016 | ||
7683e9e5 LT |
1017 | ARM PRIMECELL BUS SUPPORT |
1018 | M: Russell King <linux@armlinux.org.uk> | |
1019 | S: Maintained | |
1020 | F: drivers/amba/ | |
1021 | F: include/linux/amba/bus.h | |
1022 | ||
cefbf4ea | 1023 | ARM PRIMECELL CLCD PL110 DRIVER |
54176cc6 | 1024 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea | 1025 | S: Maintained |
8a61f013 | 1026 | F: drivers/video/fbdev/amba-clcd.* |
cefbf4ea RK |
1027 | |
1028 | ARM PRIMECELL KMI PL050 DRIVER | |
54176cc6 | 1029 | M: Russell King <linux@armlinux.org.uk> |
cefbf4ea RK |
1030 | S: Maintained |
1031 | F: drivers/input/serio/ambakmi.* | |
1032 | F: include/linux/amba/kmi.h | |
1033 | ||
2761f5c2 | 1034 | ARM PRIMECELL MMCI PL180/1 DRIVER |
54176cc6 | 1035 | M: Russell King <linux@armlinux.org.uk> |
08a5c9a2 | 1036 | S: Maintained |
679655da | 1037 | F: drivers/mmc/host/mmci.* |
2f748aaa | 1038 | F: include/linux/amba/mmci.h |
2761f5c2 | 1039 | |
1b4304e5 | 1040 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
54176cc6 | 1041 | M: Russell King <linux@armlinux.org.uk> |
1b4304e5 RK |
1042 | S: Maintained |
1043 | F: drivers/tty/serial/amba-pl01*.c | |
1044 | F: include/linux/amba/serial.h | |
2761f5c2 | 1045 | |
7683e9e5 LT |
1046 | ARM SMMU DRIVERS |
1047 | M: Will Deacon <will.deacon@arm.com> | |
1048 | R: Robin Murphy <robin.murphy@arm.com> | |
1049 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
cefbf4ea | 1050 | S: Maintained |
7683e9e5 LT |
1051 | F: drivers/iommu/arm-smmu.c |
1052 | F: drivers/iommu/arm-smmu-v3.c | |
1053 | F: drivers/iommu/io-pgtable-arm.c | |
1054 | F: drivers/iommu/io-pgtable-arm-v7s.c | |
1055 | ||
1056 | ARM SUB-ARCHITECTURES | |
1057 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1058 | S: Maintained | |
1059 | F: arch/arm/mach-*/ | |
1060 | F: arch/arm/plat-*/ | |
1061 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
cefbf4ea | 1062 | |
872d1ba4 AF |
1063 | ARM/ACTIONS SEMI ARCHITECTURE |
1064 | M: Andreas Färber <afaerber@suse.de> | |
1065 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1066 | S: Maintained | |
1067 | N: owl | |
1068 | F: arch/arm/mach-actions/ | |
1069 | F: arch/arm/boot/dts/owl-* | |
1070 | F: arch/arm64/boot/dts/actions/ | |
1071 | F: drivers/clocksource/owl-* | |
ba2694de AF |
1072 | F: drivers/soc/actions/ |
1073 | F: include/dt-bindings/power/owl-* | |
1074 | F: include/linux/soc/actions/ | |
872d1ba4 | 1075 | F: Documentation/devicetree/bindings/arm/actions.txt |
ba2694de | 1076 | F: Documentation/devicetree/bindings/power/actions,owl-sps.txt |
872d1ba4 AF |
1077 | F: Documentation/devicetree/bindings/timer/actions,owl-timer.txt |
1078 | ||
2b7a52a4 | 1079 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 1080 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1081 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1082 | S: Maintained |
1083 | ||
9c784f95 | 1084 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 1085 | M: Sergey Lapin <slapin@ossfans.org> |
efc03ecb | 1086 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9c784f95 SL |
1087 | S: Maintained |
1088 | ||
2b7a52a4 | 1089 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 1090 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1091 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1092 | S: Maintained |
1093 | ||
7683e9e5 LT |
1094 | ARM/Allwinner SoC Clock Support |
1095 | M: Emilio López <emilio@elopez.com.ar> | |
1096 | S: Maintained | |
1097 | F: drivers/clk/sunxi/ | |
1098 | ||
5c6dcd7f | 1099 | ARM/Allwinner sunXi SoC support |
1b106699 | 1100 | M: Maxime Ripard <maxime.ripard@free-electrons.com> |
5c6dcd7f | 1101 | M: Chen-Yu Tsai <wens@csie.org> |
1b106699 MR |
1102 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1103 | S: Maintained | |
5c6dcd7f | 1104 | N: sun[x456789]i |
87c586a6 MR |
1105 | N: sun50i |
1106 | F: arch/arm/mach-sunxi/ | |
6bc37fac | 1107 | F: arch/arm64/boot/dts/allwinner/ |
87c586a6 MR |
1108 | F: drivers/clk/sunxi-ng/ |
1109 | F: drivers/pinctrl/sunxi/ | |
1110 | F: drivers/soc/sunxi/ | |
1111 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git | |
60b0f380 | 1112 | |
7683e9e5 LT |
1113 | ARM/Amlogic Meson SoC CLOCK FRAMEWORK |
1114 | M: Neil Armstrong <narmstrong@baylibre.com> | |
1115 | M: Jerome Brunet <jbrunet@baylibre.com> | |
1116 | L: linux-amlogic@lists.infradead.org | |
60b0f380 | 1117 | S: Maintained |
7683e9e5 LT |
1118 | F: drivers/clk/meson/ |
1119 | F: include/dt-bindings/clock/meson* | |
1120 | F: include/dt-bindings/clock/gxbb* | |
1121 | F: Documentation/devicetree/bindings/clock/amlogic* | |
1b106699 | 1122 | |
79318452 | 1123 | ARM/Amlogic Meson SoC support |
7c1e3876 | 1124 | M: Carlo Caione <carlo@caione.org> |
6683d91c | 1125 | M: Kevin Hilman <khilman@baylibre.com> |
7c1e3876 | 1126 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
6683d91c | 1127 | L: linux-amlogic@lists.infradead.org |
79318452 | 1128 | W: http://linux-meson.com/ |
7c1e3876 | 1129 | S: Maintained |
79318452 CC |
1130 | F: arch/arm/mach-meson/ |
1131 | F: arch/arm/boot/dts/meson* | |
6683d91c | 1132 | F: arch/arm64/boot/dts/amlogic/ |
7683e9e5 | 1133 | F: drivers/pinctrl/meson/ |
51c5d844 | 1134 | F: drivers/mmc/host/meson* |
79318452 | 1135 | N: meson |
7c1e3876 | 1136 | |
eff506fa TZ |
1137 | ARM/Annapurna Labs ALPINE ARCHITECTURE |
1138 | M: Tsahee Zidenberg <tsahee@annapurnalabs.com> | |
a9e5547b | 1139 | M: Antoine Tenart <antoine.tenart@free-electrons.com> |
4d2bf027 | 1140 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
eff506fa TZ |
1141 | S: Maintained |
1142 | F: arch/arm/mach-alpine/ | |
a9e5547b AT |
1143 | F: arch/arm/boot/dts/alpine* |
1144 | F: arch/arm64/boot/dts/al/ | |
1145 | F: drivers/*/*alpine* | |
eff506fa | 1146 | |
5255034d LP |
1147 | ARM/ARTPEC MACHINE SUPPORT |
1148 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
1149 | M: Lars Persson <lars.persson@axis.com> | |
1150 | M: Niklas Cassel <niklas.cassel@axis.com> | |
1151 | S: Maintained | |
1152 | L: linux-arm-kernel@axis.com | |
1153 | F: arch/arm/mach-artpec | |
1154 | F: arch/arm/boot/dts/artpec6* | |
33b8ac91 | 1155 | F: drivers/clk/axis |
00df0582 | 1156 | F: drivers/pinctrl/pinctrl-artpec* |
9c6c149b | 1157 | F: Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt |
5255034d | 1158 | |
413dfbbf BH |
1159 | ARM/ASPEED I2C DRIVER |
1160 | M: Brendan Higgins <brendanhiggins@google.com> | |
1161 | R: Benjamin Herrenschmidt <benh@kernel.crashing.org> | |
1162 | R: Joel Stanley <joel@jms.id.au> | |
1163 | L: linux-i2c@vger.kernel.org | |
6209ef67 | 1164 | L: openbmc@lists.ozlabs.org (moderated for non-subscribers) |
413dfbbf BH |
1165 | S: Maintained |
1166 | F: drivers/irqchip/irq-aspeed-i2c-ic.c | |
1167 | F: drivers/i2c/busses/i2c-aspeed.c | |
1168 | F: Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt | |
1169 | F: Documentation/devicetree/bindings/i2c/i2c-aspeed.txt | |
1170 | ||
7683e9e5 LT |
1171 | ARM/ASPEED MACHINE SUPPORT |
1172 | M: Joel Stanley <joel@jms.id.au> | |
1173 | S: Maintained | |
1174 | F: arch/arm/mach-aspeed/ | |
1175 | F: arch/arm/boot/dts/aspeed-* | |
1176 | F: drivers/*/*aspeed* | |
1177 | ||
1178 | ARM/ATMEL AT91 Clock Support | |
1179 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
1180 | S: Maintained | |
1181 | F: drivers/clk/at91 | |
1182 | ||
8dca5ce8 | 1183 | ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT |
e085b9d8 | 1184 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
d68b35f8 | 1185 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
efc03ecb | 1186 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
c1fc8675 | 1187 | W: http://www.linux4sam.org |
9f273c24 | 1188 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git |
c1fc8675 NF |
1189 | S: Supported |
1190 | F: arch/arm/mach-at91/ | |
f0a0a58e | 1191 | F: include/soc/at91/ |
70e389cc MB |
1192 | F: arch/arm/boot/dts/at91*.dts |
1193 | F: arch/arm/boot/dts/at91*.dtsi | |
1194 | F: arch/arm/boot/dts/sama*.dts | |
1195 | F: arch/arm/boot/dts/sama*.dtsi | |
5f58c970 | 1196 | F: arch/arm/include/debug/at91.S |
f4e6dfcb | 1197 | F: drivers/memory/atmel* |
d4a89c7d | 1198 | |
986cf2e9 | 1199 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
5d3ad8a6 | 1200 | M: Rob Herring <robh@kernel.org> |
986cf2e9 RH |
1201 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1202 | S: Maintained | |
1203 | F: arch/arm/mach-highbank/ | |
e68d7c14 RH |
1204 | F: arch/arm/boot/dts/highbank.dts |
1205 | F: arch/arm/boot/dts/ecx-*.dts* | |
986cf2e9 | 1206 | |
d94f944e | 1207 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
5529c2cd | 1208 | M: Krzysztof Halasa <khalasa@piap.pl> |
d94f944e AV |
1209 | S: Maintained |
1210 | F: arch/arm/mach-cns3xxx/ | |
d94f944e | 1211 | |
4863dea3 SG |
1212 | ARM/CAVIUM THUNDER NETWORK DRIVER |
1213 | M: Sunil Goutham <sgoutham@cavium.com> | |
1214 | M: Robert Richter <rric@kernel.org> | |
1215 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1216 | S: Supported | |
322e5cc5 | 1217 | F: drivers/net/ethernet/cavium/thunder/ |
4863dea3 | 1218 | |
386ab516 AS |
1219 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
1220 | M: Alexander Shiyan <shc_work@mail.ru> | |
1221 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1222 | S: Odd Fixes | |
b8ba3874 | 1223 | N: clps711x |
386ab516 | 1224 | |
7683e9e5 LT |
1225 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT |
1226 | M: Lennert Buytenhek <kernel@wantstofly.org> | |
1227 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1228 | S: Maintained | |
1229 | ||
2b7a52a4 | 1230 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 1231 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
151d1d75 | 1232 | M: Alexander Sverdlin <alexander.sverdlin@gmail.com> |
efc03ecb | 1233 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 | 1234 | S: Maintained |
d19d3667 HS |
1235 | F: arch/arm/mach-ep93xx/ |
1236 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 | 1237 | |
d4275354 | 1238 | ARM/CLKDEV SUPPORT |
54176cc6 | 1239 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1240 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
37417046 | 1241 | S: Maintained |
0d7f4f05 | 1242 | T: git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev |
d4275354 | 1243 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 1244 | F: drivers/clk/clkdev.c |
d4275354 | 1245 | |
d48134e7 | 1246 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 1247 | M: Mike Rapoport <mike@compulab.co.il> |
efc03ecb | 1248 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
a9da4f7e RK |
1249 | S: Maintained |
1250 | ||
7683e9e5 LT |
1251 | ARM/CONEXANT DIGICOLOR MACHINE SUPPORT |
1252 | M: Baruch Siach <baruch@tkos.co.il> | |
1253 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1254 | S: Maintained | |
1255 | F: arch/arm/boot/dts/cx92755* | |
1256 | N: digicolor | |
1257 | ||
94150095 HF |
1258 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
1259 | M: Hubert Feurstein <hubert.feurstein@contec.at> | |
1260 | S: Maintained | |
1261 | F: arch/arm/mach-ep93xx/micro9.c | |
1262 | ||
a06ae860 PP |
1263 | ARM/CORESIGHT FRAMEWORK AND DRIVERS |
1264 | M: Mathieu Poirier <mathieu.poirier@linaro.org> | |
1265 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1266 | S: Maintained | |
01081f5a | 1267 | F: drivers/hwtracing/coresight/* |
a06ae860 | 1268 | F: Documentation/trace/coresight.txt |
2fd95d65 | 1269 | F: Documentation/trace/coresight-cpu-debug.txt |
a06ae860 | 1270 | F: Documentation/devicetree/bindings/arm/coresight.txt |
2fd95d65 | 1271 | F: Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt |
7a25ec8e | 1272 | F: Documentation/ABI/testing/sysfs-bus-coresight-devices-* |
7e21b0d5 | 1273 | F: tools/perf/arch/arm/util/pmu.c |
a818c563 MP |
1274 | F: tools/perf/arch/arm/util/auxtrace.c |
1275 | F: tools/perf/arch/arm/util/cs-etm.c | |
1276 | F: tools/perf/arch/arm/util/cs-etm.h | |
1277 | F: tools/perf/util/cs-etm.h | |
a06ae860 | 1278 | |
1da177e4 | 1279 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 1280 | M: Richard Purdie <rpurdie@rpsys.net> |
1da177e4 LT |
1281 | S: Maintained |
1282 | ||
881a95f9 | 1283 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 1284 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 1285 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
b60e23ba | 1286 | T: git git://github.com/ulli-kroll/linux.git |
162500b3 | 1287 | S: Maintained |
f49afbb5 | 1288 | F: arch/arm/mach-gemini/ |
1d61d259 | 1289 | F: drivers/rtc/rtc-ftrtc010.c |
881a95f9 | 1290 | |
a990cbd8 | 1291 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
5abf58bf | 1292 | M: Barry Song <baohua@kernel.org> |
a990cbd8 | 1293 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
85529d14 | 1294 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
a990cbd8 | 1295 | S: Maintained |
e68d7c14 | 1296 | F: arch/arm/boot/dts/prima2* |
a990cbd8 | 1297 | F: arch/arm/mach-prima2/ |
4a9c44f1 | 1298 | F: drivers/clk/sirf/ |
05f30e8d | 1299 | F: drivers/clocksource/timer-prima2.c |
5833ac98 | 1300 | F: drivers/clocksource/timer-atlas7.c |
f8505ef5 | 1301 | N: [^a-z]sirf |
a990cbd8 | 1302 | |
d4275354 | 1303 | ARM/EBSA110 MACHINE SUPPORT |
54176cc6 | 1304 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1305 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1306 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
1307 | S: Maintained |
1308 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 1309 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 1310 | |
4721f3ce UKK |
1311 | ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT |
1312 | M: Uwe Kleine-König <kernel@pengutronix.de> | |
1313 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1314 | S: Maintained | |
1315 | N: efm32 | |
1316 | ||
a9da4f7e | 1317 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
d9bd2645 SS |
1318 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
1319 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
a9da4f7e | 1320 | S: Maintained |
cafc2265 | 1321 | F: arch/arm/mach-pxa/ezx.c |
a9da4f7e | 1322 | |
6a915af9 | 1323 | ARM/FARADAY FA526 PORT |
162500b3 | 1324 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 1325 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
162500b3 | 1326 | S: Maintained |
1fa7e547 | 1327 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 1328 | F: arch/arm/mm/*-fa* |
6a915af9 | 1329 | |
d4275354 | 1330 | ARM/FOOTBRIDGE ARCHITECTURE |
54176cc6 | 1331 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1332 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1333 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
1334 | S: Maintained |
1335 | F: arch/arm/include/asm/hardware/dec21285.h | |
1336 | F: arch/arm/mach-footbridge/ | |
1337 | ||
86183a5f | 1338 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
7609ea2a | 1339 | M: Shawn Guo <shawnguo@kernel.org> |
8b58be88 | 1340 | M: Sascha Hauer <kernel@pengutronix.de> |
b046302a | 1341 | R: Fabio Estevam <fabio.estevam@nxp.com> |
efc03ecb | 1342 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
86183a5f | 1343 | S: Maintained |
f1c12837 | 1344 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
adf79292 | 1345 | F: arch/arm/mach-imx/ |
ce515a6b | 1346 | F: arch/arm/mach-mxs/ |
2a82f95c | 1347 | F: arch/arm/boot/dts/imx* |
e5dafa22 | 1348 | F: arch/arm/configs/imx*_defconfig |
cf20968a | 1349 | F: drivers/clk/imx/ |
721cabf6 | 1350 | F: drivers/soc/imx/ |
cf20968a | 1351 | F: include/soc/imx/ |
86183a5f | 1352 | |
142109d2 | 1353 | ARM/FREESCALE VYBRID ARM ARCHITECTURE |
7609ea2a | 1354 | M: Shawn Guo <shawnguo@kernel.org> |
142109d2 SA |
1355 | M: Sascha Hauer <kernel@pengutronix.de> |
1356 | R: Stefan Agner <stefan@agner.ch> | |
1357 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1358 | S: Maintained | |
1359 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git | |
1360 | F: arch/arm/mach-imx/*vf610* | |
1361 | F: arch/arm/boot/dts/vf* | |
1362 | ||
2b7a52a4 | 1363 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 1364 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1365 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1366 | S: Maintained |
1367 | ||
90b8fc34 | 1368 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 1369 | M: Steve Sakoman <sakoman@gmail.com> |
efc03ecb | 1370 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
90b8fc34 JK |
1371 | S: Maintained |
1372 | ||
ef47d5f0 | 1373 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 1374 | M: Philipp Zabel <philipp.zabel@gmail.com> |
12a93f32 PZ |
1375 | M: Paul Parsons <lost.distance@yahoo.com> |
1376 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
ef47d5f0 PZ |
1377 | S: Maintained |
1378 | F: arch/arm/mach-pxa/hx4700.c | |
1379 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 1380 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 1381 | |
4dfad069 WX |
1382 | ARM/HISILICON SOC SUPPORT |
1383 | M: Wei Xu <xuwei5@hisilicon.com> | |
1384 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1385 | W: http://www.hisilicon.com | |
1386 | S: Supported | |
1387 | T: git git://github.com/hisilicon/linux-hisi.git | |
1388 | F: arch/arm/mach-hisi/ | |
e68d7c14 RH |
1389 | F: arch/arm/boot/dts/hi3* |
1390 | F: arch/arm/boot/dts/hip* | |
1391 | F: arch/arm/boot/dts/hisi* | |
1392 | F: arch/arm64/boot/dts/hisilicon/ | |
4dfad069 | 1393 | |
21f37bc3 | 1394 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 1395 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
795fb7e7 JD |
1396 | W: www.jlime.com |
1397 | S: Maintained | |
084bad91 KE |
1398 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
1399 | F: arch/arm/mach-sa1100/jornada720.c | |
1400 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 1401 | |
5e767ab9 JMC |
1402 | ARM/IGEP MACHINE SUPPORT |
1403 | M: Enric Balletbo i Serra <eballetbo@gmail.com> | |
1404 | M: Javier Martinez Canillas <javier@dowhile0.org> | |
1405 | L: linux-omap@vger.kernel.org | |
1406 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1407 | S: Maintained | |
06ff74fd | 1408 | F: arch/arm/boot/dts/omap3-igep* |
5e767ab9 | 1409 | |
403d2971 MV |
1410 | ARM/INCOME PXA270 SUPPORT |
1411 | M: Marek Vasut <marek.vasut@gmail.com> | |
1412 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1413 | S: Maintained | |
ec154082 | 1414 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 1415 | |
7683e9e5 LT |
1416 | ARM/INTEL IOP13XX ARM ARCHITECTURE |
1417 | M: Lennert Buytenhek <kernel@wantstofly.org> | |
1418 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1419 | S: Maintained | |
1420 | ||
2b7a52a4 | 1421 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 1422 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1423 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1424 | S: Maintained |
e2bdb176 DW |
1425 | |
1426 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
efc03ecb | 1427 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
08223d80 | 1428 | S: Orphan |
2b7a52a4 | 1429 | |
2b7a52a4 | 1430 | ARM/INTEL IQ81342EX MACHINE SUPPORT |
8b58be88 | 1431 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1432 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1433 | S: Maintained |
2b7a52a4 | 1434 | |
2b7a52a4 | 1435 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 1436 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1437 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1438 | S: Maintained |
1439 | ||
dfdd8cc9 KH |
1440 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
1441 | M: Imre Kaloz <kaloz@openwrt.org> | |
5529c2cd | 1442 | M: Krzysztof Halasa <khalasa@piap.pl> |
baea7b94 | 1443 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
dfdd8cc9 KH |
1444 | S: Maintained |
1445 | F: arch/arm/mach-ixp4xx/ | |
1446 | ||
838553c5 | 1447 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
1448 | M: Jonathan Cameron <jic23@cam.ac.uk> |
1449 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1450 | S: Maintained | |
1451 | F: arch/arm/mach-pxa/stargate2.c | |
1452 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
1453 | ||
2b7a52a4 | 1454 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 1455 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1456 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1457 | S: Maintained |
2b7a52a4 LB |
1458 | |
1459 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 1460 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1461 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1462 | S: Maintained |
1463 | ||
8cb555b6 CM |
1464 | ARM/LG1K ARCHITECTURE |
1465 | M: Chanho Min <chanho.min@lge.com> | |
1466 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1467 | S: Maintained | |
1468 | F: arch/arm64/boot/dts/lg/ | |
1469 | ||
2b7a52a4 | 1470 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
8b58be88 | 1471 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1472 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1473 | S: Maintained |
1474 | ||
3143875f JE |
1475 | ARM/LPC18XX ARCHITECTURE |
1476 | M: Joachim Eastwood <manabian@gmail.com> | |
1477 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1478 | S: Maintained | |
19c1c32c JE |
1479 | F: arch/arm/boot/dts/lpc43* |
1480 | F: drivers/clk/nxp/clk-lpc18xx* | |
1481 | F: drivers/clocksource/time-lpc32xx.c | |
1482 | F: drivers/i2c/busses/i2c-lpc2k.c | |
1483 | F: drivers/memory/pl172.c | |
1484 | F: drivers/mtd/spi-nor/nxp-spifi.c | |
1485 | F: drivers/rtc/rtc-lpc24xx.c | |
3143875f JE |
1486 | N: lpc18xx |
1487 | ||
15e4f7da | 1488 | ARM/LPC32XX SOC SUPPORT |
8d5a6b42 VZ |
1489 | M: Vladimir Zapolskiy <vz@mleia.com> |
1490 | M: Sylvain Lemieux <slemieux.tyco@gmail.com> | |
15e4f7da | 1491 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
8d5a6b42 | 1492 | T: git git://github.com/vzapolskiy/linux-lpc32xx.git |
15e4f7da | 1493 | S: Maintained |
2377f9fd | 1494 | F: arch/arm/boot/dts/lpc32* |
15e4f7da | 1495 | F: arch/arm/mach-lpc32xx/ |
2377f9fd VZ |
1496 | F: drivers/i2c/busses/i2c-pnx.c |
1497 | F: drivers/net/ethernet/nxp/lpc_eth.c | |
1498 | F: drivers/usb/host/ohci-nxp.c | |
1499 | F: drivers/watchdog/pnx4008_wdt.c | |
1500 | N: lpc32xx | |
15e4f7da | 1501 | |
3b886171 | 1502 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 1503 | M: Philipp Zabel <philipp.zabel@gmail.com> |
3b886171 PZ |
1504 | S: Maintained |
1505 | ||
40f4978b | 1506 | ARM/Marvell Berlin SoC support |
70e1a28f | 1507 | M: Jisheng Zhang <jszhang@marvell.com> |
40f4978b SH |
1508 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
1509 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1510 | S: Maintained | |
1511 | F: arch/arm/mach-berlin/ | |
31c17ac9 | 1512 | F: arch/arm/boot/dts/berlin* |
e68d7c14 | 1513 | F: arch/arm64/boot/dts/marvell/berlin* |
31c17ac9 | 1514 | |
4cfab57e | 1515 | ARM/Marvell Dove/MV78xx0/Orion SOC support |
4f1312b0 NP |
1516 | M: Jason Cooper <jason@lakedaemon.net> |
1517 | M: Andrew Lunn <andrew@lunn.ch> | |
dcb71503 | 1518 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
bfda4031 | 1519 | M: Gregory Clement <gregory.clement@free-electrons.com> |
efc03ecb | 1520 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4f1312b0 | 1521 | S: Maintained |
ab7090ff | 1522 | F: Documentation/devicetree/bindings/soc/dove/ |
4f1312b0 | 1523 | F: arch/arm/mach-dove/ |
54a246ff NP |
1524 | F: arch/arm/mach-mv78xx0/ |
1525 | F: arch/arm/mach-orion5x/ | |
1526 | F: arch/arm/plat-orion/ | |
31c17ac9 GC |
1527 | F: arch/arm/boot/dts/dove* |
1528 | F: arch/arm/boot/dts/orion5x* | |
1529 | ||
7683e9e5 LT |
1530 | ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support |
1531 | M: Jason Cooper <jason@lakedaemon.net> | |
1532 | M: Andrew Lunn <andrew@lunn.ch> | |
1533 | M: Gregory Clement <gregory.clement@free-electrons.com> | |
1534 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> | |
e557959d NA |
1535 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1536 | S: Maintained | |
7683e9e5 LT |
1537 | F: arch/arm/boot/dts/armada* |
1538 | F: arch/arm/boot/dts/kirkwood* | |
1539 | F: arch/arm/configs/mvebu_*_defconfig | |
1540 | F: arch/arm/mach-mvebu/ | |
1541 | F: arch/arm64/boot/dts/marvell/armada* | |
1542 | F: drivers/cpufreq/mvebu-cpufreq.c | |
1543 | F: drivers/irqchip/irq-armada-370-xp.c | |
1544 | F: drivers/irqchip/irq-mvebu-* | |
1545 | F: drivers/pinctrl/mvebu/ | |
1546 | F: drivers/rtc/rtc-armada38x.c | |
e557959d | 1547 | |
607b8fc9 EH |
1548 | ARM/Mediatek RTC DRIVER |
1549 | M: Eddie Huang <eddie.huang@mediatek.com> | |
1550 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1551 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) | |
1552 | S: Maintained | |
1553 | F: drivers/rtc/rtc-mt6397.c | |
1554 | ||
e54951c8 MB |
1555 | ARM/Mediatek SoC support |
1556 | M: Matthias Brugger <matthias.bgg@gmail.com> | |
1557 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
17b199d6 | 1558 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) |
e54951c8 MB |
1559 | S: Maintained |
1560 | F: arch/arm/boot/dts/mt6* | |
44e4e5fb | 1561 | F: arch/arm/boot/dts/mt7* |
e54951c8 MB |
1562 | F: arch/arm/boot/dts/mt8* |
1563 | F: arch/arm/mach-mediatek/ | |
44e4e5fb | 1564 | F: arch/arm64/boot/dts/mediatek/ |
e54951c8 MB |
1565 | N: mtk |
1566 | K: mediatek | |
1567 | ||
0f8669e3 CY |
1568 | ARM/Mediatek USB3 PHY DRIVER |
1569 | M: Chunfeng Yun <chunfeng.yun@mediatek.com> | |
1570 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1571 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) | |
1572 | S: Maintained | |
1573 | F: drivers/phy/phy-mt65xx-usb3.c | |
1574 | ||
adcb079f AB |
1575 | ARM/MICREL KS8695 ARCHITECTURE |
1576 | M: Greg Ungerer <gerg@uclinux.org> | |
1577 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
14430813 | 1578 | F: arch/arm/mach-ks8695/ |
adcb079f AB |
1579 | S: Odd Fixes |
1580 | ||
d78ff0a5 | 1581 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1582 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 1583 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d78ff0a5 RJ |
1584 | F: arch/arm/mach-pxa/mioa701.c |
1585 | S: Maintained | |
1586 | ||
9624dfe6 | 1587 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1588 | M: Michael Petchkovsky <mkpetch@internode.on.net> |
9624dfe6 KE |
1589 | S: Maintained |
1590 | ||
e0ee9851 | 1591 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1592 | M: Alessandro Rubini <rubini@unipv.it> |
e4651a9f | 1593 | M: Linus Walleij <linus.walleij@linaro.org> |
28b8e8d4 JP |
1594 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1595 | S: Maintained | |
1596 | F: arch/arm/mach-nomadik/ | |
ecc265fe | 1597 | F: drivers/pinctrl/nomadik/ |
87572880 | 1598 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1599 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1600 | |
7683e9e5 LT |
1601 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
1602 | M: Wan ZongShun <mcuos.com@gmail.com> | |
1603 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1604 | W: http://www.mcuos.com | |
1605 | S: Maintained | |
1606 | F: arch/arm/mach-w90x900/ | |
1607 | F: drivers/input/keyboard/w90p910_keypad.c | |
1608 | F: drivers/input/touchscreen/w90p910_ts.c | |
1609 | F: drivers/watchdog/nuc900_wdt.c | |
1610 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c | |
1611 | F: drivers/mtd/nand/nuc900_nand.c | |
1612 | F: drivers/rtc/rtc-nuc900.c | |
1613 | F: drivers/spi/spi-nuc900.c | |
1614 | F: drivers/usb/host/ehci-w90x900.c | |
1615 | F: drivers/video/fbdev/nuc900fb.c | |
1616 | ||
9d76295a | 1617 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1618 | M: Nelson Castillo <arhuaco@freaks-unidos.net> |
9d76295a AG |
1619 | L: openmoko-kernel@lists.openmoko.org (subscribers-only) |
1620 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1621 | S: Supported | |
1622 | ||
7683e9e5 LT |
1623 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
1624 | M: Alexander Clouter <alex@digriz.org.uk> | |
1625 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1626 | W: http://www.digriz.org.uk/ts78xx/kernel | |
8459c159 | 1627 | S: Maintained |
7683e9e5 | 1628 | F: arch/arm/mach-orion5x/ts78xx-* |
8459c159 | 1629 | |
7683e9e5 LT |
1630 | ARM/OXNAS platform support |
1631 | M: Neil Armstrong <narmstrong@baylibre.com> | |
1632 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1633 | L: linux-oxnas@lists.tuxfamily.org (moderated for non-subscribers) | |
1634 | S: Maintained | |
1635 | F: arch/arm/mach-oxnas/ | |
1636 | F: arch/arm/boot/dts/ox8*.dtsi | |
1637 | F: arch/arm/boot/dts/wd-mbwe.dts | |
1638 | F: arch/arm/boot/dts/cloudengines-pogoplug-series-3.dts | |
1639 | N: oxnas | |
1640 | ||
1641 | ARM/PALM TREO SUPPORT | |
1642 | M: Tomas Cech <sleep_walker@suse.com> | |
1643 | L: linux-arm-kernel@lists.infradead.org | |
1644 | W: http://hackndev.com | |
1645 | S: Maintained | |
1646 | F: arch/arm/mach-pxa/include/mach/palmtreo.h | |
1647 | F: arch/arm/mach-pxa/palmtreo.c | |
1648 | ||
1649 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT | |
1650 | M: Marek Vasut <marek.vasut@gmail.com> | |
1651 | L: linux-arm-kernel@lists.infradead.org | |
1652 | W: http://hackndev.com | |
1653 | S: Maintained | |
933d35f0 JP |
1654 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1655 | F: arch/arm/mach-pxa/palmtx.c | |
1656 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1657 | F: arch/arm/mach-pxa/palmt5.c | |
1658 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1659 | F: arch/arm/mach-pxa/palmld.c | |
1660 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1661 | F: arch/arm/mach-pxa/palmte2.c | |
1662 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1663 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1664 | |
c49e1e63 | 1665 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1666 | M: Sergey Lapin <slapin@ossfans.org> |
75280787 | 1667 | L: linux-arm-kernel@lists.infradead.org |
7d2c86b5 JP |
1668 | W: http://hackndev.com |
1669 | S: Maintained | |
933d35f0 JP |
1670 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1671 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1672 | |
1da177e4 | 1673 | ARM/PLEB SUPPORT |
8b58be88 | 1674 | M: Peter Chubb <pleb@gelato.unsw.edu.au> |
1da177e4 LT |
1675 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1676 | S: Maintained | |
1677 | ||
1678 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1679 | M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> |
efc03ecb | 1680 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1681 | W: http://www.armlinux.org.uk/ |
1da177e4 LT |
1682 | S: Maintained |
1683 | ||
8fc1b0f8 | 1684 | ARM/QUALCOMM SUPPORT |
bbeaa595 AG |
1685 | M: Andy Gross <andy.gross@linaro.org> |
1686 | M: David Brown <david.brown@linaro.org> | |
8fc1b0f8 | 1687 | L: linux-arm-msm@vger.kernel.org |
f5d3af9d | 1688 | L: linux-soc@vger.kernel.org |
8fc1b0f8 | 1689 | S: Maintained |
0ff50d60 | 1690 | F: Documentation/devicetree/bindings/soc/qcom/ |
0c4cbf9e BA |
1691 | F: arch/arm/boot/dts/qcom-*.dts |
1692 | F: arch/arm/boot/dts/qcom-*.dtsi | |
8fc1b0f8 | 1693 | F: arch/arm/mach-qcom/ |
e68d7c14 | 1694 | F: arch/arm64/boot/dts/qcom/* |
5482cefa | 1695 | F: drivers/i2c/busses/i2c-qup.c |
39a3366a | 1696 | F: drivers/clk/qcom/ |
472cef34 | 1697 | F: drivers/dma/qcom/ |
f5d3af9d | 1698 | F: drivers/soc/qcom/ |
5482cefa | 1699 | F: drivers/spi/spi-qup.c |
c0c89faf SB |
1700 | F: drivers/tty/serial/msm_serial.h |
1701 | F: drivers/tty/serial/msm_serial.c | |
1702 | F: drivers/*/pm8???-* | |
1703 | F: drivers/mfd/ssbi.c | |
916f743d | 1704 | F: drivers/firmware/qcom_scm.c |
bbeaa595 | 1705 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git |
8fc1b0f8 | 1706 | |
2b7a52a4 | 1707 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1708 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1709 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1710 | S: Maintained |
1711 | ||
de9aa530 AF |
1712 | ARM/REALTEK ARCHITECTURE |
1713 | M: Andreas Färber <afaerber@suse.de> | |
1714 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1715 | S: Maintained | |
1716 | F: arch/arm64/boot/dts/realtek/ | |
1717 | F: Documentation/devicetree/bindings/arm/realtek.txt | |
1718 | ||
b138e119 SH |
1719 | ARM/RENESAS ARM64 ARCHITECTURE |
1720 | M: Simon Horman <horms@verge.net.au> | |
1721 | M: Magnus Damm <magnus.damm@gmail.com> | |
1926e54f SH |
1722 | L: linux-renesas-soc@vger.kernel.org |
1723 | Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/ | |
b138e119 SH |
1724 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
1725 | S: Supported | |
1726 | F: arch/arm64/boot/dts/renesas/ | |
be32bcbb GU |
1727 | F: drivers/soc/renesas/ |
1728 | F: include/linux/soc/renesas/ | |
b138e119 | 1729 | |
d4275354 | 1730 | ARM/RISCPC ARCHITECTURE |
54176cc6 | 1731 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 1732 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 1733 | W: http://www.armlinux.org.uk/ |
d4275354 | 1734 | S: Maintained |
d4275354 RK |
1735 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1736 | F: arch/arm/include/asm/hardware/ioc.h | |
1737 | F: arch/arm/include/asm/hardware/iomd.h | |
1738 | F: arch/arm/include/asm/hardware/memc.h | |
1739 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1740 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1741 | F: drivers/net/ethernet/i825xx/ether1* |
1742 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1743 | F: drivers/scsi/arm/ |
1744 | ||
08ddbb0a HS |
1745 | ARM/Rockchip SoC support |
1746 | M: Heiko Stuebner <heiko@sntech.de> | |
1747 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
00250b52 | 1748 | L: linux-rockchip@lists.infradead.org |
9f273c24 | 1749 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git |
08ddbb0a | 1750 | S: Maintained |
541555e9 | 1751 | F: arch/arm/boot/dts/rk3* |
2b503be3 | 1752 | F: arch/arm/boot/dts/rv1108* |
08ddbb0a | 1753 | F: arch/arm/mach-rockchip/ |
541555e9 HS |
1754 | F: drivers/clk/rockchip/ |
1755 | F: drivers/i2c/busses/i2c-rk3x.c | |
08ddbb0a | 1756 | F: drivers/*/*rockchip* |
541555e9 HS |
1757 | F: drivers/*/*/*rockchip* |
1758 | F: sound/soc/rockchip/ | |
b4331b43 | 1759 | N: rockchip |
08ddbb0a | 1760 | |
5bfb937c KK |
1761 | ARM/SAMSUNG EXYNOS ARM ARCHITECTURES |
1762 | M: Kukjin Kim <kgene@kernel.org> | |
326dce07 | 1763 | M: Krzysztof Kozlowski <krzk@kernel.org> |
efc03ecb | 1764 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7a549d78 | 1765 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
6f96d639 | 1766 | Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/ |
b21477f9 | 1767 | S: Maintained |
6f0589c8 | 1768 | F: arch/arm/boot/dts/s3c* |
e68d7c14 RH |
1769 | F: arch/arm/boot/dts/s5p* |
1770 | F: arch/arm/boot/dts/samsung* | |
6f0589c8 | 1771 | F: arch/arm/boot/dts/exynos* |
d97236e6 | 1772 | F: arch/arm64/boot/dts/exynos/ |
482ce512 | 1773 | F: arch/arm/plat-samsung/ |
769bbb63 HS |
1774 | F: arch/arm/mach-s3c24*/ |
1775 | F: arch/arm/mach-s3c64xx/ | |
5bfb937c KK |
1776 | F: arch/arm/mach-s5p*/ |
1777 | F: arch/arm/mach-exynos*/ | |
1c03274d KK |
1778 | F: drivers/*/*s3c24* |
1779 | F: drivers/*/*/*s3c24* | |
1780 | F: drivers/*/*s3c64xx* | |
1781 | F: drivers/*/*s5pv210* | |
ffd51977 | 1782 | F: drivers/memory/samsung/* |
bf50ddcd | 1783 | F: drivers/soc/samsung/* |
d6b9aea6 KK |
1784 | F: Documentation/arm/Samsung/ |
1785 | F: Documentation/devicetree/bindings/arm/samsung/ | |
1786 | F: Documentation/devicetree/bindings/sram/samsung-sram.txt | |
1787 | F: Documentation/devicetree/bindings/power/pd-samsung.txt | |
33d43cdd | 1788 | N: exynos |
f556cb07 | 1789 | |
10ffa964 KP |
1790 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1791 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1792 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1793 | S: Maintained | |
004bbd3c | 1794 | F: arch/arm/mach-s5pv210/ |
10ffa964 | 1795 | |
3ce4ccb6 KD |
1796 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1797 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
774e0362 KD |
1798 | M: Kamil Debski <kamil@wypas.org> |
1799 | M: Andrzej Hajda <a.hajda@samsung.com> | |
3ce4ccb6 KD |
1800 | L: linux-arm-kernel@lists.infradead.org |
1801 | L: linux-media@vger.kernel.org | |
1802 | S: Maintained | |
1803 | F: drivers/media/platform/s5p-g2d/ | |
1804 | ||
1bcbf6f4 | 1805 | ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT |
8108f7f4 MS |
1806 | M: Marek Szyprowski <m.szyprowski@samsung.com> |
1807 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
1bcbf6f4 KD |
1808 | L: linux-media@vger.kernel.org |
1809 | S: Maintained | |
8108f7f4 MS |
1810 | F: drivers/media/platform/s5p-cec/ |
1811 | F: Documentation/devicetree/bindings/media/s5p-cec.txt | |
1bcbf6f4 | 1812 | |
7d9f9bf4 AP |
1813 | ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT |
1814 | M: Andrzej Pietrasiewicz <andrzej.p@samsung.com> | |
305335b9 | 1815 | M: Jacek Anaszewski <jacek.anaszewski@gmail.com> |
7d9f9bf4 AP |
1816 | L: linux-arm-kernel@lists.infradead.org |
1817 | L: linux-media@vger.kernel.org | |
1818 | S: Maintained | |
1819 | F: drivers/media/platform/s5p-jpeg/ | |
1820 | ||
7683e9e5 LT |
1821 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1822 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1823 | M: Kamil Debski <kamil@wypas.org> | |
1824 | M: Jeongtae Park <jtp.park@samsung.com> | |
1825 | M: Andrzej Hajda <a.hajda@samsung.com> | |
1826 | L: linux-arm-kernel@lists.infradead.org | |
1827 | L: linux-media@vger.kernel.org | |
1828 | S: Maintained | |
1829 | F: arch/arm/plat-samsung/s5p-dev-mfc.c | |
1830 | F: drivers/media/platform/s5p-mfc/ | |
1831 | ||
d48d38e8 | 1832 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1833 | M: Simon Horman <horms@verge.net.au> |
d48d38e8 | 1834 | M: Magnus Damm <magnus.damm@gmail.com> |
4a121096 | 1835 | L: linux-renesas-soc@vger.kernel.org |
4a121096 | 1836 | Q: http://patchwork.kernel.org/project/linux-renesas-soc/list/ |
5e212598 | 1837 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 | 1838 | S: Supported |
0b514fdb SH |
1839 | F: arch/arm/boot/dts/emev2* |
1840 | F: arch/arm/boot/dts/r7s* | |
1841 | F: arch/arm/boot/dts/r8a* | |
1842 | F: arch/arm/boot/dts/sh* | |
0b514fdb | 1843 | F: arch/arm/configs/shmobile_defconfig |
7a2071c5 | 1844 | F: arch/arm/include/debug/renesas-scif.S |
d48d38e8 | 1845 | F: arch/arm/mach-shmobile/ |
be32bcbb GU |
1846 | F: drivers/soc/renesas/ |
1847 | F: include/linux/soc/renesas/ | |
d48d38e8 | 1848 | |
66314223 | 1849 | ARM/SOCFPGA ARCHITECTURE |
08b3b33f | 1850 | M: Dinh Nguyen <dinguyen@kernel.org> |
66314223 DN |
1851 | S: Maintained |
1852 | F: arch/arm/mach-socfpga/ | |
efadb751 DN |
1853 | F: arch/arm/boot/dts/socfpga* |
1854 | F: arch/arm/configs/socfpga_defconfig | |
e68d7c14 | 1855 | F: arch/arm64/boot/dts/altera/ |
ba2b7d0a | 1856 | W: http://www.rocketboards.org |
efadb751 | 1857 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git |
66314223 DN |
1858 | |
1859 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
08b3b33f | 1860 | M: Dinh Nguyen <dinguyen@kernel.org> |
66314223 DN |
1861 | S: Maintained |
1862 | F: drivers/clk/socfpga/ | |
1863 | ||
71bcada8 | 1864 | ARM/SOCFPGA EDAC SUPPORT |
06c177cb | 1865 | M: Thor Thayer <thor.thayer@linux.intel.com> |
71bcada8 TT |
1866 | S: Maintained |
1867 | F: drivers/edac/altera_edac. | |
1868 | ||
65ebcc11 | 1869 | ARM/STI ARCHITECTURE |
a92177ea | 1870 | M: Patrice Chotard <patrice.chotard@st.com> |
65ebcc11 | 1871 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
65ebcc11 SK |
1872 | W: http://www.stlinux.com |
1873 | S: Maintained | |
1874 | F: arch/arm/mach-sti/ | |
a92177ea | 1875 | F: arch/arm/boot/dts/sti* |
b8e31bf3 | 1876 | F: drivers/char/hw_random/st-rng.c |
a92177ea | 1877 | F: drivers/clocksource/arm_global_timer.c |
82805d1b | 1878 | F: drivers/clocksource/clksrc_st_lpc.c |
1d4b42bc | 1879 | F: drivers/cpufreq/sti-cpufreq.c |
6da0f216 | 1880 | F: drivers/dma/st_fdma* |
a92177ea | 1881 | F: drivers/i2c/busses/i2c-st.c |
346e2e4a | 1882 | F: drivers/media/rc/st_rc.c |
95d66b16 | 1883 | F: drivers/media/platform/sti/c8sectpfe/ |
f53b2bff | 1884 | F: drivers/mmc/host/sdhci-st.c |
0b56e9a7 VG |
1885 | F: drivers/phy/st/phy-miphy28lp.c |
1886 | F: drivers/phy/st/phy-stih407-usb.c | |
346e2e4a | 1887 | F: drivers/pinctrl/pinctrl-st.c |
aac22524 | 1888 | F: drivers/remoteproc/st_remoteproc.c |
c9d7cc3e | 1889 | F: drivers/remoteproc/st_slim_rproc.c |
346e2e4a | 1890 | F: drivers/reset/sti/ |
db4112e6 | 1891 | F: drivers/rtc/rtc-st-lpc.c |
346e2e4a | 1892 | F: drivers/tty/serial/st-asc.c |
eb11adab | 1893 | F: drivers/usb/dwc3/dwc3-st.c |
62f6f086 PG |
1894 | F: drivers/usb/host/ehci-st.c |
1895 | F: drivers/usb/host/ohci-st.c | |
db4112e6 | 1896 | F: drivers/watchdog/st_lpc_wdt.c |
daac6f86 | 1897 | F: drivers/ata/ahci_st.c |
c9d7cc3e | 1898 | F: include/linux/remoteproc/st_slim_rproc.h |
65ebcc11 | 1899 | |
ee6e7879 MC |
1900 | ARM/STM32 ARCHITECTURE |
1901 | M: Maxime Coquelin <mcoquelin.stm32@gmail.com> | |
8ca2cf2c | 1902 | M: Alexandre Torgue <alexandre.torgue@st.com> |
ee6e7879 MC |
1903 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1904 | S: Maintained | |
1905 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git | |
1906 | N: stm32 | |
1907 | F: drivers/clocksource/armv7m_systick.c | |
1908 | ||
d6de5b02 MG |
1909 | ARM/TANGO ARCHITECTURE |
1910 | M: Marc Gonzalez <marc_gonzalez@sigmadesigns.com> | |
1911 | L: linux-arm-kernel@lists.infradead.org | |
1912 | S: Maintained | |
e2bd0d37 | 1913 | N: tango |
d6de5b02 | 1914 | |
2b7a52a4 | 1915 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1916 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1917 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1918 | S: Maintained |
1919 | ||
1bbd7089 | 1920 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1921 | M: "Mark F. Brown" <mark.brown314@gmail.com> |
1bbd7089 MB |
1922 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1923 | S: Maintained | |
1924 | ||
7683e9e5 LT |
1925 | ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS |
1926 | M: Santosh Shilimkar <ssantosh@kernel.org> | |
1927 | L: linux-kernel@vger.kernel.org | |
1928 | S: Maintained | |
1929 | F: drivers/memory/*emif* | |
1930 | ||
1931 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE | |
1932 | M: Santosh Shilimkar <ssantosh@kernel.org> | |
1933 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1934 | S: Maintained | |
1935 | F: arch/arm/mach-keystone/ | |
1936 | F: arch/arm/boot/dts/keystone-* | |
1937 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git | |
1938 | ||
1939 | ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK | |
1940 | M: Santosh Shilimkar <ssantosh@kernel.org> | |
1941 | L: linux-kernel@vger.kernel.org | |
1942 | S: Maintained | |
1943 | F: drivers/clk/keystone/ | |
1944 | ||
1945 | ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE | |
1946 | M: Santosh Shilimkar <ssantosh@kernel.org> | |
1947 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1948 | L: linux-kernel@vger.kernel.org | |
1949 | S: Maintained | |
1950 | F: drivers/clocksource/timer-keystone.c | |
1951 | ||
1952 | ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER | |
1953 | M: Santosh Shilimkar <ssantosh@kernel.org> | |
1954 | L: linux-kernel@vger.kernel.org | |
1955 | S: Maintained | |
1956 | F: drivers/power/reset/keystone-reset.c | |
1957 | ||
2b7a52a4 | 1958 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1959 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1960 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1961 | S: Maintained |
1962 | ||
7683e9e5 LT |
1963 | ARM/TOSA MACHINE SUPPORT |
1964 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | |
1965 | M: Dirk Opfer <dirk@opfer-online.de> | |
7d2c86b5 | 1966 | S: Maintained |
98ad6e3b | 1967 | |
54274d71 | 1968 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1969 | M: Linus Walleij <linus.walleij@linaro.org> |
54274d71 LW |
1970 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1971 | S: Supported | |
1972 | F: arch/arm/mach-u300/ | |
9affbd24 | 1973 | F: drivers/clocksource/timer-u300.c |
54274d71 LW |
1974 | F: drivers/i2c/busses/i2c-stu300.c |
1975 | F: drivers/rtc/rtc-coh901331.c | |
1976 | F: drivers/watchdog/coh901327_wdt.c | |
1977 | F: drivers/dma/coh901318* | |
87572880 LW |
1978 | F: drivers/mfd/ab3100* |
1979 | F: drivers/rtc/rtc-ab3100.c | |
1980 | F: drivers/rtc/rtc-coh901331.c | |
1981 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1982 | |
3d00d04f MY |
1983 | ARM/UNIPHIER ARCHITECTURE |
1984 | M: Masahiro Yamada <yamada.masahiro@socionext.com> | |
1985 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
becc8d3c | 1986 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git |
3d00d04f | 1987 | S: Maintained |
a3ff83d2 | 1988 | F: arch/arm/boot/dts/uniphier* |
e7ecbc05 | 1989 | F: arch/arm/include/asm/hardware/cache-uniphier.h |
3d00d04f | 1990 | F: arch/arm/mach-uniphier/ |
e7ecbc05 | 1991 | F: arch/arm/mm/cache-uniphier.c |
e1a0ebc8 | 1992 | F: arch/arm64/boot/dts/socionext/ |
4b7f48d3 | 1993 | F: drivers/bus/uniphier-system-bus.c |
734d82f4 | 1994 | F: drivers/clk/uniphier/ |
dd6fd4a3 | 1995 | F: drivers/i2c/busses/i2c-uniphier* |
a3ff83d2 | 1996 | F: drivers/pinctrl/uniphier/ |
54e991b5 | 1997 | F: drivers/reset/reset-uniphier.c |
a3ff83d2 | 1998 | F: drivers/tty/serial/8250/8250_uniphier.c |
3d00d04f MY |
1999 | N: uniphier |
2000 | ||
87572880 | 2001 | ARM/Ux500 ARM ARCHITECTURE |
e4651a9f | 2002 | M: Linus Walleij <linus.walleij@linaro.org> |
870725d9 SK |
2003 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2004 | S: Maintained | |
2005 | F: arch/arm/mach-ux500/ | |
e4651a9f | 2006 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 2007 | F: drivers/dma/ste_dma40* |
e4651a9f | 2008 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
2009 | F: drivers/mfd/abx500* |
2010 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
2011 | F: drivers/mfd/dbx500* |
2012 | F: drivers/mfd/db8500* | |
ecc265fe JP |
2013 | F: drivers/pinctrl/nomadik/pinctrl-ab* |
2014 | F: drivers/pinctrl/nomadik/pinctrl-nomadik* | |
87572880 | 2015 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 2016 | F: drivers/rtc/rtc-pl031.c |
87572880 | 2017 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 2018 | |
e93fde28 UH |
2019 | ARM/Ux500 CLOCK FRAMEWORK SUPPORT |
2020 | M: Ulf Hansson <ulf.hansson@linaro.org> | |
2021 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
2022 | T: git git://git.linaro.org/people/ulfh/clk.git | |
2023 | S: Maintained | |
2024 | F: drivers/clk/ux500/ | |
e93fde28 | 2025 | |
740d93b1 PM |
2026 | ARM/VERSATILE EXPRESS PLATFORM |
2027 | M: Liviu Dudau <liviu.dudau@arm.com> | |
2028 | M: Sudeep Holla <sudeep.holla@arm.com> | |
2029 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
2030 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
2031 | S: Maintained | |
2032 | F: arch/arm/boot/dts/vexpress* | |
e68d7c14 | 2033 | F: arch/arm64/boot/dts/arm/ |
740d93b1 PM |
2034 | F: arch/arm/mach-vexpress/ |
2035 | F: */*/vexpress* | |
7e8f403f | 2036 | F: */*/*/vexpress* |
740d93b1 PM |
2037 | F: drivers/clk/versatile/clk-vexpress-osc.c |
2038 | F: drivers/clocksource/versatile.c | |
46a600ea | 2039 | N: mps2 |
740d93b1 | 2040 | |
d4275354 | 2041 | ARM/VFP SUPPORT |
54176cc6 | 2042 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 2043 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 2044 | W: http://www.armlinux.org.uk/ |
d4275354 RK |
2045 | S: Maintained |
2046 | F: arch/arm/vfp/ | |
2047 | ||
e66b6d8e MV |
2048 | ARM/VOIPAC PXA270 SUPPORT |
2049 | M: Marek Vasut <marek.vasut@gmail.com> | |
2050 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
2051 | S: Maintained | |
2052 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 2053 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 2054 | |
04529fe2 TP |
2055 | ARM/VT8500 ARM ARCHITECTURE |
2056 | M: Tony Prisk <linux@prisktech.co.nz> | |
2057 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
2058 | S: Maintained | |
2059 | F: arch/arm/mach-vt8500/ | |
41fd91b4 | 2060 | F: drivers/clocksource/vt8500_timer.c |
560746eb | 2061 | F: drivers/i2c/busses/i2c-wmt.c |
41fd91b4 TP |
2062 | F: drivers/mmc/host/wmt-sdmmc.c |
2063 | F: drivers/pwm/pwm-vt8500.c | |
2064 | F: drivers/rtc/rtc-vt8500.c | |
2065 | F: drivers/tty/serial/vt8500_serial.c | |
4f31102b | 2066 | F: drivers/usb/host/ehci-platform.c |
41fd91b4 | 2067 | F: drivers/usb/host/uhci-platform.c |
8a61f013 JH |
2068 | F: drivers/video/fbdev/vt8500lcdfb.* |
2069 | F: drivers/video/fbdev/wm8505fb* | |
2070 | F: drivers/video/fbdev/wmt_ge_rops.* | |
04529fe2 | 2071 | |
e66b6d8e MV |
2072 | ARM/ZIPIT Z2 SUPPORT |
2073 | M: Marek Vasut <marek.vasut@gmail.com> | |
2074 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
2075 | S: Maintained | |
2076 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 2077 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 2078 | |
5ecc4b53 JN |
2079 | ARM/ZTE ARCHITECTURE |
2080 | M: Jun Nie <jun.nie@linaro.org> | |
15e2dcd6 | 2081 | M: Baoyou Xie <baoyou.xie@linaro.org> |
5ecc4b53 JN |
2082 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2083 | S: Maintained | |
2084 | F: arch/arm/mach-zx/ | |
2085 | F: drivers/clk/zte/ | |
8041311c | 2086 | F: drivers/reset/reset-zx2967.c |
15e2dcd6 | 2087 | F: drivers/soc/zte/ |
5ecc4b53 JN |
2088 | F: Documentation/devicetree/bindings/arm/zte.txt |
2089 | F: Documentation/devicetree/bindings/clock/zx296702-clk.txt | |
8041311c | 2090 | F: Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt |
15e2dcd6 BX |
2091 | F: Documentation/devicetree/bindings/soc/zte/ |
2092 | F: include/dt-bindings/soc/zx*.h | |
5ecc4b53 | 2093 | |
51f29d44 MS |
2094 | ARM/ZYNQ ARCHITECTURE |
2095 | M: Michal Simek <michal.simek@xilinx.com> | |
f0fd9ad8 | 2096 | R: Sören Brinkmann <soren.brinkmann@xilinx.com> |
51f29d44 MS |
2097 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2098 | W: http://wiki.xilinx.com | |
d6448b76 | 2099 | T: git https://github.com/Xilinx/linux-xlnx.git |
51f29d44 MS |
2100 | S: Supported |
2101 | F: arch/arm/mach-zynq/ | |
bd2a337a | 2102 | F: drivers/cpuidle/cpuidle-zynq.c |
fb9d4959 | 2103 | F: drivers/block/xsysace.c |
c2fd4e38 MS |
2104 | N: zynq |
2105 | N: xilinx | |
2106 | F: drivers/clocksource/cadence_ttc_timer.c | |
df8eb569 | 2107 | F: drivers/i2c/busses/i2c-cadence.c |
e3ec3a3d | 2108 | F: drivers/mmc/host/sdhci-of-arasan.c |
ae9b56e3 | 2109 | F: drivers/edac/synopsys_edac.c |
51f29d44 | 2110 | |
38074229 CM |
2111 | ARM64 PORT (AARCH64 ARCHITECTURE) |
2112 | M: Catalin Marinas <catalin.marinas@arm.com> | |
d19766ec | 2113 | M: Will Deacon <will.deacon@arm.com> |
38074229 | 2114 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9f273c24 | 2115 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git |
38074229 CM |
2116 | S: Maintained |
2117 | F: arch/arm64/ | |
d19766ec | 2118 | F: Documentation/arm64/ |
38074229 | 2119 | |
9d7005f9 LP |
2120 | AS3645A LED FLASH CONTROLLER DRIVER |
2121 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
2122 | L: linux-media@vger.kernel.org | |
2123 | T: git git://linuxtv.org/media_tree.git | |
2124 | S: Maintained | |
2125 | F: drivers/media/i2c/as3645a.c | |
b5dcee22 | 2126 | F: include/media/i2c/as3645a.h |
9d7005f9 | 2127 | |
7c94a8b2 LW |
2128 | ASAHI KASEI AK8974 DRIVER |
2129 | M: Linus Walleij <linus.walleij@linaro.org> | |
2130 | L: linux-iio@vger.kernel.org | |
2131 | W: http://www.akm.com/ | |
2132 | S: Supported | |
2133 | F: drivers/iio/magnetometer/ak8974.c | |
2134 | ||
d58de038 GJ |
2135 | ASC7621 HARDWARE MONITOR DRIVER |
2136 | M: George Joseph <george.joseph@fairview5.com> | |
968ce1b1 | 2137 | L: linux-hwmon@vger.kernel.org |
d58de038 GJ |
2138 | S: Maintained |
2139 | F: Documentation/hwmon/asc7621 | |
2140 | F: drivers/hwmon/asc7621.c | |
2141 | ||
b229ece9 | 2142 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 2143 | M: Corentin Chary <corentin.chary@gmail.com> |
1da177e4 | 2144 | L: acpi4asus-user@lists.sourceforge.net |
d0944853 | 2145 | L: platform-driver-x86@vger.kernel.org |
76593d6f | 2146 | W: http://acpi4asus.sf.net |
85091b71 | 2147 | S: Maintained |
b229ece9 CC |
2148 | F: drivers/platform/x86/asus*.c |
2149 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 2150 | |
f6a6bbae JPRV |
2151 | ASUS WIRELESS RADIO CONTROL DRIVER |
2152 | M: João Paulo Rechi Vita <jprvita@gmail.com> | |
2153 | L: platform-driver-x86@vger.kernel.org | |
2154 | S: Maintained | |
2155 | F: drivers/platform/x86/asus-wireless.c | |
2156 | ||
75aeddd1 DH |
2157 | ASYMMETRIC KEYS |
2158 | M: David Howells <dhowells@redhat.com> | |
2159 | L: keyrings@vger.kernel.org | |
2160 | S: Maintained | |
2161 | F: Documentation/crypto/asymmetric-keys.txt | |
2162 | F: include/linux/verification.h | |
2163 | F: include/crypto/public_key.h | |
2164 | F: include/crypto/pkcs7.h | |
2165 | F: crypto/asymmetric_keys/ | |
2166 | ||
953a6479 | 2167 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
08223d80 | 2168 | R: Dan Williams <dan.j.williams@intel.com> |
b3e5f263 | 2169 | W: http://sourceforge.net/projects/xscaleiop |
08223d80 | 2170 | S: Odd fixes |
679655da JP |
2171 | F: Documentation/crypto/async-tx-api.txt |
2172 | F: crypto/async_tx/ | |
2173 | F: drivers/dma/ | |
2174 | F: include/linux/dmaengine.h | |
2175 | F: include/linux/async_tx.h | |
b3e5f263 | 2176 | |
a1867d36 | 2177 | AT24 EEPROM DRIVER |
14d77c4d | 2178 | M: Wolfram Sang <wsa@the-dreams.de> |
a1867d36 WS |
2179 | L: linux-i2c@vger.kernel.org |
2180 | S: Maintained | |
2181 | F: drivers/misc/eeprom/at24.c | |
25f73ed5 | 2182 | F: include/linux/platform_data/at24.h |
a1867d36 | 2183 | |
e7839f25 | 2184 | ATA OVER ETHERNET (AOE) DRIVER |
fb903811 EC |
2185 | M: "Ed L. Cashin" <ed.cashin@acm.org> |
2186 | W: http://www.openaoe.org/ | |
1da177e4 | 2187 | S: Supported |
679655da JP |
2188 | F: Documentation/aoe/ |
2189 | F: drivers/block/aoe/ | |
1da177e4 | 2190 | |
aad7a211 AB |
2191 | ATHEROS 71XX/9XXX GPIO DRIVER |
2192 | M: Alban Bedel <albeu@free.fr> | |
2193 | W: https://github.com/AlbanBedel/linux | |
2194 | T: git git://github.com/AlbanBedel/linux | |
2195 | S: Maintained | |
2196 | F: drivers/gpio/gpio-ath79.c | |
2197 | F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt | |
2198 | ||
9a10a870 | 2199 | ATHEROS ATH GENERIC UTILITIES |
f726ee65 | 2200 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
9a10a870 JP |
2201 | L: linux-wireless@vger.kernel.org |
2202 | S: Supported | |
2203 | F: drivers/net/wireless/ath/* | |
2204 | ||
fa1c114f | 2205 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
2206 | M: Jiri Slaby <jirislaby@gmail.com> |
2207 | M: Nick Kossifidis <mickflemm@gmail.com> | |
f726ee65 | 2208 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
fa1c114f | 2209 | L: linux-wireless@vger.kernel.org |
72c706b7 | 2210 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 2211 | S: Maintained |
fa451753 | 2212 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 2213 | |
12e62d6f KV |
2214 | ATHEROS ATH6KL WIRELESS DRIVER |
2215 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
2216 | L: linux-wireless@vger.kernel.org | |
2217 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
9f273c24 | 2218 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git |
12e62d6f KV |
2219 | S: Supported |
2220 | F: drivers/net/wireless/ath/ath6kl/ | |
2221 | ||
82abbea7 RD |
2222 | ATI_REMOTE2 DRIVER |
2223 | M: Ville Syrjala <syrjala@sci.fi> | |
1d7e1e6b | 2224 | S: Maintained |
82abbea7 | 2225 | F: drivers/input/misc/ati_remote2.c |
1d7e1e6b | 2226 | |
2c2a6172 LT |
2227 | ATK0110 HWMON DRIVER |
2228 | M: Luca Tettamanti <kronos.it@gmail.com> | |
968ce1b1 | 2229 | L: linux-hwmon@vger.kernel.org |
2c2a6172 LT |
2230 | S: Maintained |
2231 | F: drivers/hwmon/asus_atk0110.c | |
2232 | ||
7ae115b4 | 2233 | ATLX ETHERNET DRIVERS |
8b58be88 | 2234 | M: Jay Cliburn <jcliburn@gmail.com> |
cb2f33e9 | 2235 | M: Chris Snook <chris.snook@gmail.com> |
e443e383 | 2236 | L: netdev@vger.kernel.org |
8d5ca6ec JC |
2237 | W: http://sourceforge.net/projects/atl1 |
2238 | W: http://atl1.sourceforge.net | |
2239 | S: Maintained | |
2b133ad6 | 2240 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 2241 | |
1da177e4 | 2242 | ATM |
366c1bd1 | 2243 | M: Chas Williams <3chas3@gmail.com> |
476604de | 2244 | L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers) |
44ae98b5 | 2245 | L: netdev@vger.kernel.org |
1da177e4 LT |
2246 | W: http://linux-atm.sourceforge.net |
2247 | S: Maintained | |
679655da JP |
2248 | F: drivers/atm/ |
2249 | F: include/linux/atm* | |
c117ab84 | 2250 | F: include/uapi/linux/atm* |
1da177e4 | 2251 | |
04ac2f46 | 2252 | ATMEL AT91 / AT32 MCI DRIVER |
420a3879 | 2253 | M: Ludovic Desroches <ludovic.desroches@microchip.com> |
04ac2f46 NF |
2254 | S: Maintained |
2255 | F: drivers/mmc/host/atmel-mci.c | |
04ac2f46 | 2256 | |
f80cb488 | 2257 | ATMEL AT91 SAMA5D2-Compatible Shutdown Controller |
e085b9d8 | 2258 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
f80cb488 NF |
2259 | S: Supported |
2260 | F: drivers/power/reset/at91-sama5d2_shdwc.c | |
2261 | ||
dfae90ed | 2262 | ATMEL Audio ALSA driver |
e085b9d8 | 2263 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
dfae90ed BS |
2264 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
2265 | S: Supported | |
2266 | F: sound/soc/atmel | |
2267 | ||
888f2804 | 2268 | ATMEL I2C DRIVER |
420a3879 | 2269 | M: Ludovic Desroches <ludovic.desroches@microchip.com> |
888f2804 LD |
2270 | L: linux-i2c@vger.kernel.org |
2271 | S: Supported | |
2272 | F: drivers/i2c/busses/i2c-at91.c | |
2273 | ||
15515545 | 2274 | ATMEL ISI DRIVER |
420a3879 | 2275 | M: Ludovic Desroches <ludovic.desroches@microchip.com> |
15515545 JW |
2276 | L: linux-media@vger.kernel.org |
2277 | S: Supported | |
0538bee6 | 2278 | F: drivers/media/platform/atmel/atmel-isi.c |
15515545 JW |
2279 | F: include/media/atmel-isi.h |
2280 | ||
8f4c79ce | 2281 | ATMEL LCDFB DRIVER |
e085b9d8 | 2282 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
c69f677c | 2283 | L: linux-fbdev@vger.kernel.org |
8f4c79ce | 2284 | S: Maintained |
8a61f013 | 2285 | F: drivers/video/fbdev/atmel_lcdfb.c |
679655da | 2286 | F: include/video/atmel_lcdc.h |
8f4c79ce | 2287 | |
89e5785f | 2288 | ATMEL MACB ETHERNET DRIVER |
e085b9d8 | 2289 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
89e5785f | 2290 | S: Supported |
9f2f381f | 2291 | F: drivers/net/ethernet/cadence/ |
89e5785f | 2292 | |
7683e9e5 LT |
2293 | ATMEL MAXTOUCH DRIVER |
2294 | M: Nick Dyer <nick@shmanahar.org> | |
2295 | T: git git://github.com/ndyer/linux.git | |
2296 | S: Maintained | |
2297 | F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt | |
2298 | F: drivers/input/touchscreen/atmel_mxt_ts.c | |
2299 | F: include/linux/platform_data/atmel_mxt_ts.h | |
2300 | ||
5cbac98a | 2301 | ATMEL NAND DRIVER |
50cb2efa NF |
2302 | M: Wenyou Yang <wenyou.yang@atmel.com> |
2303 | M: Josh Wu <rainyfeeling@outlook.com> | |
5cbac98a JW |
2304 | L: linux-mtd@lists.infradead.org |
2305 | S: Supported | |
f88fc122 | 2306 | F: drivers/mtd/nand/atmel/* |
5cbac98a | 2307 | |
7683e9e5 LT |
2308 | ATMEL SAMA5D2 ADC DRIVER |
2309 | M: Ludovic Desroches <ludovic.desroches@microchip.com> | |
2310 | L: linux-iio@vger.kernel.org | |
2311 | S: Supported | |
2312 | F: drivers/iio/adc/at91-sama5d2_adc.c | |
2313 | ||
05c441ef | 2314 | ATMEL SDMMC DRIVER |
420a3879 | 2315 | M: Ludovic Desroches <ludovic.desroches@microchip.com> |
05c441ef | 2316 | L: linux-mmc@vger.kernel.org |
2317 | S: Supported | |
2318 | F: drivers/mmc/host/sdhci-of-at91.c | |
2319 | ||
754ce4f2 | 2320 | ATMEL SPI DRIVER |
e085b9d8 | 2321 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
754ce4f2 | 2322 | S: Supported |
9df92e6c | 2323 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 2324 | |
0ef09015 | 2325 | ATMEL SSC DRIVER |
e085b9d8 | 2326 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
0ef09015 BS |
2327 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2328 | S: Supported | |
2329 | F: drivers/misc/atmel-ssc.c | |
2330 | F: include/linux/atmel-ssc.h | |
2331 | ||
e9cb1c5a | 2332 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
e085b9d8 | 2333 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
e9cb1c5a NF |
2334 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2335 | S: Supported | |
2336 | F: drivers/misc/atmel_tclib.c | |
2337 | F: drivers/clocksource/tcb_clksrc.c | |
2338 | ||
914a3f3b | 2339 | ATMEL USBA UDC DRIVER |
e085b9d8 | 2340 | M: Nicolas Ferre <nicolas.ferre@microchip.com> |
a02875a6 | 2341 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
914a3f3b | 2342 | S: Supported |
faf2e1db | 2343 | F: drivers/usb/gadget/udc/atmel_usba_udc.* |
914a3f3b | 2344 | |
1da177e4 | 2345 | ATMEL WIRELESS DRIVER |
8b58be88 | 2346 | M: Simon Kelley <simon@thekelleys.org.uk> |
724c6b35 | 2347 | L: linux-wireless@vger.kernel.org |
1da177e4 LT |
2348 | W: http://www.thekelleys.org.uk/atmel |
2349 | W: http://atmelwlandriver.sourceforge.net/ | |
2350 | S: Maintained | |
30fe0f9b | 2351 | F: drivers/net/wireless/atmel/atmel* |
1da177e4 | 2352 | |
7683e9e5 LT |
2353 | ATMEL XDMA DRIVER |
2354 | M: Ludovic Desroches <ludovic.desroches@microchip.com> | |
2355 | L: linux-arm-kernel@lists.infradead.org | |
2356 | L: dmaengine@vger.kernel.org | |
2357 | S: Supported | |
2358 | F: drivers/dma/at_xdmac.c | |
a14c0f8f | 2359 | |
3942b771 PZ |
2360 | ATOMIC INFRASTRUCTURE |
2361 | M: Will Deacon <will.deacon@arm.com> | |
2362 | M: Peter Zijlstra <peterz@infradead.org> | |
2363 | R: Boqun Feng <boqun.feng@gmail.com> | |
2364 | L: linux-kernel@vger.kernel.org | |
2365 | S: Maintained | |
2366 | F: arch/*/include/asm/atomic*.h | |
2367 | F: include/*/atomic*.h | |
2368 | ||
26780d9e | 2369 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
b75f0050 JP |
2370 | M: Bradley Grove <linuxdrivers@attotech.com> |
2371 | L: linux-scsi@vger.kernel.org | |
2372 | W: http://www.attotech.com | |
2373 | S: Supported | |
2374 | F: drivers/scsi/esas2r | |
26780d9e | 2375 | |
bc6e17b8 SS |
2376 | ATUSB IEEE 802.15.4 RADIO DRIVER |
2377 | M: Stefan Schmidt <stefan@osg.samsung.com> | |
2378 | L: linux-wpan@vger.kernel.org | |
2379 | S: Maintained | |
2380 | F: drivers/net/ieee802154/atusb.c | |
2381 | F: drivers/net/ieee802154/atusb.h | |
2382 | F: drivers/net/ieee802154/at86rf230.h | |
2383 | ||
a92b7b80 | 2384 | AUDIT SUBSYSTEM |
915f389d | 2385 | M: Paul Moore <paul@paul-moore.com> |
8b58be88 | 2386 | M: Eric Paris <eparis@redhat.com> |
915f389d | 2387 | L: linux-audit@redhat.com (moderated for non-subscribers) |
ad3f9a22 | 2388 | W: http://people.redhat.com/sgrubb/audit/ |
915f389d | 2389 | T: git git://git.infradead.org/users/pcmoore/audit |
a92b7b80 | 2390 | S: Maintained |
679655da | 2391 | F: include/linux/audit.h |
c117ab84 | 2392 | F: include/uapi/linux/audit.h |
679655da | 2393 | F: kernel/audit* |
a92b7b80 | 2394 | |
70e84049 | 2395 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 2396 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2397 | W: http://miguelojeda.es/auxdisplay.htm |
2398 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2399 | S: Maintained |
679655da JP |
2400 | F: drivers/auxdisplay/ |
2401 | F: include/linux/cfag12864b.h | |
70e84049 | 2402 | |
1da177e4 | 2403 | AX.25 NETWORK LAYER |
8b58be88 | 2404 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 2405 | L: linux-hams@vger.kernel.org |
d34cb28a | 2406 | W: http://www.linux-ax25.org/ |
1da177e4 | 2407 | S: Maintained |
c117ab84 | 2408 | F: include/uapi/linux/ax25.h |
679655da JP |
2409 | F: include/net/ax25.h |
2410 | F: net/ax25/ | |
1da177e4 | 2411 | |
21dd0ece PR |
2412 | AXENTIA ARM DEVICES |
2413 | M: Peter Rosin <peda@axentia.se> | |
2414 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
2415 | S: Maintained | |
2416 | F: Documentation/devicetree/bindings/arm/axentia.txt | |
2417 | F: arch/arm/boot/dts/at91-linea.dtsi | |
2418 | F: arch/arm/boot/dts/at91-tse850-3.dts | |
2419 | ||
7683e9e5 LT |
2420 | AXENTIA ASOC DRIVERS |
2421 | M: Peter Rosin <peda@axentia.se> | |
2422 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2423 | S: Maintained | |
2424 | F: Documentation/devicetree/bindings/sound/axentia,* | |
2425 | F: sound/soc/atmel/tse850-pcm5142.c | |
2426 | ||
d5269395 | 2427 | AZ6007 DVB DRIVER |
5dc8a864 MCC |
2428 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
2429 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
d5269395 | 2430 | L: linux-media@vger.kernel.org |
a825eaec | 2431 | W: https://linuxtv.org |
d5269395 MCC |
2432 | T: git git://linuxtv.org/media_tree.git |
2433 | S: Maintained | |
2434 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
2435 | ||
6777376e HV |
2436 | AZTECH FM RADIO RECEIVER DRIVER |
2437 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2438 | L: linux-media@vger.kernel.org | |
2439 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 2440 | W: https://linuxtv.org |
6777376e HV |
2441 | S: Maintained |
2442 | F: drivers/media/radio/radio-aztech* | |
2443 | ||
e2d1d6c0 | 2444 | B43 WIRELESS DRIVER |
e2d1d6c0 | 2445 | L: linux-wireless@vger.kernel.org |
ed072f9e | 2446 | L: b43-dev@lists.infradead.org |
491b26b4 | 2447 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
8a72ed6f | 2448 | S: Odd Fixes |
58619b14 | 2449 | F: drivers/net/wireless/broadcom/b43/ |
e2d1d6c0 RD |
2450 | |
2451 | B43LEGACY WIRELESS DRIVER | |
8b58be88 | 2452 | M: Larry Finger <Larry.Finger@lwfinger.net> |
e2d1d6c0 | 2453 | L: linux-wireless@vger.kernel.org |
ed072f9e | 2454 | L: b43-dev@lists.infradead.org |
491b26b4 | 2455 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 2456 | S: Maintained |
423e3ce3 | 2457 | F: drivers/net/wireless/broadcom/b43legacy/ |
e2d1d6c0 | 2458 | |
300abeb5 | 2459 | BACKLIGHT CLASS/SUBSYSTEM |
70d14fcf | 2460 | M: Lee Jones <lee.jones@linaro.org> |
80e5d455 LJ |
2461 | M: Daniel Thompson <daniel.thompson@linaro.org> |
2462 | M: Jingoo Han <jingoohan1@gmail.com> | |
9f273c24 | 2463 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git |
300abeb5 | 2464 | S: Maintained |
679655da JP |
2465 | F: drivers/video/backlight/ |
2466 | F: include/linux/backlight.h | |
80e5d455 LJ |
2467 | F: include/linux/pwm_backlight.h |
2468 | F: Documentation/devicetree/bindings/leds/backlight | |
300abeb5 | 2469 | |
c6c8fea2 | 2470 | BATMAN ADVANCED |
207df49e | 2471 | M: Marek Lindner <mareklindner@neomailbox.ch> |
c679ff8f | 2472 | M: Simon Wunderlich <sw@simonwunderlich.de> |
ca8e940c | 2473 | M: Antonio Quartulli <a@unstable.cc> |
1584f41f | 2474 | L: b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers) |
7b5e7396 | 2475 | W: https://www.open-mesh.org/ |
8b823170 | 2476 | Q: https://patchwork.open-mesh.org/project/batman/list/ |
c6c8fea2 | 2477 | S: Maintained |
286ddfb0 SE |
2478 | F: Documentation/ABI/testing/sysfs-class-net-batman-adv |
2479 | F: Documentation/ABI/testing/sysfs-class-net-mesh | |
2480 | F: Documentation/networking/batman-adv.txt | |
09748a22 | 2481 | F: include/uapi/linux/batman_adv.h |
c6c8fea2 SE |
2482 | F: net/batman-adv/ |
2483 | ||
e2d1d6c0 | 2484 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 2485 | M: Thomas Sailer <t.sailer@alumni.ethz.ch> |
e2d1d6c0 RD |
2486 | L: linux-hams@vger.kernel.org |
2487 | W: http://www.baycom.org/~tom/ham/ham.html | |
2488 | S: Maintained | |
679655da | 2489 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 2490 | |
cafe5635 | 2491 | BCACHE (BLOCK LAYER CACHE) |
d1aa1ab3 | 2492 | M: Kent Overstreet <kent.overstreet@gmail.com> |
cafe5635 KO |
2493 | L: linux-bcache@vger.kernel.org |
2494 | W: http://bcache.evilpiepirate.org | |
4d1034eb | 2495 | S: Orphan |
cafe5635 KO |
2496 | F: drivers/md/bcache/ |
2497 | ||
04bd844a HV |
2498 | BDISP ST MEDIA DRIVER |
2499 | M: Fabien Dessenne <fabien.dessenne@st.com> | |
2500 | L: linux-media@vger.kernel.org | |
2501 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 2502 | W: https://linuxtv.org |
04bd844a HV |
2503 | S: Supported |
2504 | F: drivers/media/platform/sti/bdisp | |
2505 | ||
82abbea7 RD |
2506 | BECKHOFF CX5020 ETHERCAT MASTER DRIVER |
2507 | M: Dariusz Marcinkiewicz <reksio@newterm.pl> | |
2508 | L: netdev@vger.kernel.org | |
2509 | S: Maintained | |
2510 | F: drivers/net/ethernet/ec_bhf.c | |
f34b87e4 | 2511 | |
e2d1d6c0 | 2512 | BEFS FILE SYSTEM |
5624a8b0 | 2513 | M: Luis de Bethencourt <luisbg@kernel.org> |
db4ad036 LB |
2514 | M: Salah Triki <salah.triki@gmail.com> |
2515 | S: Maintained | |
5624a8b0 | 2516 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git |
679655da JP |
2517 | F: Documentation/filesystems/befs.txt |
2518 | F: fs/befs/ | |
e2d1d6c0 | 2519 | |
82abbea7 RD |
2520 | BFQ I/O SCHEDULER |
2521 | M: Paolo Valente <paolo.valente@linaro.org> | |
2522 | M: Jens Axboe <axboe@kernel.dk> | |
2523 | L: linux-block@vger.kernel.org | |
49e7d9df | 2524 | S: Maintained |
82abbea7 RD |
2525 | F: block/bfq-* |
2526 | F: Documentation/block/bfq-iosched.txt | |
564ee360 | 2527 | |
e2d1d6c0 | 2528 | BFS FILE SYSTEM |
cea58224 | 2529 | M: "Tigran A. Aivazian" <aivazian.tigran@gmail.com> |
e2d1d6c0 | 2530 | S: Maintained |
679655da JP |
2531 | F: Documentation/filesystems/bfs.txt |
2532 | F: fs/bfs/ | |
c117ab84 | 2533 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 2534 | |
1394f032 | 2535 | BLACKFIN ARCHITECTURE |
a4edbc10 | 2536 | M: Steven Miao <realmz6@gmail.com> |
b3fe92b0 | 2537 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1443176f | 2538 | T: git git://git.code.sf.net/p/adi-linux/code |
e3b2d3f3 BW |
2539 | W: http://blackfin.uclinux.org |
2540 | S: Supported | |
679655da | 2541 | F: arch/blackfin/ |
566da5b2 | 2542 | |
e190d6b1 | 2543 | BLACKFIN EMAC DRIVER |
b3fe92b0 | 2544 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e190d6b1 BW |
2545 | W: http://blackfin.uclinux.org |
2546 | S: Supported | |
7b35f033 | 2547 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 2548 | |
7683e9e5 LT |
2549 | BLACKFIN I2C TWI DRIVER |
2550 | M: Sonic Zhang <sonic.zhang@analog.com> | |
2551 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) | |
2552 | W: http://blackfin.uclinux.org/ | |
2553 | S: Supported | |
2554 | F: drivers/i2c/busses/i2c-bfin-twi.c | |
2555 | ||
2556 | BLACKFIN MEDIA DRIVER | |
2557 | M: Scott Jiang <scott.jiang.linux@gmail.com> | |
2558 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) | |
2559 | W: http://blackfin.uclinux.org/ | |
2560 | S: Supported | |
2561 | F: drivers/media/platform/blackfin/ | |
2562 | F: drivers/media/i2c/adv7183* | |
2563 | F: drivers/media/i2c/vs6624* | |
2564 | ||
566da5b2 | 2565 | BLACKFIN RTC DRIVER |
b3fe92b0 | 2566 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
566da5b2 MF |
2567 | W: http://blackfin.uclinux.org |
2568 | S: Supported | |
679655da | 2569 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 2570 | |
936ed49a | 2571 | BLACKFIN SDH DRIVER |
109ec8c3 | 2572 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2573 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
936ed49a MF |
2574 | W: http://blackfin.uclinux.org |
2575 | S: Supported | |
2576 | F: drivers/mmc/host/bfin_sdh.c | |
2577 | ||
1394f032 | 2578 | BLACKFIN SERIAL DRIVER |
8b58be88 | 2579 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 2580 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e3b2d3f3 BW |
2581 | W: http://blackfin.uclinux.org |
2582 | S: Supported | |
8460241e | 2583 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 2584 | |
1e6d320f | 2585 | BLACKFIN WATCHDOG DRIVER |
b3fe92b0 | 2586 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1e6d320f BW |
2587 | W: http://blackfin.uclinux.org |
2588 | S: Supported | |
679655da | 2589 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 2590 | |
b54cf35a JSM |
2591 | BLINKM RGB LED DRIVER |
2592 | M: Jan-Simon Moeller <jansimon.moeller@gmx.de> | |
2593 | S: Maintained | |
2594 | F: drivers/leds/leds-blinkm.c | |
2595 | ||
1da177e4 | 2596 | BLOCK LAYER |
8b58be88 | 2597 | M: Jens Axboe <axboe@kernel.dk> |
82c426e0 | 2598 | L: linux-block@vger.kernel.org |
08deed1e | 2599 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 2600 | S: Maintained |
679655da | 2601 | F: block/ |
ae11f7ef | 2602 | F: kernel/trace/blktrace.c |
88459642 | 2603 | F: lib/sbitmap.c |
1da177e4 | 2604 | |
2b54aaef | 2605 | BLOCK2MTD DRIVER |
8b58be88 | 2606 | M: Joern Engel <joern@lazybastard.org> |
2b54aaef JE |
2607 | L: linux-mtd@lists.infradead.org |
2608 | S: Maintained | |
679655da | 2609 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 2610 | |
63fbd24e | 2611 | BLUETOOTH DRIVERS |
8b58be88 | 2612 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 2613 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 2614 | M: Johan Hedberg <johan.hedberg@gmail.com> |
781c2844 | 2615 | L: linux-bluetooth@vger.kernel.org |
63fbd24e | 2616 | W: http://www.bluez.org/ |
22e7a424 MH |
2617 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
2618 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 2619 | S: Maintained |
679655da | 2620 | F: drivers/bluetooth/ |
1da177e4 | 2621 | |
63fbd24e | 2622 | BLUETOOTH SUBSYSTEM |
8b58be88 | 2623 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 2624 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 2625 | M: Johan Hedberg <johan.hedberg@gmail.com> |
63fbd24e MH |
2626 | L: linux-bluetooth@vger.kernel.org |
2627 | W: http://www.bluez.org/ | |
22e7a424 MH |
2628 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
2629 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 2630 | S: Maintained |
679655da JP |
2631 | F: net/bluetooth/ |
2632 | F: include/net/bluetooth/ | |
1da177e4 LT |
2633 | |
2634 | BONDING DRIVER | |
79b30750 | 2635 | M: Jay Vosburgh <j.vosburgh@gmail.com> |
898602a0 | 2636 | M: Veaceslav Falico <vfalico@gmail.com> |
da29838d | 2637 | M: Andy Gospodarek <andy@greyhouse.net> |
a6c36ee6 | 2638 | L: netdev@vger.kernel.org |
ce00f85c JC |
2639 | W: http://sourceforge.net/projects/bonding/ |
2640 | S: Supported | |
679655da | 2641 | F: drivers/net/bonding/ |
c117ab84 | 2642 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 2643 | |
b5f4df34 AS |
2644 | BPF (Safe dynamic programs and tools) |
2645 | M: Alexei Starovoitov <ast@kernel.org> | |
cdb90499 | 2646 | M: Daniel Borkmann <daniel@iogearbox.net> |
b5f4df34 AS |
2647 | L: netdev@vger.kernel.org |
2648 | L: linux-kernel@vger.kernel.org | |
2649 | S: Supported | |
cdb90499 DB |
2650 | F: arch/x86/net/bpf_jit* |
2651 | F: Documentation/networking/filter.txt | |
2652 | F: include/linux/bpf* | |
2653 | F: include/linux/filter.h | |
2654 | F: include/uapi/linux/bpf* | |
2655 | F: include/uapi/linux/filter.h | |
b5f4df34 | 2656 | F: kernel/bpf/ |
cdb90499 | 2657 | F: kernel/trace/bpf_trace.c |
5aa5bd14 | 2658 | F: lib/test_bpf.c |
cdb90499 DB |
2659 | F: net/bpf/ |
2660 | F: net/core/filter.c | |
2661 | F: net/sched/act_bpf.c | |
2662 | F: net/sched/cls_bpf.c | |
2663 | F: samples/bpf/ | |
2664 | F: tools/net/bpf* | |
2665 | F: tools/testing/selftests/bpf/ | |
b5f4df34 | 2666 | |
39105890 | 2667 | BROADCOM B44 10/100 ETHERNET DRIVER |
75c9510b | 2668 | M: Michael Chan <michael.chan@broadcom.com> |
39105890 GZ |
2669 | L: netdev@vger.kernel.org |
2670 | S: Supported | |
adfc5217 | 2671 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 2672 | |
967dd82f FF |
2673 | BROADCOM B53 ETHERNET SWITCH DRIVER |
2674 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2675 | L: netdev@vger.kernel.org | |
2676 | L: openwrt-devel@lists.openwrt.org (subscribers-only) | |
2677 | S: Supported | |
2678 | F: drivers/net/dsa/b53/* | |
2679 | F: include/linux/platform_data/b53.h | |
2680 | ||
90f4c594 | 2681 | BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE |
f18cf050 | 2682 | M: Florian Fainelli <f.fainelli@gmail.com> |
d3cc2e86 FF |
2683 | M: Ray Jui <rjui@broadcom.com> |
2684 | M: Scott Branden <sbranden@broadcom.com> | |
086f4704 | 2685 | M: bcm-kernel-feedback-list@broadcom.com |
90f4c594 | 2686 | T: git git://github.com/broadcom/mach-bcm |
af4b8e37 | 2687 | S: Maintained |
ccf62f5a JM |
2688 | N: bcm281* |
2689 | N: bcm113* | |
2690 | N: bcm216* | |
2691 | N: kona | |
af4b8e37 | 2692 | F: arch/arm/mach-bcm/ |
af4b8e37 | 2693 | |
9209bec4 | 2694 | BROADCOM BCM2835 ARM ARCHITECTURE |
10b9e887 | 2695 | M: Eric Anholt <eric@anholt.net> |
346ab44e | 2696 | M: Stefan Wahren <stefan.wahren@i2se.com> |
f680f25c | 2697 | L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers) |
82481129 | 2698 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
902dcd14 | 2699 | T: git git://github.com/anholt/linux |
f680f25c | 2700 | S: Maintained |
9209bec4 | 2701 | N: bcm2835 |
4a5a7a66 | 2702 | F: drivers/staging/vc04_services |
f680f25c | 2703 | |
5564f092 RM |
2704 | BROADCOM BCM47XX MIPS ARCHITECTURE |
2705 | M: Hauke Mehrtens <hauke@hauke-m.de> | |
2706 | M: Rafał Miłecki <zajec5@gmail.com> | |
2707 | L: linux-mips@linux-mips.org | |
2708 | S: Maintained | |
7ad2410c | 2709 | F: Documentation/devicetree/bindings/mips/brcm/ |
5564f092 RM |
2710 | F: arch/mips/bcm47xx/* |
2711 | F: arch/mips/include/asm/mach-bcm47xx/* | |
2712 | ||
9209bec4 | 2713 | BROADCOM BCM5301X ARM ARCHITECTURE |
5b293ebe | 2714 | M: Hauke Mehrtens <hauke@hauke-m.de> |
1a50cd8a | 2715 | M: Rafał Miłecki <zajec5@gmail.com> |
d722bc94 | 2716 | M: Jon Mason <jonmason@broadcom.com> |
1a50cd8a | 2717 | M: bcm-kernel-feedback-list@broadcom.com |
5b293ebe HM |
2718 | L: linux-arm-kernel@lists.infradead.org |
2719 | S: Maintained | |
2720 | F: arch/arm/mach-bcm/bcm_5301x.c | |
1a50cd8a | 2721 | F: arch/arm/boot/dts/bcm5301x*.dtsi |
5b293ebe | 2722 | F: arch/arm/boot/dts/bcm470* |
d722bc94 | 2723 | F: arch/arm/boot/dts/bcm953012* |
5b293ebe | 2724 | |
4ebd5047 RM |
2725 | BROADCOM BCM53573 ARM ARCHITECTURE |
2726 | M: Rafał Miłecki <rafal@milecki.pl> | |
2727 | L: linux-arm-kernel@lists.infradead.org | |
2728 | S: Maintained | |
2729 | F: arch/arm/boot/dts/bcm53573* | |
2730 | F: arch/arm/boot/dts/bcm47189* | |
2731 | ||
e076e962 FF |
2732 | BROADCOM BCM63XX ARM ARCHITECTURE |
2733 | M: Florian Fainelli <f.fainelli@gmail.com> | |
086f4704 | 2734 | M: bcm-kernel-feedback-list@broadcom.com |
20de823e | 2735 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
20de823e | 2736 | T: git git://github.com/broadcom/stblinux.git |
e076e962 | 2737 | S: Maintained |
d6f4e76e | 2738 | N: bcm63xx |
e076e962 | 2739 | |
7110e227 KC |
2740 | BROADCOM BCM63XX/BCM33XX UDC DRIVER |
2741 | M: Kevin Cernekee <cernekee@gmail.com> | |
2742 | L: linux-usb@vger.kernel.org | |
2743 | S: Maintained | |
2744 | F: drivers/usb/gadget/udc/bcm63xx_udc.* | |
2745 | ||
2df94fd6 | 2746 | BROADCOM BCM7XXX ARM ARCHITECTURE |
2df94fd6 | 2747 | M: Brian Norris <computersforpeace@gmail.com> |
3b4b6fe9 FF |
2748 | M: Gregory Fong <gregory.0xf0@gmail.com> |
2749 | M: Florian Fainelli <f.fainelli@gmail.com> | |
086f4704 | 2750 | M: bcm-kernel-feedback-list@broadcom.com |
2df94fd6 | 2751 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
eb6725d0 | 2752 | T: git git://github.com/broadcom/stblinux.git |
2df94fd6 BN |
2753 | S: Maintained |
2754 | F: arch/arm/mach-bcm/*brcmstb* | |
2755 | F: arch/arm/boot/dts/bcm7*.dts* | |
e36661e4 | 2756 | F: drivers/bus/brcmstb_gisb.c |
5009a289 | 2757 | N: brcmstb |
2df94fd6 | 2758 | |
7683e9e5 LT |
2759 | BROADCOM BMIPS CPUFREQ DRIVER |
2760 | M: Markus Mayer <mmayer@broadcom.com> | |
2761 | M: bcm-kernel-feedback-list@broadcom.com | |
2762 | L: linux-pm@vger.kernel.org | |
2763 | S: Maintained | |
2764 | F: drivers/cpufreq/bmips-cpufreq.c | |
2765 | ||
70371cef KC |
2766 | BROADCOM BMIPS MIPS ARCHITECTURE |
2767 | M: Kevin Cernekee <cernekee@gmail.com> | |
2768 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2769 | L: linux-mips@linux-mips.org | |
eb6725d0 | 2770 | T: git git://github.com/broadcom/stblinux.git |
70371cef KC |
2771 | S: Maintained |
2772 | F: arch/mips/bmips/* | |
2773 | F: arch/mips/include/asm/mach-bmips/* | |
2774 | F: arch/mips/kernel/*bmips* | |
338808de | 2775 | F: arch/mips/boot/dts/brcm/bcm*.dts* |
c7c42ec2 | 2776 | F: drivers/irqchip/irq-bcm63* |
70371cef KC |
2777 | F: drivers/irqchip/irq-bcm7* |
2778 | F: drivers/irqchip/irq-brcmstb* | |
3271e610 | 2779 | F: include/linux/bcm963xx_nvram.h |
8fce60b8 | 2780 | F: include/linux/bcm963xx_tag.h |
70371cef | 2781 | |
7683e9e5 LT |
2782 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
2783 | M: Rasesh Mody <rasesh.mody@cavium.com> | |
2784 | M: Harish Patil <harish.patil@cavium.com> | |
2785 | M: Dept-GELinuxNICDev@cavium.com | |
2786 | L: netdev@vger.kernel.org | |
2787 | S: Supported | |
2788 | F: drivers/net/ethernet/broadcom/bnx2.* | |
2789 | F: drivers/net/ethernet/broadcom/bnx2_* | |
20bb5505 | 2790 | |
7683e9e5 LT |
2791 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
2792 | M: QLogic-Storage-Upstream@qlogic.com | |
2793 | L: linux-scsi@vger.kernel.org | |
2794 | S: Supported | |
2795 | F: drivers/scsi/bnx2fc/ | |
2796 | ||
2797 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER | |
2798 | M: QLogic-Storage-Upstream@qlogic.com | |
2799 | L: linux-scsi@vger.kernel.org | |
2800 | S: Supported | |
2801 | F: drivers/scsi/bnx2i/ | |
2802 | ||
2803 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER | |
2804 | M: Yuval Mintz <Yuval.Mintz@cavium.com> | |
2805 | M: Ariel Elior <ariel.elior@cavium.com> | |
2806 | M: everest-linux-l2@cavium.com | |
948c51e6 MC |
2807 | L: netdev@vger.kernel.org |
2808 | S: Supported | |
7683e9e5 LT |
2809 | F: drivers/net/ethernet/broadcom/bnx2x/ |
2810 | ||
2811 | BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER | |
2812 | M: Michael Chan <michael.chan@broadcom.com> | |
2813 | L: netdev@vger.kernel.org | |
2814 | S: Supported | |
2815 | F: drivers/net/ethernet/broadcom/bnxt/ | |
948c51e6 | 2816 | |
a9533e7e | 2817 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
2a734451 AS |
2818 | M: Arend van Spriel <arend.vanspriel@broadcom.com> |
2819 | M: Franky Lin <franky.lin@broadcom.com> | |
2820 | M: Hante Meuleman <hante.meuleman@broadcom.com> | |
21394d57 AVS |
2821 | M: Chi-Hsien Lin <chi-hsien.lin@cypress.com> |
2822 | M: Wright Feng <wright.feng@cypress.com> | |
a9533e7e | 2823 | L: linux-wireless@vger.kernel.org |
2a734451 | 2824 | L: brcm80211-dev-list.pdl@broadcom.com |
21394d57 | 2825 | L: brcm80211-dev-list@cypress.com |
a9533e7e | 2826 | S: Supported |
05491d2c | 2827 | F: drivers/net/wireless/broadcom/brcm80211/ |
a9533e7e | 2828 | |
7683e9e5 LT |
2829 | BROADCOM BRCMSTB GPIO DRIVER |
2830 | M: Gregory Fong <gregory.0xf0@gmail.com> | |
2831 | L: bcm-kernel-feedback-list@broadcom.com | |
9958d6f9 | 2832 | S: Supported |
7683e9e5 LT |
2833 | F: drivers/gpio/gpio-brcmstb.c |
2834 | F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt | |
9958d6f9 | 2835 | |
7683e9e5 LT |
2836 | BROADCOM GENET ETHERNET DRIVER |
2837 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2838 | L: netdev@vger.kernel.org | |
6a6b5ad0 | 2839 | S: Supported |
7683e9e5 | 2840 | F: drivers/net/ethernet/broadcom/genet/ |
6a6b5ad0 | 2841 | |
63f37ddf | 2842 | BROADCOM IPROC ARM ARCHITECTURE |
36c0237f SB |
2843 | M: Ray Jui <rjui@broadcom.com> |
2844 | M: Scott Branden <sbranden@broadcom.com> | |
63f37ddf | 2845 | M: Jon Mason <jonmason@broadcom.com> |
086f4704 | 2846 | M: bcm-kernel-feedback-list@broadcom.com |
36c0237f | 2847 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
eb6725d0 | 2848 | T: git git://github.com/broadcom/cygnus-linux.git |
36c0237f SB |
2849 | S: Maintained |
2850 | N: iproc | |
2851 | N: cygnus | |
5c161242 | 2852 | N: bcm[-_]nsp |
36c0237f SB |
2853 | N: bcm9113* |
2854 | N: bcm9583* | |
63f37ddf JM |
2855 | N: bcm9585* |
2856 | N: bcm9586* | |
2857 | N: bcm988312 | |
36c0237f | 2858 | N: bcm113* |
63f37ddf JM |
2859 | N: bcm583* |
2860 | N: bcm585* | |
2861 | N: bcm586* | |
2862 | N: bcm88312 | |
d76e21b8 | 2863 | F: arch/arm64/boot/dts/broadcom/ns2* |
5c161242 JM |
2864 | F: drivers/clk/bcm/clk-ns* |
2865 | F: drivers/pinctrl/bcm/pinctrl-ns* | |
36c0237f | 2866 | |
7b7f588b | 2867 | BROADCOM KONA GPIO DRIVER |
5e163903 | 2868 | M: Ray Jui <rjui@broadcom.com> |
7b7f588b MM |
2869 | L: bcm-kernel-feedback-list@broadcom.com |
2870 | S: Supported | |
2871 | F: drivers/gpio/gpio-bcm-kona.c | |
1db12cde | 2872 | F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt |
7b7f588b | 2873 | |
7683e9e5 LT |
2874 | BROADCOM NETXTREME-E ROCE DRIVER |
2875 | M: Selvin Xavier <selvin.xavier@broadcom.com> | |
2876 | M: Devesh Sharma <devesh.sharma@broadcom.com> | |
2877 | M: Somnath Kotur <somnath.kotur@broadcom.com> | |
2878 | M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com> | |
2879 | L: linux-rdma@vger.kernel.org | |
2880 | W: http://www.broadcom.com | |
2881 | S: Supported | |
2882 | F: drivers/infiniband/hw/bnxt_re/ | |
2883 | F: include/uapi/rdma/bnxt_re-abi.h | |
2884 | ||
f6e734a8 RM |
2885 | BROADCOM NVRAM DRIVER |
2886 | M: Rafał Miłecki <zajec5@gmail.com> | |
2887 | L: linux-mips@linux-mips.org | |
2888 | S: Maintained | |
2889 | F: drivers/firmware/broadcom/* | |
2890 | ||
7683e9e5 LT |
2891 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
2892 | M: Rafał Miłecki <zajec5@gmail.com> | |
2893 | L: linux-wireless@vger.kernel.org | |
02787daa | 2894 | S: Maintained |
7683e9e5 LT |
2895 | F: drivers/bcma/ |
2896 | F: include/linux/bcma/ | |
02787daa | 2897 | |
bb446b57 MM |
2898 | BROADCOM STB AVS CPUFREQ DRIVER |
2899 | M: Markus Mayer <mmayer@broadcom.com> | |
2900 | M: bcm-kernel-feedback-list@broadcom.com | |
2901 | L: linux-pm@vger.kernel.org | |
2902 | S: Maintained | |
2903 | F: Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt | |
de322e08 | 2904 | F: drivers/cpufreq/brcmstb* |
bb446b57 | 2905 | |
7683e9e5 LT |
2906 | BROADCOM STB NAND FLASH DRIVER |
2907 | M: Brian Norris <computersforpeace@gmail.com> | |
2908 | M: Kamal Dasu <kdasu.kdev@gmail.com> | |
2909 | L: linux-mtd@lists.infradead.org | |
2910 | L: bcm-kernel-feedback-list@broadcom.com | |
c9678d86 | 2911 | S: Maintained |
7683e9e5 | 2912 | F: drivers/mtd/nand/brcmnand/ |
c9678d86 | 2913 | |
b8302205 FF |
2914 | BROADCOM SYSTEMPORT ETHERNET DRIVER |
2915 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2916 | L: netdev@vger.kernel.org | |
2917 | S: Supported | |
2918 | F: drivers/net/ethernet/broadcom/bcmsysport.* | |
2919 | ||
7683e9e5 LT |
2920 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
2921 | M: Siva Reddy Kallam <siva.kallam@broadcom.com> | |
2922 | M: Prashant Sreedharan <prashant@broadcom.com> | |
2923 | M: Michael Chan <mchan@broadcom.com> | |
2924 | L: netdev@vger.kernel.org | |
592e8b32 | 2925 | S: Supported |
7683e9e5 | 2926 | F: drivers/net/ethernet/broadcom/tg3.* |
592e8b32 | 2927 | |
7725ccfd | 2928 | BROCADE BFA FC SCSI DRIVER |
aa803370 AG |
2929 | M: Anil Gurumurthy <anil.gurumurthy@qlogic.com> |
2930 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> | |
455518e7 JP |
2931 | L: linux-scsi@vger.kernel.org |
2932 | S: Supported | |
2933 | F: drivers/scsi/bfa/ | |
7725ccfd | 2934 | |
8b230ed8 | 2935 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
67f0160f MY |
2936 | M: Rasesh Mody <rasesh.mody@cavium.com> |
2937 | M: Sudarsana Kalluru <sudarsana.kalluru@cavium.com> | |
2938 | M: Dept-GELinuxNICDev@cavium.com | |
8b230ed8 RM |
2939 | L: netdev@vger.kernel.org |
2940 | S: Supported | |
f844a0ea | 2941 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 2942 | |
5cdf7f76 | 2943 | BSG (block layer generic sg v4 driver) |
8b58be88 | 2944 | M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> |
5cdf7f76 JA |
2945 | L: linux-scsi@vger.kernel.org |
2946 | S: Supported | |
679655da JP |
2947 | F: block/bsg.c |
2948 | F: include/linux/bsg.h | |
c117ab84 | 2949 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 2950 | |
af39917d CL |
2951 | BT87X AUDIO DRIVER |
2952 | M: Clemens Ladisch <clemens@ladisch.de> | |
2953 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2954 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2955 | S: Maintained | |
2956 | F: Documentation/sound/alsa/Bt87x.txt | |
2957 | F: sound/pci/bt87x.c | |
2958 | ||
ff1d5c2f | 2959 | BT8XXGPIO DRIVER |
eb032b98 | 2960 | M: Michael Buesch <m@bues.ch> |
ff1d5c2f MB |
2961 | W: http://bu3sch.de/btgpio.php |
2962 | S: Maintained | |
72dbb705 | 2963 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 2964 | |
eb1eb04f | 2965 | BTRFS FILE SYSTEM |
c0778e25 CM |
2966 | M: Chris Mason <clm@fb.com> |
2967 | M: Josef Bacik <jbacik@fb.com> | |
d8130624 | 2968 | M: David Sterba <dsterba@suse.com> |
eb1eb04f JP |
2969 | L: linux-btrfs@vger.kernel.org |
2970 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 2971 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 2972 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 2973 | S: Maintained |
679655da JP |
2974 | F: Documentation/filesystems/btrfs.txt |
2975 | F: fs/btrfs/ | |
aeea4c10 DL |
2976 | F: include/linux/btrfs* |
2977 | F: include/uapi/linux/btrfs* | |
eb1eb04f | 2978 | |
1da177e4 | 2979 | BTTV VIDEO4LINUX DRIVER |
5dc8a864 MCC |
2980 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
2981 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
661263b5 | 2982 | L: linux-media@vger.kernel.org |
a825eaec | 2983 | W: https://linuxtv.org |
275ffde4 | 2984 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 2985 | S: Odd fixes |
618cd932 | 2986 | F: Documentation/media/v4l-drivers/bttv* |
90d72ac6 | 2987 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 2988 | |
82abbea7 RD |
2989 | BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS |
2990 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
2991 | L: linux-pm@vger.kernel.org | |
2992 | L: linux-samsung-soc@vger.kernel.org | |
2993 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git | |
2994 | S: Maintained | |
2995 | F: drivers/devfreq/exynos-bus.c | |
2996 | F: Documentation/devicetree/bindings/devfreq/exynos-bus.txt | |
2997 | ||
1f34923c KA |
2998 | BUSLOGIC SCSI DRIVER |
2999 | M: Khalid Aziz <khalid@gonehiking.org> | |
3000 | L: linux-scsi@vger.kernel.org | |
3001 | S: Maintained | |
3002 | F: drivers/scsi/BusLogic.* | |
3003 | F: drivers/scsi/FlashPoint.* | |
3004 | ||
af39917d CL |
3005 | C-MEDIA CMI8788 DRIVER |
3006 | M: Clemens Ladisch <clemens@ladisch.de> | |
3007 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
3008 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3009 | S: Maintained | |
3010 | F: sound/pci/oxygen/ | |
3011 | ||
2141355f MS |
3012 | C6X ARCHITECTURE |
3013 | M: Mark Salter <msalter@redhat.com> | |
91ebcd1b | 3014 | M: Aurelien Jacquiot <jacquiot.aurelien@gmail.com> |
2141355f MS |
3015 | L: linux-c6x-dev@linux-c6x.org |
3016 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
3017 | S: Maintained | |
3018 | F: arch/c6x/ | |
3019 | ||
8b1cfcbd HM |
3020 | CA8210 IEEE-802.15.4 RADIO DRIVER |
3021 | M: Harry Morris <h.morris@cascoda.com> | |
3022 | M: linuxdev@cascoda.com | |
3023 | L: linux-wpan@vger.kernel.org | |
3024 | W: https://github.com/Cascoda/ca8210-linux.git | |
3025 | S: Maintained | |
3026 | F: drivers/net/ieee802154/ca8210.c | |
3027 | F: Documentation/devicetree/bindings/net/ieee802154/ca8210.txt | |
3028 | ||
a5432f5a | 3029 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 3030 | M: David Howells <dhowells@redhat.com> |
e62d6e24 | 3031 | L: linux-cachefs@redhat.com (moderated for non-subscribers) |
a5432f5a DH |
3032 | S: Supported |
3033 | F: Documentation/filesystems/caching/cachefiles.txt | |
3034 | F: fs/cachefiles/ | |
3035 | ||
c815ca39 HV |
3036 | CADET FM/AM RADIO RECEIVER DRIVER |
3037 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3038 | L: linux-media@vger.kernel.org | |
3039 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 3040 | W: https://linuxtv.org |
c815ca39 HV |
3041 | S: Maintained |
3042 | F: drivers/media/radio/radio-cadet* | |
3043 | ||
77d5140f | 3044 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 3045 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 3046 | L: linux-media@vger.kernel.org |
275ffde4 | 3047 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 3048 | S: Maintained |
618cd932 | 3049 | F: Documentation/media/v4l-drivers/cafe_ccic* |
90d72ac6 | 3050 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 3051 | |
201b6bab | 3052 | CAIF NETWORK LAYER |
5c574f50 | 3053 | M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no> |
201b6bab JP |
3054 | L: netdev@vger.kernel.org |
3055 | S: Supported | |
3056 | F: Documentation/networking/caif/ | |
3057 | F: drivers/net/caif/ | |
c117ab84 | 3058 | F: include/uapi/linux/caif/ |
201b6bab JP |
3059 | F: include/net/caif/ |
3060 | F: net/caif/ | |
3061 | ||
77dac90f | 3062 | CALGARY x86-64 IOMMU |
a6921c29 JM |
3063 | M: Muli Ben-Yehuda <mulix@mulix.org> |
3064 | M: Jon Mason <jdmason@kudzu.us> | |
3065 | L: iommu@lists.linux-foundation.org | |
77dac90f | 3066 | S: Maintained |
679655da JP |
3067 | F: arch/x86/kernel/pci-calgary_64.c |
3068 | F: arch/x86/kernel/tce_64.c | |
3069 | F: arch/x86/include/asm/calgary.h | |
3070 | F: arch/x86/include/asm/tce.h | |
77dac90f | 3071 | |
7683e9e5 LT |
3072 | CAN NETWORK DRIVERS |
3073 | M: Wolfgang Grandegger <wg@grandegger.com> | |
3074 | M: Marc Kleine-Budde <mkl@pengutronix.de> | |
3075 | L: linux-can@vger.kernel.org | |
3076 | W: https://github.com/linux-can | |
3077 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git | |
3078 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git | |
3079 | S: Maintained | |
3080 | F: Documentation/devicetree/bindings/net/can/ | |
3081 | F: drivers/net/can/ | |
3082 | F: include/linux/can/dev.h | |
3083 | F: include/linux/can/platform/ | |
3084 | F: include/uapi/linux/can/error.h | |
3085 | F: include/uapi/linux/can/netlink.h | |
3086 | ||
e2d1d6c0 | 3087 | CAN NETWORK LAYER |
8d15d386 | 3088 | M: Oliver Hartkopp <socketcan@hartkopp.net> |
f7214cf2 | 3089 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 3090 | L: linux-can@vger.kernel.org |
84b0d715 | 3091 | W: https://github.com/linux-can |
870482a4 MKB |
3092 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
3093 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git | |
e2d1d6c0 | 3094 | S: Maintained |
f35f6c8f | 3095 | F: Documentation/networking/can.txt |
8d15d386 | 3096 | F: net/can/ |
8d15d386 | 3097 | F: include/linux/can/core.h |
c117ab84 CEB |
3098 | F: include/uapi/linux/can.h |
3099 | F: include/uapi/linux/can/bcm.h | |
3100 | F: include/uapi/linux/can/raw.h | |
3101 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 3102 | |
95d16c72 | 3103 | CAPABILITIES |
39baa7e6 | 3104 | M: Serge Hallyn <serge@hallyn.com> |
95d16c72 | 3105 | L: linux-security-module@vger.kernel.org |
6305902c | 3106 | S: Supported |
95d16c72 | 3107 | F: include/linux/capability.h |
c117ab84 | 3108 | F: include/uapi/linux/capability.h |
6305902c | 3109 | F: security/commoncap.c |
38a94118 | 3110 | F: kernel/capability.c |
95d16c72 | 3111 | |
b84894c7 KT |
3112 | CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER |
3113 | M: Kevin Tsai <ktsai@capellamicro.com> | |
3114 | S: Maintained | |
3115 | F: drivers/iio/light/cm* | |
b84894c7 | 3116 | |
82abbea7 RD |
3117 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
3118 | M: Christian Lamparter <chunkeey@googlemail.com> | |
3119 | L: linux-wireless@vger.kernel.org | |
3120 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
3121 | S: Maintained | |
3122 | F: drivers/net/wireless/ath/carl9170/ | |
3123 | ||
f9484852 JG |
3124 | CAVIUM I2C DRIVER |
3125 | M: Jan Glauber <jglauber@cavium.com> | |
3126 | M: David Daney <david.daney@cavium.com> | |
3127 | W: http://www.cavium.com | |
3128 | S: Supported | |
3129 | F: drivers/i2c/busses/i2c-octeon* | |
3130 | F: drivers/i2c/busses/i2c-thunderx* | |
3131 | ||
7683e9e5 LT |
3132 | CAVIUM LIQUIDIO NETWORK DRIVER |
3133 | M: Derek Chickles <derek.chickles@caviumnetworks.com> | |
3134 | M: Satanand Burla <satananda.burla@caviumnetworks.com> | |
3135 | M: Felix Manlunas <felix.manlunas@caviumnetworks.com> | |
3136 | M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com> | |
3137 | L: netdev@vger.kernel.org | |
3138 | W: http://www.cavium.com | |
3139 | S: Supported | |
3140 | F: drivers/net/ethernet/cavium/liquidio/ | |
3141 | ||
25fc8465 JG |
3142 | CAVIUM MMC DRIVER |
3143 | M: Jan Glauber <jglauber@cavium.com> | |
3144 | M: David Daney <david.daney@cavium.com> | |
3145 | M: Steven J. Hill <Steven.Hill@cavium.com> | |
3146 | W: http://www.cavium.com | |
3147 | S: Supported | |
3148 | F: drivers/mmc/host/cavium* | |
3149 | ||
62ad8b5c GC |
3150 | CAVIUM OCTEON-TX CRYPTO DRIVER |
3151 | M: George Cherian <george.cherian@cavium.com> | |
3152 | L: linux-crypto@vger.kernel.org | |
3153 | W: http://www.cavium.com | |
3154 | S: Supported | |
3155 | F: drivers/crypto/cavium/cpt/ | |
3156 | ||
7683e9e5 LT |
3157 | CAVIUM THUNDERX2 ARM64 SOC |
3158 | M: Jayachandran C <jnair@caviumnetworks.com> | |
3159 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
3160 | S: Maintained | |
3161 | F: arch/arm64/boot/dts/cavium/thunder2-99xx* | |
3162 | F: Documentation/devicetree/bindings/arm/cavium-thunder2.txt | |
3163 | ||
ef0bbac3 VB |
3164 | CC2520 IEEE-802.15.4 RADIO DRIVER |
3165 | M: Varka Bhadram <varkabhadram@gmail.com> | |
3166 | L: linux-wpan@vger.kernel.org | |
3167 | S: Maintained | |
3168 | F: drivers/net/ieee802154/cc2520.c | |
3169 | F: include/linux/spi/cc2520.h | |
3170 | F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt | |
3171 | ||
84817ef0 GBY |
3172 | CCREE ARM TRUSTZONE CRYPTOCELL 700 REE DRIVER |
3173 | M: Gilad Ben-Yossef <gilad@benyossef.com> | |
3174 | L: linux-crypto@vger.kernel.org | |
3175 | L: driverdev-devel@linuxdriverproject.org | |
3176 | S: Supported | |
3177 | F: drivers/staging/ccree/ | |
3178 | W: https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family | |
3179 | ||
6917a7b7 | 3180 | CEC FRAMEWORK |
ca684386 HV |
3181 | M: Hans Verkuil <hans.verkuil@cisco.com> |
3182 | L: linux-media@vger.kernel.org | |
3183 | T: git git://linuxtv.org/media_tree.git | |
3184 | W: http://linuxtv.org | |
3185 | S: Supported | |
104eda6d | 3186 | F: Documentation/media/kapi/cec-core.rst |
618cd932 | 3187 | F: Documentation/media/uapi/cec |
104eda6d | 3188 | F: drivers/media/cec/ |
ca684386 HV |
3189 | F: drivers/media/rc/keymaps/rc-cec.c |
3190 | F: include/media/cec.h | |
6917a7b7 | 3191 | F: include/media/cec-notifier.h |
104eda6d HV |
3192 | F: include/uapi/linux/cec.h |
3193 | F: include/uapi/linux/cec-funcs.h | |
af15e32f | 3194 | F: Documentation/devicetree/bindings/media/cec.txt |
ca684386 | 3195 | |
b8154542 | 3196 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 3197 | M: Arnd Bergmann <arnd@arndb.de> |
a4724ed6 | 3198 | L: linuxppc-dev@lists.ozlabs.org |
b8154542 AB |
3199 | W: http://www.ibm.com/developerworks/power/cell/ |
3200 | S: Supported | |
679655da | 3201 | F: arch/powerpc/include/asm/cell*.h |
679655da | 3202 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 3203 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
3204 | F: arch/powerpc/oprofile/*cell* |
3205 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 3206 | |
398ecff5 SW |
3207 | CEPH COMMON CODE (LIBCEPH) |
3208 | M: Ilya Dryomov <idryomov@gmail.com> | |
e43cdb56 | 3209 | M: "Yan, Zheng" <zyan@redhat.com> |
0f5417ce | 3210 | M: Sage Weil <sage@redhat.com> |
82593f87 | 3211 | L: ceph-devel@vger.kernel.org |
09d90327 | 3212 | W: http://ceph.com/ |
fb99f881 | 3213 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
6e67b7ae | 3214 | T: git git://github.com/ceph/ceph-client.git |
9030aaf9 | 3215 | S: Supported |
14430813 JP |
3216 | F: net/ceph/ |
3217 | F: include/linux/ceph/ | |
3218 | F: include/linux/crush/ | |
9030aaf9 | 3219 | |
398ecff5 SW |
3220 | CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH) |
3221 | M: "Yan, Zheng" <zyan@redhat.com> | |
3222 | M: Sage Weil <sage@redhat.com> | |
3223 | M: Ilya Dryomov <idryomov@gmail.com> | |
3224 | L: ceph-devel@vger.kernel.org | |
3225 | W: http://ceph.com/ | |
3226 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
6e67b7ae | 3227 | T: git git://github.com/ceph/ceph-client.git |
398ecff5 SW |
3228 | S: Supported |
3229 | F: Documentation/filesystems/ceph.txt | |
3230 | F: fs/ceph/ | |
3231 | ||
cfc411e7 DH |
3232 | CERTIFICATE HANDLING: |
3233 | M: David Howells <dhowells@redhat.com> | |
3234 | M: David Woodhouse <dwmw2@infradead.org> | |
d8d80386 | 3235 | L: keyrings@vger.kernel.org |
cfc411e7 DH |
3236 | S: Maintained |
3237 | F: Documentation/module-signing.txt | |
3238 | F: certs/ | |
d8d80386 | 3239 | F: scripts/sign-file.c |
cfc411e7 DH |
3240 | F: scripts/extract-cert.c |
3241 | ||
18332a80 | 3242 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 3243 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 3244 | S: Orphan |
679655da JP |
3245 | F: Documentation/usb/WUSB-Design-overview.txt |
3246 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
3247 | F: drivers/usb/host/hwa-hc.c |
3248 | F: drivers/usb/host/whci/ | |
679655da JP |
3249 | F: drivers/usb/wusbcore/ |
3250 | F: include/linux/usb/wusb* | |
18332a80 | 3251 | |
70e84049 | 3252 | CFAG12864B LCD DRIVER |
8b58be88 | 3253 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
3254 | W: http://miguelojeda.es/auxdisplay.htm |
3255 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 3256 | S: Maintained |
679655da JP |
3257 | F: drivers/auxdisplay/cfag12864b.c |
3258 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
3259 | |
3260 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 3261 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
3262 | W: http://miguelojeda.es/auxdisplay.htm |
3263 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 3264 | S: Maintained |
679655da JP |
3265 | F: drivers/auxdisplay/cfag12864bfb.c |
3266 | F: include/linux/cfag12864b.h | |
70e84049 | 3267 | |
704232c2 | 3268 | CFG80211 and NL80211 |
8b58be88 | 3269 | M: Johannes Berg <johannes@sipsolutions.net> |
704232c2 | 3270 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
3271 | W: http://wireless.kernel.org/ |
3272 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
3273 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 3274 | S: Maintained |
c117ab84 | 3275 | F: include/uapi/linux/nl80211.h |
679655da JP |
3276 | F: include/net/cfg80211.h |
3277 | F: net/wireless/* | |
3278 | X: net/wireless/wext* | |
704232c2 | 3279 | |
46e64261 GKH |
3280 | CHAR and MISC DRIVERS |
3281 | M: Arnd Bergmann <arnd@arndb.de> | |
879a5a00 | 3282 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
46e64261 | 3283 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 3284 | S: Supported |
46e64261 GKH |
3285 | F: drivers/char/* |
3286 | F: drivers/misc/* | |
471322a8 | 3287 | F: include/linux/miscdevice.h |
46e64261 | 3288 | |
0a920b5b | 3289 | CHECKPATCH |
8b58be88 | 3290 | M: Andy Whitcroft <apw@canonical.com> |
10d83f07 JP |
3291 | M: Joe Perches <joe@perches.com> |
3292 | S: Maintained | |
679655da | 3293 | F: scripts/checkpatch.pl |
0a920b5b | 3294 | |
f8407f26 HW |
3295 | CHINESE DOCUMENTATION |
3296 | M: Harry Wei <harryxiyou@gmail.com> | |
9740153c | 3297 | L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only) |
f8407f26 HW |
3298 | L: linux-kernel@zh-kernel.org (moderated for non-subscribers) |
3299 | S: Maintained | |
f5ff9b63 | 3300 | F: Documentation/translations/zh_CN/ |
f8407f26 | 3301 | |
2721ea2c | 3302 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
60d77b3d | 3303 | M: Peter Chen <Peter.Chen@nxp.com> |
8373856d | 3304 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
2721ea2c AS |
3305 | L: linux-usb@vger.kernel.org |
3306 | S: Maintained | |
3307 | F: drivers/usb/chipidea/ | |
3308 | ||
a93ad65d HG |
3309 | CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER |
3310 | M: Hans de Goede <hdegoede@redhat.com> | |
3311 | L: linux-input@vger.kernel.org | |
3312 | S: Maintained | |
3313 | F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt | |
3314 | F: drivers/input/touchscreen/chipone_icn8318.c | |
3315 | ||
ab043105 | 3316 | CHROME HARDWARE PLATFORM SUPPORT |
3c778a7f | 3317 | M: Benson Leung <bleung@chromium.org> |
ab043105 OJ |
3318 | M: Olof Johansson <olof@lixom.net> |
3319 | S: Maintained | |
3c778a7f | 3320 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bleung/chrome-platform.git |
ab043105 OJ |
3321 | F: drivers/platform/chrome/ |
3322 | ||
3d4cfdc9 MB |
3323 | CIRRUS LOGIC AUDIO CODEC DRIVERS |
3324 | M: Brian Austin <brian.austin@cirrus.com> | |
3325 | M: Paul Handrigan <Paul.Handrigan@cirrus.com> | |
3326 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
3327 | S: Maintained | |
3328 | F: sound/soc/codecs/cs* | |
3329 | ||
7683e9e5 LT |
3330 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
3331 | M: Hartley Sweeten <hsweeten@visionengravers.com> | |
3332 | L: netdev@vger.kernel.org | |
3333 | S: Maintained | |
3334 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c | |
3335 | ||
82abbea7 RD |
3336 | CISCO FCOE HBA DRIVER |
3337 | M: Satish Kharat <satishkh@cisco.com> | |
3338 | M: Sesidhar Baddela <sebaddel@cisco.com> | |
3339 | M: Karan Tilak Kumar <kartilak@cisco.com> | |
3340 | L: linux-scsi@vger.kernel.org | |
3341 | S: Supported | |
3342 | F: drivers/scsi/fnic/ | |
3343 | ||
3344 | CISCO SCSI HBA DRIVER | |
3345 | M: Karan Tilak Kumar <kartilak@cisco.com> | |
3346 | M: Sesidhar Baddela <sebaddel@cisco.com> | |
3347 | L: linux-scsi@vger.kernel.org | |
3348 | S: Supported | |
3349 | F: drivers/scsi/snic/ | |
3350 | ||
3351 | CISCO VIC ETHERNET NIC DRIVER | |
3352 | M: Christian Benvenuti <benve@cisco.com> | |
3353 | M: Govindarajulu Varadarajan <_govind@gmx.com> | |
3354 | M: Neel Patel <neepatel@cisco.com> | |
3355 | S: Supported | |
3356 | F: drivers/net/ethernet/cisco/enic/ | |
3357 | ||
3358 | CISCO VIC LOW LATENCY NIC DRIVER | |
3359 | M: Christian Benvenuti <benve@cisco.com> | |
3360 | M: Dave Goodell <dgoodell@cisco.com> | |
3361 | S: Supported | |
3362 | F: drivers/infiniband/hw/usnic/ | |
3363 | ||
94574d9a KRW |
3364 | CLEANCACHE API |
3365 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
3366 | L: linux-kernel@vger.kernel.org | |
3367 | S: Maintained | |
3368 | F: mm/cleancache.c | |
3369 | F: include/linux/cleancache.h | |
3370 | ||
d4275354 | 3371 | CLK API |
54176cc6 | 3372 | M: Russell King <linux@armlinux.org.uk> |
aa571b14 | 3373 | L: linux-clk@vger.kernel.org |
37417046 | 3374 | S: Maintained |
d4275354 RK |
3375 | F: include/linux/clk.h |
3376 | ||
9222d247 JS |
3377 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
3378 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3379 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 3380 | L: linux-kernel@vger.kernel.org |
9222d247 JS |
3381 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
3382 | S: Supported | |
3383 | F: drivers/clocksource | |
3384 | ||
529aa8cb TLSC |
3385 | CMPC ACPI DRIVER |
3386 | M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> | |
3387 | M: Daniel Oliveira Nascimento <don@syst.com.br> | |
d0944853 | 3388 | L: platform-driver-x86@vger.kernel.org |
529aa8cb TLSC |
3389 | S: Supported |
3390 | F: drivers/platform/x86/classmate-laptop.c | |
3391 | ||
85756a06 HV |
3392 | COBALT MEDIA DRIVER |
3393 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
3394 | L: linux-media@vger.kernel.org | |
3395 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 3396 | W: https://linuxtv.org |
85756a06 HV |
3397 | S: Supported |
3398 | F: drivers/media/pci/cobalt/ | |
3399 | ||
74425eee | 3400 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 3401 | M: Julia Lawall <Julia.Lawall@lip6.fr> |
74425eee | 3402 | M: Gilles Muller <Gilles.Muller@lip6.fr> |
26de9c26 | 3403 | M: Nicolas Palix <nicolas.palix@imag.fr> |
d8130624 | 3404 | M: Michal Marek <mmarek@suse.com> |
26de9c26 | 3405 | L: cocci@systeme.lip6.fr (moderated for non-subscribers) |
c00b5110 | 3406 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
74425eee NP |
3407 | W: http://coccinelle.lip6.fr/ |
3408 | S: Supported | |
4b9033a3 | 3409 | F: Documentation/dev-tools/coccinelle.rst |
74425eee NP |
3410 | F: scripts/coccinelle/ |
3411 | F: scripts/coccicheck | |
3412 | ||
1da177e4 | 3413 | CODA FILE SYSTEM |
8b58be88 | 3414 | M: Jan Harkes <jaharkes@cs.cmu.edu> |
1da177e4 LT |
3415 | M: coda@cs.cmu.edu |
3416 | L: codalist@coda.cs.cmu.edu | |
3417 | W: http://www.coda.cs.cmu.edu/ | |
3418 | S: Maintained | |
679655da JP |
3419 | F: Documentation/filesystems/coda.txt |
3420 | F: fs/coda/ | |
3421 | F: include/linux/coda*.h | |
c117ab84 | 3422 | F: include/uapi/linux/coda*.h |
1da177e4 | 3423 | |
0b14261e PZ |
3424 | CODA V4L2 MEM2MEM DRIVER |
3425 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
3426 | L: linux-media@vger.kernel.org | |
3427 | S: Maintained | |
3428 | F: Documentation/devicetree/bindings/media/coda.txt | |
3429 | F: drivers/media/platform/coda/ | |
3430 | ||
7704addb | 3431 | COMMON CLK FRAMEWORK |
a85fa007 | 3432 | M: Michael Turquette <mturquette@baylibre.com> |
f956165f | 3433 | M: Stephen Boyd <sboyd@codeaurora.org> |
aa571b14 | 3434 | L: linux-clk@vger.kernel.org |
22d61acf | 3435 | Q: http://patchwork.kernel.org/project/linux-clk/list/ |
baeb0d9b | 3436 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git |
7704addb | 3437 | S: Maintained |
ae4185cd | 3438 | F: Documentation/devicetree/bindings/clock/ |
60bea3b5 SW |
3439 | F: drivers/clk/ |
3440 | X: drivers/clk/clkdev.c | |
7704addb | 3441 | F: include/linux/clk-pr* |
60bea3b5 | 3442 | F: include/linux/clk/ |
7704addb | 3443 | |
e2d1d6c0 | 3444 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 3445 | M: Steve French <sfrench@samba.org> |
51223df6 | 3446 | L: linux-cifs@vger.kernel.org |
d1f28953 | 3447 | L: samba-technical@lists.samba.org (moderated for non-subscribers) |
e2d1d6c0 | 3448 | W: http://linux-cifs.samba.org/ |
bb1d5dda | 3449 | T: git git://git.samba.org/sfrench/cifs-2.6.git |
e2d1d6c0 | 3450 | S: Supported |
ec421a71 | 3451 | F: Documentation/filesystems/cifs/ |
679655da | 3452 | F: fs/cifs/ |
e2d1d6c0 | 3453 | |
1da177e4 | 3454 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 3455 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 3456 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 3457 | S: Maintained |
679655da | 3458 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 | 3459 | |
7683e9e5 | 3460 | COMPACTPCI HOTPLUG GENERIC DRIVER |
8b58be88 | 3461 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 3462 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 3463 | S: Maintained |
7683e9e5 | 3464 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 3465 | |
7683e9e5 | 3466 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER |
8b58be88 | 3467 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 3468 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 3469 | S: Maintained |
7683e9e5 | 3470 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 | 3471 | |
5411552c | 3472 | COMPAL LAPTOP SUPPORT |
8b58be88 | 3473 | M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> |
d0944853 | 3474 | L: platform-driver-x86@vger.kernel.org |
5411552c | 3475 | S: Maintained |
679655da | 3476 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 3477 | |
949be0f7 | 3478 | CONEXANT ACCESSRUNNER USB DRIVER |
9ae5e3bc SA |
3479 | L: accessrunner-general@lists.sourceforge.net |
3480 | W: http://accessrunner.sourceforge.net/ | |
44243ef4 | 3481 | S: Orphan |
679655da | 3482 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 3483 | |
e2d1d6c0 | 3484 | CONFIGFS |
d6351db2 | 3485 | M: Joel Becker <jlbec@evilplan.org> |
1609bac8 CH |
3486 | M: Christoph Hellwig <hch@lst.de> |
3487 | T: git git://git.infradead.org/users/hch/configfs.git | |
e2d1d6c0 | 3488 | S: Supported |
679655da JP |
3489 | F: fs/configfs/ |
3490 | F: include/linux/configfs.h | |
e2d1d6c0 | 3491 | |
acb9c1b2 | 3492 | CONNECTOR |
8b58be88 | 3493 | M: Evgeniy Polyakov <zbr@ioremap.net> |
acb9c1b2 EP |
3494 | L: netdev@vger.kernel.org |
3495 | S: Maintained | |
3496 | F: drivers/connector/ | |
3497 | ||
a3e3354d | 3498 | CONTROL GROUP (CGROUP) |
860ca0e6 | 3499 | M: Tejun Heo <tj@kernel.org> |
ad50c159 | 3500 | M: Li Zefan <lizefan@huawei.com> |
4d205676 | 3501 | M: Johannes Weiner <hannes@cmpxchg.org> |
12340313 | 3502 | L: cgroups@vger.kernel.org |
860ca0e6 | 3503 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 3504 | S: Maintained |
4b16b0c0 | 3505 | F: Documentation/cgroup* |
679655da JP |
3506 | F: include/linux/cgroup* |
3507 | F: kernel/cgroup* | |
a3e3354d TH |
3508 | |
3509 | CONTROL GROUP - CPUSET | |
3510 | M: Li Zefan <lizefan@huawei.com> | |
3511 | L: cgroups@vger.kernel.org | |
3512 | W: http://www.bullopensource.org/cpuset/ | |
3513 | W: http://oss.sgi.com/projects/cpusets/ | |
3514 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git | |
3515 | S: Maintained | |
4b16b0c0 | 3516 | F: Documentation/cgroup-v1/cpusets.txt |
a3e3354d TH |
3517 | F: include/linux/cpuset.h |
3518 | F: kernel/cpuset.c | |
3519 | ||
3520 | CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG) | |
3521 | M: Johannes Weiner <hannes@cmpxchg.org> | |
fbd7dc74 | 3522 | M: Michal Hocko <mhocko@kernel.org> |
c4e29738 | 3523 | M: Vladimir Davydov <vdavydov.dev@gmail.com> |
a3e3354d TH |
3524 | L: cgroups@vger.kernel.org |
3525 | L: linux-mm@kvack.org | |
3526 | S: Maintained | |
3527 | F: mm/memcontrol.c | |
5d1ea48b | 3528 | F: mm/swap_cgroup.c |
fb3a0fb6 | 3529 | |
bebe4678 | 3530 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 3531 | M: Fenghua Yu <fenghua.yu@intel.com> |
968ce1b1 | 3532 | L: linux-hwmon@vger.kernel.org |
bebe4678 | 3533 | S: Maintained |
679655da JP |
3534 | F: Documentation/hwmon/coretemp |
3535 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 3536 | |
1da177e4 | 3537 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 3538 | M: Jan "Yenya" Kasprzak <kas@fi.muni.cz> |
1da177e4 LT |
3539 | W: http://www.fi.muni.cz/~kas/cosa/ |
3540 | S: Maintained | |
679655da | 3541 | F: drivers/net/wan/cosa* |
1da177e4 | 3542 | |
4371ee35 | 3543 | CPMAC ETHERNET DRIVER |
9dd4aaef | 3544 | M: Florian Fainelli <f.fainelli@gmail.com> |
4371ee35 FF |
3545 | L: netdev@vger.kernel.org |
3546 | S: Maintained | |
b544dbac | 3547 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 3548 | |
1da177e4 | 3549 | CPU FREQUENCY DRIVERS |
9c3646d1 | 3550 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
45c009a9 | 3551 | M: Viresh Kumar <viresh.kumar@linaro.org> |
a6c072c7 | 3552 | L: linux-pm@vger.kernel.org |
1da177e4 | 3553 | S: Maintained |
27209d91 VK |
3554 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
3555 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) | |
993e5483 | 3556 | B: https://bugzilla.kernel.org |
dabe73cb | 3557 | F: Documentation/cpu-freq/ |
6f193635 | 3558 | F: Documentation/devicetree/bindings/cpufreq/ |
679655da JP |
3559 | F: drivers/cpufreq/ |
3560 | F: include/linux/cpufreq.h | |
0a7d2cd7 | 3561 | F: tools/testing/selftests/cpufreq/ |
1da177e4 | 3562 | |
8a67f0ef VK |
3563 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
3564 | M: Viresh Kumar <viresh.kumar@linaro.org> | |
171d0ba8 | 3565 | M: Sudeep Holla <sudeep.holla@arm.com> |
8a67f0ef VK |
3566 | L: linux-pm@vger.kernel.org |
3567 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
3568 | S: Maintained | |
3569 | F: drivers/cpufreq/arm_big_little.h | |
3570 | F: drivers/cpufreq/arm_big_little.c | |
3571 | F: drivers/cpufreq/arm_big_little_dt.c | |
3572 | ||
82abbea7 RD |
3573 | CPU POWER MONITORING SUBSYSTEM |
3574 | M: Thomas Renninger <trenn@suse.com> | |
3575 | L: linux-pm@vger.kernel.org | |
3576 | S: Maintained | |
3577 | F: tools/power/cpupower/ | |
3578 | ||
3579 | CPUID/MSR DRIVER | |
3580 | M: "H. Peter Anvin" <hpa@zytor.com> | |
3581 | S: Maintained | |
3582 | F: arch/x86/kernel/cpuid.c | |
3583 | F: arch/x86/kernel/msr.c | |
3584 | ||
14d2c34c | 3585 | CPUIDLE DRIVER - ARM BIG LITTLE |
b75f0050 JP |
3586 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
3587 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3588 | L: linux-pm@vger.kernel.org | |
3589 | L: linux-arm-kernel@lists.infradead.org | |
cea8321c | 3590 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
b75f0050 JP |
3591 | S: Maintained |
3592 | F: drivers/cpuidle/cpuidle-big_little.c | |
14d2c34c | 3593 | |
0c570c18 BZ |
3594 | CPUIDLE DRIVER - ARM EXYNOS |
3595 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
3596 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
3597 | M: Kukjin Kim <kgene@kernel.org> | |
3598 | L: linux-pm@vger.kernel.org | |
3599 | L: linux-samsung-soc@vger.kernel.org | |
3600 | S: Supported | |
3601 | F: drivers/cpuidle/cpuidle-exynos.c | |
3602 | F: arch/arm/mach-exynos/pm.c | |
3603 | ||
a8e39c35 | 3604 | CPUIDLE DRIVERS |
9c3646d1 | 3605 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
a8e39c35 DL |
3606 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
3607 | L: linux-pm@vger.kernel.org | |
3608 | S: Maintained | |
cea8321c | 3609 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
2ed38cbe | 3610 | B: https://bugzilla.kernel.org |
a8e39c35 DL |
3611 | F: drivers/cpuidle/* |
3612 | F: include/linux/cpuidle.h | |
3613 | ||
1da177e4 | 3614 | CRAMFS FILESYSTEM |
ce00f85c | 3615 | W: http://sourceforge.net/projects/cramfs/ |
54886a71 | 3616 | S: Orphan / Obsolete |
679655da JP |
3617 | F: Documentation/filesystems/cramfs.txt |
3618 | F: fs/cramfs/ | |
1da177e4 LT |
3619 | |
3620 | CRIS PORT | |
8b58be88 JP |
3621 | M: Mikael Starvik <starvik@axis.com> |
3622 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
9937ac0c | 3623 | L: linux-cris-kernel@axis.com |
1da177e4 | 3624 | W: http://developer.axis.com |
9f273c24 | 3625 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git |
1da177e4 | 3626 | S: Maintained |
679655da | 3627 | F: arch/cris/ |
df621252 | 3628 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
3629 | |
3630 | CRYPTO API | |
8b58be88 JP |
3631 | M: Herbert Xu <herbert@gondor.apana.org.au> |
3632 | M: "David S. Miller" <davem@davemloft.net> | |
1da177e4 | 3633 | L: linux-crypto@vger.kernel.org |
9f273c24 | 3634 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git |
54e5881d | 3635 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 3636 | S: Maintained |
679655da | 3637 | F: Documentation/crypto/ |
fe1c445b | 3638 | F: Documentation/devicetree/bindings/crypto/ |
679655da JP |
3639 | F: arch/*/crypto/ |
3640 | F: crypto/ | |
3641 | F: drivers/crypto/ | |
3642 | F: include/crypto/ | |
ff330f73 | 3643 | F: include/linux/crypto* |
1da177e4 | 3644 | |
5b07bd57 | 3645 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 3646 | M: Neil Horman <nhorman@tuxdriver.com> |
5b07bd57 NH |
3647 | L: linux-crypto@vger.kernel.org |
3648 | S: Maintained | |
51a2228a JP |
3649 | F: crypto/ansi_cprng.c |
3650 | F: crypto/rng.c | |
5b07bd57 | 3651 | |
fc279cc2 HV |
3652 | CS3308 MEDIA DRIVER |
3653 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3654 | L: linux-media@vger.kernel.org | |
3655 | T: git git://linuxtv.org/media_tree.git | |
3656 | W: http://linuxtv.org | |
3657 | S: Odd Fixes | |
3658 | F: drivers/media/i2c/cs3308.c | |
3659 | F: drivers/media/i2c/cs3308.h | |
3660 | ||
9b4ffa48 | 3661 | CS5535 Audio ALSA driver |
8b58be88 | 3662 | M: Jaya Kumar <jayakumar.alsa@gmail.com> |
9b4ffa48 | 3663 | S: Maintained |
679655da | 3664 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 3665 | |
a910e4a9 | 3666 | CW1200 WLAN driver |
b75f0050 JP |
3667 | M: Solomon Peachy <pizza@shaftnet.org> |
3668 | S: Maintained | |
560424e9 | 3669 | F: drivers/net/wireless/st/cw1200/ |
a910e4a9 | 3670 | |
6d8425b1 | 3671 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 3672 | M: Andy Walls <awalls@md.metrocast.net> |
7b212edf | 3673 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
661263b5 | 3674 | L: linux-media@vger.kernel.org |
275ffde4 | 3675 | T: git git://linuxtv.org/media_tree.git |
a825eaec | 3676 | W: https://linuxtv.org |
30e10993 | 3677 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 3678 | S: Maintained |
618cd932 | 3679 | F: Documentation/media/v4l-drivers/cx18* |
90d72ac6 | 3680 | F: drivers/media/pci/cx18/ |
6c0f0359 | 3681 | F: include/uapi/linux/ivtv* |
6d8425b1 | 3682 | |
3f101d91 HV |
3683 | CX2341X MPEG ENCODER HELPER MODULE |
3684 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3685 | L: linux-media@vger.kernel.org | |
3686 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 3687 | W: https://linuxtv.org |
3f101d91 | 3688 | S: Maintained |
c368360b | 3689 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
3690 | F: include/media/cx2341x* |
3691 | ||
b8fe6e2c PB |
3692 | CX24120 MEDIA DRIVER |
3693 | M: Jemma Denson <jdenson@gmail.com> | |
3694 | M: Patrick Boettcher <patrick.boettcher@posteo.de> | |
3695 | L: linux-media@vger.kernel.org | |
a825eaec | 3696 | W: https://linuxtv.org |
b8fe6e2c PB |
3697 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3698 | S: Maintained | |
3699 | F: drivers/media/dvb-frontends/cx24120* | |
3700 | ||
20357578 | 3701 | CX88 VIDEO4LINUX DRIVER |
5dc8a864 MCC |
3702 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
3703 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
20357578 | 3704 | L: linux-media@vger.kernel.org |
a825eaec | 3705 | W: https://linuxtv.org |
20357578 MCC |
3706 | T: git git://linuxtv.org/media_tree.git |
3707 | S: Odd fixes | |
618cd932 | 3708 | F: Documentation/media/v4l-drivers/cx88* |
20357578 | 3709 | F: drivers/media/pci/cx88/ |
6d8425b1 | 3710 | |
91952bc0 AP |
3711 | CXD2820R MEDIA DRIVER |
3712 | M: Antti Palosaari <crope@iki.fi> | |
3713 | L: linux-media@vger.kernel.org | |
a825eaec | 3714 | W: https://linuxtv.org |
91952bc0 AP |
3715 | W: http://palosaari.fi/linux/ |
3716 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3717 | T: git git://linuxtv.org/anttip/media_tree.git | |
3718 | S: Maintained | |
3719 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 3720 | |
e5ec3789 | 3721 | CXGB3 ETHERNET DRIVER (CXGB3) |
cdc99239 | 3722 | M: Santosh Raspatur <santosh@chelsio.com> |
e5ec3789 SW |
3723 | L: netdev@vger.kernel.org |
3724 | W: http://www.chelsio.com | |
3725 | S: Supported | |
f7917c00 | 3726 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 | 3727 | |
d8ae3c33 | 3728 | CXGB3 ISCSI DRIVER (CXGB3I) |
49e7d9df JP |
3729 | M: Karen Xie <kxie@chelsio.com> |
3730 | L: linux-scsi@vger.kernel.org | |
3731 | W: http://www.chelsio.com | |
3732 | S: Supported | |
3733 | F: drivers/scsi/cxgbi/cxgb3i | |
d8ae3c33 | 3734 | |
e5ec3789 | 3735 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) |
8b58be88 | 3736 | M: Steve Wise <swise@chelsio.com> |
e6cc0fd1 | 3737 | L: linux-rdma@vger.kernel.org |
e5ec3789 SW |
3738 | W: http://www.openfabrics.org |
3739 | S: Supported | |
679655da | 3740 | F: drivers/infiniband/hw/cxgb3/ |
a85fb338 | 3741 | F: include/uapi/rdma/cxgb3-abi.h |
e5ec3789 | 3742 | |
7683e9e5 LT |
3743 | CXGB4 CRYPTO DRIVER (chcr) |
3744 | M: Harsh Jain <harsh@chelsio.com> | |
3745 | L: linux-crypto@vger.kernel.org | |
3746 | W: http://www.chelsio.com | |
3747 | S: Supported | |
3748 | F: drivers/crypto/chelsio | |
3749 | ||
be4c9bad | 3750 | CXGB4 ETHERNET DRIVER (CXGB4) |
59cfa789 | 3751 | M: Ganesh Goudar <ganeshgr@chelsio.com> |
be4c9bad RD |
3752 | L: netdev@vger.kernel.org |
3753 | W: http://www.chelsio.com | |
3754 | S: Supported | |
f7917c00 | 3755 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad | 3756 | |
d8ae3c33 | 3757 | CXGB4 ISCSI DRIVER (CXGB4I) |
49e7d9df JP |
3758 | M: Karen Xie <kxie@chelsio.com> |
3759 | L: linux-scsi@vger.kernel.org | |
3760 | W: http://www.chelsio.com | |
3761 | S: Supported | |
3762 | F: drivers/scsi/cxgbi/cxgb4i | |
d8ae3c33 | 3763 | |
be4c9bad RD |
3764 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) |
3765 | M: Steve Wise <swise@chelsio.com> | |
3766 | L: linux-rdma@vger.kernel.org | |
3767 | W: http://www.openfabrics.org | |
3768 | S: Supported | |
3769 | F: drivers/infiniband/hw/cxgb4/ | |
e44ee2fd | 3770 | F: include/uapi/rdma/cxgb4-abi.h |
be4c9bad | 3771 | |
5c20a5c7 CL |
3772 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
3773 | M: Casey Leedom <leedom@chelsio.com> | |
3774 | L: netdev@vger.kernel.org | |
3775 | W: http://www.chelsio.com | |
3776 | S: Supported | |
f7917c00 | 3777 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 3778 | |
a9282d01 | 3779 | CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER |
9d82fd2f | 3780 | M: Frederic Barrat <fbarrat@linux.vnet.ibm.com> |
8c7d0a04 | 3781 | M: Andrew Donnellan <andrew.donnellan@au1.ibm.com> |
a9282d01 IM |
3782 | L: linuxppc-dev@lists.ozlabs.org |
3783 | S: Supported | |
9d82fd2f | 3784 | F: arch/powerpc/platforms/powernv/pci-cxl.c |
a9282d01 | 3785 | F: drivers/misc/cxl/ |
ec249dd8 | 3786 | F: include/misc/cxl* |
a9282d01 IM |
3787 | F: include/uapi/misc/cxl.h |
3788 | F: Documentation/powerpc/cxl.txt | |
a9282d01 IM |
3789 | F: Documentation/ABI/testing/sysfs-class-cxl |
3790 | ||
11f43ae7 MO |
3791 | CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER |
3792 | M: Manoj N. Kumar <manoj@linux.vnet.ibm.com> | |
3793 | M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com> | |
b2c0627c | 3794 | M: Uma Krishnan <ukrishn@linux.vnet.ibm.com> |
11f43ae7 MO |
3795 | L: linux-scsi@vger.kernel.org |
3796 | S: Supported | |
3797 | F: drivers/scsi/cxlflash/ | |
3798 | F: include/uapi/scsi/cxlflash_ioctls.h | |
3799 | F: Documentation/powerpc/cxlflash.txt | |
3800 | ||
1da177e4 | 3801 | CYBERPRO FB DRIVER |
54176cc6 | 3802 | M: Russell King <linux@armlinux.org.uk> |
efc03ecb | 3803 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
54176cc6 | 3804 | W: http://www.armlinux.org.uk/ |
1da177e4 | 3805 | S: Maintained |
8a61f013 | 3806 | F: drivers/video/fbdev/cyber2000fb.* |
9fa68eae | 3807 | |
1da177e4 | 3808 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 3809 | W: http://www.cyclades.com/ |
d459883e | 3810 | S: Orphan |
c897401b | 3811 | F: drivers/tty/cyclades.c |
679655da | 3812 | F: include/linux/cyclades.h |
c117ab84 | 3813 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
3814 | |
3815 | CYCLADES PC300 DRIVER | |
1da177e4 | 3816 | W: http://www.cyclades.com/ |
d459883e | 3817 | S: Orphan |
679655da | 3818 | F: drivers/net/wan/pc300* |
1da177e4 | 3819 | |
402f6ae4 AP |
3820 | CYPRESS_FIRMWARE MEDIA DRIVER |
3821 | M: Antti Palosaari <crope@iki.fi> | |
3822 | L: linux-media@vger.kernel.org | |
a825eaec | 3823 | W: https://linuxtv.org |
402f6ae4 AP |
3824 | W: http://palosaari.fi/linux/ |
3825 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3826 | T: git git://linuxtv.org/anttip/media_tree.git | |
3827 | S: Maintained | |
3828 | F: drivers/media/common/cypress_firmware* | |
3829 | ||
e3ae3525 | 3830 | CYTTSP TOUCHSCREEN DRIVER |
be9a6f40 | 3831 | M: Ferruh Yigit <fery@cypress.com> |
6305902c | 3832 | L: linux-input@vger.kernel.org |
be9a6f40 | 3833 | S: Supported |
6305902c JP |
3834 | F: drivers/input/touchscreen/cyttsp* |
3835 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 3836 | |
131b3de7 LW |
3837 | D-LINK DIR-685 TOUCHKEYS DRIVER |
3838 | M: Linus Walleij <linus.walleij@linaro.org> | |
3839 | L: linux-input@vger.kernel.org | |
3840 | S: Supported | |
3841 | F: drivers/input/dlink-dir685-touchkeys.c | |
3842 | ||
aaaf5fbf JK |
3843 | DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK |
3844 | M: Joshua Kinard <kumba@gentoo.org> | |
3845 | S: Maintained | |
3846 | F: drivers/rtc/rtc-ds1685.c | |
3847 | F: include/linux/rtc/ds1685.h | |
3848 | ||
1da177e4 | 3849 | DAMA SLAVE for AX.25 |
8b58be88 | 3850 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
3851 | W: http://yaina.de/jreuter/ |
3852 | W: http://www.qsl.net/dl1bke/ | |
3853 | L: linux-hams@vger.kernel.org | |
3854 | S: Maintained | |
679655da JP |
3855 | F: net/ax25/af_ax25.c |
3856 | F: net/ax25/ax25_dev.c | |
3857 | F: net/ax25/ax25_ds_* | |
3858 | F: net/ax25/ax25_in.c | |
3859 | F: net/ax25/ax25_out.c | |
3860 | F: net/ax25/ax25_timer.c | |
3861 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 3862 | |
e2d1d6c0 | 3863 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 3864 | L: netdev@vger.kernel.org |
5ff77428 | 3865 | S: Orphan |
679655da | 3866 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 3867 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
3868 | |
3869 | DC390/AM53C974 SCSI driver | |
d8130624 | 3870 | M: Hannes Reinecke <hare@suse.com> |
71bd849d | 3871 | L: linux-scsi@vger.kernel.org |
e2d1d6c0 | 3872 | S: Maintained |
71bd849d | 3873 | F: drivers/scsi/am53c974.c |
e2d1d6c0 | 3874 | |
1da177e4 | 3875 | DC395x SCSI driver |
61eee9a7 | 3876 | M: Oliver Neukum <oliver@neukum.org> |
8b58be88 JP |
3877 | M: Ali Akcaagac <aliakc@web.de> |
3878 | M: Jamie Lenehan <lenehan@twibble.org> | |
f5df5881 | 3879 | L: dc395x@twibble.org |
cf015e9f JP |
3880 | W: http://twibble.org/dist/dc395x/ |
3881 | W: http://lists.twibble.org/mailman/listinfo/dc395x/ | |
1da177e4 | 3882 | S: Maintained |
679655da JP |
3883 | F: Documentation/scsi/dc395x.txt |
3884 | F: drivers/scsi/dc395x.* | |
1da177e4 | 3885 | |
eb8edb08 | 3886 | DCCP PROTOCOL |
a89d030e | 3887 | M: Gerrit Renker <gerrit@erg.abdn.ac.uk> |
eb8edb08 | 3888 | L: dccp@vger.kernel.org |
c996d8b9 | 3889 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 3890 | S: Maintained |
679655da | 3891 | F: include/linux/dccp.h |
c117ab84 | 3892 | F: include/uapi/linux/dccp.h |
679655da JP |
3893 | F: include/linux/tfrc.h |
3894 | F: net/dccp/ | |
eb8edb08 | 3895 | |
1da177e4 | 3896 | DECnet NETWORK LAYER |
1da177e4 LT |
3897 | W: http://linux-decnet.sourceforge.net |
3898 | L: linux-decnet-user@lists.sourceforge.net | |
f546444d | 3899 | S: Orphan |
679655da JP |
3900 | F: Documentation/networking/decnet.txt |
3901 | F: net/decnet/ | |
1da177e4 | 3902 | |
ebff05b9 MR |
3903 | DECSTATION PLATFORM SUPPORT |
3904 | M: "Maciej W. Rozycki" <macro@linux-mips.org> | |
3905 | L: linux-mips@linux-mips.org | |
3906 | W: http://www.linux-mips.org/wiki/DECstation | |
3907 | S: Maintained | |
3908 | F: arch/mips/dec/ | |
3909 | F: arch/mips/include/asm/dec/ | |
3910 | F: arch/mips/include/asm/mach-dec/ | |
3911 | ||
1da177e4 | 3912 | DEFXX FDDI NETWORK DRIVER |
8b58be88 | 3913 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
1da177e4 | 3914 | S: Maintained |
33f810b2 | 3915 | F: drivers/net/fddi/defxx.* |
1da177e4 | 3916 | |
ad8f07cc | 3917 | DELL LAPTOP DRIVER |
8b58be88 | 3918 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
cdbff611 | 3919 | M: Pali Rohár <pali.rohar@gmail.com> |
d0944853 | 3920 | L: platform-driver-x86@vger.kernel.org |
ad8f07cc | 3921 | S: Maintained |
679655da | 3922 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 3923 | |
7683e9e5 | 3924 | DELL LAPTOP FREEFALL DRIVER |
817a5cdb PR |
3925 | M: Pali Rohár <pali.rohar@gmail.com> |
3926 | S: Maintained | |
7683e9e5 | 3927 | F: drivers/platform/x86/dell-smo8800.c |
817a5cdb | 3928 | |
7683e9e5 | 3929 | DELL LAPTOP RBTN DRIVER |
cdbff611 PR |
3930 | M: Pali Rohár <pali.rohar@gmail.com> |
3931 | S: Maintained | |
7683e9e5 | 3932 | F: drivers/platform/x86/dell-rbtn.* |
cdbff611 | 3933 | |
1da177e4 | 3934 | DELL LAPTOP SMM DRIVER |
a5afba16 | 3935 | M: Pali Rohár <pali.rohar@gmail.com> |
ef3522f7 | 3936 | S: Maintained |
a5afba16 | 3937 | F: drivers/hwmon/dell-smm-hwmon.c |
c117ab84 | 3938 | F: include/uapi/linux/i8k.h |
1da177e4 | 3939 | |
90563ec4 | 3940 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 3941 | M: Doug Warzecha <Douglas_Warzecha@dell.com> |
90563ec4 | 3942 | S: Maintained |
679655da JP |
3943 | F: Documentation/dcdbas.txt |
3944 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 3945 | |
0b3f6109 | 3946 | DELL WMI EXTRAS DRIVER |
8b58be88 | 3947 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
cdbff611 | 3948 | M: Pali Rohár <pali.rohar@gmail.com> |
0b3f6109 | 3949 | S: Maintained |
36b3a96f | 3950 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 3951 | |
82abbea7 RD |
3952 | DELTA ST MEDIA DRIVER |
3953 | M: Hugues Fruchet <hugues.fruchet@st.com> | |
3954 | L: linux-media@vger.kernel.org | |
3955 | T: git git://linuxtv.org/media_tree.git | |
3956 | W: https://linuxtv.org | |
3957 | S: Supported | |
3958 | F: drivers/media/platform/sti/delta | |
3959 | ||
7683e9e5 LT |
3960 | DENALI NAND DRIVER |
3961 | M: Masahiro Yamada <yamada.masahiro@socionext.com> | |
3962 | L: linux-mtd@lists.infradead.org | |
3963 | S: Supported | |
3964 | F: drivers/mtd/nand/denali* | |
3965 | ||
5efc75e3 | 3966 | DESIGNWARE USB2 DRD IP DRIVER |
16272ae7 | 3967 | M: John Youn <johnyoun@synopsys.com> |
5efc75e3 | 3968 | L: linux-usb@vger.kernel.org |
18f340f9 | 3969 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
5efc75e3 | 3970 | S: Maintained |
197ba5f4 | 3971 | F: drivers/usb/dwc2/ |
5efc75e3 | 3972 | |
94ab23dd | 3973 | DESIGNWARE USB3 DRD IP DRIVER |
a55f6286 | 3974 | M: Felipe Balbi <balbi@kernel.org> |
94ab23dd | 3975 | L: linux-usb@vger.kernel.org |
94ab23dd FB |
3976 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
3977 | S: Maintained | |
3978 | F: drivers/usb/dwc3/ | |
3979 | ||
feda2840 AK |
3980 | DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER |
3981 | M: Andreas Klinger <ak@it-klinger.de> | |
3982 | L: linux-iio@vger.kernel.org | |
3983 | S: Maintained | |
3984 | F: drivers/iio/proximity/srf*.c | |
3985 | ||
833c9545 JB |
3986 | DEVICE COREDUMP (DEV_COREDUMP) |
3987 | M: Johannes Berg <johannes@sipsolutions.net> | |
3988 | L: linux-kernel@vger.kernel.org | |
3989 | S: Maintained | |
3990 | F: drivers/base/devcoredump.c | |
3991 | F: include/linux/devcoredump.h | |
3992 | ||
89d07767 KP |
3993 | DEVICE FREQUENCY (DEVFREQ) |
3994 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
3995 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
9932ef3c | 3996 | R: Chanwoo Choi <cw00.choi@samsung.com> |
88476d34 | 3997 | L: linux-pm@vger.kernel.org |
6a3cd722 | 3998 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git |
89d07767 KP |
3999 | S: Maintained |
4000 | F: drivers/devfreq/ | |
6a3cd722 CC |
4001 | F: include/linux/devfreq.h |
4002 | F: Documentation/devicetree/bindings/devfreq/ | |
89d07767 | 4003 | |
7dbded06 CC |
4004 | DEVICE FREQUENCY EVENT (DEVFREQ-EVENT) |
4005 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
4006 | L: linux-pm@vger.kernel.org | |
4007 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git | |
4008 | S: Supported | |
4009 | F: drivers/devfreq/event/ | |
4010 | F: drivers/devfreq/devfreq-event.c | |
4011 | F: include/linux/devfreq-event.h | |
4012 | F: Documentation/devicetree/bindings/devfreq/event/ | |
89d07767 | 4013 | |
1da177e4 | 4014 | DEVICE NUMBER REGISTRY |
8b58be88 | 4015 | M: Torben Mathiasen <device@lanana.org> |
1da177e4 | 4016 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
4017 | S: Maintained |
4018 | ||
e2d1d6c0 | 4019 | DEVICE-MAPPER (LVM) |
854ecaad | 4020 | M: Alasdair Kergon <agk@redhat.com> |
8504eed3 | 4021 | M: Mike Snitzer <snitzer@redhat.com> |
854ecaad | 4022 | M: dm-devel@redhat.com |
e2d1d6c0 RD |
4023 | L: dm-devel@redhat.com |
4024 | W: http://sources.redhat.com/dm | |
8a6e2535 | 4025 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
41d35d25 | 4026 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git |
854ecaad | 4027 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 4028 | S: Maintained |
679655da JP |
4029 | F: Documentation/device-mapper/ |
4030 | F: drivers/md/dm* | |
854ecaad | 4031 | F: drivers/md/persistent-data/ |
679655da JP |
4032 | F: include/linux/device-mapper.h |
4033 | F: include/linux/dm-*.h | |
8504eed3 | 4034 | F: include/uapi/linux/dm-*.h |
e2d1d6c0 | 4035 | |
bfcd3a46 JP |
4036 | DEVLINK |
4037 | M: Jiri Pirko <jiri@mellanox.com> | |
4038 | L: netdev@vger.kernel.org | |
4039 | S: Supported | |
4040 | F: net/core/devlink.c | |
4041 | F: include/net/devlink.h | |
4042 | F: include/uapi/linux/devlink.h | |
4043 | ||
c0d995aa OST |
4044 | DIALOG SEMICONDUCTOR DRIVERS |
4045 | M: Support Opensource <support.opensource@diasemi.com> | |
4046 | W: http://www.dialog-semiconductor.com/products | |
4047 | S: Supported | |
4048 | F: Documentation/hwmon/da90?? | |
047cfd01 | 4049 | F: Documentation/devicetree/bindings/mfd/da90*.txt |
34026764 ST |
4050 | F: Documentation/devicetree/bindings/input/da90??-onkey.txt |
4051 | F: Documentation/devicetree/bindings/thermal/da90??-thermal.txt | |
4eeb08b4 | 4052 | F: Documentation/devicetree/bindings/regulator/da92*.txt |
34026764 | 4053 | F: Documentation/devicetree/bindings/watchdog/da92??-wdt.txt |
7c933772 | 4054 | F: Documentation/devicetree/bindings/sound/da[79]*.txt |
c0d995aa OST |
4055 | F: drivers/gpio/gpio-da90??.c |
4056 | F: drivers/hwmon/da90??-hwmon.c | |
7be72c2c | 4057 | F: drivers/iio/adc/da91??-*.c |
c0d995aa OST |
4058 | F: drivers/input/misc/da90??_onkey.c |
4059 | F: drivers/input/touchscreen/da9052_tsi.c | |
4060 | F: drivers/leds/leds-da90??.c | |
4061 | F: drivers/mfd/da903x.c | |
4062 | F: drivers/mfd/da90??-*.c | |
7be72c2c | 4063 | F: drivers/mfd/da91??-*.c |
8c0984e5 SR |
4064 | F: drivers/power/supply/da9052-battery.c |
4065 | F: drivers/power/supply/da91??-*.c | |
c0d995aa OST |
4066 | F: drivers/regulator/da903x.c |
4067 | F: drivers/regulator/da9???-regulator.[ch] | |
34026764 | 4068 | F: drivers/thermal/da90??-thermal.c |
c0d995aa OST |
4069 | F: drivers/rtc/rtc-da90??.c |
4070 | F: drivers/video/backlight/da90??_bl.c | |
4071 | F: drivers/watchdog/da90??_wdt.c | |
4072 | F: include/linux/mfd/da903x.h | |
4073 | F: include/linux/mfd/da9052/ | |
4074 | F: include/linux/mfd/da9055/ | |
047cfd01 | 4075 | F: include/linux/mfd/da9062/ |
c0d995aa | 4076 | F: include/linux/mfd/da9063/ |
7be72c2c | 4077 | F: include/linux/mfd/da9150/ |
4eeb08b4 | 4078 | F: include/linux/regulator/da9211.h |
c0d995aa OST |
4079 | F: include/sound/da[79]*.h |
4080 | F: sound/soc/codecs/da[79]*.[ch] | |
4081 | ||
6ea5dcdf WBG |
4082 | DIAMOND SYSTEMS GPIO-MM GPIO DRIVER |
4083 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
4084 | L: linux-gpio@vger.kernel.org | |
4085 | S: Maintained | |
4086 | F: drivers/gpio/gpio-gpio-mm.c | |
4087 | ||
599aa697 LL |
4088 | DIGI NEO AND CLASSIC PCI PRODUCTS |
4089 | M: Lidza Louina <lidza.louina@gmail.com> | |
542f3d5a | 4090 | M: Mark Hounschell <markh@compro.net> |
599aa697 LL |
4091 | L: driverdev-devel@linuxdriverproject.org |
4092 | S: Maintained | |
4093 | F: drivers/staging/dgnc/ | |
4094 | ||
335d7c58 | 4095 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 4096 | M: Guenter Roeck <linux@roeck-us.net> |
335d7c58 GR |
4097 | L: linux-i2c@vger.kernel.org |
4098 | S: Maintained | |
4099 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
4100 | ||
d475c634 | 4101 | DIRECT ACCESS (DAX) |
e057541a RZ |
4102 | M: Matthew Wilcox <mawilcox@microsoft.com> |
4103 | M: Ross Zwisler <ross.zwisler@linux.intel.com> | |
d475c634 MW |
4104 | L: linux-fsdevel@vger.kernel.org |
4105 | S: Supported | |
4106 | F: fs/dax.c | |
e057541a RZ |
4107 | F: include/linux/dax.h |
4108 | F: include/trace/events/fs_dax.h | |
d475c634 | 4109 | |
e7839f25 | 4110 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 4111 | M: Eric Paris <eparis@parisplace.org> |
3c5119c0 | 4112 | S: Maintained |
679655da JP |
4113 | F: Documentation/filesystems/dnotify.txt |
4114 | F: fs/notify/dnotify/ | |
4115 | F: include/linux/dnotify.h | |
1da177e4 LT |
4116 | |
4117 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 4118 | M: Andries Brouwer <aeb@cwi.nl> |
1da177e4 LT |
4119 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
4120 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
4121 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
4122 | S: Maintained | |
4123 | ||
4480f15b | 4124 | DISKQUOTA |
d8130624 | 4125 | M: Jan Kara <jack@suse.com> |
1da177e4 | 4126 | S: Maintained |
679655da JP |
4127 | F: Documentation/filesystems/quota.txt |
4128 | F: fs/quota/ | |
4129 | F: include/linux/quota*.h | |
c117ab84 | 4130 | F: include/uapi/linux/quota*.h |
1da177e4 | 4131 | |
702686ad BT |
4132 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
4133 | M: Bernie Thompson <bernie@plugable.com> | |
4134 | L: linux-fbdev@vger.kernel.org | |
4135 | S: Maintained | |
4136 | W: http://plugable.com/category/projects/udlfb/ | |
8a61f013 | 4137 | F: drivers/video/fbdev/udlfb.c |
702686ad BT |
4138 | F: include/video/udlfb.h |
4139 | F: Documentation/fb/udlfb.txt | |
4140 | ||
e7839f25 | 4141 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
4142 | M: Christine Caulfield <ccaulfie@redhat.com> |
4143 | M: David Teigland <teigland@redhat.com> | |
a4644184 | 4144 | L: cluster-devel@redhat.com |
5be7b50f | 4145 | W: http://sources.redhat.com/cluster/ |
9f273c24 | 4146 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git |
5be7b50f | 4147 | S: Supported |
679655da | 4148 | F: fs/dlm/ |
5be7b50f | 4149 | |
53b6b3e0 SS |
4150 | DMA BUFFER SHARING FRAMEWORK |
4151 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
4152 | S: Maintained | |
4153 | L: linux-media@vger.kernel.org | |
4154 | L: dri-devel@lists.freedesktop.org | |
8ada6d2d | 4155 | L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers) |
35fac7e3 | 4156 | F: drivers/dma-buf/ |
e46d12c6 JP |
4157 | F: include/linux/dma-buf* |
4158 | F: include/linux/reservation.h | |
4159 | F: include/linux/*fence.h | |
e7e21c72 | 4160 | F: Documentation/driver-api/dma-buf.rst |
0b46fcdb | 4161 | T: git git://anongit.freedesktop.org/drm/drm-misc |
53b6b3e0 | 4162 | |
b3e5f263 | 4163 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 4164 | M: Vinod Koul <vinod.koul@intel.com> |
17b59560 VK |
4165 | L: dmaengine@vger.kernel.org |
4166 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
08223d80 | 4167 | S: Maintained |
679655da | 4168 | F: drivers/dma/ |
0ce3c066 | 4169 | F: include/linux/dmaengine.h |
c56d329e | 4170 | F: Documentation/devicetree/bindings/dma/ |
979a281e VK |
4171 | F: Documentation/dmaengine/ |
4172 | T: git git://git.infradead.org/users/vkoul/slave-dma.git | |
248a9dc3 | 4173 | |
7683e9e5 LT |
4174 | DMA MAPPING HELPERS |
4175 | M: Christoph Hellwig <hch@lst.de> | |
4176 | M: Marek Szyprowski <m.szyprowski@samsung.com> | |
4177 | R: Robin Murphy <robin.murphy@arm.com> | |
4178 | L: linux-kernel@vger.kernel.org | |
4179 | T: git git://git.infradead.org/users/hch/dma-mapping.git | |
4180 | W: http://git.infradead.org/users/hch/dma-mapping.git | |
4181 | S: Supported | |
4182 | F: lib/dma-debug.c | |
4183 | F: lib/dma-noop.c | |
4184 | F: lib/dma-virt.c | |
4185 | F: drivers/base/dma-mapping.c | |
4186 | F: drivers/base/dma-coherent.c | |
4187 | F: include/linux/dma-mapping.h | |
4188 | ||
b825037d | 4189 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 4190 | M: Juerg Haefliger <juergh@gmail.com> |
968ce1b1 | 4191 | L: linux-hwmon@vger.kernel.org |
b825037d | 4192 | S: Maintained |
679655da JP |
4193 | F: Documentation/hwmon/dme1737 |
4194 | F: drivers/hwmon/dme1737.c | |
b825037d | 4195 | |
1f31e1b1 | 4196 | DMI/SMBIOS SUPPORT |
d8130624 | 4197 | M: Jean Delvare <jdelvare@suse.com> |
1f31e1b1 | 4198 | S: Maintained |
d4aeef93 | 4199 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/ |
d7f96f97 | 4200 | F: Documentation/ABI/testing/sysfs-firmware-dmi-tables |
1f31e1b1 JD |
4201 | F: drivers/firmware/dmi-id.c |
4202 | F: drivers/firmware/dmi_scan.c | |
4203 | F: include/linux/dmi.h | |
4204 | ||
7d2c86b5 | 4205 | DOCUMENTATION |
ad3118b9 | 4206 | M: Jonathan Corbet <corbet@lwn.net> |
795fb7e7 JD |
4207 | L: linux-doc@vger.kernel.org |
4208 | S: Maintained | |
679655da | 4209 | F: Documentation/ |
52b3f239 | 4210 | F: scripts/kernel-doc |
97be078b RD |
4211 | X: Documentation/ABI/ |
4212 | X: Documentation/devicetree/ | |
933a46b8 JC |
4213 | X: Documentation/acpi |
4214 | X: Documentation/power | |
4215 | X: Documentation/spi | |
618cd932 | 4216 | X: Documentation/media |
c51edfb1 | 4217 | T: git git://git.lwn.net/linux.git docs-next |
abbaeff3 | 4218 | |
7683e9e5 LT |
4219 | DONGWOON DW9714 LENS VOICE COIL DRIVER |
4220 | M: Sakari Ailus <sakari.ailus@linux.intel.com> | |
4221 | L: linux-media@vger.kernel.org | |
4222 | T: git git://linuxtv.org/media_tree.git | |
4223 | S: Maintained | |
4224 | F: drivers/media/i2c/dw9714.c | |
4225 | ||
1da177e4 | 4226 | DOUBLETALK DRIVER |
8b58be88 | 4227 | M: "James R. Van Zandt" <jrv@vanzandt.mv.com> |
1da177e4 LT |
4228 | L: blinux-list@redhat.com |
4229 | S: Maintained | |
679655da JP |
4230 | F: drivers/char/dtlk.c |
4231 | F: include/linux/dtlk.h | |
1da177e4 | 4232 | |
9836a882 RP |
4233 | DPAA2 DATAPATH I/O (DPIO) DRIVER |
4234 | M: Roy Pledge <Roy.Pledge@nxp.com> | |
4235 | L: linux-kernel@vger.kernel.org | |
4236 | S: Maintained | |
4237 | F: drivers/staging/fsl-mc/bus/dpio | |
4238 | ||
92ac903a IR |
4239 | DPAA2 ETHERNET DRIVER |
4240 | M: Ioana Radulescu <ruxandra.radulescu@nxp.com> | |
4241 | L: linux-kernel@vger.kernel.org | |
4242 | S: Maintained | |
4243 | F: drivers/staging/fsl-dpaa2/ethernet | |
4244 | ||
e2d1d6c0 | 4245 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 4246 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
4247 | L: linux-scsi@vger.kernel.org |
4248 | W: http://www.adaptec.com/ | |
4249 | S: Maintained | |
679655da JP |
4250 | F: drivers/scsi/dpt* |
4251 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 4252 | |
b411b363 | 4253 | DRBD DRIVER |
bc2c049d RK |
4254 | M: Philipp Reisner <philipp.reisner@linbit.com> |
4255 | M: Lars Ellenberg <lars.ellenberg@linbit.com> | |
4256 | L: drbd-dev@lists.linbit.com | |
28b8e8d4 | 4257 | W: http://www.drbd.org |
bc2c049d RK |
4258 | T: git git://git.linbit.com/linux-drbd.git |
4259 | T: git git://git.linbit.com/drbd-8.4.git | |
28b8e8d4 JP |
4260 | S: Supported |
4261 | F: drivers/block/drbd/ | |
4262 | F: lib/lru_cache.c | |
4263 | F: Documentation/blockdev/drbd/ | |
b411b363 | 4264 | |
27f395b8 | 4265 | DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS |
879a5a00 | 4266 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
08deed1e | 4267 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 4268 | S: Supported |
679655da | 4269 | F: Documentation/kobject.txt |
7cfc51b9 | 4270 | F: drivers/base/ |
87544653 | 4271 | F: fs/debugfs/ |
dc7dfcd8 | 4272 | F: fs/sysfs/ |
87544653 | 4273 | F: include/linux/debugfs.h |
dc7dfcd8 | 4274 | F: include/linux/kobj* |
679655da | 4275 | F: lib/kobj* |
1da177e4 | 4276 | |
82abbea7 RD |
4277 | DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
4278 | M: Kevin Hilman <khilman@kernel.org> | |
4279 | M: Nishanth Menon <nm@ti.com> | |
4280 | S: Maintained | |
4281 | F: drivers/power/avs/ | |
4282 | F: include/linux/power/smartreflex.h | |
4283 | L: linux-pm@vger.kernel.org | |
4284 | ||
bed41005 TC |
4285 | DRM DRIVER FOR ARM PL111 CLCD |
4286 | M: Eric Anholt <eric@anholt.net> | |
4287 | T: git git://anongit.freedesktop.org/drm/drm-misc | |
4288 | S: Supported | |
4289 | F: drivers/gpu/drm/pl111/ | |
4290 | ||
c842b693 EV |
4291 | DRM DRIVER FOR AST SERVER GRAPHICS CHIPS |
4292 | M: Dave Airlie <airlied@redhat.com> | |
4293 | S: Odd Fixes | |
4294 | F: drivers/gpu/drm/ast/ | |
4295 | ||
4296 | DRM DRIVER FOR BOCHS VIRTUAL GPU | |
4297 | M: Gerd Hoffmann <kraxel@redhat.com> | |
0c19f97f | 4298 | L: virtualization@lists.linux-foundation.org |
0f445486 | 4299 | T: git git://anongit.freedesktop.org/drm/drm-misc |
0c19f97f | 4300 | S: Maintained |
c842b693 EV |
4301 | F: drivers/gpu/drm/bochs/ |
4302 | ||
7683e9e5 LT |
4303 | DRM DRIVER FOR INTEL I810 VIDEO CARDS |
4304 | S: Orphan / Obsolete | |
4305 | F: drivers/gpu/drm/i810/ | |
4306 | F: include/uapi/drm/i810_drm.h | |
4307 | ||
4308 | DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS | |
4309 | S: Orphan / Obsolete | |
4310 | F: drivers/gpu/drm/mga/ | |
4311 | F: include/uapi/drm/mga_drm.h | |
4312 | ||
4313 | DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS | |
4314 | M: Dave Airlie <airlied@redhat.com> | |
4315 | S: Odd Fixes | |
4316 | F: drivers/gpu/drm/mgag200/ | |
4317 | ||
4318 | DRM DRIVER FOR MI0283QT | |
4319 | M: Noralf Trønnes <noralf@tronnes.org> | |
4320 | S: Maintained | |
4321 | F: drivers/gpu/drm/tinydrm/mi0283qt.c | |
4322 | F: Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt | |
4323 | ||
4324 | DRM DRIVER FOR MSM ADRENO GPU | |
4325 | M: Rob Clark <robdclark@gmail.com> | |
4326 | L: linux-arm-msm@vger.kernel.org | |
4327 | L: dri-devel@lists.freedesktop.org | |
4328 | L: freedreno@lists.freedesktop.org | |
4329 | T: git git://people.freedesktop.org/~robclark/linux | |
4330 | S: Maintained | |
4331 | F: drivers/gpu/drm/msm/ | |
4332 | F: include/uapi/drm/msm_drm.h | |
4333 | F: Documentation/devicetree/bindings/display/msm/ | |
4334 | ||
4335 | DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS | |
4336 | M: Ben Skeggs <bskeggs@redhat.com> | |
4337 | L: dri-devel@lists.freedesktop.org | |
4338 | L: nouveau@lists.freedesktop.org | |
4339 | T: git git://github.com/skeggsb/linux | |
4340 | S: Supported | |
4341 | F: drivers/gpu/drm/nouveau/ | |
4342 | F: include/uapi/drm/nouveau_drm.h | |
4343 | ||
c842b693 EV |
4344 | DRM DRIVER FOR QEMU'S CIRRUS DEVICE |
4345 | M: Dave Airlie <airlied@redhat.com> | |
0c19f97f GH |
4346 | M: Gerd Hoffmann <kraxel@redhat.com> |
4347 | L: virtualization@lists.linux-foundation.org | |
0f445486 | 4348 | T: git git://anongit.freedesktop.org/drm/drm-misc |
af3076e6 GH |
4349 | S: Obsolete |
4350 | W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/ | |
c842b693 EV |
4351 | F: drivers/gpu/drm/cirrus/ |
4352 | ||
7683e9e5 LT |
4353 | DRM DRIVER FOR QXL VIRTUAL GPU |
4354 | M: Dave Airlie <airlied@redhat.com> | |
4355 | M: Gerd Hoffmann <kraxel@redhat.com> | |
4356 | L: virtualization@lists.linux-foundation.org | |
4357 | T: git git://anongit.freedesktop.org/drm/drm-misc | |
4358 | S: Maintained | |
4359 | F: drivers/gpu/drm/qxl/ | |
4360 | F: include/uapi/drm/qxl_drm.h | |
4361 | ||
4362 | DRM DRIVER FOR RAGE 128 VIDEO CARDS | |
4363 | S: Orphan / Obsolete | |
4364 | F: drivers/gpu/drm/r128/ | |
4365 | F: include/uapi/drm/r128_drm.h | |
4366 | ||
4367 | DRM DRIVER FOR SAVAGE VIDEO CARDS | |
4368 | S: Orphan / Obsolete | |
4369 | F: drivers/gpu/drm/savage/ | |
4370 | F: include/uapi/drm/savage_drm.h | |
4371 | ||
4372 | DRM DRIVER FOR SIS VIDEO CARDS | |
4373 | S: Orphan / Obsolete | |
4374 | F: drivers/gpu/drm/sis/ | |
4375 | F: include/uapi/drm/sis_drm.h | |
4376 | ||
4377 | DRM DRIVER FOR TDFX VIDEO CARDS | |
4378 | S: Orphan / Obsolete | |
4379 | F: drivers/gpu/drm/tdfx/ | |
4380 | ||
4381 | DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS | |
4382 | M: Dave Airlie <airlied@redhat.com> | |
4383 | S: Odd Fixes | |
4384 | F: drivers/gpu/drm/udl/ | |
4385 | ||
4386 | DRM DRIVER FOR VMWARE VIRTUAL GPU | |
4387 | M: "VMware Graphics" <linux-graphics-maintainer@vmware.com> | |
4388 | M: Sinclair Yeh <syeh@vmware.com> | |
4389 | M: Thomas Hellstrom <thellstrom@vmware.com> | |
4390 | L: dri-devel@lists.freedesktop.org | |
4391 | T: git git://people.freedesktop.org/~syeh/repos_linux | |
4392 | T: git git://people.freedesktop.org/~thomash/linux | |
566f5939 | 4393 | S: Supported |
7683e9e5 LT |
4394 | F: drivers/gpu/drm/vmwgfx/ |
4395 | F: include/uapi/drm/vmwgfx_drm.h | |
566f5939 | 4396 | |
7683e9e5 LT |
4397 | DRM DRIVERS |
4398 | M: David Airlie <airlied@linux.ie> | |
03e255b9 | 4399 | L: dri-devel@lists.freedesktop.org |
7683e9e5 LT |
4400 | T: git git://people.freedesktop.org/~airlied/linux |
4401 | B: https://bugs.freedesktop.org/ | |
4402 | C: irc://chat.freenode.net/dri-devel | |
03e255b9 | 4403 | S: Maintained |
7683e9e5 LT |
4404 | F: drivers/gpu/drm/ |
4405 | F: drivers/gpu/vga/ | |
4406 | F: Documentation/devicetree/bindings/display/ | |
4407 | F: Documentation/devicetree/bindings/gpu/ | |
4408 | F: Documentation/devicetree/bindings/video/ | |
4409 | F: Documentation/gpu/ | |
4410 | F: include/drm/ | |
4411 | F: include/uapi/drm/ | |
4412 | F: include/linux/vga* | |
03e255b9 | 4413 | |
7683e9e5 | 4414 | DRM DRIVERS AND MISC GPU PATCHES |
cbce7107 | 4415 | M: Daniel Vetter <daniel.vetter@intel.com> |
47f95647 | 4416 | M: Jani Nikula <jani.nikula@linux.intel.com> |
7683e9e5 LT |
4417 | M: Sean Paul <seanpaul@chromium.org> |
4418 | W: https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html | |
4419 | S: Maintained | |
0f445486 | 4420 | T: git git://anongit.freedesktop.org/drm/drm-misc |
7683e9e5 LT |
4421 | F: Documentation/gpu/ |
4422 | F: drivers/gpu/vga/ | |
4423 | F: drivers/gpu/drm/* | |
4424 | F: include/drm/drm* | |
4425 | F: include/uapi/drm/drm* | |
4426 | F: include/linux/vga* | |
99763bb8 | 4427 | |
bf1139df MR |
4428 | DRM DRIVERS FOR ALLWINNER A10 |
4429 | M: Maxime Ripard <maxime.ripard@free-electrons.com> | |
4430 | L: dri-devel@lists.freedesktop.org | |
4431 | S: Supported | |
4432 | F: drivers/gpu/drm/sun4i/ | |
4433 | F: Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt | |
2da042ac | 4434 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mripard/linux.git |
bf1139df | 4435 | |
1de7ac68 NA |
4436 | DRM DRIVERS FOR AMLOGIC SOCS |
4437 | M: Neil Armstrong <narmstrong@baylibre.com> | |
4438 | L: dri-devel@lists.freedesktop.org | |
4439 | L: linux-amlogic@lists.infradead.org | |
4440 | W: http://linux-meson.com/ | |
4441 | S: Supported | |
4442 | F: drivers/gpu/drm/meson/ | |
4443 | F: Documentation/devicetree/bindings/display/amlogic,meson-vpu.txt | |
b40af4d5 NA |
4444 | F: Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt |
4445 | F: Documentation/gpu/meson.rst | |
75bb485d | 4446 | T: git git://anongit.freedesktop.org/drm/drm-misc |
1de7ac68 | 4447 | |
7683e9e5 LT |
4448 | DRM DRIVERS FOR ATMEL HLCDC |
4449 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
4450 | L: dri-devel@lists.freedesktop.org | |
4451 | S: Supported | |
4452 | F: drivers/gpu/drm/atmel-hlcdc/ | |
4453 | F: Documentation/devicetree/bindings/drm/atmel/ | |
4454 | T: git git://anongit.freedesktop.org/drm/drm-misc | |
4455 | ||
4456 | DRM DRIVERS FOR BRIDGE CHIPS | |
4457 | M: Archit Taneja <architt@codeaurora.org> | |
4458 | M: Andrzej Hajda <a.hajda@samsung.com> | |
4459 | R: Laurent Pinchart <Laurent.pinchart@ideasonboard.com> | |
4460 | S: Maintained | |
4461 | T: git git://anongit.freedesktop.org/drm/drm-misc | |
4462 | F: drivers/gpu/drm/bridge/ | |
4463 | ||
398a6d4a KP |
4464 | DRM DRIVERS FOR EXYNOS |
4465 | M: Inki Dae <inki.dae@samsung.com> | |
f1501303 ID |
4466 | M: Joonyoung Shim <jy0922.shim@samsung.com> |
4467 | M: Seung-Woo Kim <sw0312.kim@samsung.com> | |
4468 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
398a6d4a | 4469 | L: dri-devel@lists.freedesktop.org |
25a58030 | 4470 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a | 4471 | S: Supported |
14430813 | 4472 | F: drivers/gpu/drm/exynos/ |
8fb9b15b EV |
4473 | F: include/uapi/drm/exynos_drm.h |
4474 | F: Documentation/devicetree/bindings/display/exynos/ | |
398a6d4a | 4475 | |
b55a1b9c | 4476 | DRM DRIVERS FOR FREESCALE DCU |
bc66757a | 4477 | M: Stefan Agner <stefan@agner.ch> |
b55a1b9c JW |
4478 | M: Alison Wang <alison.wang@freescale.com> |
4479 | L: dri-devel@lists.freedesktop.org | |
4480 | S: Supported | |
4481 | F: drivers/gpu/drm/fsl-dcu/ | |
2d799dde | 4482 | F: Documentation/devicetree/bindings/display/fsl,dcu.txt |
fb127b79 | 4483 | F: Documentation/devicetree/bindings/display/fsl,tcon.txt |
2d799dde | 4484 | F: Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt |
b55a1b9c | 4485 | |
0a3d775f PZ |
4486 | DRM DRIVERS FOR FREESCALE IMX |
4487 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
4488 | L: dri-devel@lists.freedesktop.org | |
4489 | S: Maintained | |
4490 | F: drivers/gpu/drm/imx/ | |
ef739aa4 | 4491 | F: drivers/gpu/ipu-v3/ |
2d799dde | 4492 | F: Documentation/devicetree/bindings/display/imx/ |
0a3d775f | 4493 | |
ba2199a6 PJ |
4494 | DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets) |
4495 | M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com> | |
4496 | L: dri-devel@lists.freedesktop.org | |
4497 | T: git git://github.com/patjak/drm-gma500 | |
4498 | S: Maintained | |
5ff18e42 | 4499 | F: drivers/gpu/drm/gma500/ |
ba2199a6 | 4500 | |
c84ffde9 XL |
4501 | DRM DRIVERS FOR HISILICON |
4502 | M: Xinliang Liu <z.liuxinliang@hisilicon.com> | |
4b4b40a0 | 4503 | M: Rongrong Zou <zourongrong@gmail.com> |
c84ffde9 XL |
4504 | R: Xinwei Kong <kong.kongxinwei@hisilicon.com> |
4505 | R: Chen Feng <puck.chen@hisilicon.com> | |
4506 | L: dri-devel@lists.freedesktop.org | |
4507 | T: git git://github.com/xin3liang/linux.git | |
4508 | S: Maintained | |
4509 | F: drivers/gpu/drm/hisilicon/ | |
4510 | F: Documentation/devicetree/bindings/display/hisilicon/ | |
4511 | ||
37b2a214 CH |
4512 | DRM DRIVERS FOR MEDIATEK |
4513 | M: CK Hu <ck.hu@mediatek.com> | |
4514 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
4515 | L: dri-devel@lists.freedesktop.org | |
4516 | S: Supported | |
4517 | F: drivers/gpu/drm/mediatek/ | |
4518 | F: Documentation/devicetree/bindings/display/mediatek/ | |
4519 | ||
bd3b49f2 | 4520 | DRM DRIVERS FOR NVIDIA TEGRA |
a5ad7a63 | 4521 | M: Thierry Reding <thierry.reding@gmail.com> |
bd3b49f2 TR |
4522 | L: dri-devel@lists.freedesktop.org |
4523 | L: linux-tegra@vger.kernel.org | |
a5ad7a63 | 4524 | T: git git://anongit.freedesktop.org/tegra/linux.git |
adabdb0c | 4525 | S: Supported |
dee8268f | 4526 | F: drivers/gpu/drm/tegra/ |
a5ad7a63 | 4527 | F: drivers/gpu/host1x/ |
e1e90644 | 4528 | F: include/linux/host1x.h |
a5ad7a63 | 4529 | F: include/uapi/drm/tegra_drm.h |
2d799dde | 4530 | F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt |
bd3b49f2 | 4531 | |
a284e9d1 LP |
4532 | DRM DRIVERS FOR RENESAS |
4533 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
4534 | L: dri-devel@lists.freedesktop.org | |
4a121096 | 4535 | L: linux-renesas-soc@vger.kernel.org |
2392ccd4 | 4536 | T: git git://linuxtv.org/pinchartl/fbdev |
a284e9d1 LP |
4537 | S: Supported |
4538 | F: drivers/gpu/drm/rcar-du/ | |
4539 | F: drivers/gpu/drm/shmobile/ | |
a284e9d1 | 4540 | F: include/linux/platform_data/shmob_drm.h |
907c1bbd | 4541 | F: Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt |
33be436d | 4542 | F: Documentation/devicetree/bindings/display/renesas,du.txt |
a284e9d1 | 4543 | |
625e0346 HS |
4544 | DRM DRIVERS FOR ROCKCHIP |
4545 | M: Mark Yao <mark.yao@rock-chips.com> | |
4546 | L: dri-devel@lists.freedesktop.org | |
4547 | S: Maintained | |
4548 | F: drivers/gpu/drm/rockchip/ | |
f253f7eb | 4549 | F: Documentation/devicetree/bindings/display/rockchip/ |
0f445486 | 4550 | T: git git://anongit.freedesktop.org/drm/drm-misc |
625e0346 | 4551 | |
7f11c476 BG |
4552 | DRM DRIVERS FOR STI |
4553 | M: Benjamin Gaignard <benjamin.gaignard@linaro.org> | |
4554 | M: Vincent Abriou <vincent.abriou@st.com> | |
4555 | L: dri-devel@lists.freedesktop.org | |
db8b1590 | 4556 | T: git git://anongit.freedesktop.org/drm/drm-misc |
7f11c476 BG |
4557 | S: Maintained |
4558 | F: drivers/gpu/drm/sti | |
2d799dde | 4559 | F: Documentation/devicetree/bindings/display/st,stih4xx.txt |
7f11c476 | 4560 | |
ccb92b94 YF |
4561 | DRM DRIVERS FOR STM |
4562 | M: Yannick Fertre <yannick.fertre@st.com> | |
4563 | M: Philippe Cornu <philippe.cornu@st.com> | |
05d7435e VA |
4564 | M: Benjamin Gaignard <benjamin.gaignard@linaro.org> |
4565 | M: Vincent Abriou <vincent.abriou@st.com> | |
ccb92b94 YF |
4566 | L: dri-devel@lists.freedesktop.org |
4567 | T: git git://anongit.freedesktop.org/drm/drm-misc | |
4568 | S: Maintained | |
4569 | F: drivers/gpu/drm/stm | |
4570 | F: Documentation/devicetree/bindings/display/st,stm32-ltdc.txt | |
4571 | ||
7683e9e5 LT |
4572 | DRM DRIVERS FOR TI LCDC |
4573 | M: Jyri Sarha <jsarha@ti.com> | |
4574 | R: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
8bb0bce9 LS |
4575 | L: dri-devel@lists.freedesktop.org |
4576 | S: Maintained | |
7683e9e5 LT |
4577 | F: drivers/gpu/drm/tilcdc/ |
4578 | F: Documentation/devicetree/bindings/display/tilcdc/ | |
8bb0bce9 | 4579 | |
7683e9e5 LT |
4580 | DRM DRIVERS FOR TI OMAP |
4581 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
c4291702 | 4582 | L: dri-devel@lists.freedesktop.org |
7683e9e5 LT |
4583 | S: Maintained |
4584 | F: drivers/gpu/drm/omapdrm/ | |
4585 | F: Documentation/devicetree/bindings/display/ti/ | |
c4291702 | 4586 | |
8636d452 EA |
4587 | DRM DRIVERS FOR VC4 |
4588 | M: Eric Anholt <eric@anholt.net> | |
4589 | T: git git://github.com/anholt/linux | |
4590 | S: Supported | |
4591 | F: drivers/gpu/drm/vc4/ | |
4592 | F: include/uapi/drm/vc4_drm.h | |
4593 | F: Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt | |
0f445486 | 4594 | T: git git://anongit.freedesktop.org/drm/drm-misc |
8bb0bce9 | 4595 | |
7683e9e5 LT |
4596 | DRM DRIVERS FOR VIVANTE GPU IP |
4597 | M: Lucas Stach <l.stach@pengutronix.de> | |
4598 | R: Russell King <linux+etnaviv@armlinux.org.uk> | |
4599 | R: Christian Gmeiner <christian.gmeiner@gmail.com> | |
4600 | L: etnaviv@lists.freedesktop.org | |
adb314ed TV |
4601 | L: dri-devel@lists.freedesktop.org |
4602 | S: Maintained | |
7683e9e5 LT |
4603 | F: drivers/gpu/drm/etnaviv/ |
4604 | F: include/uapi/drm/etnaviv_drm.h | |
4605 | F: Documentation/devicetree/bindings/display/etnaviv/ | |
adb314ed | 4606 | |
dbb01037 SG |
4607 | DRM DRIVERS FOR ZTE ZX |
4608 | M: Shawn Guo <shawnguo@kernel.org> | |
4609 | L: dri-devel@lists.freedesktop.org | |
4610 | S: Maintained | |
4611 | F: drivers/gpu/drm/zte/ | |
4612 | F: Documentation/devicetree/bindings/display/zte,vou.txt | |
0f445486 | 4613 | T: git git://anongit.freedesktop.org/drm/drm-misc |
dbb01037 | 4614 | |
7683e9e5 LT |
4615 | DRM PANEL DRIVERS |
4616 | M: Thierry Reding <thierry.reding@gmail.com> | |
4617 | L: dri-devel@lists.freedesktop.org | |
4618 | T: git git://anongit.freedesktop.org/tegra/linux.git | |
4619 | S: Maintained | |
4620 | F: drivers/gpu/drm/drm_panel.c | |
4621 | F: drivers/gpu/drm/panel/ | |
4622 | F: include/drm/drm_panel.h | |
4623 | F: Documentation/devicetree/bindings/display/panel/ | |
4624 | ||
598df1ac AK |
4625 | DSBR100 USB FM RADIO DRIVER |
4626 | M: Alexey Klimov <klimov.linux@gmail.com> | |
4627 | L: linux-media@vger.kernel.org | |
4628 | T: git git://linuxtv.org/media_tree.git | |
4629 | S: Maintained | |
4630 | F: drivers/media/radio/dsbr100.c | |
4631 | ||
1da177e4 | 4632 | DSCC4 DRIVER |
8b58be88 | 4633 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 | 4634 | L: netdev@vger.kernel.org |
1da177e4 | 4635 | S: Maintained |
679655da | 4636 | F: drivers/net/wan/dscc4.c |
1da177e4 | 4637 | |
cc11b140 HV |
4638 | DT3155 MEDIA DRIVER |
4639 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
4640 | L: linux-media@vger.kernel.org | |
4641 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 4642 | W: https://linuxtv.org |
cc11b140 HV |
4643 | S: Odd Fixes |
4644 | F: drivers/media/pci/dt3155/ | |
4645 | ||
91952bc0 AP |
4646 | DVB_USB_AF9015 MEDIA DRIVER |
4647 | M: Antti Palosaari <crope@iki.fi> | |
4648 | L: linux-media@vger.kernel.org | |
a825eaec | 4649 | W: https://linuxtv.org |
91952bc0 AP |
4650 | W: http://palosaari.fi/linux/ |
4651 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4652 | T: git git://linuxtv.org/anttip/media_tree.git | |
4653 | S: Maintained | |
4654 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
4655 | ||
4656 | DVB_USB_AF9035 MEDIA DRIVER | |
4657 | M: Antti Palosaari <crope@iki.fi> | |
4658 | L: linux-media@vger.kernel.org | |
a825eaec | 4659 | W: https://linuxtv.org |
91952bc0 AP |
4660 | W: http://palosaari.fi/linux/ |
4661 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4662 | T: git git://linuxtv.org/anttip/media_tree.git | |
4663 | S: Maintained | |
4664 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
4665 | ||
4666 | DVB_USB_ANYSEE MEDIA DRIVER | |
4667 | M: Antti Palosaari <crope@iki.fi> | |
4668 | L: linux-media@vger.kernel.org | |
a825eaec | 4669 | W: https://linuxtv.org |
91952bc0 AP |
4670 | W: http://palosaari.fi/linux/ |
4671 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4672 | T: git git://linuxtv.org/anttip/media_tree.git | |
4673 | S: Maintained | |
4674 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
4675 | ||
4676 | DVB_USB_AU6610 MEDIA DRIVER | |
4677 | M: Antti Palosaari <crope@iki.fi> | |
4678 | L: linux-media@vger.kernel.org | |
a825eaec | 4679 | W: https://linuxtv.org |
91952bc0 AP |
4680 | W: http://palosaari.fi/linux/ |
4681 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4682 | T: git git://linuxtv.org/anttip/media_tree.git | |
4683 | S: Maintained | |
4684 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
4685 | ||
4686 | DVB_USB_CE6230 MEDIA DRIVER | |
4687 | M: Antti Palosaari <crope@iki.fi> | |
4688 | L: linux-media@vger.kernel.org | |
a825eaec | 4689 | W: https://linuxtv.org |
91952bc0 AP |
4690 | W: http://palosaari.fi/linux/ |
4691 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4692 | T: git git://linuxtv.org/anttip/media_tree.git | |
4693 | S: Maintained | |
4694 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
4695 | ||
d099dea2 MK |
4696 | DVB_USB_CXUSB MEDIA DRIVER |
4697 | M: Michael Krufky <mkrufky@linuxtv.org> | |
4698 | L: linux-media@vger.kernel.org | |
a825eaec | 4699 | W: https://linuxtv.org |
d099dea2 MK |
4700 | W: http://github.com/mkrufky |
4701 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4702 | T: git git://linuxtv.org/media_tree.git | |
4703 | S: Maintained | |
9819da66 | 4704 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 4705 | |
91952bc0 | 4706 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
4707 | M: Antti Palosaari <crope@iki.fi> |
4708 | L: linux-media@vger.kernel.org | |
a825eaec | 4709 | W: https://linuxtv.org |
91952bc0 AP |
4710 | W: http://palosaari.fi/linux/ |
4711 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4712 | T: git git://linuxtv.org/anttip/media_tree.git | |
4713 | S: Maintained | |
91952bc0 | 4714 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 4715 | |
5560983b | 4716 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
4717 | M: Antti Palosaari <crope@iki.fi> |
4718 | L: linux-media@vger.kernel.org | |
a825eaec | 4719 | W: https://linuxtv.org |
91952bc0 AP |
4720 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
4721 | T: git git://linuxtv.org/anttip/media_tree.git | |
4722 | S: Maintained | |
5560983b | 4723 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 4724 | |
8856f5f2 MK |
4725 | DVB_USB_MXL111SF MEDIA DRIVER |
4726 | M: Michael Krufky <mkrufky@linuxtv.org> | |
4727 | L: linux-media@vger.kernel.org | |
a825eaec | 4728 | W: https://linuxtv.org |
8856f5f2 MK |
4729 | W: http://github.com/mkrufky |
4730 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4731 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
4732 | S: Maintained | |
4733 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
4734 | ||
91952bc0 AP |
4735 | DVB_USB_RTL28XXU MEDIA DRIVER |
4736 | M: Antti Palosaari <crope@iki.fi> | |
4737 | L: linux-media@vger.kernel.org | |
a825eaec | 4738 | W: https://linuxtv.org |
91952bc0 AP |
4739 | W: http://palosaari.fi/linux/ |
4740 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4741 | T: git git://linuxtv.org/anttip/media_tree.git | |
4742 | S: Maintained | |
4743 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
4744 | ||
4745 | DVB_USB_V2 MEDIA DRIVER | |
4746 | M: Antti Palosaari <crope@iki.fi> | |
4747 | L: linux-media@vger.kernel.org | |
a825eaec | 4748 | W: https://linuxtv.org |
91952bc0 AP |
4749 | W: http://palosaari.fi/linux/ |
4750 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4751 | T: git git://linuxtv.org/anttip/media_tree.git | |
4752 | S: Maintained | |
4753 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
4754 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
4755 | ||
ac0ac38f | 4756 | DYNAMIC DEBUG |
5c4a97d1 | 4757 | M: Jason Baron <jbaron@akamai.com> |
ac0ac38f JB |
4758 | S: Maintained |
4759 | F: lib/dynamic_debug.c | |
4760 | F: include/linux/dynamic_debug.h | |
4761 | ||
789c7048 | 4762 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 4763 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
789c7048 | 4764 | S: Maintained |
df621252 | 4765 | F: drivers/tty/serial/dz.* |
789c7048 | 4766 | |
f17effbe MF |
4767 | E3X0 POWER BUTTON DRIVER |
4768 | M: Moritz Fischer <moritz.fischer@ettus.com> | |
4769 | L: usrp-users@lists.ettus.com | |
4770 | W: http://www.ettus.com | |
4771 | S: Supported | |
4772 | F: drivers/input/misc/e3x0-button.c | |
4773 | F: Documentation/devicetree/bindings/input/e3x0-button.txt | |
4774 | ||
91952bc0 AP |
4775 | E4000 MEDIA DRIVER |
4776 | M: Antti Palosaari <crope@iki.fi> | |
4777 | L: linux-media@vger.kernel.org | |
a825eaec | 4778 | W: https://linuxtv.org |
91952bc0 AP |
4779 | W: http://palosaari.fi/linux/ |
4780 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4781 | T: git git://linuxtv.org/anttip/media_tree.git | |
4782 | S: Maintained | |
4783 | F: drivers/media/tuners/e4000* | |
4784 | ||
1da177e4 | 4785 | EATA ISA/EISA/PCI SCSI DRIVER |
8b58be88 | 4786 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
4787 | L: linux-scsi@vger.kernel.org |
4788 | S: Maintained | |
679655da | 4789 | F: drivers/scsi/eata.c |
1da177e4 | 4790 | |
91952bc0 AP |
4791 | EC100 MEDIA DRIVER |
4792 | M: Antti Palosaari <crope@iki.fi> | |
4793 | L: linux-media@vger.kernel.org | |
a825eaec | 4794 | W: https://linuxtv.org |
91952bc0 AP |
4795 | W: http://palosaari.fi/linux/ |
4796 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4797 | T: git git://linuxtv.org/anttip/media_tree.git | |
4798 | S: Maintained | |
4799 | F: drivers/media/dvb-frontends/ec100* | |
4800 | ||
237fead6 | 4801 | ECRYPT FILE SYSTEM |
0de9adf2 | 4802 | M: Tyler Hicks <tyhicks@canonical.com> |
a058bfbb | 4803 | L: ecryptfs@vger.kernel.org |
24a923e4 | 4804 | W: http://ecryptfs.org |
6dc7516e | 4805 | W: https://launchpad.net/ecryptfs |
9f273c24 | 4806 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git |
237fead6 | 4807 | S: Supported |
679655da JP |
4808 | F: Documentation/filesystems/ecryptfs.txt |
4809 | F: fs/ecryptfs/ | |
237fead6 | 4810 | |
c476c23b | 4811 | EDAC-AMD64 |
487ba8e8 | 4812 | M: Borislav Petkov <bp@alien8.de> |
91445c72 | 4813 | L: linux-edac@vger.kernel.org |
487ba8e8 | 4814 | S: Maintained |
c476c23b BP |
4815 | F: drivers/edac/amd64_edac* |
4816 | ||
836dae5d | 4817 | EDAC-CALXEDA |
836dae5d RR |
4818 | M: Robert Richter <rric@kernel.org> |
4819 | L: linux-edac@vger.kernel.org | |
836dae5d RR |
4820 | S: Maintained |
4821 | F: drivers/edac/highbank* | |
4822 | ||
f65aad41 RB |
4823 | EDAC-CAVIUM |
4824 | M: Ralf Baechle <ralf@linux-mips.org> | |
4825 | M: David Daney <david.daney@cavium.com> | |
4826 | L: linux-edac@vger.kernel.org | |
4827 | L: linux-mips@linux-mips.org | |
f65aad41 RB |
4828 | S: Supported |
4829 | F: drivers/edac/octeon_edac* | |
41003396 | 4830 | F: drivers/edac/thunderx_edac* |
f65aad41 | 4831 | |
7683e9e5 LT |
4832 | EDAC-CORE |
4833 | M: Borislav Petkov <bp@alien8.de> | |
4834 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> | |
4835 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
4836 | L: linux-edac@vger.kernel.org | |
4837 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next | |
4838 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next | |
4839 | S: Supported | |
4840 | F: Documentation/admin-guide/ras.rst | |
4841 | F: Documentation/driver-api/edac.rst | |
4842 | F: drivers/edac/ | |
4843 | F: include/linux/edac.h | |
4844 | ||
0e438e3f | 4845 | EDAC-E752X |
8b58be88 | 4846 | M: Mark Gross <mark.gross@intel.com> |
91445c72 | 4847 | L: linux-edac@vger.kernel.org |
0e438e3f | 4848 | S: Maintained |
679655da | 4849 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
4850 | |
4851 | EDAC-E7XXX | |
91445c72 | 4852 | L: linux-edac@vger.kernel.org |
0e438e3f | 4853 | S: Maintained |
679655da | 4854 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 4855 | |
7d136731 BP |
4856 | EDAC-FSL_DDR |
4857 | M: York Sun <york.sun@nxp.com> | |
4858 | L: linux-edac@vger.kernel.org | |
4859 | S: Maintained | |
4860 | F: drivers/edac/fsl_ddr_edac.* | |
4861 | ||
77c5f5d2 | 4862 | EDAC-GHES |
5dc8a864 MCC |
4863 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4864 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
77c5f5d2 | 4865 | L: linux-edac@vger.kernel.org |
77c5f5d2 | 4866 | S: Maintained |
2caa67a6 | 4867 | F: drivers/edac/ghes_edac.c |
77c5f5d2 | 4868 | |
6bc78404 | 4869 | EDAC-I3000 |
91445c72 | 4870 | L: linux-edac@vger.kernel.org |
c91d9075 | 4871 | S: Orphan |
679655da | 4872 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
4873 | |
4874 | EDAC-I5000 | |
91445c72 | 4875 | L: linux-edac@vger.kernel.org |
ba9a5918 | 4876 | S: Maintained |
679655da | 4877 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 4878 | |
44c12cb2 | 4879 | EDAC-I5400 |
5dc8a864 MCC |
4880 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4881 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
67c89316 | 4882 | L: linux-edac@vger.kernel.org |
44c12cb2 | 4883 | S: Maintained |
679655da | 4884 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 4885 | |
3c9c92b6 | 4886 | EDAC-I7300 |
5dc8a864 MCC |
4887 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4888 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
3c9c92b6 | 4889 | L: linux-edac@vger.kernel.org |
3c9c92b6 MCC |
4890 | S: Maintained |
4891 | F: drivers/edac/i7300_edac.c | |
4892 | ||
67c89316 | 4893 | EDAC-I7CORE |
5dc8a864 MCC |
4894 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4895 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
67c89316 | 4896 | L: linux-edac@vger.kernel.org |
67c89316 | 4897 | S: Maintained |
70aff0ce | 4898 | F: drivers/edac/i7core_edac.c |
67c89316 | 4899 | |
7683e9e5 LT |
4900 | EDAC-I82443BXGX |
4901 | M: Tim Small <tim@buttersideup.com> | |
4902 | L: linux-edac@vger.kernel.org | |
4903 | S: Maintained | |
4904 | F: drivers/edac/i82443bxgx_edac.c | |
4905 | ||
ba9a5918 | 4906 | EDAC-I82975X |
8b58be88 | 4907 | M: Ranganathan Desikan <ravi@jetztechnologies.com> |
25527885 | 4908 | M: "Arvind R." <arvino55@gmail.com> |
91445c72 | 4909 | L: linux-edac@vger.kernel.org |
ba9a5918 | 4910 | S: Maintained |
679655da | 4911 | F: drivers/edac/i82975x_edac.c |
ba9a5918 | 4912 | |
791b4706 JB |
4913 | EDAC-IE31200 |
4914 | M: Jason Baron <jbaron@akamai.com> | |
4915 | L: linux-edac@vger.kernel.org | |
791b4706 JB |
4916 | S: Maintained |
4917 | F: drivers/edac/ie31200_edac.c | |
4918 | ||
ccdfb979 | 4919 | EDAC-MPC85XX |
30c7469b | 4920 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
ccdfb979 | 4921 | L: linux-edac@vger.kernel.org |
ccdfb979 JT |
4922 | S: Maintained |
4923 | F: drivers/edac/mpc85xx_edac.[ch] | |
4924 | ||
ba9a5918 | 4925 | EDAC-PASEMI |
8b58be88 | 4926 | M: Egor Martovetsky <egor@pasemi.com> |
91445c72 | 4927 | L: linux-edac@vger.kernel.org |
6bc78404 | 4928 | S: Maintained |
679655da | 4929 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 4930 | |
7683e9e5 LT |
4931 | EDAC-PND2 |
4932 | M: Tony Luck <tony.luck@intel.com> | |
4933 | L: linux-edac@vger.kernel.org | |
4934 | S: Maintained | |
4935 | F: drivers/edac/pnd2_edac.[ch] | |
4936 | ||
0e438e3f | 4937 | EDAC-R82600 |
8b58be88 | 4938 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 4939 | L: linux-edac@vger.kernel.org |
0e438e3f | 4940 | S: Maintained |
679655da | 4941 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 4942 | |
4d096ca7 | 4943 | EDAC-SBRIDGE |
5dc8a864 MCC |
4944 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4945 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
4d096ca7 | 4946 | L: linux-edac@vger.kernel.org |
4d096ca7 MCC |
4947 | S: Maintained |
4948 | F: drivers/edac/sb_edac.c | |
4949 | ||
4ec656bd TL |
4950 | EDAC-SKYLAKE |
4951 | M: Tony Luck <tony.luck@intel.com> | |
4952 | L: linux-edac@vger.kernel.org | |
4953 | S: Maintained | |
4954 | F: drivers/edac/skx_edac.c | |
4955 | ||
af39917d CL |
4956 | EDIROL UA-101/UA-1000 DRIVER |
4957 | M: Clemens Ladisch <clemens@ladisch.de> | |
4958 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
4959 | T: git git://git.alsa-project.org/alsa-kernel.git | |
4960 | S: Maintained | |
4961 | F: sound/usb/misc/ua101.c | |
4962 | ||
7683e9e5 | 4963 | EFI TEST DRIVER |
1f7df953 | 4964 | L: linux-efi@vger.kernel.org |
7683e9e5 LT |
4965 | M: Ivan Hu <ivan.hu@canonical.com> |
4966 | M: Matt Fleming <matt@codeblueprint.co.uk> | |
1f7df953 | 4967 | S: Maintained |
7683e9e5 | 4968 | F: drivers/firmware/efi/test/ |
1f7df953 | 4969 | |
d68772b7 MF |
4970 | EFI VARIABLE FILESYSTEM |
4971 | M: Matthew Garrett <matthew.garrett@nebula.com> | |
4972 | M: Jeremy Kerr <jk@ozlabs.org> | |
825fcfce | 4973 | M: Matt Fleming <matt@codeblueprint.co.uk> |
d68772b7 MF |
4974 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
4975 | L: linux-efi@vger.kernel.org | |
4976 | S: Maintained | |
4977 | F: fs/efivarfs/ | |
4978 | ||
85a00d9b PJ |
4979 | EFIFB FRAMEBUFFER DRIVER |
4980 | L: linux-fbdev@vger.kernel.org | |
4981 | M: Peter Jones <pjones@redhat.com> | |
4982 | S: Maintained | |
8a61f013 | 4983 | F: drivers/video/fbdev/efifb.c |
85a00d9b | 4984 | |
0bee8d28 JT |
4985 | EFS FILESYSTEM |
4986 | W: http://aeschi.ch.eu.org/efs/ | |
4987 | S: Orphan | |
679655da | 4988 | F: fs/efs/ |
0bee8d28 | 4989 | |
aa8a9e25 | 4990 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
97b04197 | 4991 | M: Douglas Miller <dougmill@linux.vnet.ibm.com> |
aa8a9e25 BL |
4992 | L: netdev@vger.kernel.org |
4993 | S: Maintained | |
9aa32835 | 4994 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 4995 | |
f0319efe | 4996 | EM28XX VIDEO4LINUX DRIVER |
5dc8a864 MCC |
4997 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
4998 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
f0319efe | 4999 | L: linux-media@vger.kernel.org |
a825eaec | 5000 | W: https://linuxtv.org |
f0319efe MCC |
5001 | T: git git://linuxtv.org/media_tree.git |
5002 | S: Maintained | |
5003 | F: drivers/media/usb/em28xx/ | |
618cd932 | 5004 | F: Documentation/media/v4l-drivers/em28xx* |
f0319efe | 5005 | |
3e3a7d66 | 5006 | EMBEDDED LINUX |
8b58be88 JP |
5007 | M: Paul Gortmaker <paul.gortmaker@windriver.com> |
5008 | M: Matt Mackall <mpm@selenic.com> | |
5009 | M: David Woodhouse <dwmw2@infradead.org> | |
3e3a7d66 DW |
5010 | L: linux-embedded@vger.kernel.org |
5011 | S: Maintained | |
5012 | ||
82abbea7 RD |
5013 | Emulex 10Gbps iSCSI - OneConnect DRIVER |
5014 | M: Subbu Seetharaman <subbu.seetharaman@broadcom.com> | |
5015 | M: Ketan Mukadam <ketan.mukadam@broadcom.com> | |
5016 | M: Jitendra Bhivare <jitendra.bhivare@broadcom.com> | |
ce00f85c | 5017 | L: linux-scsi@vger.kernel.org |
b8aca0c1 | 5018 | W: http://www.broadcom.com |
ce00f85c | 5019 | S: Supported |
82abbea7 | 5020 | F: drivers/scsi/be2iscsi/ |
5f5bac82 | 5021 | |
82abbea7 RD |
5022 | Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net) |
5023 | M: Sathya Perla <sathya.perla@broadcom.com> | |
5024 | M: Ajit Khaparde <ajit.khaparde@broadcom.com> | |
5025 | M: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com> | |
5026 | M: Somnath Kotur <somnath.kotur@broadcom.com> | |
5027 | L: netdev@vger.kernel.org | |
5028 | W: http://www.emulex.com | |
5029 | S: Supported | |
5030 | F: drivers/net/ethernet/emulex/benet/ | |
5031 | ||
5032 | EMULEX ONECONNECT ROCE DRIVER | |
5033 | M: Selvin Xavier <selvin.xavier@broadcom.com> | |
5034 | M: Devesh Sharma <devesh.sharma@broadcom.com> | |
5035 | L: linux-rdma@vger.kernel.org | |
5036 | W: http://www.broadcom.com | |
5037 | S: Odd Fixes | |
5038 | F: drivers/infiniband/hw/ocrdma/ | |
5039 | F: include/uapi/rdma/ocrdma-abi.h | |
5040 | ||
5041 | EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER | |
5042 | M: James Smart <james.smart@broadcom.com> | |
5043 | M: Dick Kennedy <dick.kennedy@broadcom.com> | |
5044 | L: linux-scsi@vger.kernel.org | |
5045 | W: http://www.broadcom.com | |
5046 | S: Supported | |
5047 | F: drivers/scsi/lpfc/ | |
5048 | ||
5049 | ENE CB710 FLASH CARD READER DRIVER | |
5050 | M: Michał Mirosław <mirq-linux@rere.qmqm.pl> | |
5051 | S: Maintained | |
5052 | F: drivers/misc/cb710/ | |
5053 | F: drivers/mmc/host/cb710-mmc.* | |
5054 | F: include/linux/cb710.h | |
5055 | ||
5056 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER | |
5057 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
5058 | S: Maintained | |
5059 | F: drivers/media/rc/ene_ir.* | |
931e39a1 | 5060 | |
d5ca9006 | 5061 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 5062 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
d5ca9006 | 5063 | S: Maintained |
084bad91 | 5064 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
8a61f013 | 5065 | F: drivers/video/fbdev/s1d13xxxfb.c |
679655da | 5066 | F: include/video/s1d13xxxfb.h |
d5ca9006 | 5067 | |
84cbadad JL |
5068 | ERRSEQ ERROR TRACKING INFRASTRUCTURE |
5069 | M: Jeff Layton <jlayton@poochiereds.net> | |
5070 | S: Maintained | |
5071 | F: lib/errseq.c | |
5072 | F: include/linux/errseq.h | |
5073 | ||
38df6492 ME |
5074 | ET131X NETWORK DRIVER |
5075 | M: Mark Einon <mark.einon@gmail.com> | |
5076 | S: Odd Fixes | |
5077 | F: drivers/net/ethernet/agere/ | |
5078 | ||
1da177e4 | 5079 | ETHERNET BRIDGE |
adbbf69d | 5080 | M: Stephen Hemminger <stephen@networkplumber.org> |
3430284f | 5081 | L: bridge@lists.linux-foundation.org (moderated for non-subscribers) |
4c325313 | 5082 | L: netdev@vger.kernel.org |
c996d8b9 | 5083 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 5084 | S: Maintained |
679655da JP |
5085 | F: include/linux/netfilter_bridge/ |
5086 | F: net/bridge/ | |
1da177e4 | 5087 | |
22f08ad9 | 5088 | ETHERNET PHY LIBRARY |
248ccd5e | 5089 | M: Andrew Lunn <andrew@lunn.ch> |
22f08ad9 FF |
5090 | M: Florian Fainelli <f.fainelli@gmail.com> |
5091 | L: netdev@vger.kernel.org | |
5092 | S: Maintained | |
13332db5 FF |
5093 | F: Documentation/ABI/testing/sysfs-bus-mdio |
5094 | F: Documentation/devicetree/bindings/net/mdio* | |
22f08ad9 | 5095 | F: Documentation/networking/phy.txt |
13332db5 | 5096 | F: drivers/net/phy/ |
22f08ad9 FF |
5097 | F: drivers/of/of_mdio.c |
5098 | F: drivers/of/of_net.c | |
13332db5 FF |
5099 | F: include/linux/*mdio*.h |
5100 | F: include/linux/of_net.h | |
5101 | F: include/linux/phy.h | |
5102 | F: include/linux/phy_fixed.h | |
5103 | F: include/linux/platform_data/mdio-gpio.h | |
5104 | F: include/trace/events/mdio.h | |
5105 | F: include/uapi/linux/mdio.h | |
5106 | F: include/uapi/linux/mii.h | |
22f08ad9 | 5107 | |
1da177e4 | 5108 | EXT2 FILE SYSTEM |
d8130624 | 5109 | M: Jan Kara <jack@suse.com> |
72be2ccf | 5110 | L: linux-ext4@vger.kernel.org |
1da177e4 | 5111 | S: Maintained |
679655da JP |
5112 | F: Documentation/filesystems/ext2.txt |
5113 | F: fs/ext2/ | |
5114 | F: include/linux/ext2* | |
1da177e4 | 5115 | |
72be2ccf | 5116 | EXT4 FILE SYSTEM |
8b58be88 | 5117 | M: "Theodore Ts'o" <tytso@mit.edu> |
3c373a5f | 5118 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
72be2ccf | 5119 | L: linux-ext4@vger.kernel.org |
08a225f1 | 5120 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 5121 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
9f273c24 | 5122 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git |
1da177e4 | 5123 | S: Maintained |
679655da JP |
5124 | F: Documentation/filesystems/ext4.txt |
5125 | F: fs/ext4/ | |
1da177e4 | 5126 | |
c5532b09 | 5127 | Extended Verification Module (EVM) |
74dd744f MZ |
5128 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
5129 | L: linux-ima-devel@lists.sourceforge.net | |
5130 | L: linux-security-module@vger.kernel.org | |
c5532b09 MZ |
5131 | S: Supported |
5132 | F: security/integrity/evm/ | |
5133 | ||
7683e9e5 LT |
5134 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
5135 | M: Matt Fleming <matt@codeblueprint.co.uk> | |
5136 | M: Ard Biesheuvel <ard.biesheuvel@linaro.org> | |
5137 | L: linux-efi@vger.kernel.org | |
5138 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git | |
5139 | S: Maintained | |
5140 | F: Documentation/efi-stub.txt | |
5141 | F: arch/*/kernel/efi.c | |
5142 | F: arch/x86/boot/compressed/eboot.[ch] | |
5143 | F: arch/*/include/asm/efi.h | |
5144 | F: arch/x86/platform/efi/ | |
5145 | F: drivers/firmware/efi/ | |
5146 | F: include/linux/efi*.h | |
5147 | F: arch/arm/boot/compressed/efi-header.S | |
5148 | F: arch/arm64/kernel/efi-entry.S | |
5149 | ||
df6b3cfe MH |
5150 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
5151 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
5152 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
5153 | L: linux-kernel@vger.kernel.org | |
81df63a9 | 5154 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git |
df6b3cfe MH |
5155 | S: Maintained |
5156 | F: drivers/extcon/ | |
cd2c3e7f CC |
5157 | F: include/linux/extcon/ |
5158 | F: include/linux/extcon.h | |
df6b3cfe | 5159 | F: Documentation/extcon/ |
cd2c3e7f | 5160 | F: Documentation/devicetree/bindings/extcon/ |
df6b3cfe | 5161 | |
e2a75c44 | 5162 | EXYNOS DP DRIVER |
b7701755 | 5163 | M: Jingoo Han <jingoohan1@gmail.com> |
e2a75c44 JH |
5164 | L: dri-devel@lists.freedesktop.org |
5165 | S: Maintained | |
5166 | F: drivers/gpu/drm/exynos/exynos_dp* | |
5167 | ||
9b93a409 MS |
5168 | EXYNOS SYSMMU (IOMMU) driver |
5169 | M: Marek Szyprowski <m.szyprowski@samsung.com> | |
5170 | L: iommu@lists.linux-foundation.org | |
5171 | S: Maintained | |
5172 | F: drivers/iommu/exynos-iommu.c | |
5173 | ||
4a66d3fe NC |
5174 | EZchip NPS platform support |
5175 | M: Noam Camus <noamc@ezchip.com> | |
5176 | S: Supported | |
5177 | F: arch/arc/plat-eznps | |
5178 | F: arch/arc/boot/dts/eznps.dts | |
5179 | ||
82abbea7 RD |
5180 | F2FS FILE SYSTEM |
5181 | M: Jaegeuk Kim <jaegeuk@kernel.org> | |
5182 | M: Chao Yu <yuchao0@huawei.com> | |
5183 | L: linux-f2fs-devel@lists.sourceforge.net | |
5184 | W: https://f2fs.wiki.kernel.org/ | |
5185 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git | |
5186 | S: Maintained | |
5187 | F: Documentation/filesystems/f2fs.txt | |
5188 | F: Documentation/ABI/testing/sysfs-fs-f2fs | |
5189 | F: fs/f2fs/ | |
5190 | F: include/linux/f2fs_fs.h | |
5191 | F: include/trace/events/f2fs.h | |
5192 | ||
e53004e2 | 5193 | F71805F HARDWARE MONITORING DRIVER |
d8130624 | 5194 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 5195 | L: linux-hwmon@vger.kernel.org |
e53004e2 | 5196 | S: Maintained |
679655da JP |
5197 | F: Documentation/hwmon/f71805f |
5198 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 5199 | |
88b2dbdb EP |
5200 | FANOTIFY |
5201 | M: Eric Paris <eparis@redhat.com> | |
5202 | S: Maintained | |
5203 | F: fs/notify/fanotify/ | |
5204 | F: include/linux/fanotify.h | |
c117ab84 | 5205 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 5206 | |
1da177e4 | 5207 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 5208 | M: Kevin Curtis <kevin.curtis@farsite.co.uk> |
1da177e4 LT |
5209 | W: http://www.farsite.co.uk/ |
5210 | S: Supported | |
679655da | 5211 | F: drivers/net/wan/farsync.* |
1da177e4 | 5212 | |
c5408b88 | 5213 | FAULT INJECTION SUPPORT |
8b58be88 | 5214 | M: Akinobu Mita <akinobu.mita@gmail.com> |
c5408b88 | 5215 | S: Supported |
679655da JP |
5216 | F: Documentation/fault-injection/ |
5217 | F: lib/fault-inject.c | |
c5408b88 | 5218 | |
053e514f NT |
5219 | FBTFT Framebuffer drivers |
5220 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
053e514f NT |
5221 | S: Maintained |
5222 | F: drivers/staging/fbtft/ | |
5223 | ||
82abbea7 RD |
5224 | FC0011 TUNER DRIVER |
5225 | M: Michael Buesch <m@bues.ch> | |
5226 | L: linux-media@vger.kernel.org | |
5227 | S: Maintained | |
5228 | F: drivers/media/tuners/fc0011.h | |
5229 | F: drivers/media/tuners/fc0011.c | |
5230 | ||
5231 | FC2580 MEDIA DRIVER | |
5232 | M: Antti Palosaari <crope@iki.fi> | |
5233 | L: linux-media@vger.kernel.org | |
5234 | W: https://linuxtv.org | |
5235 | W: http://palosaari.fi/linux/ | |
5236 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5237 | T: git git://linuxtv.org/anttip/media_tree.git | |
5238 | S: Maintained | |
5239 | F: drivers/media/tuners/fc2580* | |
5240 | ||
cae727db | 5241 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
49a75815 | 5242 | M: Johannes Thumshirn <jth@kernel.org> |
f4aaea6d | 5243 | L: fcoe-devel@open-fcoe.org |
cae727db RL |
5244 | W: www.Open-FCoE.org |
5245 | S: Supported | |
5246 | F: drivers/scsi/libfc/ | |
5247 | F: drivers/scsi/fcoe/ | |
5248 | F: include/scsi/fc/ | |
5249 | F: include/scsi/libfc.h | |
5250 | F: include/scsi/libfcoe.h | |
c117ab84 | 5251 | F: include/uapi/scsi/fc/ |
cae727db | 5252 | |
e2d1d6c0 | 5253 | FILE LOCKING (flock() and fcntl()/lockf()) |
8c836fa8 | 5254 | M: Jeff Layton <jlayton@poochiereds.net> |
9c3646d1 | 5255 | M: "J. Bruce Fields" <bfields@fieldses.org> |
e2d1d6c0 | 5256 | L: linux-fsdevel@vger.kernel.org |
1da177e4 | 5257 | S: Maintained |
679655da JP |
5258 | F: include/linux/fcntl.h |
5259 | F: include/linux/fs.h | |
c117ab84 CEB |
5260 | F: include/uapi/linux/fcntl.h |
5261 | F: include/uapi/linux/fs.h | |
679655da JP |
5262 | F: fs/fcntl.c |
5263 | F: fs/locks.c | |
1da177e4 | 5264 | |
e2d1d6c0 | 5265 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 5266 | M: Alexander Viro <viro@zeniv.linux.org.uk> |
e2d1d6c0 | 5267 | L: linux-fsdevel@vger.kernel.org |
173acc7c | 5268 | S: Maintained |
679655da | 5269 | F: fs/* |
173acc7c | 5270 | |
b26e0ed4 | 5271 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 5272 | M: Riku Voipio <riku.voipio@iki.fi> |
968ce1b1 | 5273 | L: linux-hwmon@vger.kernel.org |
b26e0ed4 | 5274 | S: Maintained |
d5ca6918 JP |
5275 | F: drivers/hwmon/f75375s.c |
5276 | F: include/linux/f75375s.h | |
b26e0ed4 | 5277 | |
a331b0c3 CL |
5278 | FIREWIRE AUDIO DRIVERS |
5279 | M: Clemens Ladisch <clemens@ladisch.de> | |
5280 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
5281 | T: git git://git.alsa-project.org/alsa-kernel.git | |
5282 | S: Maintained | |
5283 | F: sound/firewire/ | |
5284 | ||
eb86ec51 SR |
5285 | FIREWIRE MEDIA DRIVERS (firedtv) |
5286 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> | |
5287 | L: linux-media@vger.kernel.org | |
5288 | L: linux1394-devel@lists.sourceforge.net | |
5289 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
5290 | S: Maintained | |
5291 | F: drivers/media/firewire/ | |
5292 | ||
a511ce33 CB |
5293 | FIREWIRE SBP-2 TARGET |
5294 | M: Chris Boot <bootc@bootc.net> | |
5295 | L: linux-scsi@vger.kernel.org | |
5296 | L: target-devel@vger.kernel.org | |
5297 | L: linux1394-devel@lists.sourceforge.net | |
5298 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
5299 | S: Maintained | |
5300 | F: drivers/target/sbp/ | |
5301 | ||
7d2c86b5 | 5302 | FIREWIRE SUBSYSTEM |
8b58be88 | 5303 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
e2d1d6c0 | 5304 | L: linux1394-devel@lists.sourceforge.net |
958a29cb | 5305 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 5306 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 5307 | S: Maintained |
679655da | 5308 | F: drivers/firewire/ |
8f06ce3b SR |
5309 | F: include/linux/firewire.h |
5310 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 5311 | F: tools/firewire/ |
e2d1d6c0 RD |
5312 | |
5313 | FIRMWARE LOADER (request_firmware) | |
e7604239 | 5314 | M: Luis R. Rodriguez <mcgrof@kernel.org> |
39e68089 ML |
5315 | L: linux-kernel@vger.kernel.org |
5316 | S: Maintained | |
679655da JP |
5317 | F: Documentation/firmware_class/ |
5318 | F: drivers/base/firmware*.c | |
5319 | F: include/linux/firmware.h | |
e2d1d6c0 | 5320 | |
f730e3dc | 5321 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
9bb3c446 PK |
5322 | M: Joshua Morris <josh.h.morris@us.ibm.com> |
5323 | M: Philip Kelleher <pjk1939@linux.vnet.ibm.com> | |
5324 | S: Maintained | |
5325 | F: drivers/block/rsxx/ | |
5326 | ||
8206f664 | 5327 | FLOPPY DRIVER |
e5f6450c | 5328 | M: Jiri Kosina <jikos@kernel.org> |
8206f664 JK |
5329 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git |
5330 | S: Odd fixes | |
5331 | F: drivers/block/floppy.c | |
5332 | ||
9c9f32ed AR |
5333 | FMC SUBSYSTEM |
5334 | M: Alessandro Rubini <rubini@gnudd.com> | |
5335 | W: http://www.ohwr.org/projects/fmc-bus | |
5336 | S: Supported | |
5337 | F: drivers/fmc/ | |
5338 | F: include/linux/fmc*.h | |
5339 | F: include/linux/ipmi-fru.h | |
5340 | K: fmc_d.*register | |
5341 | ||
3c0ed7d5 | 5342 | FPGA MANAGER FRAMEWORK |
deb0b9b2 | 5343 | M: Alan Tull <atull@kernel.org> |
dd7d664a | 5344 | R: Moritz Fischer <moritz.fischer@ettus.com> |
7f1a5f04 | 5345 | L: linux-fpga@vger.kernel.org |
3c0ed7d5 | 5346 | S: Maintained |
e4998077 | 5347 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/atull/linux-fpga.git |
deb0b9b2 | 5348 | F: Documentation/fpga/ |
83ff2d57 | 5349 | F: Documentation/devicetree/bindings/fpga/ |
3c0ed7d5 | 5350 | F: drivers/fpga/ |
deb0b9b2 | 5351 | F: include/linux/fpga/ |
3c0ed7d5 AT |
5352 | W: http://www.rocketboards.org |
5353 | ||
e2d1d6c0 | 5354 | FPU EMULATOR |
8b58be88 | 5355 | M: Bill Metzenthen <billm@melbpc.org.au> |
e769980f | 5356 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 5357 | S: Maintained |
679655da | 5358 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
5359 | |
5360 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 5361 | L: netdev@vger.kernel.org |
c173bfac | 5362 | S: Orphan |
679655da JP |
5363 | F: drivers/net/wan/dlci.c |
5364 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
5365 | |
5366 | FRAMEBUFFER LAYER | |
04f6152d | 5367 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
c69f677c | 5368 | L: linux-fbdev@vger.kernel.org |
04f6152d | 5369 | T: git git://github.com/bzolnier/linux.git |
b22fe37b | 5370 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
04f6152d | 5371 | S: Maintained |
679655da | 5372 | F: Documentation/fb/ |
b22fe37b PM |
5373 | F: drivers/video/ |
5374 | F: include/video/ | |
679655da | 5375 | F: include/linux/fb.h |
c117ab84 CEB |
5376 | F: include/uapi/video/ |
5377 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 5378 | |
93aafb6d HG |
5379 | FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER |
5380 | M: Horia Geantă <horia.geanta@nxp.com> | |
5381 | M: Dan Douglass <dan.douglass@nxp.com> | |
5382 | L: linux-crypto@vger.kernel.org | |
5383 | S: Maintained | |
5384 | F: drivers/crypto/caam/ | |
5385 | F: Documentation/devicetree/bindings/crypto/fsl-sec4.txt | |
5386 | ||
a57c188e | 5387 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 5388 | M: Timur Tabi <timur@tabi.org> |
a57c188e | 5389 | L: linux-fbdev@vger.kernel.org |
c4ef9bc4 | 5390 | S: Maintained |
8a61f013 | 5391 | F: drivers/video/fbdev/fsl-diu-fb.* |
a57c188e | 5392 | |
e2d1d6c0 | 5393 | FREESCALE DMA DRIVER |
64d09f5e | 5394 | M: Li Yang <leoyang.li@nxp.com> |
8b58be88 | 5395 | M: Zhang Wei <zw@zh-kernel.org> |
a4724ed6 | 5396 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 | 5397 | S: Maintained |
679655da | 5398 | F: drivers/dma/fsldma.* |
e2d1d6c0 | 5399 | |
7683e9e5 LT |
5400 | FREESCALE eTSEC ETHERNET DRIVER (GIANFAR) |
5401 | M: Claudiu Manoil <claudiu.manoil@freescale.com> | |
5402 | L: netdev@vger.kernel.org | |
5403 | S: Maintained | |
5404 | F: drivers/net/ethernet/freescale/gianfar* | |
5405 | X: drivers/net/ethernet/freescale/gianfar_ptp.c | |
5406 | F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt | |
5407 | ||
44248aff HX |
5408 | FREESCALE GPMI NAND DRIVER |
5409 | M: Han Xu <han.xu@nxp.com> | |
5410 | L: linux-mtd@lists.infradead.org | |
5411 | S: Maintained | |
5412 | F: drivers/mtd/nand/gpmi-nand/* | |
5413 | ||
e2d1d6c0 | 5414 | FREESCALE I2C CPM DRIVER |
8b58be88 | 5415 | M: Jochen Friedrich <jochen@scram.de> |
a4724ed6 | 5416 | L: linuxppc-dev@lists.ozlabs.org |
846557d3 | 5417 | L: linux-i2c@vger.kernel.org |
0d2b405a | 5418 | S: Maintained |
679655da | 5419 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 5420 | |
7683e9e5 LT |
5421 | FREESCALE IMX / MXC FEC DRIVER |
5422 | M: Fugang Duan <fugang.duan@nxp.com> | |
5423 | L: netdev@vger.kernel.org | |
5424 | S: Maintained | |
5425 | F: drivers/net/ethernet/freescale/fec_main.c | |
5426 | F: drivers/net/ethernet/freescale/fec_ptp.c | |
5427 | F: drivers/net/ethernet/freescale/fec.h | |
5428 | F: Documentation/devicetree/bindings/net/fsl-fec.txt | |
5429 | ||
60e8c5ab | 5430 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 5431 | M: Sascha Hauer <kernel@pengutronix.de> |
c69f677c | 5432 | L: linux-fbdev@vger.kernel.org |
efc03ecb | 5433 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
60e8c5ab | 5434 | S: Maintained |
bad985a1 | 5435 | F: include/linux/platform_data/video-imxfb.h |
8a61f013 | 5436 | F: drivers/video/fbdev/imxfb.c |
60e8c5ab | 5437 | |
7683e9e5 LT |
5438 | FREESCALE QORIQ DPAA ETHERNET DRIVER |
5439 | M: Madalin Bucur <madalin.bucur@nxp.com> | |
63a0a00b NA |
5440 | L: netdev@vger.kernel.org |
5441 | S: Maintained | |
7683e9e5 | 5442 | F: drivers/net/ethernet/freescale/dpaa |
63a0a00b | 5443 | |
2fbfadb5 MB |
5444 | FREESCALE QORIQ DPAA FMAN DRIVER |
5445 | M: Madalin Bucur <madalin.bucur@nxp.com> | |
5446 | L: netdev@vger.kernel.org | |
5447 | S: Maintained | |
5448 | F: drivers/net/ethernet/freescale/fman | |
5449 | F: Documentation/devicetree/bindings/powerpc/fsl/fman.txt | |
5450 | ||
7683e9e5 LT |
5451 | FREESCALE QUAD SPI DRIVER |
5452 | M: Han Xu <han.xu@nxp.com> | |
5453 | L: linux-mtd@lists.infradead.org | |
1b48706f | 5454 | S: Maintained |
7683e9e5 | 5455 | F: drivers/mtd/spi-nor/fsl-quadspi.c |
1b48706f | 5456 | |
d9e9d82c | 5457 | FREESCALE QUICC ENGINE LIBRARY |
1b48706f | 5458 | M: Qiang Zhao <qiang.zhao@nxp.com> |
a4724ed6 | 5459 | L: linuxppc-dev@lists.ozlabs.org |
1b48706f | 5460 | S: Maintained |
7aa1aa6e ZQ |
5461 | F: drivers/soc/fsl/qe/ |
5462 | F: include/soc/fsl/*qe*.h | |
5463 | F: include/soc/fsl/*ucc*.h | |
d9e9d82c | 5464 | |
beaf53bf | 5465 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
64d09f5e | 5466 | M: Li Yang <leoyang.li@nxp.com> |
beaf53bf | 5467 | L: netdev@vger.kernel.org |
a4724ed6 | 5468 | L: linuxppc-dev@lists.ozlabs.org |
beaf53bf | 5469 | S: Maintained |
ec21e2ec | 5470 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 5471 | |
c19b6d24 ZQ |
5472 | FREESCALE QUICC ENGINE UCC HDLC DRIVER |
5473 | M: Zhao Qiang <qiang.zhao@nxp.com> | |
5474 | L: netdev@vger.kernel.org | |
5475 | L: linuxppc-dev@lists.ozlabs.org | |
5476 | S: Maintained | |
5477 | F: drivers/net/wan/fsl_ucc_hdlc* | |
5478 | ||
d9e9d82c | 5479 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 5480 | M: Timur Tabi <timur@tabi.org> |
a4724ed6 | 5481 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 5482 | S: Maintained |
df621252 | 5483 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c | 5484 | |
7683e9e5 LT |
5485 | FREESCALE SOC DRIVERS |
5486 | M: Li Yang <leoyang.li@nxp.com> | |
5487 | L: linuxppc-dev@lists.ozlabs.org | |
5488 | L: linux-arm-kernel@lists.infradead.org | |
5489 | S: Maintained | |
5490 | F: Documentation/devicetree/bindings/soc/fsl/ | |
5491 | F: drivers/soc/fsl/ | |
5492 | F: include/linux/fsl/ | |
5493 | ||
5494 | FREESCALE SOC FS_ENET DRIVER | |
5495 | M: Pantelis Antoniou <pantelis.antoniou@gmail.com> | |
5496 | M: Vitaly Bordug <vbordug@ru.mvista.com> | |
5497 | L: linuxppc-dev@lists.ozlabs.org | |
5498 | L: netdev@vger.kernel.org | |
5499 | S: Maintained | |
5500 | F: drivers/net/ethernet/freescale/fs_enet/ | |
5501 | F: include/linux/fs_enet_pd.h | |
5502 | ||
d9e9d82c | 5503 | FREESCALE SOC SOUND DRIVERS |
c4ef9bc4 | 5504 | M: Timur Tabi <timur@tabi.org> |
dc85950a | 5505 | M: Nicolin Chen <nicoleotsuka@gmail.com> |
b4b98297 | 5506 | M: Xiubo Li <Xiubo.Lee@gmail.com> |
aeea2fdd | 5507 | R: Fabio Estevam <fabio.estevam@nxp.com> |
93711660 | 5508 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a4724ed6 | 5509 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 5510 | S: Maintained |
69aefcea | 5511 | F: sound/soc/fsl/fsl* |
dc85950a | 5512 | F: sound/soc/fsl/imx* |
69aefcea | 5513 | F: sound/soc/fsl/mpc8610_hpcd.c |
d9e9d82c | 5514 | |
7683e9e5 LT |
5515 | FREESCALE USB PERIPHERAL DRIVERS |
5516 | M: Li Yang <leoyang.li@nxp.com> | |
5517 | L: linux-usb@vger.kernel.org | |
5518 | L: linuxppc-dev@lists.ozlabs.org | |
5519 | S: Maintained | |
5520 | F: drivers/usb/gadget/udc/fsl* | |
5521 | ||
1da177e4 | 5522 | FREEVXFS FILESYSTEM |
8b58be88 | 5523 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 LT |
5524 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
5525 | S: Maintained | |
679655da | 5526 | F: fs/freevxfs/ |
1da177e4 | 5527 | |
71038f52 | 5528 | FREEZER |
49db1903 | 5529 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 5530 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 5531 | L: linux-pm@vger.kernel.org |
71038f52 | 5532 | S: Supported |
679655da JP |
5533 | F: Documentation/power/freezing-of-tasks.txt |
5534 | F: include/linux/freezer.h | |
5535 | F: kernel/freezer.c | |
71038f52 | 5536 | |
839a1f79 KRW |
5537 | FRONTSWAP API |
5538 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
5539 | L: linux-kernel@vger.kernel.org | |
5540 | S: Maintained | |
5541 | F: mm/frontswap.c | |
5542 | F: include/linux/frontswap.h | |
5543 | ||
a5432f5a | 5544 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 5545 | M: David Howells <dhowells@redhat.com> |
e62d6e24 | 5546 | L: linux-cachefs@redhat.com (moderated for non-subscribers) |
a5432f5a DH |
5547 | S: Supported |
5548 | F: Documentation/filesystems/caching/ | |
5549 | F: fs/fscache/ | |
5550 | F: include/linux/fscache*.h | |
5551 | ||
90fce086 | 5552 | FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT |
598c7d7a TT |
5553 | M: Theodore Y. Ts'o <tytso@mit.edu> |
5554 | M: Jaegeuk Kim <jaegeuk@kernel.org> | |
90fce086 EB |
5555 | L: linux-fscrypt@vger.kernel.org |
5556 | Q: https://patchwork.kernel.org/project/linux-fscrypt/list/ | |
5557 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/fscrypt.git | |
598c7d7a TT |
5558 | S: Supported |
5559 | F: fs/crypto/ | |
46f47e48 | 5560 | F: include/linux/fscrypt*.h |
598c7d7a | 5561 | |
5ab7ffea | 5562 | FUJITSU FR-V (FRV) PORT |
0cf0305f | 5563 | S: Orphan |
679655da | 5564 | F: arch/frv/ |
1da177e4 | 5565 | |
20b93734 | 5566 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 5567 | M: Jonathan Woithe <jwoithe@just42.net> |
d0944853 | 5568 | L: platform-driver-x86@vger.kernel.org |
20b93734 | 5569 | S: Maintained |
679655da | 5570 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 5571 | |
4da621b6 HK |
5572 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
5573 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
5574 | M: Heungjun Kim <riverful.kim@samsung.com> | |
5575 | L: linux-media@vger.kernel.org | |
5576 | S: Maintained | |
90d72ac6 | 5577 | F: drivers/media/i2c/m5mols/ |
b5dcee22 | 5578 | F: include/media/i2c/m5mols.h |
4da621b6 | 5579 | |
2d24c490 RG |
5580 | FUJITSU TABLET EXTRAS |
5581 | M: Robert Gerlach <khnz@gmx.de> | |
5582 | L: platform-driver-x86@vger.kernel.org | |
5583 | S: Maintained | |
5584 | F: drivers/platform/x86/fujitsu-tablet.c | |
5585 | ||
04578f17 | 5586 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 5587 | M: Miklos Szeredi <miklos@szeredi.hu> |
4441f63a | 5588 | L: linux-fsdevel@vger.kernel.org |
04578f17 | 5589 | W: http://fuse.sourceforge.net/ |
0a30f612 | 5590 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git |
04578f17 | 5591 | S: Maintained |
679655da | 5592 | F: fs/fuse/ |
c117ab84 | 5593 | F: include/uapi/linux/fuse.h |
0a30f612 | 5594 | F: Documentation/filesystems/fuse.txt |
04578f17 | 5595 | |
59cd42c2 DHV |
5596 | FUTEX SUBSYSTEM |
5597 | M: Thomas Gleixner <tglx@linutronix.de> | |
5598 | M: Ingo Molnar <mingo@redhat.com> | |
5599 | R: Peter Zijlstra <peterz@infradead.org> | |
5600 | R: Darren Hart <dvhart@infradead.org> | |
5601 | L: linux-kernel@vger.kernel.org | |
5602 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core | |
5603 | S: Maintained | |
5604 | F: kernel/futex.c | |
5605 | F: kernel/futex_compat.c | |
5606 | F: include/asm-generic/futex.h | |
5607 | F: include/linux/futex.h | |
5608 | F: include/uapi/linux/futex.h | |
5609 | F: tools/testing/selftests/futex/ | |
5610 | F: tools/perf/bench/futex* | |
5611 | F: Documentation/*futex* | |
5612 | ||
1da177e4 | 5613 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 5614 | M: Rik Faith <faith@cs.unc.edu> |
1da177e4 | 5615 | L: linux-scsi@vger.kernel.org |
baaea1dc | 5616 | S: Odd Fixes (e.g., new signatures) |
679655da | 5617 | F: drivers/scsi/fdomain.* |
1da177e4 | 5618 | |
6b90bd4b ER |
5619 | GCC PLUGINS |
5620 | M: Kees Cook <keescook@chromium.org> | |
5621 | R: Emese Revfy <re.emese@gmail.com> | |
5622 | L: kernel-hardening@lists.openwall.com | |
5623 | S: Maintained | |
5624 | F: scripts/gcc-plugins/ | |
5625 | F: scripts/gcc-plugin.sh | |
68fdc678 | 5626 | F: scripts/Makefile.gcc-plugins |
6b90bd4b ER |
5627 | F: Documentation/gcc-plugins.txt |
5628 | ||
d8e2162c PO |
5629 | GCOV BASED KERNEL PROFILING |
5630 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
5631 | S: Maintained | |
5632 | F: kernel/gcov/ | |
2584bab2 | 5633 | F: Documentation/dev-tools/gcov.rst |
d8e2162c | 5634 | |
82abbea7 RD |
5635 | GDB KERNEL DEBUGGING HELPER SCRIPTS |
5636 | M: Jan Kiszka <jan.kiszka@siemens.com> | |
5637 | M: Kieran Bingham <kieran@bingham.xyz> | |
5638 | S: Supported | |
5639 | F: scripts/gdb/ | |
5640 | ||
1da177e4 | 5641 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
8b58be88 | 5642 | M: Achim Leubner <achim_leubner@adaptec.com> |
1da177e4 LT |
5643 | L: linux-scsi@vger.kernel.org |
5644 | W: http://www.icp-vortex.com/ | |
5645 | S: Supported | |
679655da | 5646 | F: drivers/scsi/gdt* |
1da177e4 | 5647 | |
3169a1c7 HV |
5648 | GEMTEK FM RADIO RECEIVER DRIVER |
5649 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5650 | L: linux-media@vger.kernel.org | |
5651 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 5652 | W: https://linuxtv.org |
3169a1c7 HV |
5653 | S: Maintained |
5654 | F: drivers/media/radio/radio-gemtek* | |
5655 | ||
1c23af90 | 5656 | GENERIC GPIO I2C DRIVER |
880b0e26 | 5657 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1c23af90 | 5658 | S: Supported |
679655da JP |
5659 | F: drivers/i2c/busses/i2c-gpio.c |
5660 | F: include/linux/i2c-gpio.h | |
1c23af90 | 5661 | |
92ed1a76 PK |
5662 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
5663 | M: Peter Korsgaard <peter.korsgaard@barco.com> | |
5664 | L: linux-i2c@vger.kernel.org | |
5665 | S: Supported | |
e7065e20 JD |
5666 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
5667 | F: include/linux/i2c-mux-gpio.h | |
5668 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 5669 | |
9251ce95 | 5670 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 5671 | M: Krzysztof Halasa <khc@pm.waw.pl> |
1da177e4 LT |
5672 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
5673 | S: Maintained | |
679655da JP |
5674 | F: drivers/net/wan/c101.c |
5675 | F: drivers/net/wan/hd6457* | |
5676 | F: drivers/net/wan/hdlc* | |
5677 | F: drivers/net/wan/n2.c | |
5678 | F: drivers/net/wan/pc300too.c | |
5679 | F: drivers/net/wan/pci200syn.c | |
5680 | F: drivers/net/wan/wanxl* | |
1da177e4 | 5681 | |
1527aab6 | 5682 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 5683 | M: Arnd Bergmann <arnd@arndb.de> |
1527aab6 AB |
5684 | L: linux-arch@vger.kernel.org |
5685 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
5686 | S: Maintained | |
14430813 JP |
5687 | F: include/asm-generic/ |
5688 | F: include/uapi/asm-generic/ | |
1527aab6 | 5689 | |
ff764963 KVA |
5690 | GENERIC PHY FRAMEWORK |
5691 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
5692 | L: linux-kernel@vger.kernel.org | |
5693 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git | |
5694 | S: Supported | |
5695 | F: drivers/phy/ | |
5696 | F: include/linux/phy/ | |
5697 | ||
eea97aed KH |
5698 | GENERIC PM DOMAINS |
5699 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> | |
5700 | M: Kevin Hilman <khilman@kernel.org> | |
5701 | M: Ulf Hansson <ulf.hansson@linaro.org> | |
5702 | L: linux-pm@vger.kernel.org | |
5703 | S: Supported | |
5704 | F: drivers/base/power/domain*.c | |
5705 | F: include/linux/pm_domain.h | |
5e68ebd0 | 5706 | F: Documentation/devicetree/bindings/power/power_domain.txt |
eea97aed | 5707 | |
ccb86a69 | 5708 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 5709 | M: "Michael S. Tsirkin" <mst@redhat.com> |
ccb86a69 | 5710 | L: kvm@vger.kernel.org |
ccb86a69 MT |
5711 | S: Supported |
5712 | F: drivers/uio/uio_pci_generic.c | |
5713 | ||
a7d5afe8 GKB |
5714 | GENWQE (IBM Generic Workqueue Card) |
5715 | M: Frank Haverkamp <haver@linux.vnet.ibm.com> | |
cdc1daca | 5716 | M: Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com> |
a7d5afe8 GKB |
5717 | S: Supported |
5718 | F: drivers/misc/genwqe/ | |
5719 | ||
82abbea7 RD |
5720 | GET_MAINTAINER SCRIPT |
5721 | M: Joe Perches <joe@perches.com> | |
5722 | S: Maintained | |
5723 | F: scripts/get_maintainer.pl | |
5724 | ||
5be7b50f | 5725 | GFS2 FILE SYSTEM |
8b58be88 | 5726 | M: Steven Whitehouse <swhiteho@redhat.com> |
28666d6d | 5727 | M: Bob Peterson <rpeterso@redhat.com> |
a4644184 | 5728 | L: cluster-devel@redhat.com |
5be7b50f | 5729 | W: http://sources.redhat.com/cluster/ |
28666d6d | 5730 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git |
5be7b50f | 5731 | S: Supported |
679655da JP |
5732 | F: Documentation/filesystems/gfs2*.txt |
5733 | F: fs/gfs2/ | |
c117ab84 | 5734 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 5735 | |
0a34eb8f | 5736 | GIGASET ISDN DRIVERS |
6b096fde | 5737 | M: Paul Bolle <pebolle@tiscali.nl> |
0a34eb8f HL |
5738 | L: gigaset307x-common@lists.sourceforge.net |
5739 | W: http://gigaset307x.sourceforge.net/ | |
6b096fde | 5740 | S: Odd Fixes |
679655da JP |
5741 | F: Documentation/isdn/README.gigaset |
5742 | F: drivers/isdn/gigaset/ | |
c117ab84 | 5743 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 5744 | |
7eea35fe JP |
5745 | GO7007 MPEG CODEC |
5746 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
5747 | L: linux-media@vger.kernel.org | |
5748 | S: Maintained | |
5749 | F: drivers/media/usb/go7007/ | |
5750 | ||
ca96ea86 BN |
5751 | GOODIX TOUCHSCREEN |
5752 | M: Bastien Nocera <hadess@hadess.net> | |
5753 | L: linux-input@vger.kernel.org | |
5754 | S: Maintained | |
5755 | F: drivers/input/touchscreen/goodix.c | |
5756 | ||
7683e9e5 LT |
5757 | GPIO ACPI SUPPORT |
5758 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
5759 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> | |
5760 | L: linux-gpio@vger.kernel.org | |
5761 | L: linux-acpi@vger.kernel.org | |
5762 | S: Maintained | |
5763 | F: Documentation/acpi/gpio-properties.txt | |
5764 | F: drivers/gpio/gpiolib-acpi.c | |
5765 | ||
a6a1cf3d BJZ |
5766 | GPIO MOCKUP DRIVER |
5767 | M: Bamvor Jian Zhang <bamvor.zhangjian@linaro.org> | |
5768 | L: linux-gpio@vger.kernel.org | |
5769 | S: Maintained | |
5770 | F: drivers/gpio/gpio-mockup.c | |
5771 | F: tools/testing/selftests/gpio/ | |
5772 | ||
a0dc00b4 | 5773 | GPIO SUBSYSTEM |
e4651a9f | 5774 | M: Linus Walleij <linus.walleij@linaro.org> |
d15b7179 | 5775 | L: linux-gpio@vger.kernel.org |
f2fa75cd LW |
5776 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git |
5777 | S: Maintained | |
cd97a449 | 5778 | F: Documentation/devicetree/bindings/gpio/ |
f2fa75cd | 5779 | F: Documentation/gpio/ |
40c159b7 | 5780 | F: Documentation/ABI/testing/gpio-cdev |
fe95046e | 5781 | F: Documentation/ABI/obsolete/sysfs-gpio |
a0dc00b4 | 5782 | F: drivers/gpio/ |
bdc6e95e AC |
5783 | F: include/linux/gpio/ |
5784 | F: include/linux/gpio.h | |
9b692346 | 5785 | F: include/asm-generic/gpio.h |
3c702e99 | 5786 | F: include/uapi/linux/gpio.h |
6d591c46 | 5787 | F: tools/gpio/ |
a0dc00b4 | 5788 | |
71a6d0af HW |
5789 | GRE DEMULTIPLEXER DRIVER |
5790 | M: Dmitry Kozlov <xeb@mail.ru> | |
5791 | L: netdev@vger.kernel.org | |
5792 | S: Maintained | |
11c26770 JP |
5793 | F: net/ipv4/gre_demux.c |
5794 | F: net/ipv4/gre_offload.c | |
71a6d0af HW |
5795 | F: include/net/gre.h |
5796 | ||
d4c41139 | 5797 | GRETH 10/100/1G Ethernet MAC device driver |
bbdd09eb | 5798 | M: Andreas Larsson <andreas@gaisler.com> |
d4c41139 KG |
5799 | L: netdev@vger.kernel.org |
5800 | S: Maintained | |
a31a96ad | 5801 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 5802 | |
926706c5 VA |
5803 | GREYBUS AUDIO PROTOCOLS DRIVERS |
5804 | M: Vaibhav Agarwal <vaibhav.sr@gmail.com> | |
88638cf1 | 5805 | M: Mark Greer <mgreer@animalcreek.com> |
926706c5 | 5806 | S: Maintained |
544a6944 MG |
5807 | F: drivers/staging/greybus/audio_apbridgea.c |
5808 | F: drivers/staging/greybus/audio_apbridgea.h | |
926706c5 | 5809 | F: drivers/staging/greybus/audio_codec.c |
544a6944 MG |
5810 | F: drivers/staging/greybus/audio_codec.h |
5811 | F: drivers/staging/greybus/audio_gb.c | |
5812 | F: drivers/staging/greybus/audio_manager.c | |
5813 | F: drivers/staging/greybus/audio_manager.h | |
5814 | F: drivers/staging/greybus/audio_manager_module.c | |
5815 | F: drivers/staging/greybus/audio_manager_private.h | |
5816 | F: drivers/staging/greybus/audio_manager_sysfs.c | |
926706c5 VA |
5817 | F: drivers/staging/greybus/audio_module.c |
5818 | F: drivers/staging/greybus/audio_topology.c | |
5819 | ||
f47e07bc | 5820 | GREYBUS FW/HID/SPI PROTOCOLS DRIVERS |
5bd16350 VK |
5821 | M: Viresh Kumar <vireshk@kernel.org> |
5822 | S: Maintained | |
5823 | F: drivers/staging/greybus/authentication.c | |
5824 | F: drivers/staging/greybus/bootrom.c | |
5825 | F: drivers/staging/greybus/firmware.h | |
5826 | F: drivers/staging/greybus/fw-core.c | |
5827 | F: drivers/staging/greybus/fw-download.c | |
5828 | F: drivers/staging/greybus/fw-managament.c | |
5829 | F: drivers/staging/greybus/greybus_authentication.h | |
5830 | F: drivers/staging/greybus/greybus_firmware.h | |
5831 | F: drivers/staging/greybus/hid.c | |
5832 | F: drivers/staging/greybus/i2c.c | |
5833 | F: drivers/staging/greybus/spi.c | |
5834 | F: drivers/staging/greybus/spilib.c | |
5835 | F: drivers/staging/greybus/spilib.h | |
5836 | ||
a1ffc2d2 | 5837 | GREYBUS LOOPBACK/TIME PROTOCOLS DRIVERS |
7683e9e5 | 5838 | M: Bryan O'Donoghue <pure.logic@nexus-software.ie> |
8d904fe5 | 5839 | S: Maintained |
7683e9e5 LT |
5840 | F: drivers/staging/greybus/loopback.c |
5841 | F: drivers/staging/greybus/timesync.c | |
5842 | F: drivers/staging/greybus/timesync_platform.c | |
8d904fe5 | 5843 | |
92b8bd96 VH |
5844 | GREYBUS PLATFORM DRIVERS |
5845 | M: Vaibhav Hiremath <hvaibhav.linux@gmail.com> | |
5846 | S: Maintained | |
5847 | F: drivers/staging/greybus/arche-platform.c | |
5848 | F: drivers/staging/greybus/arche-apb-ctrl.c | |
5849 | F: drivers/staging/greybus/arche_platform.h | |
5850 | ||
7683e9e5 LT |
5851 | GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS |
5852 | M: Rui Miguel Silva <rmfrfs@gmail.com> | |
5853 | S: Maintained | |
5854 | F: drivers/staging/greybus/sdio.c | |
5855 | F: drivers/staging/greybus/light.c | |
5856 | F: drivers/staging/greybus/gpio.c | |
5857 | F: drivers/staging/greybus/power_supply.c | |
5858 | F: drivers/staging/greybus/spi.c | |
5859 | F: drivers/staging/greybus/spilib.c | |
5860 | ||
5861 | GREYBUS SUBSYSTEM | |
5862 | M: Johan Hovold <johan@kernel.org> | |
5863 | M: Alex Elder <elder@kernel.org> | |
5864 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
5865 | S: Maintained | |
5866 | F: drivers/staging/greybus/ | |
5867 | L: greybus-dev@lists.linaro.org (moderated for non-subscribers) | |
5868 | ||
5869 | GREYBUS UART PROTOCOLS DRIVERS | |
5870 | M: David Lin <dtwlin@gmail.com> | |
5871 | S: Maintained | |
5872 | F: drivers/staging/greybus/uart.c | |
5873 | F: drivers/staging/greybus/log.c | |
5874 | ||
7aae6e2d CAC |
5875 | GS1662 VIDEO SERIALIZER |
5876 | M: Charles-Antoine Couret <charles-antoine.couret@nexvision.fr> | |
5877 | L: linux-media@vger.kernel.org | |
5878 | T: git git://linuxtv.org/media_tree.git | |
5879 | S: Maintained | |
5880 | F: drivers/media/spi/gs1662.c | |
5881 | ||
e8deeae2 | 5882 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 5883 | M: Frank Zago <frank@zago.net> |
661263b5 | 5884 | L: linux-media@vger.kernel.org |
275ffde4 | 5885 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 5886 | S: Maintained |
0c0d06ca | 5887 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 5888 | |
4b3fa3c4 OL |
5889 | GSPCA GL860 SUBDRIVER |
5890 | M: Olivier Lorin <o.lorin@laposte.net> | |
5891 | L: linux-media@vger.kernel.org | |
275ffde4 | 5892 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 5893 | S: Maintained |
0c0d06ca | 5894 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 5895 | |
e8deeae2 | 5896 | GSPCA M5602 SUBDRIVER |
8b58be88 | 5897 | M: Erik Andren <erik.andren@gmail.com> |
661263b5 | 5898 | L: linux-media@vger.kernel.org |
275ffde4 | 5899 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 5900 | S: Maintained |
0c0d06ca | 5901 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
5902 | |
5903 | GSPCA PAC207 SONIXB SUBDRIVER | |
c0936df4 | 5904 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 5905 | L: linux-media@vger.kernel.org |
275ffde4 | 5906 | T: git git://linuxtv.org/media_tree.git |
c0936df4 | 5907 | S: Odd Fixes |
0c0d06ca | 5908 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 5909 | |
261982f1 | 5910 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 5911 | M: Brian Johnson <brijohn@gmail.com> |
261982f1 | 5912 | L: linux-media@vger.kernel.org |
275ffde4 | 5913 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 5914 | S: Maintained |
0c0d06ca | 5915 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 5916 | |
e8deeae2 | 5917 | GSPCA T613 SUBDRIVER |
8b58be88 | 5918 | M: Leandro Costantino <lcostantino@gmail.com> |
661263b5 | 5919 | L: linux-media@vger.kernel.org |
275ffde4 | 5920 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 5921 | S: Maintained |
0c0d06ca | 5922 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
5923 | |
5924 | GSPCA USB WEBCAM DRIVER | |
c0936df4 | 5925 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 5926 | L: linux-media@vger.kernel.org |
275ffde4 | 5927 | T: git git://linuxtv.org/media_tree.git |
c0936df4 | 5928 | S: Odd Fixes |
0c0d06ca | 5929 | F: drivers/media/usb/gspca/ |
e8deeae2 | 5930 | |
bed45f79 PN |
5931 | GTP (GPRS Tunneling Protocol) |
5932 | M: Pablo Neira Ayuso <pablo@netfilter.org> | |
5933 | M: Harald Welte <laforge@gnumonks.org> | |
5934 | L: osmocom-net-gprs@lists.osmocom.org | |
5935 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git | |
5936 | S: Maintained | |
5937 | F: drivers/net/gtp.c | |
5938 | ||
584ec979 | 5939 | GUID PARTITION TABLE (GPT) |
4f973c63 | 5940 | M: Davidlohr Bueso <dave@stgolabs.net> |
584ec979 DB |
5941 | L: linux-efi@vger.kernel.org |
5942 | S: Maintained | |
5943 | F: block/partitions/efi.* | |
5944 | ||
4e456b86 YS |
5945 | H8/300 ARCHITECTURE |
5946 | M: Yoshinori Sato <ysato@users.sourceforge.jp> | |
b992c768 | 5947 | L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers) |
4e456b86 YS |
5948 | W: http://uclinux-h8.sourceforge.jp |
5949 | T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git | |
5950 | S: Maintained | |
5951 | F: arch/h8300/ | |
5952 | F: drivers/clocksource/h8300_*.c | |
5953 | F: drivers/clk/h8300/ | |
5954 | F: drivers/irqchip/irq-renesas-h8*.c | |
5955 | ||
e5ab1477 AP |
5956 | HACKRF MEDIA DRIVER |
5957 | M: Antti Palosaari <crope@iki.fi> | |
5958 | L: linux-media@vger.kernel.org | |
a825eaec | 5959 | W: https://linuxtv.org |
e5ab1477 AP |
5960 | W: http://palosaari.fi/linux/ |
5961 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5962 | T: git git://linuxtv.org/anttip/media_tree.git | |
5963 | S: Maintained | |
5964 | F: drivers/media/usb/hackrf/ | |
5965 | ||
82abbea7 RD |
5966 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
5967 | M: Frank Seidel <frank@f-seidel.de> | |
5968 | L: platform-driver-x86@vger.kernel.org | |
5969 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
5970 | S: Maintained | |
5971 | F: drivers/platform/x86/hdaps.c | |
5972 | ||
5b543965 | 5973 | HARDWARE MONITORING |
d8130624 | 5974 | M: Jean Delvare <jdelvare@suse.com> |
ca462085 | 5975 | M: Guenter Roeck <linux@roeck-us.net> |
968ce1b1 GR |
5976 | L: linux-hwmon@vger.kernel.org |
5977 | W: http://hwmon.wiki.kernel.org/ | |
a94ef4ed | 5978 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/ |
885374e3 | 5979 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 5980 | S: Maintained |
047f4ec2 | 5981 | F: Documentation/hwmon/ |
679655da | 5982 | F: drivers/hwmon/ |
047f4ec2 | 5983 | F: include/linux/hwmon*.h |
5b543965 | 5984 | |
844dd05f | 5985 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
5986 | M: Matt Mackall <mpm@selenic.com> |
5987 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
3eda7167 | 5988 | L: linux-crypto@vger.kernel.org |
c0d0787b | 5989 | S: Odd fixes |
f6c60b15 | 5990 | F: Documentation/devicetree/bindings/rng/ |
679655da JP |
5991 | F: Documentation/hw_random.txt |
5992 | F: drivers/char/hw_random/ | |
5993 | F: include/linux/hw_random.h | |
844dd05f | 5994 | |
8b37fcfc OBC |
5995 | HARDWARE SPINLOCK CORE |
5996 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
69ae9895 | 5997 | M: Bjorn Andersson <bjorn.andersson@linaro.org> |
d7586849 | 5998 | L: linux-remoteproc@vger.kernel.org |
8b37fcfc | 5999 | S: Maintained |
9f273c24 | 6000 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git |
2dbd8585 | 6001 | F: Documentation/devicetree/bindings/hwlock/ |
8b37fcfc | 6002 | F: Documentation/hwspinlock.txt |
2dbd8585 | 6003 | F: drivers/hwspinlock/ |
8b37fcfc OBC |
6004 | F: include/linux/hwspinlock.h |
6005 | ||
1da177e4 | 6006 | HARMONY SOUND DRIVER |
ac6aecbf | 6007 | L: linux-parisc@vger.kernel.org |
1da177e4 | 6008 | S: Maintained |
679655da | 6009 | F: sound/parisc/harmony.* |
1da177e4 | 6010 | |
82abbea7 RD |
6011 | HDPVR USB VIDEO ENCODER DRIVER |
6012 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
6013 | L: linux-media@vger.kernel.org | |
6014 | T: git git://linuxtv.org/media_tree.git | |
6015 | W: https://linuxtv.org | |
6016 | S: Odd Fixes | |
6017 | F: drivers/media/usb/hdpvr/ | |
6018 | ||
214de83e | 6019 | HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER |
4cfccbda | 6020 | M: Jimmy Vance <jimmy.vance@hpe.com> |
214de83e BB |
6021 | S: Supported |
6022 | F: Documentation/watchdog/hpwdt.txt | |
6023 | F: drivers/watchdog/hpwdt.c | |
6024 | ||
9257aa49 | 6025 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
a0a268ad | 6026 | M: Don Brace <don.brace@microsemi.com> |
a0a268ad | 6027 | L: esc.storagedev@microsemi.com |
693373db | 6028 | L: linux-scsi@vger.kernel.org |
9257aa49 SC |
6029 | S: Supported |
6030 | F: Documentation/scsi/hpsa.txt | |
6031 | F: drivers/scsi/hpsa*.[ch] | |
6032 | F: include/linux/cciss*.h | |
c117ab84 | 6033 | F: include/uapi/linux/cciss*.h |
9257aa49 | 6034 | |
e2d1d6c0 | 6035 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
516fdcea | 6036 | M: Don Brace <don.brace@microsemi.com> |
516fdcea | 6037 | L: esc.storagedev@microsemi.com |
693373db | 6038 | L: linux-scsi@vger.kernel.org |
e2d1d6c0 | 6039 | S: Supported |
679655da JP |
6040 | F: Documentation/blockdev/cciss.txt |
6041 | F: drivers/block/cciss* | |
6042 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 6043 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 6044 | |
f48ad614 DD |
6045 | HFI1 DRIVER |
6046 | M: Mike Marciniszyn <mike.marciniszyn@intel.com> | |
6047 | M: Dennis Dalessandro <dennis.dalessandro@intel.com> | |
6048 | L: linux-rdma@vger.kernel.org | |
6049 | S: Supported | |
6050 | F: drivers/infiniband/hw/hfi1 | |
6051 | ||
1da177e4 | 6052 | HFS FILESYSTEM |
6cf515e1 GU |
6053 | L: linux-fsdevel@vger.kernel.org |
6054 | S: Orphan | |
679655da JP |
6055 | F: Documentation/filesystems/hfs.txt |
6056 | F: fs/hfs/ | |
1da177e4 | 6057 | |
ef575f47 GU |
6058 | HFSPLUS FILESYSTEM |
6059 | L: linux-fsdevel@vger.kernel.org | |
6060 | S: Orphan | |
6061 | F: Documentation/filesystems/hfsplus.txt | |
6062 | F: fs/hfsplus/ | |
6063 | ||
1da177e4 | 6064 | HGA FRAMEBUFFER DRIVER |
8b58be88 | 6065 | M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> |
1da177e4 LT |
6066 | L: linux-nvidia@lists.surfsouth.com |
6067 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
6068 | S: Maintained | |
8a61f013 | 6069 | F: drivers/video/fbdev/hgafb.c |
1da177e4 | 6070 | |
4480f15b | 6071 | HIBERNATION (aka Software Suspend, aka swsusp) |
49db1903 | 6072 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 6073 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 6074 | L: linux-pm@vger.kernel.org |
68656443 | 6075 | B: https://bugzilla.kernel.org |
e2d1d6c0 | 6076 | S: Supported |
679655da JP |
6077 | F: arch/x86/power/ |
6078 | F: drivers/base/power/ | |
6079 | F: kernel/power/ | |
6080 | F: include/linux/suspend.h | |
6081 | F: include/linux/freezer.h | |
6082 | F: include/linux/pm.h | |
679655da | 6083 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 6084 | |
4ef4caad | 6085 | HID CORE LAYER |
e5f6450c | 6086 | M: Jiri Kosina <jikos@kernel.org> |
406df153 | 6087 | R: Benjamin Tissoires <benjamin.tissoires@redhat.com> |
eb76c5c0 | 6088 | L: linux-input@vger.kernel.org |
54e5881d | 6089 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 6090 | S: Maintained |
679655da JP |
6091 | F: drivers/hid/ |
6092 | F: include/linux/hid* | |
c117ab84 | 6093 | F: include/uapi/linux/hid* |
4ef4caad | 6094 | |
30ee72f0 | 6095 | HID SENSOR HUB DRIVERS |
e5f6450c | 6096 | M: Jiri Kosina <jikos@kernel.org> |
30ee72f0 SP |
6097 | M: Jonathan Cameron <jic23@kernel.org> |
6098 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> | |
6099 | L: linux-input@vger.kernel.org | |
6100 | L: linux-iio@vger.kernel.org | |
6101 | S: Maintained | |
6102 | F: Documentation/hid/hid-sensor* | |
6103 | F: drivers/hid/hid-sensor-* | |
6104 | F: drivers/iio/*/hid-* | |
6105 | F: include/linux/hid-sensor-* | |
6106 | ||
86d35afb | 6107 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS |
8b58be88 | 6108 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 6109 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 6110 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 6111 | S: Maintained |
679655da | 6112 | F: Documentation/timers/ |
5cee9645 | 6113 | F: kernel/time/hrtimer.c |
88606e80 | 6114 | F: kernel/time/clockevents.c |
88606e80 | 6115 | F: kernel/time/timer_*.c |
05ed8490 | 6116 | F: include/linux/clockchips.h |
679655da | 6117 | F: include/linux/hrtimer.h |
38bed542 | 6118 | |
1da177e4 | 6119 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 6120 | L: linux-hams@vger.kernel.org |
8b64f2a0 | 6121 | S: Orphan |
679655da JP |
6122 | F: drivers/net/hamradio/dmascc.c |
6123 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 6124 | |
ede1e6f8 | 6125 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 6126 | M: HighPoint Linux Team <linux@highpoint-tech.com> |
ede1e6f8 HLT |
6127 | W: http://www.highpoint-tech.com |
6128 | S: Supported | |
679655da JP |
6129 | F: Documentation/scsi/hptiop.txt |
6130 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 6131 | |
1da177e4 | 6132 | HIPPI |
8b58be88 | 6133 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
6134 | L: linux-hippi@sunsite.dk |
6135 | S: Maintained | |
679655da | 6136 | F: include/linux/hippidevice.h |
c117ab84 | 6137 | F: include/uapi/linux/if_hippi.h |
679655da | 6138 | F: net/802/hippi.c |
ff5a3b50 | 6139 | F: drivers/net/hippi/ |
1da177e4 | 6140 | |
b30d74e4 DH |
6141 | HISILICON NETWORK SUBSYSTEM DRIVER |
6142 | M: Yisen Zhuang <yisen.zhuang@huawei.com> | |
6143 | M: Salil Mehta <salil.mehta@huawei.com> | |
6144 | L: netdev@vger.kernel.org | |
6145 | W: http://www.hisilicon.com | |
6146 | S: Maintained | |
6147 | F: drivers/net/ethernet/hisilicon/ | |
6148 | F: Documentation/devicetree/bindings/net/hisilicon*.txt | |
6149 | ||
66a9bae6 | 6150 | HISILICON ROCE DRIVER |
6151 | M: Lijun Ou <oulijun@huawei.com> | |
6152 | M: Wei Hu(Xavier) <xavier.huwei@huawei.com> | |
6153 | L: linux-rdma@vger.kernel.org | |
6154 | S: Maintained | |
6155 | F: drivers/infiniband/hw/hns/ | |
6156 | F: Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt | |
6157 | ||
16c6c252 JG |
6158 | HISILICON SAS Controller |
6159 | M: John Garry <john.garry@huawei.com> | |
6160 | W: http://www.hisilicon.com | |
6161 | S: Supported | |
6162 | F: drivers/scsi/hisi_sas/ | |
6163 | F: Documentation/devicetree/bindings/scsi/hisilicon-sas.txt | |
6164 | ||
ff1d2767 | 6165 | HOST AP DRIVER |
8b58be88 | 6166 | M: Jouni Malinen <j@w1.fi> |
724c6b35 | 6167 | L: linux-wireless@vger.kernel.org |
ffd74aca JM |
6168 | W: http://w1.fi/hostap-driver.html |
6169 | S: Obsolete | |
eb4f98d5 | 6170 | F: drivers/net/wireless/intersil/hostap/ |
ff1d2767 | 6171 | |
dd8cd779 | 6172 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 6173 | L: platform-driver-x86@vger.kernel.org |
95c70215 | 6174 | S: Orphan |
679655da | 6175 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 6176 | |
e2d1d6c0 | 6177 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 6178 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 6179 | S: Maintained |
7e25d724 | 6180 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 6181 | |
7d2c86b5 | 6182 | HPET: High Precision Event Timers driver |
8b58be88 | 6183 | M: Clemens Ladisch <clemens@ladisch.de> |
b9b0332f | 6184 | S: Maintained |
679655da JP |
6185 | F: Documentation/timers/hpet.txt |
6186 | F: drivers/char/hpet.c | |
6187 | F: include/linux/hpet.h | |
c117ab84 | 6188 | F: include/uapi/linux/hpet.h |
b9b0332f | 6189 | |
e07b5d79 | 6190 | HPET: x86 |
9e06f631 | 6191 | S: Orphan |
679655da JP |
6192 | F: arch/x86/kernel/hpet.c |
6193 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 6194 | |
1da177e4 | 6195 | HPFS FILESYSTEM |
8b58be88 | 6196 | M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> |
1da177e4 LT |
6197 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
6198 | S: Maintained | |
679655da | 6199 | F: fs/hpfs/ |
1da177e4 | 6200 | |
3441cded | 6201 | HSI SUBSYSTEM |
56459ea9 SR |
6202 | M: Sebastian Reichel <sre@kernel.org> |
6203 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git | |
3441cded SR |
6204 | S: Maintained |
6205 | F: Documentation/ABI/testing/sysfs-bus-hsi | |
83e676c9 | 6206 | F: Documentation/driver-api/hsi.rst |
3441cded SR |
6207 | F: drivers/hsi/ |
6208 | F: include/linux/hsi/ | |
6209 | F: include/uapi/linux/hsi/ | |
6210 | ||
7d2c86b5 | 6211 | HSO 3G MODEM DRIVER |
0bf09c39 BS |
6212 | L: linux-usb@vger.kernel.org |
6213 | S: Orphan | |
679655da | 6214 | F: drivers/net/usb/hso.c |
11cd29b0 | 6215 | |
19990e29 AB |
6216 | HSR NETWORK PROTOCOL |
6217 | M: Arvid Brodin <arvid.brodin@alten.se> | |
6218 | L: netdev@vger.kernel.org | |
6219 | S: Maintained | |
6220 | F: net/hsr/ | |
6221 | ||
82abbea7 RD |
6222 | HT16K33 LED CONTROLLER DRIVER |
6223 | M: Robin van der Gracht <robin@protonic.nl> | |
6224 | S: Maintained | |
6225 | F: drivers/auxdisplay/ht16k33.c | |
6226 | F: Documentation/devicetree/bindings/display/ht16k33.txt | |
6227 | ||
5a18c343 | 6228 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 6229 | M: Pau Oliva Fora <pof@eslack.org> |
5a18c343 POF |
6230 | L: linux-input@vger.kernel.org |
6231 | S: Maintained | |
679655da | 6232 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 6233 | |
1da177e4 | 6234 | HUGETLB FILESYSTEM |
6d49e352 | 6235 | M: Nadia Yvette Chambers <nyc@holomorphy.com> |
1da177e4 | 6236 | S: Maintained |
679655da | 6237 | F: fs/hugetlbfs/ |
1da177e4 | 6238 | |
fe713d60 JCT |
6239 | HVA ST MEDIA DRIVER |
6240 | M: Jean-Christophe Trotin <jean-christophe.trotin@st.com> | |
6241 | L: linux-media@vger.kernel.org | |
6242 | T: git git://linuxtv.org/media_tree.git | |
6243 | W: https://linuxtv.org | |
6244 | S: Supported | |
6245 | F: drivers/media/platform/sti/hva | |
6246 | ||
82abbea7 RD |
6247 | HWPOISON MEMORY FAILURE HANDLING |
6248 | M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> | |
6249 | L: linux-mm@kvack.org | |
6250 | S: Maintained | |
6251 | F: mm/memory-failure.c | |
6252 | F: mm/hwpoison-inject.c | |
6253 | ||
05183189 | 6254 | Hyper-V CORE AND DRIVERS |
9c3646d1 | 6255 | M: "K. Y. Srinivasan" <kys@microsoft.com> |
05183189 | 6256 | M: Haiyang Zhang <haiyangz@microsoft.com> |
421463b8 | 6257 | M: Stephen Hemminger <sthemmin@microsoft.com> |
05183189 S |
6258 | L: devel@linuxdriverproject.org |
6259 | S: Maintained | |
a4162747 HZ |
6260 | F: arch/x86/include/asm/mshyperv.h |
6261 | F: arch/x86/include/uapi/asm/hyperv.h | |
6262 | F: arch/x86/kernel/cpu/mshyperv.c | |
8730046c | 6263 | F: arch/x86/hyperv |
05183189 | 6264 | F: drivers/hid/hid-hyperv.c |
a4162747 | 6265 | F: drivers/hv/ |
f92ca80b | 6266 | F: drivers/input/serio/hyperv-keyboard.c |
4daace0d | 6267 | F: drivers/pci/host/pci-hyperv.c |
05183189 | 6268 | F: drivers/net/hyperv/ |
a4162747 | 6269 | F: drivers/scsi/storvsc_drv.c |
95096f2f | 6270 | F: drivers/uio/uio_hv_generic.c |
8a61f013 | 6271 | F: drivers/video/fbdev/hyperv_fb.c |
a4162747 HZ |
6272 | F: include/linux/hyperv.h |
6273 | F: tools/hv/ | |
54bf725e | 6274 | F: Documentation/ABI/stable/sysfs-bus-vmbus |
05183189 | 6275 | |
82abbea7 RD |
6276 | HYPERVISOR VIRTUAL CONSOLE DRIVER |
6277 | L: linuxppc-dev@lists.ozlabs.org | |
6278 | S: Odd Fixes | |
6279 | F: drivers/tty/hvc/ | |
6280 | ||
7683e9e5 LT |
6281 | I2C ACPI SUPPORT |
6282 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
6283 | L: linux-i2c@vger.kernel.org | |
6284 | L: linux-acpi@vger.kernel.org | |
6285 | S: Maintained | |
6286 | F: drivers/i2c/i2c-core-acpi.c | |
6287 | ||
7724fd04 PR |
6288 | I2C MUXES |
6289 | M: Peter Rosin <peda@axentia.se> | |
6290 | L: linux-i2c@vger.kernel.org | |
6291 | S: Maintained | |
2254d24a | 6292 | F: Documentation/i2c/i2c-topology |
7724fd04 PR |
6293 | F: Documentation/i2c/muxes/ |
6294 | F: Documentation/devicetree/bindings/i2c/i2c-mux* | |
e8813c15 | 6295 | F: Documentation/devicetree/bindings/i2c/i2c-arb* |
0ac8eb64 | 6296 | F: Documentation/devicetree/bindings/i2c/i2c-gate* |
7724fd04 PR |
6297 | F: drivers/i2c/i2c-mux.c |
6298 | F: drivers/i2c/muxes/ | |
6299 | F: include/linux/i2c-mux.h | |
6300 | ||
d85c8a6a | 6301 | I2C OVER PARALLEL PORT |
d8130624 | 6302 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
6303 | L: linux-i2c@vger.kernel.org |
6304 | S: Maintained | |
6305 | F: Documentation/i2c/busses/i2c-parport | |
6306 | F: Documentation/i2c/busses/i2c-parport-light | |
6307 | F: drivers/i2c/busses/i2c-parport.c | |
6308 | F: drivers/i2c/busses/i2c-parport-light.c | |
6309 | ||
7683e9e5 LT |
6310 | I2C SUBSYSTEM |
6311 | M: Wolfram Sang <wsa@the-dreams.de> | |
6312 | L: linux-i2c@vger.kernel.org | |
6313 | W: https://i2c.wiki.kernel.org/ | |
6314 | Q: https://patchwork.ozlabs.org/project/linux-i2c/list/ | |
6315 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git | |
6316 | S: Maintained | |
6317 | F: Documentation/devicetree/bindings/i2c/ | |
6318 | F: Documentation/i2c/ | |
6319 | F: drivers/i2c/ | |
6320 | F: drivers/i2c/*/ | |
6321 | F: include/linux/i2c.h | |
6322 | F: include/linux/i2c-*.h | |
6323 | F: include/uapi/linux/i2c.h | |
6324 | F: include/uapi/linux/i2c-*.h | |
6325 | ||
6326 | I2C-TAOS-EVM DRIVER | |
6327 | M: Jean Delvare <jdelvare@suse.com> | |
6328 | L: linux-i2c@vger.kernel.org | |
6329 | S: Maintained | |
6330 | F: Documentation/i2c/busses/i2c-taos-evm | |
6331 | F: drivers/i2c/busses/i2c-taos-evm.c | |
6332 | ||
6333 | I2C-TINY-USB DRIVER | |
6334 | M: Till Harbaum <till@harbaum.org> | |
6335 | L: linux-i2c@vger.kernel.org | |
6336 | W: http://www.harbaum.org/till/i2c_tiny_usb | |
6337 | S: Maintained | |
6338 | F: drivers/i2c/busses/i2c-tiny-usb.c | |
6339 | ||
d85c8a6a | 6340 | I2C/SMBUS CONTROLLER DRIVERS FOR PC |
d8130624 | 6341 | M: Jean Delvare <jdelvare@suse.com> |
d85c8a6a JD |
6342 | L: linux-i2c@vger.kernel.org |
6343 | S: Maintained | |
6344 | F: Documentation/i2c/busses/i2c-ali1535 | |
6345 | F: Documentation/i2c/busses/i2c-ali1563 | |
6346 | F: Documentation/i2c/busses/i2c-ali15x3 | |
6347 | F: Documentation/i2c/busses/i2c-amd756 | |
6348 | F: Documentation/i2c/busses/i2c-amd8111 | |
6349 | F: Documentation/i2c/busses/i2c-i801 | |
6350 | F: Documentation/i2c/busses/i2c-nforce2 | |
6351 | F: Documentation/i2c/busses/i2c-piix4 | |
6352 | F: Documentation/i2c/busses/i2c-sis5595 | |
6353 | F: Documentation/i2c/busses/i2c-sis630 | |
6354 | F: Documentation/i2c/busses/i2c-sis96x | |
6355 | F: Documentation/i2c/busses/i2c-via | |
6356 | F: Documentation/i2c/busses/i2c-viapro | |
6357 | F: drivers/i2c/busses/i2c-ali1535.c | |
6358 | F: drivers/i2c/busses/i2c-ali1563.c | |
6359 | F: drivers/i2c/busses/i2c-ali15x3.c | |
6360 | F: drivers/i2c/busses/i2c-amd756.c | |
6361 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
6362 | F: drivers/i2c/busses/i2c-amd8111.c | |
6363 | F: drivers/i2c/busses/i2c-i801.c | |
6364 | F: drivers/i2c/busses/i2c-isch.c | |
6365 | F: drivers/i2c/busses/i2c-nforce2.c | |
6366 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
6367 | F: drivers/i2c/busses/i2c-piix4.c | |
6368 | F: drivers/i2c/busses/i2c-sis5595.c | |
6369 | F: drivers/i2c/busses/i2c-sis630.c | |
6370 | F: drivers/i2c/busses/i2c-sis96x.c | |
6371 | F: drivers/i2c/busses/i2c-via.c | |
6372 | F: drivers/i2c/busses/i2c-viapro.c | |
6373 | ||
cb7f07a4 NH |
6374 | I2C/SMBUS ISMT DRIVER |
6375 | M: Seth Heasley <seth.heasley@intel.com> | |
6376 | M: Neil Horman <nhorman@tuxdriver.com> | |
6377 | L: linux-i2c@vger.kernel.org | |
6378 | F: drivers/i2c/busses/i2c-ismt.c | |
6379 | F: Documentation/i2c/busses/i2c-ismt | |
6380 | ||
7683e9e5 LT |
6381 | I2C/SMBUS STUB DRIVER |
6382 | M: Jean Delvare <jdelvare@suse.com> | |
846557d3 | 6383 | L: linux-i2c@vger.kernel.org |
e8c76eed | 6384 | S: Maintained |
7683e9e5 | 6385 | F: drivers/i2c/i2c-stub.c |
e8c76eed | 6386 | |
1da177e4 | 6387 | i386 BOOT CODE |
8b58be88 | 6388 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 6389 | S: Maintained |
679655da | 6390 | F: arch/x86/boot/ |
1da177e4 LT |
6391 | |
6392 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 6393 | M: "H. Peter Anvin" <hpa@zytor.com> |
54e5881d | 6394 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
6395 | S: Maintained |
6396 | ||
1da177e4 | 6397 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
6398 | M: Tony Luck <tony.luck@intel.com> |
6399 | M: Fenghua Yu <fenghua.yu@intel.com> | |
1da177e4 | 6400 | L: linux-ia64@vger.kernel.org |
6b1c70b1 | 6401 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 6402 | S: Maintained |
679655da | 6403 | F: arch/ia64/ |
1da177e4 | 6404 | |
7683e9e5 LT |
6405 | IBM Power 842 compression accelerator |
6406 | M: Haren Myneni <haren@us.ibm.com> | |
4cd38750 | 6407 | S: Supported |
7683e9e5 LT |
6408 | F: drivers/crypto/nx/Makefile |
6409 | F: drivers/crypto/nx/Kconfig | |
6410 | F: drivers/crypto/nx/nx-842* | |
6411 | F: include/linux/sw842.h | |
6412 | F: crypto/842.c | |
6413 | F: lib/842/ | |
4cd38750 | 6414 | |
956c203c | 6415 | IBM Power in-Nest Crypto Acceleration |
4cd38750 | 6416 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> |
5cd01fe1 | 6417 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> |
956c203c KY |
6418 | L: linux-crypto@vger.kernel.org |
6419 | S: Supported | |
28bceeaa DS |
6420 | F: drivers/crypto/nx/Makefile |
6421 | F: drivers/crypto/nx/Kconfig | |
6422 | F: drivers/crypto/nx/nx-aes* | |
6423 | F: drivers/crypto/nx/nx-sha* | |
6424 | F: drivers/crypto/nx/nx.* | |
6425 | F: drivers/crypto/nx/nx_csbcpb.h | |
6426 | F: drivers/crypto/nx/nx_debugfs.h | |
956c203c | 6427 | |
1da177e4 | 6428 | IBM Power Linux RAID adapter |
8b58be88 | 6429 | M: Brian King <brking@us.ibm.com> |
1da177e4 | 6430 | S: Supported |
679655da | 6431 | F: drivers/scsi/ipr.* |
1da177e4 | 6432 | |
7683e9e5 | 6433 | IBM Power SRIOV Virtual NIC Device Driver |
eddd63a6 | 6434 | M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> |
7683e9e5 | 6435 | M: John Allen <jallen@linux.vnet.ibm.com> |
9d348af4 SL |
6436 | L: netdev@vger.kernel.org |
6437 | S: Supported | |
7683e9e5 | 6438 | F: drivers/net/ethernet/ibm/ibmvnic.* |
9d348af4 | 6439 | |
7683e9e5 | 6440 | IBM Power Virtual Ethernet Device Driver |
032c5e82 | 6441 | M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> |
032c5e82 TF |
6442 | L: netdev@vger.kernel.org |
6443 | S: Supported | |
7683e9e5 LT |
6444 | F: drivers/net/ethernet/ibm/ibmveth.* |
6445 | ||
6446 | IBM Power Virtual FC Device Drivers | |
6447 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> | |
6448 | L: linux-scsi@vger.kernel.org | |
6449 | S: Supported | |
6450 | F: drivers/scsi/ibmvscsi/ibmvfc* | |
032c5e82 | 6451 | |
e6babec6 | 6452 | IBM Power Virtual SCSI Device Drivers |
bcbde52b | 6453 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
4b7652cc RJ |
6454 | L: linux-scsi@vger.kernel.org |
6455 | S: Supported | |
e6babec6 | 6456 | F: drivers/scsi/ibmvscsi/ibmvscsi* |
88a678bb BL |
6457 | F: include/scsi/viosrp.h |
6458 | ||
6459 | IBM Power Virtual SCSI Device Target Driver | |
6460 | M: Bryant G. Ly <bryantly@linux.vnet.ibm.com> | |
6461 | M: Michael Cyr <mikecyr@linux.vnet.ibm.com> | |
6462 | L: linux-scsi@vger.kernel.org | |
6463 | L: target-devel@vger.kernel.org | |
6464 | S: Supported | |
6465 | F: drivers/scsi/ibmvscsi_tgt/ | |
e6babec6 | 6466 | |
7683e9e5 LT |
6467 | IBM Power VMX Cryptographic instructions |
6468 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> | |
6469 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> | |
6470 | L: linux-crypto@vger.kernel.org | |
e6babec6 | 6471 | S: Supported |
7683e9e5 LT |
6472 | F: drivers/crypto/vmx/Makefile |
6473 | F: drivers/crypto/vmx/Kconfig | |
6474 | F: drivers/crypto/vmx/vmx.c | |
6475 | F: drivers/crypto/vmx/aes* | |
6476 | F: drivers/crypto/vmx/ghash* | |
6477 | F: drivers/crypto/vmx/ppc-xlate.pl | |
4b7652cc | 6478 | |
1da177e4 | 6479 | IBM ServeRAID RAID DRIVER |
f9213e78 | 6480 | S: Orphan |
679655da | 6481 | F: drivers/scsi/ips.* |
1da177e4 | 6482 | |
6ed9f9c4 PT |
6483 | ICH LPC AND GPIO DRIVER |
6484 | M: Peter Tyser <ptyser@xes-inc.com> | |
6485 | S: Maintained | |
6486 | F: drivers/mfd/lpc_ich.c | |
6487 | F: drivers/gpio/gpio-ich.c | |
6488 | ||
1e7106fc | 6489 | IDE SUBSYSTEM |
8b58be88 | 6490 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 6491 | L: linux-ide@vger.kernel.org |
8a6e2535 | 6492 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 6493 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 6494 | S: Maintained |
679655da JP |
6495 | F: Documentation/ide/ |
6496 | F: drivers/ide/ | |
6497 | F: include/linux/ide.h | |
1da177e4 | 6498 | |
82abbea7 RD |
6499 | IDE/ATAPI DRIVERS |
6500 | M: Borislav Petkov <bp@alien8.de> | |
6501 | L: linux-ide@vger.kernel.org | |
6502 | S: Maintained | |
6503 | F: Documentation/cdrom/ide-cd | |
6504 | F: drivers/ide/ide-cd* | |
6505 | ||
6cb8c13d IP |
6506 | IDEAPAD LAPTOP EXTRAS DRIVER |
6507 | M: Ike Panhc <ike.pan@canonical.com> | |
6508 | L: platform-driver-x86@vger.kernel.org | |
6509 | W: http://launchpad.net/ideapad-laptop | |
6510 | S: Maintained | |
6511 | F: drivers/platform/x86/ideapad-laptop.c | |
6512 | ||
1ea4c161 AM |
6513 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
6514 | M: Andrey Moiseev <o2g.org.ru@gmail.com> | |
6515 | L: linux-input@vger.kernel.org | |
6516 | W: https://github.com/o2genum/ideapad-slidebar | |
6517 | S: Maintained | |
6518 | F: drivers/input/misc/ideapad_slidebar.c | |
6519 | ||
82abbea7 RD |
6520 | IDT VersaClock 5 CLOCK DRIVER |
6521 | M: Marek Vasut <marek.vasut@gmail.com> | |
c404c199 | 6522 | S: Maintained |
82abbea7 | 6523 | F: drivers/clk/clk-versaclock5.c |
1da177e4 | 6524 | |
02cf2286 | 6525 | IEEE 802.15.4 SUBSYSTEM |
5bd425aa | 6526 | M: Alexander Aring <alex.aring@gmail.com> |
5cc92049 | 6527 | M: Stefan Schmidt <stefan@osg.samsung.com> |
ebef9c12 | 6528 | L: linux-wpan@vger.kernel.org |
aff3eaa0 AA |
6529 | W: http://wpan.cakelab.org/ |
6530 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git | |
6531 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
02cf2286 SL |
6532 | S: Maintained |
6533 | F: net/ieee802154/ | |
68653359 | 6534 | F: net/mac802154/ |
251741b1 | 6535 | F: drivers/net/ieee802154/ |
580947d3 AA |
6536 | F: include/linux/nl802154.h |
6537 | F: include/linux/ieee802154.h | |
6538 | F: include/net/nl802154.h | |
6539 | F: include/net/mac802154.h | |
6540 | F: include/net/af_ieee802154.h | |
6541 | F: include/net/cfg802154.h | |
6542 | F: include/net/ieee802154_netdev.h | |
ebef9c12 | 6543 | F: Documentation/networking/ieee802154.txt |
02cf2286 | 6544 | |
1ce84604 YG |
6545 | IFE PROTOCOL |
6546 | M: Yotam Gigi <yotamg@mellanox.com> | |
6547 | M: Jamal Hadi Salim <jhs@mojatatu.com> | |
6548 | F: net/ife | |
6549 | F: include/net/ife.h | |
6550 | F: include/uapi/linux/ife.h | |
6551 | ||
b1c97193 SY |
6552 | IGORPLUG-USB IR RECEIVER |
6553 | M: Sean Young <sean@mess.org> | |
6554 | L: linux-media@vger.kernel.org | |
6555 | S: Maintained | |
6556 | F: drivers/media/rc/igorplugusb.c | |
6557 | ||
40ad4a30 SY |
6558 | IGUANAWORKS USB IR TRANSCEIVER |
6559 | M: Sean Young <sean@mess.org> | |
6560 | L: linux-media@vger.kernel.org | |
6561 | S: Maintained | |
6562 | F: drivers/media/rc/iguanair.c | |
6563 | ||
ed13134b PR |
6564 | IIO DIGITAL POTENTIOMETER DAC |
6565 | M: Peter Rosin <peda@axentia.se> | |
6566 | L: linux-iio@vger.kernel.org | |
6567 | S: Maintained | |
7fde1484 | 6568 | F: Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac |
ed13134b | 6569 | F: Documentation/devicetree/bindings/iio/dac/dpot-dac.txt |
7fde1484 | 6570 | F: drivers/iio/dac/dpot-dac.c |
ed13134b | 6571 | |
e778aa14 PR |
6572 | IIO ENVELOPE DETECTOR |
6573 | M: Peter Rosin <peda@axentia.se> | |
6574 | L: linux-iio@vger.kernel.org | |
6575 | S: Maintained | |
b475f80b | 6576 | F: Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector |
e778aa14 | 6577 | F: Documentation/devicetree/bindings/iio/adc/envelope-detector.txt |
b475f80b | 6578 | F: drivers/iio/adc/envelope-detector.c |
e778aa14 | 6579 | |
a36954f5 PR |
6580 | IIO MULTIPLEXER |
6581 | M: Peter Rosin <peda@axentia.se> | |
6582 | L: linux-iio@vger.kernel.org | |
6583 | S: Maintained | |
6584 | F: Documentation/devicetree/bindings/iio/multiplexer/iio-mux.txt | |
7ba9df54 | 6585 | F: drivers/iio/multiplexer/iio-mux.c |
a36954f5 | 6586 | |
9545f86e | 6587 | IIO SUBSYSTEM AND DRIVERS |
030a13d7 | 6588 | M: Jonathan Cameron <jic23@kernel.org> |
f0d61161 LPC |
6589 | R: Hartmut Knaack <knaack.h@gmx.de> |
6590 | R: Lars-Peter Clausen <lars@metafoo.de> | |
6fca5aa8 | 6591 | R: Peter Meerwald-Stadler <pmeerw@pmeerw.net> |
9545f86e | 6592 | L: linux-iio@vger.kernel.org |
21d41655 | 6593 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git |
9545f86e | 6594 | S: Maintained |
866b148a | 6595 | F: Documentation/devicetree/bindings/iio/ |
03e7c251 | 6596 | F: drivers/iio/ |
9545f86e | 6597 | F: drivers/staging/iio/ |
8fe671fc | 6598 | F: include/linux/iio/ |
817020cf | 6599 | F: tools/iio/ |
9545f86e | 6600 | |
65519263 SG |
6601 | IKANOS/ADI EAGLE ADSL USB DRIVER |
6602 | M: Matthieu Castet <castet.matthieu@free.fr> | |
6603 | M: Stanislaw Gruszka <stf_xl@wp.pl> | |
6604 | S: Maintained | |
6605 | F: drivers/usb/atm/ueagle-atm.c | |
6606 | ||
8ef3ff27 PB |
6607 | IMGTEC ASCII LCD DRIVER |
6608 | M: Paul Burton <paul.burton@imgtec.com> | |
6609 | S: Maintained | |
6610 | F: Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt | |
0cad855f | 6611 | F: drivers/auxdisplay/img-ascii-lcd.c |
8ef3ff27 | 6612 | |
82abbea7 RD |
6613 | IMGTEC IR DECODER DRIVER |
6614 | M: James Hogan <james.hogan@imgtec.com> | |
6615 | S: Maintained | |
6616 | F: drivers/media/rc/img-ir/ | |
6617 | ||
6618 | IMS TWINTURBO FRAMEBUFFER DRIVER | |
6619 | L: linux-fbdev@vger.kernel.org | |
6620 | S: Orphan | |
6621 | F: drivers/video/fbdev/imsttfb.c | |
6622 | ||
e89ab51f GR |
6623 | INA209 HARDWARE MONITOR DRIVER |
6624 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 6625 | L: linux-hwmon@vger.kernel.org |
e89ab51f GR |
6626 | S: Maintained |
6627 | F: Documentation/hwmon/ina209 | |
6628 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
6629 | F: drivers/hwmon/ina209.c | |
6630 | ||
6631 | INA2XX HARDWARE MONITOR DRIVER | |
6632 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 6633 | L: linux-hwmon@vger.kernel.org |
e89ab51f GR |
6634 | S: Maintained |
6635 | F: Documentation/hwmon/ina2xx | |
6636 | F: drivers/hwmon/ina2xx.c | |
6637 | F: include/linux/platform_data/ina2xx.h | |
6638 | ||
14dc124f SIG |
6639 | INDUSTRY PACK SUBSYSTEM (IPACK) |
6640 | M: Samuel Iglesias Gonsalvez <siglesias@igalia.com> | |
6641 | M: Jens Taprogge <jens.taprogge@taprogge.org> | |
6642 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
6643 | L: industrypack-devel@lists.sourceforge.net | |
6644 | W: http://industrypack.sourceforge.net | |
6645 | S: Maintained | |
6646 | F: drivers/ipack/ | |
6647 | ||
1da177e4 | 6648 | INFINIBAND SUBSYSTEM |
b6b2bbe6 | 6649 | M: Doug Ledford <dledford@redhat.com> |
8b58be88 JP |
6650 | M: Sean Hefty <sean.hefty@intel.com> |
6651 | M: Hal Rosenstock <hal.rosenstock@gmail.com> | |
e6cc0fd1 | 6652 | L: linux-rdma@vger.kernel.org |
605841f5 | 6653 | W: http://www.openfabrics.org/ |
8a6e2535 | 6654 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
2936ae04 | 6655 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git |
1da177e4 | 6656 | S: Supported |
3d35d32d | 6657 | F: Documentation/devicetree/bindings/infiniband/ |
679655da JP |
6658 | F: Documentation/infiniband/ |
6659 | F: drivers/infiniband/ | |
c117ab84 | 6660 | F: include/uapi/linux/if_infiniband.h |
954138dc YD |
6661 | F: include/uapi/rdma/ |
6662 | F: include/rdma/ | |
1da177e4 | 6663 | |
82abbea7 RD |
6664 | INGENIC JZ4780 DMA Driver |
6665 | M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> | |
6666 | S: Maintained | |
6667 | F: drivers/dma/dma-jz4780.c | |
6668 | ||
6669 | INGENIC JZ4780 NAND DRIVER | |
6670 | M: Harvey Hunt <harveyhuntnexus@gmail.com> | |
6671 | L: linux-mtd@lists.infradead.org | |
6672 | S: Maintained | |
6673 | F: drivers/mtd/nand/jz4780_* | |
6674 | ||
6675 | INOTIFY | |
8b58be88 JP |
6676 | M: John McCutchan <john@johnmccutchan.com> |
6677 | M: Robert Love <rlove@rlove.org> | |
6678 | M: Eric Paris <eparis@parisplace.org> | |
c9f04f58 | 6679 | S: Maintained |
679655da JP |
6680 | F: Documentation/filesystems/inotify.txt |
6681 | F: fs/notify/inotify/ | |
6682 | F: include/linux/inotify.h | |
c117ab84 | 6683 | F: include/uapi/linux/inotify.h |
c9f04f58 | 6684 | |
e2d1d6c0 | 6685 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 | 6686 | M: Dmitry Torokhov <dmitry.torokhov@gmail.com> |
e2d1d6c0 | 6687 | L: linux-input@vger.kernel.org |
8a6e2535 | 6688 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 6689 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 6690 | S: Maintained |
679655da | 6691 | F: drivers/input/ |
f4eea7e2 | 6692 | F: include/linux/input.h |
c117ab84 | 6693 | F: include/uapi/linux/input.h |
65938133 | 6694 | F: include/uapi/linux/input-event-codes.h |
f4eea7e2 | 6695 | F: include/linux/input/ |
e52d8398 | 6696 | F: Documentation/devicetree/bindings/input/ |
65938133 | 6697 | F: Documentation/input/ |
e2d1d6c0 | 6698 | |
3267a87f | 6699 | INPUT MULTITOUCH (MT) PROTOCOL |
75dd112a | 6700 | M: Henrik Rydberg <rydberg@bitmath.org> |
3267a87f | 6701 | L: linux-input@vger.kernel.org |
75dd112a | 6702 | S: Odd fixes |
e2ba5731 | 6703 | F: Documentation/input/multi-touch-protocol.rst |
7f9c2454 | 6704 | F: drivers/input/input-mt.c |
3267a87f HR |
6705 | K: \b(ABS|SYN)_MT_ |
6706 | ||
ee0db78d AT |
6707 | INSIDE SECURE CRYPTO DRIVER |
6708 | M: Antoine Tenart <antoine.tenart@free-electrons.com> | |
6709 | F: drivers/crypto/inside-secure/ | |
6710 | S: Maintained | |
6711 | L: linux-crypto@vger.kernel.org | |
6712 | ||
82abbea7 RD |
6713 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
6714 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> | |
6715 | M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com> | |
6716 | L: linux-ima-devel@lists.sourceforge.net | |
6717 | L: linux-ima-user@lists.sourceforge.net | |
6718 | L: linux-security-module@vger.kernel.org | |
6719 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git | |
6720 | S: Supported | |
6721 | F: security/integrity/ima/ | |
6722 | ||
7683e9e5 LT |
6723 | INTEL 810/815 FRAMEBUFFER DRIVER |
6724 | M: Antonino Daplas <adaplas@gmail.com> | |
6725 | L: linux-fbdev@vger.kernel.org | |
6726 | S: Maintained | |
6727 | F: drivers/video/fbdev/i810/ | |
6728 | ||
97fa99a3 JY |
6729 | INTEL ASoC BDW/HSW DRIVERS |
6730 | M: Jie Yang <yang.jie@linux.intel.com> | |
e5747e40 | 6731 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
97fa99a3 | 6732 | S: Supported |
e8e1225d JP |
6733 | F: sound/soc/intel/common/sst-dsp* |
6734 | F: sound/soc/intel/common/sst-firmware.c | |
6735 | F: sound/soc/intel/boards/broadwell.c | |
6736 | F: sound/soc/intel/haswell/ | |
97fa99a3 | 6737 | |
4ac13e17 DJ |
6738 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
6739 | M: Intel SCU Linux support <intel-linux-scu@intel.com> | |
fdc5813f | 6740 | M: Artur Paszkiewicz <artur.paszkiewicz@intel.com> |
4ac13e17 | 6741 | L: linux-scsi@vger.kernel.org |
7106891a DJ |
6742 | T: git git://git.code.sf.net/p/intel-sas/isci |
6743 | S: Supported | |
4ac13e17 | 6744 | F: drivers/scsi/isci/ |
4ac13e17 | 6745 | |
7683e9e5 LT |
6746 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
6747 | M: Daniel Vetter <daniel.vetter@intel.com> | |
6748 | M: Jani Nikula <jani.nikula@linux.intel.com> | |
6749 | L: intel-gfx@lists.freedesktop.org | |
6750 | W: https://01.org/linuxgraphics/ | |
6751 | B: https://01.org/linuxgraphics/documentation/how-report-bugs | |
6752 | C: irc://chat.freenode.net/intel-gfx | |
6753 | Q: http://patchwork.freedesktop.org/project/intel-gfx/ | |
6754 | T: git git://anongit.freedesktop.org/drm-intel | |
6c8909b4 | 6755 | S: Supported |
7683e9e5 LT |
6756 | F: drivers/gpu/drm/i915/ |
6757 | F: include/drm/i915* | |
6758 | F: include/uapi/drm/i915_drm.h | |
6759 | F: Documentation/gpu/i915.rst | |
844dd05f | 6760 | |
2f302324 | 6761 | INTEL ETHERNET DRIVERS |
8b58be88 | 6762 | M: Jeff Kirsher <jeffrey.t.kirsher@intel.com> |
eff471b1 | 6763 | L: intel-wired-lan@lists.osuosl.org (moderated for non-subscribers) |
f6fde11a | 6764 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 6765 | W: http://e1000.sourceforge.net/ |
2f302324 JK |
6766 | Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/ |
6767 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git | |
6768 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git | |
1da177e4 | 6769 | S: Supported |
0d164401 JK |
6770 | F: Documentation/networking/e100.txt |
6771 | F: Documentation/networking/e1000.txt | |
6772 | F: Documentation/networking/e1000e.txt | |
6773 | F: Documentation/networking/igb.txt | |
6774 | F: Documentation/networking/igbvf.txt | |
6775 | F: Documentation/networking/ixgb.txt | |
6776 | F: Documentation/networking/ixgbe.txt | |
6777 | F: Documentation/networking/ixgbevf.txt | |
1bff6529 | 6778 | F: Documentation/networking/i40e.txt |
105bf2fe | 6779 | F: Documentation/networking/i40evf.txt |
dee1ad47 | 6780 | F: drivers/net/ethernet/intel/ |
bc90d291 | 6781 | F: drivers/net/ethernet/intel/*/ |
681bdf80 | 6782 | F: include/linux/avf/virtchnl.h |
1da177e4 | 6783 | |
7683e9e5 LT |
6784 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
6785 | M: Maik Broemme <mbroemme@libmpq.org> | |
6786 | L: linux-fbdev@vger.kernel.org | |
224f9e6d | 6787 | S: Maintained |
7683e9e5 LT |
6788 | F: Documentation/fb/intelfb.txt |
6789 | F: drivers/video/fbdev/intelfb/ | |
224f9e6d | 6790 | |
7683e9e5 LT |
6791 | INTEL GVT-g DRIVERS (Intel GPU Virtualization) |
6792 | M: Zhenyu Wang <zhenyuw@linux.intel.com> | |
6793 | M: Zhi Wang <zhi.a.wang@intel.com> | |
6794 | L: intel-gvt-dev@lists.freedesktop.org | |
6795 | L: intel-gfx@lists.freedesktop.org | |
6796 | W: https://01.org/igvt-g | |
6797 | T: git https://github.com/01org/gvt-linux.git | |
6798 | S: Supported | |
6799 | F: drivers/gpu/drm/i915/gvt/ | |
0963d59b | 6800 | |
7683e9e5 LT |
6801 | INTEL HID EVENT DRIVER |
6802 | M: Alex Hung <alex.hung@canonical.com> | |
6803 | L: platform-driver-x86@vger.kernel.org | |
ca907a90 | 6804 | S: Maintained |
7683e9e5 | 6805 | F: drivers/platform/x86/intel-hid.c |
5760b0a5 | 6806 | |
7683e9e5 LT |
6807 | INTEL I/OAT DMA DRIVER |
6808 | M: Dave Jiang <dave.jiang@intel.com> | |
6809 | R: Dan Williams <dan.j.williams@intel.com> | |
6810 | L: dmaengine@vger.kernel.org | |
6811 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
4bd96a7a | 6812 | S: Supported |
7683e9e5 | 6813 | F: drivers/dma/ioat* |
4bd96a7a | 6814 | |
7683e9e5 LT |
6815 | INTEL IDLE DRIVER |
6816 | M: Jacob Pan <jacob.jun.pan@linux.intel.com> | |
6817 | M: Len Brown <lenb@kernel.org> | |
6818 | L: linux-pm@vger.kernel.org | |
6819 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git | |
6820 | B: https://bugzilla.kernel.org | |
8a70da82 | 6821 | S: Supported |
7683e9e5 | 6822 | F: drivers/idle/intel_idle.c |
8a70da82 | 6823 | |
7683e9e5 LT |
6824 | INTEL INTEGRATED SENSOR HUB DRIVER |
6825 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> | |
6826 | M: Jiri Kosina <jikos@kernel.org> | |
6827 | L: linux-input@vger.kernel.org | |
6828 | S: Maintained | |
6829 | F: drivers/hid/intel-ish-hid/ | |
efa3144e | 6830 | |
7683e9e5 LT |
6831 | INTEL IOMMU (VT-d) |
6832 | M: David Woodhouse <dwmw2@infradead.org> | |
6833 | L: iommu@lists.linux-foundation.org | |
6834 | T: git git://git.infradead.org/iommu-2.6.git | |
b481de9c | 6835 | S: Supported |
7683e9e5 LT |
6836 | F: drivers/iommu/intel-iommu.c |
6837 | F: include/linux/intel-iommu.h | |
6838 | ||
6839 | INTEL IOP-ADMA DMA DRIVER | |
6840 | R: Dan Williams <dan.j.williams@intel.com> | |
6841 | S: Odd fixes | |
6842 | F: drivers/dma/iop-adma.c | |
6843 | ||
6844 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT | |
6845 | M: Krzysztof Halasa <khalasa@piap.pl> | |
6846 | S: Maintained | |
6847 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h | |
6848 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
6849 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
6850 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
6851 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c | |
6852 | F: drivers/net/wan/ixp4xx_hss.c | |
6853 | ||
6854 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT | |
6855 | M: Deepak Saxena <dsaxena@plexity.net> | |
6856 | S: Maintained | |
6857 | F: drivers/char/hw_random/ixp4xx-rng.c | |
b481de9c | 6858 | |
de8fe023 TW |
6859 | INTEL MANAGEMENT ENGINE (mei) |
6860 | M: Tomas Winkler <tomas.winkler@intel.com> | |
6861 | L: linux-kernel@vger.kernel.org | |
6862 | S: Supported | |
c117ab84 | 6863 | F: include/uapi/linux/mei.h |
5069288b | 6864 | F: include/linux/mei_cl_bus.h |
de8fe023 | 6865 | F: drivers/misc/mei/* |
222818c3 | 6866 | F: drivers/watchdog/mei_wdt.c |
e07950a1 | 6867 | F: Documentation/misc-devices/mei/* |
986b891a | 6868 | F: samples/mei/* |
de8fe023 | 6869 | |
7683e9e5 LT |
6870 | INTEL MENLOW THERMAL DRIVER |
6871 | M: Sujith Thomas <sujith.thomas@intel.com> | |
6872 | L: platform-driver-x86@vger.kernel.org | |
6873 | W: https://01.org/linux-acpi | |
6874 | S: Supported | |
6875 | F: drivers/platform/x86/intel_menlow.c | |
6876 | ||
6877 | INTEL MERRIFIELD GPIO DRIVER | |
6878 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> | |
6879 | L: linux-gpio@vger.kernel.org | |
6880 | S: Maintained | |
6881 | F: drivers/gpio/gpio-merrifield.c | |
6882 | ||
50ceb98b SD |
6883 | INTEL MIC DRIVERS (mic) |
6884 | M: Sudeep Dutt <sudeep.dutt@intel.com> | |
6885 | M: Ashutosh Dixit <ashutosh.dixit@intel.com> | |
6886 | S: Supported | |
6887 | W: https://github.com/sudeepdutt/mic | |
6888 | W: http://software.intel.com/en-us/mic-developer | |
6889 | F: include/linux/mic_bus.h | |
6890 | F: include/linux/scif.h | |
6891 | F: include/uapi/linux/mic_common.h | |
7683e9e5 | 6892 | F: include/uapi/linux/mic_ioctl.h |
9f273c24 | 6893 | F: include/uapi/linux/scif_ioctl.h |
50ceb98b SD |
6894 | F: drivers/misc/mic/ |
6895 | F: drivers/dma/mic_x100_dma.c | |
6896 | F: drivers/dma/mic_x100_dma.h | |
9f273c24 | 6897 | F: Documentation/mic/ |
50ceb98b | 6898 | |
7683e9e5 LT |
6899 | INTEL PMC CORE DRIVER |
6900 | M: Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com> | |
6901 | M: Vishwanath Somayaji <vishwanath.somayaji@intel.com> | |
6902 | L: platform-driver-x86@vger.kernel.org | |
6903 | S: Maintained | |
6904 | F: arch/x86/include/asm/pmc_core.h | |
6905 | F: drivers/platform/x86/intel_pmc_core* | |
6906 | ||
fdca4f16 | 6907 | INTEL PMC/P-Unit IPC DRIVER |
0a8b8353 | 6908 | M: Zha Qipeng<qipeng.zha@intel.com> |
6909 | L: platform-driver-x86@vger.kernel.org | |
6910 | S: Maintained | |
6911 | F: drivers/platform/x86/intel_pmc_ipc.c | |
fdca4f16 | 6912 | F: drivers/platform/x86/intel_punit_ipc.c |
0a8b8353 | 6913 | F: arch/x86/include/asm/intel_pmc_ipc.h |
fdca4f16 | 6914 | F: arch/x86/include/asm/intel_punit_ipc.h |
0a8b8353 | 6915 | |
7683e9e5 LT |
6916 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
6917 | M: Stanislav Yakovlev <stas.yakovlev@gmail.com> | |
6918 | L: linux-wireless@vger.kernel.org | |
6919 | S: Maintained | |
6920 | F: Documentation/networking/README.ipw2100 | |
6921 | F: Documentation/networking/README.ipw2200 | |
6922 | F: drivers/net/wireless/intel/ipw2x00/ | |
6923 | ||
6924 | INTEL PSTATE DRIVER | |
6925 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> | |
6926 | M: Len Brown <lenb@kernel.org> | |
6927 | L: linux-pm@vger.kernel.org | |
6928 | S: Supported | |
6929 | F: drivers/cpufreq/intel_pstate.c | |
6930 | ||
6931 | INTEL RDMA RNIC DRIVER | |
6932 | M: Faisal Latif <faisal.latif@intel.com> | |
6933 | M: Shiraz Saleem <shiraz.saleem@intel.com> | |
6934 | L: linux-rdma@vger.kernel.org | |
6935 | S: Supported | |
6936 | F: drivers/infiniband/hw/i40iw/ | |
6937 | ||
378f956e SKC |
6938 | INTEL TELEMETRY DRIVER |
6939 | M: Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com> | |
6940 | L: platform-driver-x86@vger.kernel.org | |
6941 | S: Maintained | |
378f956e | 6942 | F: arch/x86/include/asm/intel_telemetry.h |
f1fc3cd8 | 6943 | F: drivers/platform/x86/intel_telemetry* |
0a8b8353 | 6944 | |
7683e9e5 LT |
6945 | INTEL VIRTUAL BUTTON DRIVER |
6946 | M: AceLan Kao <acelan.kao@canonical.com> | |
b740d2e9 RB |
6947 | L: platform-driver-x86@vger.kernel.org |
6948 | S: Maintained | |
7683e9e5 LT |
6949 | F: drivers/platform/x86/intel-vbtn.c |
6950 | ||
6951 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) | |
6952 | M: Stanislaw Gruszka <sgruszka@redhat.com> | |
6953 | L: linux-wireless@vger.kernel.org | |
6954 | S: Supported | |
6955 | F: drivers/net/wireless/intel/iwlegacy/ | |
6956 | ||
6957 | INTEL WIRELESS WIFI LINK (iwlwifi) | |
6958 | M: Johannes Berg <johannes.berg@intel.com> | |
6959 | M: Emmanuel Grumbach <emmanuel.grumbach@intel.com> | |
6960 | M: Luca Coelho <luciano.coelho@intel.com> | |
6961 | M: Intel Linux Wireless <linuxwifi@intel.com> | |
6962 | L: linux-wireless@vger.kernel.org | |
6963 | W: http://intellinuxwireless.org | |
6964 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git | |
6965 | S: Supported | |
6966 | F: drivers/net/wireless/intel/iwlwifi/ | |
6967 | ||
6968 | INTEL WIRELESS WIMAX CONNECTION 2400 | |
6969 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> | |
6970 | M: linux-wimax@intel.com | |
6971 | L: wimax@linuxwimax.org (subscribers-only) | |
6972 | S: Supported | |
6973 | W: http://linuxwimax.org | |
6974 | F: Documentation/wimax/README.i2400m | |
6975 | F: drivers/net/wimax/i2400m/ | |
6976 | F: include/uapi/linux/wimax/i2400m.h | |
6977 | ||
6978 | INTEL(R) TRACE HUB | |
6979 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> | |
6980 | S: Supported | |
6981 | F: Documentation/trace/intel_th.txt | |
6982 | F: drivers/hwtracing/intel_th/ | |
6983 | ||
6984 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) | |
6985 | M: Ning Sun <ning.sun@intel.com> | |
6986 | L: tboot-devel@lists.sourceforge.net | |
6987 | W: http://tboot.sourceforge.net | |
6988 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot | |
6989 | S: Supported | |
6990 | F: Documentation/intel_txt.txt | |
6991 | F: include/linux/tboot.h | |
6992 | F: arch/x86/kernel/tboot.c | |
6993 | ||
6994 | INTEL-MID GPIO DRIVER | |
6995 | M: David Cohen <david.a.cohen@linux.intel.com> | |
6996 | L: linux-gpio@vger.kernel.org | |
6997 | S: Maintained | |
6998 | F: drivers/gpio/gpio-intel-mid.c | |
b740d2e9 | 6999 | |
3904b28e LW |
7000 | INVENSENSE MPU-3050 GYROSCOPE DRIVER |
7001 | M: Linus Walleij <linus.walleij@linaro.org> | |
7002 | L: linux-iio@vger.kernel.org | |
7003 | S: Maintained | |
7004 | F: drivers/iio/gyro/mpu3050* | |
7005 | F: Documentation/devicetree/bindings/iio/gyroscope/inv,mpu3050.txt | |
7006 | ||
cb109a0e | 7007 | IOC3 ETHERNET DRIVER |
8b58be88 | 7008 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 LT |
7009 | L: linux-mips@linux-mips.org |
7010 | S: Maintained | |
8862bf1e | 7011 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 7012 | |
cb109a0e | 7013 | IOC3 SERIAL DRIVER |
8b58be88 | 7014 | M: Pat Gefre <pfg@sgi.com> |
d39e0721 | 7015 | L: linux-serial@vger.kernel.org |
cb109a0e | 7016 | S: Maintained |
df621252 | 7017 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 7018 | |
0b6e8569 SW |
7019 | IOMMU DRIVERS |
7020 | M: Joerg Roedel <joro@8bytes.org> | |
7021 | L: iommu@lists.linux-foundation.org | |
7022 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git | |
7023 | S: Maintained | |
efcd94c0 | 7024 | F: Documentation/devicetree/bindings/iommu/ |
0b6e8569 | 7025 | F: drivers/iommu/ |
82df0a43 TR |
7026 | F: include/linux/iommu.h |
7027 | F: include/linux/iova.h | |
0b6e8569 | 7028 | |
4480f15b | 7029 | IP MASQUERADING |
8b58be88 | 7030 | M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar> |
1da177e4 | 7031 | S: Maintained |
679655da | 7032 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 7033 | |
4409ebe9 | 7034 | IPMI SUBSYSTEM |
8b58be88 | 7035 | M: Corey Minyard <minyard@acm.org> |
b0c90653 | 7036 | L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers) |
4409ebe9 CM |
7037 | W: http://openipmi.sourceforge.net/ |
7038 | S: Supported | |
679655da JP |
7039 | F: Documentation/IPMI.txt |
7040 | F: drivers/char/ipmi/ | |
7041 | F: include/linux/ipmi* | |
c117ab84 | 7042 | F: include/uapi/linux/ipmi* |
4409ebe9 | 7043 | |
e2d1d6c0 | 7044 | IPS SCSI RAID DRIVER |
8b58be88 | 7045 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
7046 | L: linux-scsi@vger.kernel.org |
7047 | W: http://www.adaptec.com/ | |
7048 | S: Maintained | |
679655da | 7049 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
7050 | |
7051 | IPVS | |
8b58be88 JP |
7052 | M: Wensong Zhang <wensong@linux-vs.org> |
7053 | M: Simon Horman <horms@verge.net.au> | |
7054 | M: Julian Anastasov <ja@ssi.bg> | |
979b6c13 | 7055 | L: netdev@vger.kernel.org |
e2d1d6c0 | 7056 | L: lvs-devel@vger.kernel.org |
1da177e4 | 7057 | S: Maintained |
9f273c24 FW |
7058 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git |
7059 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git | |
679655da | 7060 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 7061 | F: include/net/ip_vs.h |
c117ab84 | 7062 | F: include/uapi/linux/ip_vs.h |
679655da | 7063 | F: net/netfilter/ipvs/ |
1da177e4 | 7064 | |
e7839f25 | 7065 | IPWIRELESS DRIVER |
e5f6450c | 7066 | M: Jiri Kosina <jikos@kernel.org> |
d8130624 | 7067 | M: David Sterba <dsterba@suse.com> |
92094aa0 | 7068 | S: Odd Fixes |
282361a0 | 7069 | F: drivers/tty/ipwireless/ |
099dc4fb | 7070 | |
e2d1d6c0 | 7071 | IPX NETWORK LAYER |
e2d1d6c0 | 7072 | L: netdev@vger.kernel.org |
0c59d281 | 7073 | S: Odd fixes |
679655da | 7074 | F: include/net/ipx.h |
c117ab84 | 7075 | F: include/uapi/linux/ipx.h |
679655da | 7076 | F: net/ipx/ |
e2d1d6c0 | 7077 | |
1da177e4 | 7078 | IRDA SUBSYSTEM |
8b58be88 | 7079 | M: Samuel Ortiz <samuel@sortiz.org> |
a2ac953d | 7080 | L: irda-users@lists.sourceforge.net (subscribers-only) |
ced649ea | 7081 | L: netdev@vger.kernel.org |
1da177e4 | 7082 | W: http://irda.sourceforge.net/ |
f353976d | 7083 | S: Maintained |
e0057975 | 7084 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
7085 | F: Documentation/networking/irda.txt |
7086 | F: drivers/net/irda/ | |
7087 | F: include/net/irda/ | |
7088 | F: net/irda/ | |
1da177e4 | 7089 | |
82abbea7 RD |
7090 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
7091 | M: Marc Zyngier <marc.zyngier@arm.com> | |
7092 | S: Maintained | |
7093 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core | |
7094 | F: Documentation/IRQ-domain.txt | |
7095 | F: include/linux/irqdomain.h | |
7096 | F: kernel/irq/irqdomain.c | |
7097 | F: kernel/irq/msi.c | |
7098 | ||
7683e9e5 LT |
7099 | IRQ SUBSYSTEM |
7100 | M: Thomas Gleixner <tglx@linutronix.de> | |
7101 | L: linux-kernel@vger.kernel.org | |
7102 | S: Maintained | |
7103 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core | |
7104 | F: kernel/irq/ | |
7105 | ||
2ed9fd28 JC |
7106 | IRQCHIP DRIVERS |
7107 | M: Thomas Gleixner <tglx@linutronix.de> | |
7108 | M: Jason Cooper <jason@lakedaemon.net> | |
54d9ffc4 | 7109 | M: Marc Zyngier <marc.zyngier@arm.com> |
2ed9fd28 JC |
7110 | L: linux-kernel@vger.kernel.org |
7111 | S: Maintained | |
7112 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core | |
5b5a9069 | 7113 | F: Documentation/devicetree/bindings/interrupt-controller/ |
edd96900 | 7114 | F: drivers/irqchip/ |
a800c7cc | 7115 | |
ad7afc38 WBG |
7116 | ISA |
7117 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
7118 | S: Maintained | |
7119 | F: Documentation/isa.txt | |
7120 | F: drivers/base/isa.c | |
7121 | F: include/linux/isa.h | |
7122 | ||
d39b8420 HV |
7123 | ISA RADIO MODULE |
7124 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7125 | L: linux-media@vger.kernel.org | |
7126 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 7127 | W: https://linuxtv.org |
d39b8420 HV |
7128 | S: Maintained |
7129 | F: drivers/media/radio/radio-isa* | |
7130 | ||
82abbea7 RD |
7131 | ISAPNP |
7132 | M: Jaroslav Kysela <perex@perex.cz> | |
71a6d0af | 7133 | S: Maintained |
82abbea7 RD |
7134 | F: Documentation/isapnp.txt |
7135 | F: drivers/pnp/isapnp/ | |
7136 | F: include/linux/isapnp.h | |
71a6d0af | 7137 | |
14816b1e | 7138 | ISCSI |
623290a2 LD |
7139 | M: Lee Duncan <lduncan@suse.com> |
7140 | M: Chris Leech <cleech@redhat.com> | |
14816b1e | 7141 | L: open-iscsi@googlegroups.com |
623290a2 | 7142 | W: www.open-iscsi.com |
14816b1e | 7143 | S: Maintained |
679655da JP |
7144 | F: drivers/scsi/*iscsi* |
7145 | F: include/scsi/*iscsi* | |
14816b1e | 7146 | |
82abbea7 RD |
7147 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
7148 | M: Peter Jones <pjones@redhat.com> | |
7149 | M: Konrad Rzeszutek Wilk <konrad@kernel.org> | |
7150 | S: Maintained | |
7151 | F: drivers/firmware/iscsi_ibft* | |
7152 | ||
1e65eb42 OG |
7153 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
7154 | M: Or Gerlitz <ogerlitz@mellanox.com> | |
e7d2c25d | 7155 | M: Sagi Grimberg <sagi@grimberg.me> |
1e65eb42 OG |
7156 | M: Roi Dayan <roid@mellanox.com> |
7157 | L: linux-rdma@vger.kernel.org | |
7158 | S: Supported | |
7159 | W: http://www.openfabrics.org | |
7160 | W: www.open-iscsi.org | |
7161 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
14430813 | 7162 | F: drivers/infiniband/ulp/iser/ |
1e65eb42 | 7163 | |
2b70e5fd | 7164 | ISCSI EXTENSIONS FOR RDMA (ISER) TARGET |
e7d2c25d | 7165 | M: Sagi Grimberg <sagi@grimberg.me> |
2b70e5fd SG |
7166 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
7167 | L: linux-rdma@vger.kernel.org | |
7168 | L: target-devel@vger.kernel.org | |
7169 | S: Supported | |
7170 | W: http://www.linux-iscsi.org | |
7171 | F: drivers/infiniband/ulp/isert | |
7172 | ||
1da177e4 | 7173 | ISDN SUBSYSTEM |
8b58be88 | 7174 | M: Karsten Keil <isdn@linux-pingi.de> |
d5d52273 | 7175 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
3da0ae62 | 7176 | L: netdev@vger.kernel.org |
1da177e4 | 7177 | W: http://www.isdn4linux.de |
54e5881d | 7178 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 7179 | S: Maintained |
679655da JP |
7180 | F: Documentation/isdn/ |
7181 | F: drivers/isdn/ | |
7182 | F: include/linux/isdn.h | |
7183 | F: include/linux/isdn/ | |
c117ab84 CEB |
7184 | F: include/uapi/linux/isdn.h |
7185 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
7186 | |
7187 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 7188 | M: Armin Schindler <mac@melware.de> |
d5d52273 | 7189 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
1da177e4 LT |
7190 | W: http://www.melware.de |
7191 | S: Maintained | |
679655da | 7192 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 7193 | |
d624870f | 7194 | IT87 HARDWARE MONITORING DRIVER |
d8130624 | 7195 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 7196 | L: linux-hwmon@vger.kernel.org |
d624870f JD |
7197 | S: Maintained |
7198 | F: Documentation/hwmon/it87 | |
7199 | F: drivers/hwmon/it87.c | |
7200 | ||
d7104bff AP |
7201 | IT913X MEDIA DRIVER |
7202 | M: Antti Palosaari <crope@iki.fi> | |
7203 | L: linux-media@vger.kernel.org | |
a825eaec | 7204 | W: https://linuxtv.org |
d7104bff AP |
7205 | W: http://palosaari.fi/linux/ |
7206 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7207 | T: git git://linuxtv.org/anttip/media_tree.git | |
7208 | S: Maintained | |
249c697e | 7209 | F: drivers/media/tuners/it913x* |
d7104bff | 7210 | |
91821ff3 | 7211 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 7212 | M: Andy Walls <awalls@md.metrocast.net> |
7b212edf | 7213 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
661263b5 | 7214 | L: linux-media@vger.kernel.org |
275ffde4 | 7215 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
7216 | W: http://www.ivtvdriver.org |
7217 | S: Maintained | |
618cd932 | 7218 | F: Documentation/media/v4l-drivers/ivtv* |
90d72ac6 | 7219 | F: drivers/media/pci/ivtv/ |
c117ab84 | 7220 | F: include/uapi/linux/ivtv* |
91821ff3 | 7221 | |
68620bdd MP |
7222 | IX2505V MEDIA DRIVER |
7223 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
7224 | L: linux-media@vger.kernel.org | |
a825eaec | 7225 | W: https://linuxtv.org |
68620bdd MP |
7226 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
7227 | S: Maintained | |
7228 | F: drivers/media/dvb-frontends/ix2505v* | |
7229 | ||
4453d736 GR |
7230 | JC42.4 TEMPERATURE SENSOR DRIVER |
7231 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7232 | L: linux-hwmon@vger.kernel.org |
4453d736 GR |
7233 | S: Maintained |
7234 | F: drivers/hwmon/jc42.c | |
7235 | F: Documentation/hwmon/jc42 | |
7236 | ||
e2d1d6c0 | 7237 | JFS FILESYSTEM |
3256f80f | 7238 | M: Dave Kleikamp <shaggy@kernel.org> |
e2d1d6c0 RD |
7239 | L: jfs-discussion@lists.sourceforge.net |
7240 | W: http://jfs.sourceforge.net/ | |
54e5881d | 7241 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 7242 | S: Maintained |
679655da JP |
7243 | F: Documentation/filesystems/jfs.txt |
7244 | F: fs/jfs/ | |
e2d1d6c0 | 7245 | |
95252236 | 7246 | JME NETWORK DRIVER |
8b58be88 | 7247 | M: Guo-Fu Tseng <cooldavid@cooldavid.org> |
95252236 GFT |
7248 | L: netdev@vger.kernel.org |
7249 | S: Maintained | |
63d24a0e | 7250 | F: drivers/net/ethernet/jme.* |
95252236 | 7251 | |
1da177e4 | 7252 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 7253 | M: David Woodhouse <dwmw2@infradead.org> |
6d85d066 DW |
7254 | L: linux-mtd@lists.infradead.org |
7255 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 7256 | S: Maintained |
679655da | 7257 | F: fs/jffs2/ |
c117ab84 | 7258 | F: include/uapi/linux/jffs2.h |
1da177e4 | 7259 | |
d183e11a TT |
7260 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) |
7261 | M: "Theodore Ts'o" <tytso@mit.edu> | |
c290ea01 | 7262 | M: Jan Kara <jack@suse.com> |
d183e11a TT |
7263 | L: linux-ext4@vger.kernel.org |
7264 | S: Maintained | |
7265 | F: fs/jbd2/ | |
7266 | F: include/linux/jbd2.h | |
ae0718f8 | 7267 | |
207dab5f MU |
7268 | JPU V4L2 MEM2MEM DRIVER FOR RENESAS |
7269 | M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com> | |
7270 | L: linux-media@vger.kernel.org | |
7271 | S: Maintained | |
7272 | F: drivers/media/platform/rcar_jpu.c | |
7273 | ||
fd8b6cb4 | 7274 | JSM Neo PCI based serial card |
46e3813d | 7275 | M: Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com> |
fd8b6cb4 BL |
7276 | L: linux-serial@vger.kernel.org |
7277 | S: Maintained | |
df621252 | 7278 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 7279 | |
af39917d CL |
7280 | K10TEMP HARDWARE MONITORING DRIVER |
7281 | M: Clemens Ladisch <clemens@ladisch.de> | |
968ce1b1 | 7282 | L: linux-hwmon@vger.kernel.org |
af39917d CL |
7283 | S: Maintained |
7284 | F: Documentation/hwmon/k10temp | |
7285 | F: drivers/hwmon/k10temp.c | |
7286 | ||
4660cb35 | 7287 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 7288 | M: Rudolf Marek <r.marek@assembler.cz> |
968ce1b1 | 7289 | L: linux-hwmon@vger.kernel.org |
ae0718f8 | 7290 | S: Maintained |
679655da JP |
7291 | F: Documentation/hwmon/k8temp |
7292 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 7293 | |
0ba1d91d AR |
7294 | KASAN |
7295 | M: Andrey Ryabinin <aryabinin@virtuozzo.com> | |
7296 | R: Alexander Potapenko <glider@google.com> | |
7297 | R: Dmitry Vyukov <dvyukov@google.com> | |
7298 | L: kasan-dev@googlegroups.com | |
7299 | S: Maintained | |
7300 | F: arch/*/include/asm/kasan.h | |
7301 | F: arch/*/mm/kasan_init* | |
2757aafa | 7302 | F: Documentation/dev-tools/kasan.rst |
64f8ebaf | 7303 | F: include/linux/kasan*.h |
0ba1d91d AR |
7304 | F: lib/test_kasan.c |
7305 | F: mm/kasan/ | |
7306 | F: scripts/Makefile.kasan | |
7307 | ||
1da177e4 | 7308 | KCONFIG |
5eb1f99e | 7309 | M: "Yann E. MORIN" <yann.morin.1998@free.fr> |
347d12d7 | 7310 | L: linux-kbuild@vger.kernel.org |
cea8321c | 7311 | T: git git://gitorious.org/linux-kconfig/linux-kconfig |
5eb1f99e | 7312 | S: Maintained |
679655da JP |
7313 | F: Documentation/kbuild/kconfig-language.txt |
7314 | F: scripts/kconfig/ | |
1da177e4 | 7315 | |
ea6c2089 | 7316 | KDUMP |
f871f191 VG |
7317 | M: Dave Young <dyoung@redhat.com> |
7318 | M: Baoquan He <bhe@redhat.com> | |
7319 | R: Vivek Goyal <vgoyal@redhat.com> | |
34633993 | 7320 | L: kexec@lists.infradead.org |
ea6c2089 VG |
7321 | W: http://lse.sourceforge.net/kdump/ |
7322 | S: Maintained | |
80811493 | 7323 | F: Documentation/kdump/ |
ea6c2089 | 7324 | |
f41bf02f HV |
7325 | KEENE FM RADIO TRANSMITTER DRIVER |
7326 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7327 | L: linux-media@vger.kernel.org | |
7328 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 7329 | W: https://linuxtv.org |
f41bf02f HV |
7330 | S: Maintained |
7331 | F: drivers/media/radio/radio-keene* | |
7332 | ||
1da177e4 | 7333 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 7334 | M: Ian Kent <raven@themaw.net> |
f694fc97 | 7335 | L: autofs@vger.kernel.org |
1da177e4 | 7336 | S: Maintained |
679655da | 7337 | F: fs/autofs4/ |
1da177e4 | 7338 | |
70fb7ba6 | 7339 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
8b38f890 | 7340 | M: Masahiro Yamada <yamada.masahiro@socionext.com> |
d8130624 | 7341 | M: Michal Marek <mmarek@suse.com> |
8b38f890 | 7342 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git |
347d12d7 | 7343 | L: linux-kbuild@vger.kernel.org |
5ce45962 | 7344 | S: Maintained |
679655da JP |
7345 | F: Documentation/kbuild/ |
7346 | F: Makefile | |
7347 | F: scripts/Makefile.* | |
70fb7ba6 MM |
7348 | F: scripts/basic/ |
7349 | F: scripts/mk* | |
7350 | F: scripts/package/ | |
1da177e4 LT |
7351 | |
7352 | KERNEL JANITORS | |
c3000e03 | 7353 | L: kernel-janitors@vger.kernel.org |
10466f5a | 7354 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 7355 | S: Odd Fixes |
1da177e4 | 7356 | |
e8b43555 | 7357 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 7358 | M: "J. Bruce Fields" <bfields@fieldses.org> |
883985f6 | 7359 | M: Jeff Layton <jlayton@poochiereds.net> |
16141c02 | 7360 | L: linux-nfs@vger.kernel.org |
1da177e4 | 7361 | W: http://nfs.sourceforge.net/ |
9f273c24 | 7362 | T: git git://linux-nfs.org/~bfields/linux.git |
98fac23f | 7363 | S: Supported |
679655da | 7364 | F: fs/nfsd/ |
c117ab84 | 7365 | F: include/uapi/linux/nfsd/ |
679655da JP |
7366 | F: fs/lockd/ |
7367 | F: fs/nfs_common/ | |
7368 | F: net/sunrpc/ | |
7369 | F: include/linux/lockd/ | |
7370 | F: include/linux/sunrpc/ | |
c117ab84 | 7371 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 7372 | |
13b122b3 SK |
7373 | KERNEL SELFTEST FRAMEWORK |
7374 | M: Shuah Khan <shuahkh@osg.samsung.com> | |
90effdcd | 7375 | M: Shuah Khan <shuah@kernel.org> |
64f00850 | 7376 | L: linux-kselftest@vger.kernel.org |
a7254a09 | 7377 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git |
13b122b3 | 7378 | S: Maintained |
4ff79fee SK |
7379 | F: tools/testing/selftests/ |
7380 | F: Documentation/dev-tools/kselftest* | |
13b122b3 | 7381 | |
426d62e2 | 7382 | KERNEL VIRTUAL MACHINE (KVM) |
c93a64fe | 7383 | M: Paolo Bonzini <pbonzini@redhat.com> |
3d8e15dd | 7384 | M: Radim Krčmář <rkrcmar@redhat.com> |
1fc9d2bf | 7385 | L: kvm@vger.kernel.org |
e3e58478 | 7386 | W: http://www.linux-kvm.org |
a94b40a6 | 7387 | T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git |
426d62e2 | 7388 | S: Supported |
c93a64fe PB |
7389 | F: Documentation/*/kvm*.txt |
7390 | F: Documentation/virtual/kvm/ | |
679655da | 7391 | F: arch/*/kvm/ |
1662e862 CB |
7392 | F: arch/x86/kernel/kvm.c |
7393 | F: arch/x86/kernel/kvmclock.c | |
679655da JP |
7394 | F: arch/*/include/asm/kvm* |
7395 | F: include/linux/kvm* | |
c117ab84 | 7396 | F: include/uapi/linux/kvm* |
679655da | 7397 | F: virt/kvm/ |
6d0a1a61 | 7398 | F: tools/kvm/ |
426d62e2 | 7399 | |
ad8003d3 | 7400 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 7401 | M: Joerg Roedel <joro@8bytes.org> |
1fc9d2bf | 7402 | L: kvm@vger.kernel.org |
038161de | 7403 | W: http://www.linux-kvm.org/ |
7de609c8 | 7404 | S: Maintained |
679655da | 7405 | F: arch/x86/include/asm/svm.h |
679655da | 7406 | F: arch/x86/kvm/svm.c |
426d62e2 | 7407 | |
a749474d | 7408 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
0f4ca79e | 7409 | M: Christoffer Dall <christoffer.dall@linaro.org> |
5c8818b4 MZ |
7410 | M: Marc Zyngier <marc.zyngier@arm.com> |
7411 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
a749474d CD |
7412 | L: kvmarm@lists.cs.columbia.edu |
7413 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
1b1ebe82 | 7414 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git |
0f4ca79e | 7415 | S: Supported |
a749474d CD |
7416 | F: arch/arm/include/uapi/asm/kvm* |
7417 | F: arch/arm/include/asm/kvm* | |
7418 | F: arch/arm/kvm/ | |
5c8818b4 MZ |
7419 | F: virt/kvm/arm/ |
7420 | F: include/kvm/arm_* | |
a749474d | 7421 | |
7683e9e5 LT |
7422 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
7423 | M: Alexander Graf <agraf@suse.com> | |
7424 | L: kvm-ppc@vger.kernel.org | |
7425 | W: http://www.linux-kvm.org/ | |
7426 | T: git git://github.com/agraf/linux-2.6.git | |
7427 | S: Supported | |
7428 | F: arch/powerpc/include/asm/kvm* | |
7429 | F: arch/powerpc/kvm/ | |
7430 | ||
6394a3ec | 7431 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
5c8818b4 | 7432 | M: Christoffer Dall <christoffer.dall@linaro.org> |
6394a3ec MZ |
7433 | M: Marc Zyngier <marc.zyngier@arm.com> |
7434 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
7435 | L: kvmarm@lists.cs.columbia.edu | |
7436 | S: Maintained | |
7437 | F: arch/arm64/include/uapi/asm/kvm* | |
7438 | F: arch/arm64/include/asm/kvm* | |
7439 | F: arch/arm64/kvm/ | |
7440 | ||
bfd3d532 JH |
7441 | KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips) |
7442 | M: James Hogan <james.hogan@imgtec.com> | |
7443 | L: linux-mips@linux-mips.org | |
7444 | S: Supported | |
7445 | F: arch/mips/include/uapi/asm/kvm* | |
7446 | F: arch/mips/include/asm/kvm* | |
7447 | F: arch/mips/kvm/ | |
7448 | ||
7683e9e5 LT |
7449 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
7450 | M: Christian Borntraeger <borntraeger@de.ibm.com> | |
7451 | M: Cornelia Huck <cohuck@redhat.com> | |
7452 | L: linux-s390@vger.kernel.org | |
7453 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7454 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git | |
7455 | S: Supported | |
7456 | F: Documentation/s390/kvm.txt | |
7457 | F: arch/s390/include/asm/kvm* | |
7458 | F: arch/s390/kvm/ | |
7459 | F: arch/s390/mm/gmap.c | |
7460 | ||
27f395b8 TH |
7461 | KERNFS |
7462 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
7463 | M: Tejun Heo <tj@kernel.org> | |
7464 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
7465 | S: Supported | |
7466 | F: include/linux/kernfs.h | |
7467 | F: fs/kernfs/ | |
bfd3d532 | 7468 | |
dc009d92 | 7469 | KEXEC |
8b58be88 | 7470 | M: Eric Biederman <ebiederm@xmission.com> |
2f327dad | 7471 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 7472 | L: kexec@lists.infradead.org |
dc009d92 | 7473 | S: Maintained |
679655da | 7474 | F: include/linux/kexec.h |
c117ab84 | 7475 | F: include/uapi/linux/kexec.h |
10540a69 | 7476 | F: kernel/kexec* |
dc009d92 | 7477 | |
7683e9e5 LT |
7478 | KEYS-ENCRYPTED |
7479 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> | |
7480 | M: David Safford <safford@us.ibm.com> | |
7481 | L: linux-security-module@vger.kernel.org | |
aa62efff | 7482 | L: keyrings@vger.kernel.org |
7683e9e5 LT |
7483 | S: Supported |
7484 | F: Documentation/security/keys/trusted-encrypted.rst | |
7485 | F: include/keys/encrypted-type.h | |
7486 | F: security/keys/encrypted-keys/ | |
e971461f | 7487 | |
7f3c68be | 7488 | KEYS-TRUSTED |
74dd744f MZ |
7489 | M: David Safford <safford@us.ibm.com> |
7490 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> | |
7f3c68be | 7491 | L: linux-security-module@vger.kernel.org |
aa62efff | 7492 | L: keyrings@vger.kernel.org |
7f3c68be | 7493 | S: Supported |
5395d312 | 7494 | F: Documentation/security/keys/trusted-encrypted.rst |
7f3c68be MZ |
7495 | F: include/keys/trusted-type.h |
7496 | F: security/keys/trusted.c | |
7497 | F: security/keys/trusted.h | |
7498 | ||
7683e9e5 LT |
7499 | KEYS/KEYRINGS: |
7500 | M: David Howells <dhowells@redhat.com> | |
aa62efff | 7501 | L: keyrings@vger.kernel.org |
7683e9e5 LT |
7502 | S: Maintained |
7503 | F: Documentation/security/keys/core.rst | |
7504 | F: include/linux/key.h | |
7505 | F: include/linux/key-type.h | |
7506 | F: include/linux/keyctl.h | |
7507 | F: include/uapi/linux/keyctl.h | |
7508 | F: include/keys/ | |
7509 | F: security/keys/ | |
7f3c68be | 7510 | |
5b778dad | 7511 | KGDB / KDB /debug_core |
8b58be88 | 7512 | M: Jason Wessel <jason.wessel@windriver.com> |
4063eb5f | 7513 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 | 7514 | L: kgdb-bugreport@lists.sourceforge.net |
9f273c24 | 7515 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git |
e3e2aaf7 | 7516 | S: Maintained |
0c88a041 | 7517 | F: Documentation/dev-tools/kgdb.rst |
679655da | 7518 | F: drivers/misc/kgdbts.c |
df621252 | 7519 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 7520 | F: include/linux/kdb.h |
679655da | 7521 | F: include/linux/kgdb.h |
4063eb5f | 7522 | F: kernel/debug/ |
e3e2aaf7 | 7523 | |
456db8cc | 7524 | KMEMCHECK |
8b58be88 | 7525 | M: Vegard Nossum <vegardno@ifi.uio.no> |
2ed1c525 | 7526 | M: Pekka Enberg <penberg@kernel.org> |
b9ce08c0 | 7527 | S: Maintained |
9c296b46 | 7528 | F: Documentation/dev-tools/kmemcheck.rst |
410d7a97 JP |
7529 | F: arch/x86/include/asm/kmemcheck.h |
7530 | F: arch/x86/mm/kmemcheck/ | |
7531 | F: include/linux/kmemcheck.h | |
7532 | F: mm/kmemcheck.c | |
b9ce08c0 | 7533 | |
c3bb4d24 | 7534 | KMEMLEAK |
8b58be88 | 7535 | M: Catalin Marinas <catalin.marinas@arm.com> |
c3bb4d24 | 7536 | S: Maintained |
ca90a7a3 | 7537 | F: Documentation/dev-tools/kmemleak.rst |
c3bb4d24 CM |
7538 | F: include/linux/kmemleak.h |
7539 | F: mm/kmemleak.c | |
7540 | F: mm/kmemleak-test.c | |
7541 | ||
062b8740 LR |
7542 | KMOD MODULE USERMODE HELPER |
7543 | M: "Luis R. Rodriguez" <mcgrof@kernel.org> | |
7544 | L: linux-kernel@vger.kernel.org | |
7545 | S: Maintained | |
7546 | F: kernel/kmod.c | |
7547 | F: include/linux/kmod.h | |
d9c6a72d LR |
7548 | F: lib/test_kmod.c |
7549 | F: tools/testing/selftests/kmod/ | |
062b8740 | 7550 | |
89559a61 | 7551 | KPROBES |
a320817c | 7552 | M: Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com> |
8b58be88 JP |
7553 | M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> |
7554 | M: "David S. Miller" <davem@davemloft.net> | |
353def94 | 7555 | M: Masami Hiramatsu <mhiramat@kernel.org> |
89559a61 | 7556 | S: Maintained |
679655da JP |
7557 | F: Documentation/kprobes.txt |
7558 | F: include/linux/kprobes.h | |
7d134b2c | 7559 | F: include/asm-generic/kprobes.h |
679655da | 7560 | F: kernel/kprobes.c |
89559a61 | 7561 | |
70e84049 | 7562 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 7563 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
7564 | W: http://miguelojeda.es/auxdisplay.htm |
7565 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 7566 | S: Maintained |
679655da JP |
7567 | F: Documentation/auxdisplay/ks0108 |
7568 | F: drivers/auxdisplay/ks0108.c | |
7569 | F: include/linux/ks0108.h | |
70e84049 | 7570 | |
1b69c6d0 DA |
7571 | L3MDEV |
7572 | M: David Ahern <dsa@cumulusnetworks.com> | |
7573 | L: netdev@vger.kernel.org | |
7574 | S: Maintained | |
7575 | F: net/l3mdev | |
7576 | F: include/net/l3mdev.h | |
7577 | ||
9ca44355 | 7578 | LANTIQ MIPS ARCHITECTURE |
bdb40e8e | 7579 | M: John Crispin <john@phrozen.org> |
9ca44355 JC |
7580 | L: linux-mips@linux-mips.org |
7581 | S: Maintained | |
7582 | F: arch/mips/lantiq | |
7583 | ||
1da177e4 | 7584 | LAPB module |
1da177e4 | 7585 | L: linux-x25@vger.kernel.org |
bf9915cc | 7586 | S: Orphan |
679655da JP |
7587 | F: Documentation/networking/lapb-module.txt |
7588 | F: include/*/lapb.h | |
7589 | F: net/lapb/ | |
1da177e4 LT |
7590 | |
7591 | LASI 53c700 driver for PARISC | |
8b58be88 | 7592 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
7593 | L: linux-scsi@vger.kernel.org |
7594 | S: Maintained | |
679655da JP |
7595 | F: Documentation/scsi/53c700.txt |
7596 | F: drivers/scsi/53c700* | |
1da177e4 | 7597 | |
263de9b5 | 7598 | LED SUBSYSTEM |
8b58be88 | 7599 | M: Richard Purdie <rpurdie@rpsys.net> |
305335b9 | 7600 | M: Jacek Anaszewski <jacek.anaszewski@gmail.com> |
dbfa048d | 7601 | M: Pavel Machek <pavel@ucw.cz> |
aa69cb8c | 7602 | L: linux-leds@vger.kernel.org |
b8926ba0 | 7603 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git |
263de9b5 | 7604 | S: Maintained |
85c90368 | 7605 | F: Documentation/devicetree/bindings/leds/ |
679655da JP |
7606 | F: drivers/leds/ |
7607 | F: include/linux/leds.h | |
263de9b5 | 7608 | |
b0461a44 | 7609 | LEGACY EEPROM DRIVER |
d8130624 | 7610 | M: Jean Delvare <jdelvare@suse.com> |
b0461a44 JD |
7611 | S: Maintained |
7612 | F: Documentation/misc-devices/eeprom | |
7613 | F: drivers/misc/eeprom/eeprom.c | |
7614 | ||
1da177e4 | 7615 | LEGO USB Tower driver |
8b58be88 | 7616 | M: Juergen Stuber <starblue@users.sourceforge.net> |
1da177e4 LT |
7617 | L: legousb-devel@lists.sourceforge.net |
7618 | W: http://legousb.sourceforge.net/ | |
7619 | S: Maintained | |
679655da | 7620 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 7621 | |
055616a8 MK |
7622 | LG2160 MEDIA DRIVER |
7623 | M: Michael Krufky <mkrufky@linuxtv.org> | |
7624 | L: linux-media@vger.kernel.org | |
a825eaec | 7625 | W: https://linuxtv.org |
055616a8 MK |
7626 | W: http://github.com/mkrufky |
7627 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7628 | T: git git://linuxtv.org/mkrufky/tuners.git | |
7629 | S: Maintained | |
7630 | F: drivers/media/dvb-frontends/lg2160.* | |
7631 | ||
6f0e7725 MK |
7632 | LGDT3305 MEDIA DRIVER |
7633 | M: Michael Krufky <mkrufky@linuxtv.org> | |
7634 | L: linux-media@vger.kernel.org | |
a825eaec | 7635 | W: https://linuxtv.org |
6f0e7725 MK |
7636 | W: http://github.com/mkrufky |
7637 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7638 | T: git git://linuxtv.org/mkrufky/tuners.git | |
7639 | S: Maintained | |
7640 | F: drivers/media/dvb-frontends/lgdt3305.* | |
7641 | ||
568a17ff | 7642 | LGUEST |
8b58be88 | 7643 | M: Rusty Russell <rusty@rustcorp.com.au> |
a4724ed6 | 7644 | L: lguest@lists.ozlabs.org |
568a17ff | 7645 | W: http://lguest.ozlabs.org/ |
72e91863 | 7646 | S: Odd Fixes |
070f420b | 7647 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
7648 | F: arch/x86/lguest/ |
7649 | F: drivers/lguest/ | |
7650 | F: include/linux/lguest*.h | |
070f420b | 7651 | F: tools/lguest/ |
568a17ff | 7652 | |
32ac7cb2 | 7653 | LIBATA PATA ARASAN COMPACT FLASH CONTROLLER |
da89947b | 7654 | M: Viresh Kumar <vireshk@kernel.org> |
32ac7cb2 TH |
7655 | L: linux-ide@vger.kernel.org |
7656 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
7657 | S: Maintained | |
7658 | F: include/linux/pata_arasan_cf_data.h | |
7659 | F: drivers/ata/pata_arasan_cf.c | |
7660 | ||
c7fa056c BZ |
7661 | LIBATA PATA DRIVERS |
7662 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
7663 | M: Tejun Heo <tj@kernel.org> | |
7664 | L: linux-ide@vger.kernel.org | |
7665 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
7666 | S: Maintained | |
7667 | F: drivers/ata/pata_*.c | |
7668 | F: drivers/ata/ata_generic.c | |
7669 | ||
be4e456e LW |
7670 | LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS |
7671 | M: Linus Walleij <linus.walleij@linaro.org> | |
7672 | L: linux-ide@vger.kernel.org | |
7673 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
7674 | S: Maintained | |
7675 | F: drivers/ata/pata_ftide010.c | |
7676 | F: drivers/ata/sata_gemini.c | |
7677 | F: drivers/ata/sata_gemini.h | |
7678 | ||
32ac7cb2 TH |
7679 | LIBATA SATA AHCI PLATFORM devices support |
7680 | M: Hans de Goede <hdegoede@redhat.com> | |
7681 | M: Tejun Heo <tj@kernel.org> | |
7682 | L: linux-ide@vger.kernel.org | |
7683 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
7684 | S: Maintained | |
7685 | F: drivers/ata/ahci_platform.c | |
7686 | F: drivers/ata/libahci_platform.c | |
7687 | F: include/linux/ahci_platform.h | |
7688 | ||
7689 | LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER | |
7690 | M: Mikael Pettersson <mikpelinux@gmail.com> | |
7691 | L: linux-ide@vger.kernel.org | |
7692 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
7693 | S: Maintained | |
7694 | F: drivers/ata/sata_promise.* | |
7695 | ||
7683e9e5 LT |
7696 | LIBATA SUBSYSTEM (Serial and Parallel ATA drivers) |
7697 | M: Tejun Heo <tj@kernel.org> | |
7698 | L: linux-ide@vger.kernel.org | |
7699 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
7700 | S: Maintained | |
7701 | F: drivers/ata/ | |
7702 | F: include/linux/ata.h | |
7703 | F: include/linux/libata.h | |
7704 | F: Documentation/devicetree/bindings/ata/ | |
7705 | ||
1acd437c | 7706 | LIBLOCKDEP |
8a0d404e | 7707 | M: Sasha Levin <alexander.levin@verizon.com> |
1acd437c SL |
7708 | S: Maintained |
7709 | F: tools/lib/lockdep/ | |
7710 | ||
bc30196f DW |
7711 | LIBNVDIMM BLK: MMIO-APERTURE DRIVER |
7712 | M: Ross Zwisler <ross.zwisler@linux.intel.com> | |
7713 | L: linux-nvdimm@lists.01.org | |
7714 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
7715 | S: Supported | |
7716 | F: drivers/nvdimm/blk.c | |
7717 | F: drivers/nvdimm/region_devs.c | |
bc30196f DW |
7718 | |
7719 | LIBNVDIMM BTT: BLOCK TRANSLATION TABLE | |
7720 | M: Vishal Verma <vishal.l.verma@intel.com> | |
7721 | L: linux-nvdimm@lists.01.org | |
7722 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
7723 | S: Supported | |
7724 | F: drivers/nvdimm/btt* | |
7725 | ||
7726 | LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER | |
7727 | M: Ross Zwisler <ross.zwisler@linux.intel.com> | |
7728 | L: linux-nvdimm@lists.01.org | |
7729 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
7730 | S: Supported | |
7683e9e5 LT |
7731 | F: drivers/nvdimm/pmem* |
7732 | ||
7733 | LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM | |
7734 | M: Dan Williams <dan.j.williams@intel.com> | |
7735 | L: linux-nvdimm@lists.01.org | |
7736 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ | |
7737 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git | |
7738 | S: Supported | |
7739 | F: drivers/nvdimm/* | |
7740 | F: drivers/acpi/nfit/* | |
7741 | F: include/linux/nd.h | |
7742 | F: include/linux/libnvdimm.h | |
7743 | F: include/uapi/linux/ndctl.h | |
bc30196f | 7744 | |
cd9e9808 MB |
7745 | LIGHTNVM PLATFORM SUPPORT |
7746 | M: Matias Bjorling <mb@lightnvm.io> | |
7747 | W: http://github/OpenChannelSSD | |
4ead1a25 | 7748 | L: linux-block@vger.kernel.org |
cd9e9808 MB |
7749 | S: Maintained |
7750 | F: drivers/lightnvm/ | |
7751 | F: include/linux/lightnvm.h | |
7752 | F: include/uapi/linux/lightnvm.h | |
7753 | ||
7683e9e5 LT |
7754 | LINUX FOR POWER MACINTOSH |
7755 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> | |
7756 | W: http://www.penguinppc.org/ | |
7757 | L: linuxppc-dev@lists.ozlabs.org | |
7758 | S: Maintained | |
7759 | F: arch/powerpc/platforms/powermac/ | |
7760 | F: drivers/macintosh/ | |
7761 | ||
852bb9f5 | 7762 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
7763 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
7764 | M: Paul Mackerras <paulus@samba.org> | |
ea668936 | 7765 | M: Michael Ellerman <mpe@ellerman.id.au> |
ad654f25 | 7766 | W: https://github.com/linuxppc/linux/wiki |
a4724ed6 | 7767 | L: linuxppc-dev@lists.ozlabs.org |
8a6e2535 | 7768 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
9958084a | 7769 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git |
1da177e4 | 7770 | S: Supported |
a4271583 | 7771 | F: Documentation/ABI/stable/sysfs-firmware-opal-* |
58f16913 | 7772 | F: Documentation/devicetree/bindings/powerpc/ |
a4271583 SS |
7773 | F: Documentation/devicetree/bindings/rtc/rtc-opal.txt |
7774 | F: Documentation/devicetree/bindings/i2c/i2c-opal.txt | |
11c34c7d JP |
7775 | F: Documentation/powerpc/ |
7776 | F: arch/powerpc/ | |
ef69b03d ME |
7777 | F: drivers/char/tpm/tpm_ibmvtpm* |
7778 | F: drivers/crypto/nx/ | |
7779 | F: drivers/crypto/vmx/ | |
a4271583 | 7780 | F: drivers/i2c/busses/i2c-opal.c |
ef69b03d ME |
7781 | F: drivers/net/ethernet/ibm/ibmveth.* |
7782 | F: drivers/net/ethernet/ibm/ibmvnic.* | |
66725152 | 7783 | F: drivers/pci/hotplug/pnv_php.c |
ef69b03d | 7784 | F: drivers/pci/hotplug/rpa* |
a4271583 | 7785 | F: drivers/rtc/rtc-opal.c |
ef69b03d | 7786 | F: drivers/scsi/ibmvscsi/ |
a4271583 | 7787 | F: drivers/tty/hvc/hvc_opal.c |
ad654f25 | 7788 | F: tools/testing/selftests/powerpc |
ef69b03d ME |
7789 | N: /pmac |
7790 | N: powermac | |
7791 | N: powernv | |
7792 | N: [^a-z0-9]ps3 | |
7793 | N: pseries | |
1da177e4 | 7794 | |
77a76369 | 7795 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 7796 | M: Anatolij Gustschin <agust@denx.de> |
a4724ed6 | 7797 | L: linuxppc-dev@lists.ozlabs.org |
cba5b1c6 | 7798 | T: git git://git.denx.de/linux-denx-agust.git |
1da177e4 | 7799 | S: Maintained |
11c34c7d JP |
7800 | F: arch/powerpc/platforms/512x/ |
7801 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
7802 | |
7803 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
49e7d9df | 7804 | M: Alistair Popple <alistair@popple.id.au> |
8b58be88 | 7805 | M: Matt Porter <mporter@kernel.crashing.org> |
1da177e4 | 7806 | W: http://www.penguinppc.org/ |
a4724ed6 | 7807 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 7808 | S: Maintained |
11c34c7d JP |
7809 | F: arch/powerpc/platforms/40x/ |
7810 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 7811 | |
1da177e4 | 7812 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
44451d4d | 7813 | M: Scott Wood <oss@buserror.net> |
8b58be88 | 7814 | M: Kumar Gala <galak@kernel.crashing.org> |
ce00f85c | 7815 | W: http://www.penguinppc.org/ |
a4724ed6 | 7816 | L: linuxppc-dev@lists.ozlabs.org |
a1e0fb42 | 7817 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git |
ce00f85c | 7818 | S: Maintained |
11c34c7d | 7819 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 7820 | F: arch/powerpc/platforms/85xx/ |
c67ec701 | 7821 | F: Documentation/devicetree/bindings/powerpc/fsl/ |
1da177e4 | 7822 | |
7683e9e5 LT |
7823 | LINUX FOR POWERPC EMBEDDED PPC8XX |
7824 | M: Vitaly Bordug <vitb@kernel.crashing.org> | |
7825 | W: http://www.penguinppc.org/ | |
7826 | L: linuxppc-dev@lists.ozlabs.org | |
7827 | S: Maintained | |
7828 | F: arch/powerpc/platforms/8xx/ | |
7829 | ||
7830 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX | |
7831 | L: linuxppc-dev@lists.ozlabs.org | |
7832 | S: Orphan | |
7833 | F: arch/powerpc/*/*virtex* | |
7834 | F: arch/powerpc/*/*/*virtex* | |
7835 | ||
ab06ff3a | 7836 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
a4724ed6 | 7837 | L: linuxppc-dev@lists.ozlabs.org |
56a5b8da | 7838 | S: Orphan |
11c34c7d JP |
7839 | F: arch/powerpc/platforms/pasemi/ |
7840 | F: drivers/*/*pasemi* | |
7841 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 7842 | |
82abbea7 RD |
7843 | LINUX KERNEL DUMP TEST MODULE (LKDTM) |
7844 | M: Kees Cook <keescook@chromium.org> | |
7845 | S: Maintained | |
7846 | F: drivers/misc/lkdtm* | |
7847 | ||
7683e9e5 LT |
7848 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
7849 | M: Chris Wright <chrisw@sous-sol.org> | |
7850 | L: linux-security-module@vger.kernel.org | |
7851 | S: Supported | |
7852 | ||
a23ce6da HW |
7853 | LIS3LV02D ACCELEROMETER DRIVER |
7854 | M: Eric Piel <eric.piel@tremplin-utc.net> | |
7855 | S: Maintained | |
ff606677 JD |
7856 | F: Documentation/misc-devices/lis3lv02d |
7857 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 7858 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 7859 | |
b700e7f0 SJ |
7860 | LIVE PATCHING |
7861 | M: Josh Poimboeuf <jpoimboe@redhat.com> | |
462c5a82 | 7862 | M: Jessica Yu <jeyu@kernel.org> |
e5f6450c | 7863 | M: Jiri Kosina <jikos@kernel.org> |
06e1c170 JP |
7864 | M: Miroslav Benes <mbenes@suse.cz> |
7865 | R: Petr Mladek <pmladek@suse.com> | |
b700e7f0 SJ |
7866 | S: Maintained |
7867 | F: kernel/livepatch/ | |
7868 | F: include/linux/livepatch.h | |
7869 | F: arch/x86/include/asm/livepatch.h | |
7870 | F: arch/x86/kernel/livepatch.c | |
5e4e3844 | 7871 | F: Documentation/livepatch/ |
b700e7f0 | 7872 | F: Documentation/ABI/testing/sysfs-kernel-livepatch |
13d1cf7e | 7873 | F: samples/livepatch/ |
b700e7f0 | 7874 | L: live-patching@vger.kernel.org |
74d50da3 | 7875 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git |
b700e7f0 | 7876 | |
e2d1d6c0 | 7877 | LLC (802.2) |
0c59d281 ACM |
7878 | L: netdev@vger.kernel.org |
7879 | S: Odd fixes | |
679655da | 7880 | F: include/linux/llc.h |
c117ab84 | 7881 | F: include/uapi/linux/llc.h |
679655da JP |
7882 | F: include/net/llc* |
7883 | F: net/llc/ | |
e2d1d6c0 | 7884 | |
4e233cbe AD |
7885 | LM73 HARDWARE MONITOR DRIVER |
7886 | M: Guillaume Ligneul <guillaume.ligneul@gmail.com> | |
968ce1b1 | 7887 | L: linux-hwmon@vger.kernel.org |
4e233cbe AD |
7888 | S: Maintained |
7889 | F: drivers/hwmon/lm73.c | |
7890 | ||
156e2d1a | 7891 | LM78 HARDWARE MONITOR DRIVER |
d8130624 | 7892 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 7893 | L: linux-hwmon@vger.kernel.org |
156e2d1a JD |
7894 | S: Maintained |
7895 | F: Documentation/hwmon/lm78 | |
7896 | F: drivers/hwmon/lm78.c | |
7897 | ||
1da177e4 | 7898 | LM83 HARDWARE MONITOR DRIVER |
d8130624 | 7899 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 7900 | L: linux-hwmon@vger.kernel.org |
1da177e4 | 7901 | S: Maintained |
679655da JP |
7902 | F: Documentation/hwmon/lm83 |
7903 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
7904 | |
7905 | LM90 HARDWARE MONITOR DRIVER | |
d8130624 | 7906 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 7907 | L: linux-hwmon@vger.kernel.org |
1da177e4 | 7908 | S: Maintained |
679655da | 7909 | F: Documentation/hwmon/lm90 |
aae7bce4 | 7910 | F: Documentation/devicetree/bindings/hwmon/lm90.txt |
679655da | 7911 | F: drivers/hwmon/lm90.c |
87d08b11 | 7912 | F: include/dt-bindings/thermal/lm90.h |
1da177e4 | 7913 | |
917cc4e6 GR |
7914 | LM95234 HARDWARE MONITOR DRIVER |
7915 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7916 | L: linux-hwmon@vger.kernel.org |
917cc4e6 GR |
7917 | S: Maintained |
7918 | F: Documentation/hwmon/lm95234 | |
7919 | F: drivers/hwmon/lm95234.c | |
7920 | ||
68620bdd MP |
7921 | LME2510 MEDIA DRIVER |
7922 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
7923 | L: linux-media@vger.kernel.org | |
a825eaec | 7924 | W: https://linuxtv.org |
68620bdd MP |
7925 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
7926 | S: Maintained | |
7927 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
7928 | ||
82abbea7 RD |
7929 | LOADPIN SECURITY MODULE |
7930 | M: Kees Cook <keescook@chromium.org> | |
7931 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin | |
7932 | S: Supported | |
7933 | F: security/loadpin/ | |
7934 | F: Documentation/admin-guide/LSM/LoadPin.rst | |
7935 | ||
d4c3be70 | 7936 | LOCKING PRIMITIVES |
8b58be88 JP |
7937 | M: Peter Zijlstra <peterz@infradead.org> |
7938 | M: Ingo Molnar <mingo@redhat.com> | |
981c3a4f | 7939 | L: linux-kernel@vger.kernel.org |
d4c3be70 | 7940 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core |
512e67f9 | 7941 | S: Maintained |
d4c3be70 | 7942 | F: Documentation/locking/ |
679655da | 7943 | F: include/linux/lockdep.h |
d4c3be70 IM |
7944 | F: include/linux/spinlock*.h |
7945 | F: arch/*/include/asm/spinlock*.h | |
7946 | F: include/linux/rwlock*.h | |
7947 | F: include/linux/mutex*.h | |
7948 | F: arch/*/include/asm/mutex*.h | |
7949 | F: include/linux/rwsem*.h | |
7950 | F: arch/*/include/asm/rwsem.h | |
7951 | F: include/linux/seqlock.h | |
7952 | F: lib/locking*.[ch] | |
7486d6da | 7953 | F: kernel/locking/ |
512e67f9 | 7954 | |
dde33348 | 7955 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 7956 | M: "Richard Russon (FlatCap)" <ldm@flatcap.org> |
dde33348 AA |
7957 | L: linux-ntfs-dev@lists.sourceforge.net |
7958 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 7959 | S: Maintained |
679655da | 7960 | F: Documentation/ldm.txt |
20d16fef | 7961 | F: block/partitions/ldm.* |
1da177e4 | 7962 | |
c87e34ef | 7963 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
9495e835 SS |
7964 | M: Sathya Prakash <sathya.prakash@broadcom.com> |
7965 | M: Chaitra P B <chaitra.basappa@broadcom.com> | |
7966 | M: Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com> | |
7967 | L: MPT-FusionLinux.pdl@broadcom.com | |
c87e34ef | 7968 | L: linux-scsi@vger.kernel.org |
9495e835 | 7969 | W: http://www.avagotech.com/support/ |
c87e34ef | 7970 | S: Supported |
679655da | 7971 | F: drivers/message/fusion/ |
500c152a | 7972 | F: drivers/scsi/mpt2sas/ |
7973 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 7974 | |
1da177e4 | 7975 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 7976 | M: Matthew Wilcox <matthew@wil.cx> |
1da177e4 LT |
7977 | L: linux-scsi@vger.kernel.org |
7978 | S: Maintained | |
679655da | 7979 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 7980 | |
e5f5c99a GR |
7981 | LTC4261 HARDWARE MONITOR DRIVER |
7982 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 7983 | L: linux-hwmon@vger.kernel.org |
e5f5c99a GR |
7984 | S: Maintained |
7985 | F: Documentation/hwmon/ltc4261 | |
7986 | F: drivers/hwmon/ltc4261.c | |
7987 | ||
dbed8a80 MH |
7988 | LTC4306 I2C MULTIPLEXER DRIVER |
7989 | M: Michael Hennerich <michael.hennerich@analog.com> | |
7990 | W: http://ez.analog.com/community/linux-device-drivers | |
7991 | L: linux-i2c@vger.kernel.org | |
7992 | S: Supported | |
7993 | F: drivers/i2c/muxes/i2c-mux-ltc4306.c | |
7994 | F: Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt | |
7995 | ||
81365c31 | 7996 | LTP (Linux Test Project) |
28b8e8d4 | 7997 | M: Mike Frysinger <vapier@gentoo.org> |
7d1ae8a8 | 7998 | M: Cyril Hrubis <chrubis@suse.cz> |
0526109a | 7999 | M: Wanlong Gao <wanlong.gao@gmail.com> |
f2eb7f6f CH |
8000 | M: Jan Stancek <jstancek@redhat.com> |
8001 | M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com> | |
8002 | M: Alexey Kodanev <alexey.kodanev@oracle.com> | |
0526109a | 8003 | L: ltp@lists.linux.it (subscribers-only) |
f2eb7f6f | 8004 | W: http://linux-test-project.github.io/ |
7d1ae8a8 | 8005 | T: git git://github.com/linux-test-project/ltp.git |
81365c31 MF |
8006 | S: Maintained |
8007 | ||
c12a54b3 | 8008 | M32R ARCHITECTURE |
c12a54b3 | 8009 | W: http://www.linux-m32r.org/ |
b4174867 | 8010 | S: Orphan |
679655da | 8011 | F: arch/m32r/ |
c12a54b3 | 8012 | |
1da177e4 | 8013 | M68K ARCHITECTURE |
8b58be88 | 8014 | M: Geert Uytterhoeven <geert@linux-m68k.org> |
1da177e4 LT |
8015 | L: linux-m68k@lists.linux-m68k.org |
8016 | W: http://www.linux-m68k.org/ | |
54e5881d | 8017 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 8018 | S: Maintained |
679655da | 8019 | F: arch/m68k/ |
9db35182 | 8020 | F: drivers/zorro/ |
1da177e4 LT |
8021 | |
8022 | M68K ON APPLE MACINTOSH | |
8b58be88 | 8023 | M: Joshua Thompson <funaho@jurai.org> |
1da177e4 | 8024 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 8025 | L: linux-m68k@lists.linux-m68k.org |
1da177e4 | 8026 | S: Maintained |
9db35182 | 8027 | F: arch/m68k/mac/ |
1da177e4 LT |
8028 | |
8029 | M68K ON HP9000/300 | |
8b58be88 | 8030 | M: Philip Blundell <philb@gnu.org> |
1da177e4 LT |
8031 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
8032 | S: Maintained | |
679655da | 8033 | F: arch/m68k/hp300/ |
1da177e4 | 8034 | |
74425546 AP |
8035 | M88DS3103 MEDIA DRIVER |
8036 | M: Antti Palosaari <crope@iki.fi> | |
8037 | L: linux-media@vger.kernel.org | |
a825eaec | 8038 | W: https://linuxtv.org |
74425546 AP |
8039 | W: http://palosaari.fi/linux/ |
8040 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8041 | T: git git://linuxtv.org/anttip/media_tree.git | |
8042 | S: Maintained | |
8043 | F: drivers/media/dvb-frontends/m88ds3103* | |
8044 | ||
68620bdd MP |
8045 | M88RS2000 MEDIA DRIVER |
8046 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
8047 | L: linux-media@vger.kernel.org | |
a825eaec | 8048 | W: https://linuxtv.org |
68620bdd MP |
8049 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
8050 | S: Maintained | |
8051 | F: drivers/media/dvb-frontends/m88rs2000* | |
8052 | ||
07a092fa | 8053 | MA901 MASTERKIT USB FM RADIO DRIVER |
b75f0050 JP |
8054 | M: Alexey Klimov <klimov.linux@gmail.com> |
8055 | L: linux-media@vger.kernel.org | |
8056 | T: git git://linuxtv.org/media_tree.git | |
8057 | S: Maintained | |
8058 | F: drivers/media/radio/radio-ma901.c | |
07a092fa | 8059 | |
64a327a7 | 8060 | MAC80211 |
8b58be88 | 8061 | M: Johannes Berg <johannes@sipsolutions.net> |
64a327a7 | 8062 | L: linux-wireless@vger.kernel.org |
491b26b4 | 8063 | W: http://wireless.kernel.org/ |
ce466579 JB |
8064 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
8065 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 8066 | S: Maintained |
679655da JP |
8067 | F: Documentation/networking/mac80211-injection.txt |
8068 | F: include/net/mac80211.h | |
8069 | F: net/mac80211/ | |
2af8c4dc | 8070 | F: drivers/net/wireless/mac80211_hwsim.[ch] |
64a327a7 | 8071 | |
2b6d83e2 JB |
8072 | MAILBOX API |
8073 | M: Jassi Brar <jassisinghbrar@gmail.com> | |
8074 | L: linux-kernel@vger.kernel.org | |
8075 | S: Maintained | |
8076 | F: drivers/mailbox/ | |
8077 | F: include/linux/mailbox_client.h | |
8078 | F: include/linux/mailbox_controller.h | |
8079 | ||
faf1668c | 8080 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 8081 | M: Michael Kerrisk <mtk.manpages@gmail.com> |
795fb7e7 | 8082 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 8083 | L: linux-man@vger.kernel.org |
1b53dc74 | 8084 | S: Maintained |
faf1668c | 8085 | |
daa10170 | 8086 | MARDUK (CREATOR CI40) DEVICE TREE SUPPORT |
296f827d | 8087 | M: Rahul Bedarkar <rahulbedarkar89@gmail.com> |
daa10170 RB |
8088 | L: linux-mips@linux-mips.org |
8089 | S: Maintained | |
8090 | F: arch/mips/boot/dts/img/pistachio_marduk.dts | |
8091 | ||
0d3cd4b6 VD |
8092 | MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER |
8093 | M: Andrew Lunn <andrew@lunn.ch> | |
8094 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> | |
b26bff6e | 8095 | L: netdev@vger.kernel.org |
0d3cd4b6 VD |
8096 | S: Maintained |
8097 | F: drivers/net/dsa/mv88e6xxx/ | |
b26bff6e | 8098 | F: Documentation/devicetree/bindings/net/dsa/marvell.txt |
0d3cd4b6 | 8099 | |
8427defd | 8100 | MARVELL ARMADA DRM SUPPORT |
0d7f4f05 | 8101 | M: Russell King <linux@armlinux.org.uk> |
8427defd | 8102 | S: Maintained |
0d7f4f05 RK |
8103 | T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel |
8104 | T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes | |
8427defd | 8105 | F: drivers/gpu/drm/armada/ |
4418833e EV |
8106 | F: include/uapi/drm/armada_drm.h |
8107 | F: Documentation/devicetree/bindings/display/armada/ | |
8427defd | 8108 | |
c4d007bc TP |
8109 | MARVELL CRYPTO DRIVER |
8110 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
8111 | M: Arnaud Ebalard <arno@natisbad.org> | |
8112 | F: drivers/crypto/marvell/ | |
8113 | S: Maintained | |
8114 | L: linux-crypto@vger.kernel.org | |
8115 | ||
44c14c1d | 8116 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
8117 | M: Mirko Lindner <mlindner@marvell.com> | |
adbbf69d | 8118 | M: Stephen Hemminger <stephen@networkplumber.org> |
44c14c1d | 8119 | L: netdev@vger.kernel.org |
8120 | S: Maintained | |
8121 | F: drivers/net/ethernet/marvell/sk* | |
8122 | ||
74cda169 | 8123 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 8124 | L: libertas-dev@lists.infradead.org |
8ac3e99e | 8125 | S: Orphan |
f988d640 | 8126 | F: drivers/net/wireless/marvell/libertas/ |
74cda169 | 8127 | |
b60d6975 | 8128 | MARVELL MV643XX ETHERNET DRIVER |
4e3faf88 | 8129 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
979b6c13 | 8130 | L: netdev@vger.kernel.org |
f5ca8502 | 8131 | S: Maintained |
527a6266 | 8132 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 8133 | F: include/linux/mv643xx.h |
1da177e4 | 8134 | |
20b2af32 RK |
8135 | MARVELL MV88X3310 PHY DRIVER |
8136 | M: Russell King <rmk@armlinux.org.uk> | |
8137 | L: netdev@vger.kernel.org | |
8138 | S: Maintained | |
8139 | F: drivers/net/phy/marvell10g.c | |
8140 | ||
370b8ed9 TP |
8141 | MARVELL MVNETA ETHERNET DRIVER |
8142 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
8143 | L: netdev@vger.kernel.org | |
8144 | S: Maintained | |
8145 | F: drivers/net/ethernet/marvell/mvneta.* | |
8146 | ||
fcad584d | 8147 | MARVELL MWIFIEX WIRELESS DRIVER |
bf30171b | 8148 | M: Amitkumar Karwar <amitkarwar@gmail.com> |
550795fc | 8149 | M: Nishant Sarmukadam <nishants@marvell.com> |
cf8c44d4 AK |
8150 | M: Ganapathi Bhat <gbhat@marvell.com> |
8151 | M: Xinming Hu <huxm@marvell.com> | |
fcad584d BZ |
8152 | L: linux-wireless@vger.kernel.org |
8153 | S: Maintained | |
277b024e | 8154 | F: drivers/net/wireless/marvell/mwifiex/ |
fcad584d | 8155 | |
a2c3f656 | 8156 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 8157 | M: Lennert Buytenhek <buytenh@wantstofly.org> |
a2c3f656 | 8158 | L: linux-wireless@vger.kernel.org |
16345910 | 8159 | S: Odd Fixes |
de60f1dc | 8160 | F: drivers/net/wireless/marvell/mwl8k.c |
a2c3f656 | 8161 | |
2a69567b | 8162 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 8163 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 8164 | S: Odd Fixes |
1fa7e547 | 8165 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 8166 | |
511fc93d HZ |
8167 | MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER |
8168 | M: Hu Ziji <huziji@marvell.com> | |
8169 | L: linux-mmc@vger.kernel.org | |
8170 | S: Supported | |
8171 | F: drivers/mmc/host/sdhci-xenon* | |
8172 | F: Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt | |
8173 | ||
1da177e4 | 8174 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 8175 | L: linux-fbdev@vger.kernel.org |
52653199 | 8176 | S: Orphan |
8a61f013 | 8177 | F: drivers/video/fbdev/matrox/matroxfb_* |
c117ab84 | 8178 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 8179 | |
ca462085 GR |
8180 | MAX16065 HARDWARE MONITOR DRIVER |
8181 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 8182 | L: linux-hwmon@vger.kernel.org |
ca462085 GR |
8183 | S: Maintained |
8184 | F: Documentation/hwmon/max16065 | |
8185 | F: drivers/hwmon/max16065.c | |
8186 | ||
1f61cab8 GR |
8187 | MAX20751 HARDWARE MONITOR DRIVER |
8188 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 8189 | L: linux-hwmon@vger.kernel.org |
1f61cab8 GR |
8190 | S: Maintained |
8191 | F: Documentation/hwmon/max20751 | |
8192 | F: drivers/hwmon/max20751.c | |
8193 | ||
fbe19d1f RS |
8194 | MAX2175 SDR TUNER DRIVER |
8195 | M: Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com> | |
8196 | L: linux-media@vger.kernel.org | |
8197 | T: git git://linuxtv.org/media_tree.git | |
8198 | S: Maintained | |
8199 | F: Documentation/devicetree/bindings/media/i2c/max2175.txt | |
8200 | F: Documentation/media/v4l-drivers/max2175.rst | |
8201 | F: drivers/media/i2c/max2175* | |
8202 | F: include/uapi/linux/max2175.h | |
8203 | ||
d20620de | 8204 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
968ce1b1 | 8205 | L: linux-hwmon@vger.kernel.org |
34924b23 | 8206 | S: Orphan |
679655da JP |
8207 | F: Documentation/hwmon/max6650 |
8208 | F: drivers/hwmon/max6650.c | |
d20620de | 8209 | |
e89ab51f GR |
8210 | MAX6697 HARDWARE MONITOR DRIVER |
8211 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 8212 | L: linux-hwmon@vger.kernel.org |
e89ab51f GR |
8213 | S: Maintained |
8214 | F: Documentation/hwmon/max6697 | |
8215 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
8216 | F: drivers/hwmon/max6697.c | |
8217 | F: include/linux/platform_data/max6697.h | |
8218 | ||
3b2af7f7 PR |
8219 | MAX9860 MONO AUDIO VOICE CODEC DRIVER |
8220 | M: Peter Rosin <peda@axentia.se> | |
8221 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
8222 | S: Maintained | |
8223 | F: Documentation/devicetree/bindings/sound/max9860.txt | |
8224 | F: sound/soc/codecs/max9860.* | |
8225 | ||
64f7d692 JMC |
8226 | MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER |
8227 | M: Javier Martinez Canillas <javier@dowhile0.org> | |
3811405e JMC |
8228 | L: linux-kernel@vger.kernel.org |
8229 | S: Supported | |
64f7d692 | 8230 | F: drivers/regulator/max77802-regulator.c |
3811405e JMC |
8231 | F: Documentation/devicetree/bindings/*/*max77802.txt |
8232 | F: include/dt-bindings/*/*max77802.h | |
8233 | ||
7683e9e5 LT |
8234 | MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS |
8235 | M: Krzysztof Kozlowski <krzk@kernel.org> | |
8236 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
8237 | L: linux-pm@vger.kernel.org | |
8238 | S: Supported | |
8239 | F: drivers/power/supply/max14577_charger.c | |
8240 | F: drivers/power/supply/max77693_charger.c | |
8241 | ||
befeb596 KK |
8242 | MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS |
8243 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
326dce07 KK |
8244 | M: Krzysztof Kozlowski <krzk@kernel.org> |
8245 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
befeb596 KK |
8246 | L: linux-kernel@vger.kernel.org |
8247 | S: Supported | |
86cf635a | 8248 | F: drivers/*/max14577*.c |
0998a436 | 8249 | F: drivers/*/max77686*.c |
86cf635a | 8250 | F: drivers/*/max77693*.c |
befeb596 KK |
8251 | F: drivers/extcon/extcon-max14577.c |
8252 | F: drivers/extcon/extcon-max77693.c | |
8253 | F: drivers/rtc/rtc-max77686.c | |
8254 | F: drivers/clk/clk-max77686.c | |
8255 | F: Documentation/devicetree/bindings/mfd/max14577.txt | |
377452f4 | 8256 | F: Documentation/devicetree/bindings/*/max77686.txt |
befeb596 KK |
8257 | F: Documentation/devicetree/bindings/mfd/max77693.txt |
8258 | F: Documentation/devicetree/bindings/clock/maxim,max77686.txt | |
8259 | F: include/linux/mfd/max14577*.h | |
8260 | F: include/linux/mfd/max77686*.h | |
8261 | F: include/linux/mfd/max77693*.h | |
8262 | ||
9be3c9a5 HV |
8263 | MAXIRADIO FM RADIO RECEIVER DRIVER |
8264 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8265 | L: linux-media@vger.kernel.org | |
8266 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 8267 | W: https://linuxtv.org |
9be3c9a5 HV |
8268 | S: Maintained |
8269 | F: drivers/media/radio/radio-maxiradio* | |
8270 | ||
c05dc2cc PR |
8271 | MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER |
8272 | M: Peter Rosin <peda@axentia.se> | |
8273 | L: linux-iio@vger.kernel.org | |
8274 | S: Maintained | |
2704e300 | 8275 | F: Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531 |
c05dc2cc PR |
8276 | F: drivers/iio/potentiometer/mcp4531.c |
8277 | ||
3b8df5fd WBG |
8278 | MEASUREMENT COMPUTING CIO-DAC IIO DRIVER |
8279 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
8280 | L: linux-iio@vger.kernel.org | |
8281 | S: Maintained | |
8282 | F: drivers/iio/dac/cio-dac.c | |
8283 | ||
7683e9e5 LT |
8284 | MEDIA DRIVERS FOR ASCOT2E |
8285 | M: Sergey Kozlov <serjk@netup.ru> | |
8286 | M: Abylay Ospan <aospan@netup.ru> | |
fbe19d1f | 8287 | L: linux-media@vger.kernel.org |
7683e9e5 LT |
8288 | W: https://linuxtv.org |
8289 | W: http://netup.tv/ | |
fbe19d1f RS |
8290 | T: git git://linuxtv.org/media_tree.git |
8291 | S: Supported | |
7683e9e5 LT |
8292 | F: drivers/media/dvb-frontends/ascot2e* |
8293 | ||
8294 | MEDIA DRIVERS FOR CXD2841ER | |
8295 | M: Sergey Kozlov <serjk@netup.ru> | |
8296 | M: Abylay Ospan <aospan@netup.ru> | |
8297 | L: linux-media@vger.kernel.org | |
8298 | W: https://linuxtv.org | |
8299 | W: http://netup.tv/ | |
8300 | T: git git://linuxtv.org/media_tree.git | |
8301 | S: Supported | |
8302 | F: drivers/media/dvb-frontends/cxd2841er* | |
fbe19d1f | 8303 | |
8e792f52 SL |
8304 | MEDIA DRIVERS FOR FREESCALE IMX |
8305 | M: Steve Longerbeam <slongerbeam@gmail.com> | |
8306 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
8307 | L: linux-media@vger.kernel.org | |
8308 | T: git git://linuxtv.org/media_tree.git | |
8309 | S: Maintained | |
8310 | F: Documentation/devicetree/bindings/media/imx.txt | |
8311 | F: Documentation/media/v4l-drivers/imx.rst | |
8312 | F: drivers/staging/media/imx/ | |
8313 | F: include/linux/imx-media.h | |
8314 | F: include/media/imx.h | |
8315 | ||
fae2080a AO |
8316 | MEDIA DRIVERS FOR HELENE |
8317 | M: Abylay Ospan <aospan@netup.ru> | |
8318 | L: linux-media@vger.kernel.org | |
8319 | W: https://linuxtv.org | |
8320 | W: http://netup.tv/ | |
8321 | T: git git://linuxtv.org/media_tree.git | |
8322 | S: Supported | |
8323 | F: drivers/media/dvb-frontends/helene* | |
8324 | ||
7683e9e5 | 8325 | MEDIA DRIVERS FOR HORUS3A |
dacf9ce8 | 8326 | M: Sergey Kozlov <serjk@netup.ru> |
1a76e1f7 | 8327 | M: Abylay Ospan <aospan@netup.ru> |
dacf9ce8 | 8328 | L: linux-media@vger.kernel.org |
a825eaec | 8329 | W: https://linuxtv.org |
dacf9ce8 KS |
8330 | W: http://netup.tv/ |
8331 | T: git git://linuxtv.org/media_tree.git | |
8332 | S: Supported | |
7683e9e5 | 8333 | F: drivers/media/dvb-frontends/horus3a* |
dacf9ce8 | 8334 | |
7683e9e5 | 8335 | MEDIA DRIVERS FOR LNBH25 |
a6dc60ff | 8336 | M: Sergey Kozlov <serjk@netup.ru> |
1a76e1f7 | 8337 | M: Abylay Ospan <aospan@netup.ru> |
a6dc60ff | 8338 | L: linux-media@vger.kernel.org |
a825eaec | 8339 | W: https://linuxtv.org |
a6dc60ff KS |
8340 | W: http://netup.tv/ |
8341 | T: git git://linuxtv.org/media_tree.git | |
8342 | S: Supported | |
7683e9e5 | 8343 | F: drivers/media/dvb-frontends/lnbh25* |
a6dc60ff | 8344 | |
7683e9e5 | 8345 | MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices |
a5d32b35 | 8346 | M: Sergey Kozlov <serjk@netup.ru> |
1a76e1f7 | 8347 | M: Abylay Ospan <aospan@netup.ru> |
a5d32b35 | 8348 | L: linux-media@vger.kernel.org |
a825eaec | 8349 | W: https://linuxtv.org |
a5d32b35 KS |
8350 | W: http://netup.tv/ |
8351 | T: git git://linuxtv.org/media_tree.git | |
8352 | S: Supported | |
7683e9e5 | 8353 | F: drivers/media/pci/netup_unidvb/* |
a5d32b35 | 8354 | |
7683e9e5 LT |
8355 | MEDIA DRIVERS FOR RENESAS - DRIF |
8356 | M: Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com> | |
e025273b | 8357 | L: linux-media@vger.kernel.org |
7683e9e5 | 8358 | L: linux-renesas-soc@vger.kernel.org |
e025273b KS |
8359 | T: git git://linuxtv.org/media_tree.git |
8360 | S: Supported | |
7683e9e5 LT |
8361 | F: Documentation/devicetree/bindings/media/renesas,drif.txt |
8362 | F: drivers/media/platform/rcar_drif.c | |
e025273b | 8363 | |
7683e9e5 LT |
8364 | MEDIA DRIVERS FOR RENESAS - FCP |
8365 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
52b1eaf4 | 8366 | L: linux-media@vger.kernel.org |
7683e9e5 | 8367 | L: linux-renesas-soc@vger.kernel.org |
52b1eaf4 KS |
8368 | T: git git://linuxtv.org/media_tree.git |
8369 | S: Supported | |
7683e9e5 LT |
8370 | F: Documentation/devicetree/bindings/media/renesas,fcp.txt |
8371 | F: drivers/media/platform/rcar-fcp.c | |
8372 | F: include/media/rcar-fcp.h | |
8373 | ||
8374 | MEDIA DRIVERS FOR RENESAS - FDP1 | |
8375 | M: Kieran Bingham <kieran@bingham.xyz> | |
8376 | L: linux-media@vger.kernel.org | |
8377 | L: linux-renesas-soc@vger.kernel.org | |
8378 | T: git git://linuxtv.org/media_tree.git | |
8379 | S: Supported | |
8380 | F: Documentation/devicetree/bindings/media/renesas,fdp1.txt | |
8381 | F: drivers/media/platform/rcar_fdp1.c | |
8382 | ||
8383 | MEDIA DRIVERS FOR RENESAS - VIN | |
8384 | M: Niklas Söderlund <niklas.soderlund@ragnatech.se> | |
8385 | L: linux-media@vger.kernel.org | |
8386 | L: linux-renesas-soc@vger.kernel.org | |
8387 | T: git git://linuxtv.org/media_tree.git | |
8388 | S: Supported | |
8389 | F: Documentation/devicetree/bindings/media/rcar_vin.txt | |
8390 | F: drivers/media/platform/rcar-vin/ | |
8391 | ||
8392 | MEDIA DRIVERS FOR RENESAS - VSP1 | |
8393 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
8394 | L: linux-media@vger.kernel.org | |
8395 | L: linux-renesas-soc@vger.kernel.org | |
8396 | T: git git://linuxtv.org/media_tree.git | |
8397 | S: Supported | |
8398 | F: Documentation/devicetree/bindings/media/renesas,vsp1.txt | |
8399 | F: drivers/media/platform/vsp1/ | |
52b1eaf4 | 8400 | |
127c49ae | 8401 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
5dc8a864 MCC |
8402 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
8403 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
127c49ae JP |
8404 | P: LinuxTV.org Project |
8405 | L: linux-media@vger.kernel.org | |
a825eaec | 8406 | W: https://linuxtv.org |
8a6e2535 | 8407 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 8408 | T: git git://linuxtv.org/media_tree.git |
127c49ae | 8409 | S: Maintained |
0c4089f8 | 8410 | F: Documentation/devicetree/bindings/media/ |
618cd932 | 8411 | F: Documentation/media/ |
127c49ae | 8412 | F: drivers/media/ |
ffe06198 | 8413 | F: drivers/staging/media/ |
eb4b0ec7 | 8414 | F: include/linux/platform_data/media/ |
127c49ae | 8415 | F: include/media/ |
6c0f0359 MCC |
8416 | F: include/uapi/linux/dvb/ |
8417 | F: include/uapi/linux/videodev2.h | |
8418 | F: include/uapi/linux/media.h | |
8419 | F: include/uapi/linux/v4l2-* | |
8420 | F: include/uapi/linux/meye.h | |
8421 | F: include/uapi/linux/ivtv* | |
8422 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 8423 | |
0c272fc9 JC |
8424 | MEDIATEK ETHERNET DRIVER |
8425 | M: Felix Fietkau <nbd@openwrt.org> | |
8426 | M: John Crispin <blogic@openwrt.org> | |
8427 | L: netdev@vger.kernel.org | |
8428 | S: Maintained | |
8429 | F: drivers/net/ethernet/mediatek/ | |
8430 | ||
105e8442 RC |
8431 | MEDIATEK JPEG DRIVER |
8432 | M: Rick Chang <rick.chang@mediatek.com> | |
8433 | M: Bin Liu <bin.liu@mediatek.com> | |
8434 | S: Supported | |
8435 | F: drivers/media/platform/mtk-jpeg/ | |
8436 | F: Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt | |
8437 | ||
fc96ec0d MT |
8438 | MEDIATEK MDP DRIVER |
8439 | M: Minghsiu Tsai <minghsiu.tsai@mediatek.com> | |
8440 | M: Houlong Wei <houlong.wei@mediatek.com> | |
8441 | M: Andrew-CT Chen <andrew-ct.chen@mediatek.com> | |
8442 | S: Supported | |
8443 | F: drivers/media/platform/mtk-mdp/ | |
8444 | F: drivers/media/platform/mtk-vpu/ | |
8445 | F: Documentation/devicetree/bindings/media/mediatek-mdp.txt | |
8446 | ||
7683e9e5 LT |
8447 | MEDIATEK MEDIA DRIVER |
8448 | M: Tiffany Lin <tiffany.lin@mediatek.com> | |
8449 | M: Andrew-CT Chen <andrew-ct.chen@mediatek.com> | |
8450 | S: Supported | |
8451 | F: drivers/media/platform/mtk-vcodec/ | |
8452 | F: drivers/media/platform/mtk-vpu/ | |
8453 | F: Documentation/devicetree/bindings/media/mediatek-vcodec.txt | |
8454 | F: Documentation/devicetree/bindings/media/mediatek-vpu.txt | |
8455 | ||
c869f77d JK |
8456 | MEDIATEK MT7601U WIRELESS LAN DRIVER |
8457 | M: Jakub Kicinski <kubakici@wp.pl> | |
8458 | L: linux-wireless@vger.kernel.org | |
8459 | S: Maintained | |
8460 | F: drivers/net/wireless/mediatek/mt7601u/ | |
8461 | ||
c4a29891 | 8462 | MEDIATEK RANDOM NUMBER GENERATOR SUPPORT |
7683e9e5 LT |
8463 | M: Sean Wang <sean.wang@mediatek.com> |
8464 | S: Maintained | |
8465 | F: drivers/char/hw_random/mtk-rng.c | |
c4a29891 | 8466 | |
15a83f7d PST |
8467 | MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES |
8468 | M: Peter Senna Tschudin <peter.senna@collabora.com> | |
8469 | M: Martin Donnelly <martin.donnelly@ge.com> | |
8470 | M: Martyn Welch <martyn.welch@collabora.co.uk> | |
8471 | S: Maintained | |
8472 | F: drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c | |
8473 | F: Documentation/devicetree/bindings/video/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt | |
8474 | ||
e399065b | 8475 | MEGARAID SCSI/SAS DRIVERS |
295dde2f KD |
8476 | M: Kashyap Desai <kashyap.desai@broadcom.com> |
8477 | M: Sumit Saxena <sumit.saxena@broadcom.com> | |
8478 | M: Shivasharan S <shivasharan.srikanteshwara@broadcom.com> | |
8479 | L: megaraidlinux.pdl@broadcom.com | |
baaea1dc | 8480 | L: linux-scsi@vger.kernel.org |
295dde2f | 8481 | W: http://www.avagotech.com/support/ |
ce00f85c | 8482 | S: Maintained |
679655da JP |
8483 | F: Documentation/scsi/megaraid.txt |
8484 | F: drivers/scsi/megaraid.* | |
8485 | F: drivers/scsi/megaraid/ | |
757e0108 | 8486 | |
82abbea7 RD |
8487 | MELEXIS MLX90614 DRIVER |
8488 | M: Crt Mori <cmo@melexis.com> | |
8489 | L: linux-iio@vger.kernel.org | |
8490 | W: http://www.melexis.com | |
8491 | S: Supported | |
8492 | F: drivers/iio/temperature/mlx90614.c | |
8493 | ||
ff43f433 SJ |
8494 | MELFAS MIP4 TOUCHSCREEN DRIVER |
8495 | M: Sangwon Jee <jeesw@melfas.com> | |
8496 | W: http://www.melfas.com | |
8497 | S: Supported | |
8498 | F: drivers/input/touchscreen/melfas_mip4.c | |
8499 | F: Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt | |
8500 | ||
2c46c9d5 | 8501 | MELLANOX ETHERNET DRIVER (mlx4_en) |
c40e4096 | 8502 | M: Tariq Toukan <tariqt@mellanox.com> |
b75f0050 | 8503 | L: netdev@vger.kernel.org |
2c46c9d5 AV |
8504 | S: Supported |
8505 | W: http://www.mellanox.com | |
8506 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
8507 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
8508 | ||
e7523a49 OG |
8509 | MELLANOX ETHERNET DRIVER (mlx5e) |
8510 | M: Saeed Mahameed <saeedm@mellanox.com> | |
8511 | L: netdev@vger.kernel.org | |
8512 | S: Supported | |
8513 | W: http://www.mellanox.com | |
8514 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
8515 | F: drivers/net/ethernet/mellanox/mlx5/core/en_* | |
8516 | ||
e29341fb IT |
8517 | MELLANOX ETHERNET INNOVA DRIVER |
8518 | M: Ilan Tayari <ilant@mellanox.com> | |
8519 | R: Boris Pismenny <borisp@mellanox.com> | |
8520 | L: netdev@vger.kernel.org | |
8521 | S: Supported | |
8522 | W: http://www.mellanox.com | |
8523 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
8524 | F: drivers/net/ethernet/mellanox/mlx5/core/fpga/* | |
8525 | F: include/linux/mlx5/mlx5_ifc_fpga.h | |
8526 | ||
547eede0 IT |
8527 | MELLANOX ETHERNET INNOVA IPSEC DRIVER |
8528 | M: Ilan Tayari <ilant@mellanox.com> | |
8529 | R: Boris Pismenny <borisp@mellanox.com> | |
8530 | L: netdev@vger.kernel.org | |
8531 | S: Supported | |
8532 | W: http://www.mellanox.com | |
8533 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
8534 | F: drivers/net/ethernet/mellanox/mlx5/core/en_ipsec/* | |
8535 | F: drivers/net/ethernet/mellanox/mlx5/core/ipsec* | |
8536 | ||
93c1edb2 JP |
8537 | MELLANOX ETHERNET SWITCH DRIVERS |
8538 | M: Jiri Pirko <jiri@mellanox.com> | |
8539 | M: Ido Schimmel <idosch@mellanox.com> | |
8540 | L: netdev@vger.kernel.org | |
8541 | S: Supported | |
8542 | W: http://www.mellanox.com | |
8543 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
8544 | F: drivers/net/ethernet/mellanox/mlxsw/ | |
8545 | ||
410ed13c YG |
8546 | MELLANOX FIRMWARE FLASH LIBRARY (mlxfw) |
8547 | M: Yotam Gigi <yotamg@mellanox.com> | |
8548 | L: netdev@vger.kernel.org | |
8549 | S: Supported | |
8550 | W: http://www.mellanox.com | |
8551 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
8552 | F: drivers/net/ethernet/mellanox/mlxfw/ | |
8553 | ||
30488704 VP |
8554 | MELLANOX MLX CPLD HOTPLUG DRIVER |
8555 | M: Vadim Pasternak <vadimp@mellanox.com> | |
8556 | L: platform-driver-x86@vger.kernel.org | |
8557 | S: Supported | |
8558 | F: drivers/platform/x86/mlxcpld-hotplug.c | |
8559 | F: include/linux/platform_data/mlxcpld-hotplug.h | |
8560 | ||
82abbea7 RD |
8561 | MELLANOX MLX4 core VPI driver |
8562 | M: Tariq Toukan <tariqt@mellanox.com> | |
8563 | L: netdev@vger.kernel.org | |
8700e3e7 | 8564 | L: linux-rdma@vger.kernel.org |
82abbea7 RD |
8565 | W: http://www.mellanox.com |
8566 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
8700e3e7 | 8567 | S: Supported |
82abbea7 RD |
8568 | F: drivers/net/ethernet/mellanox/mlx4/ |
8569 | F: include/linux/mlx4/ | |
8570 | ||
8571 | MELLANOX MLX4 IB driver | |
8572 | M: Yishai Hadas <yishaih@mellanox.com> | |
8573 | L: linux-rdma@vger.kernel.org | |
8574 | W: http://www.mellanox.com | |
8700e3e7 | 8575 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
82abbea7 RD |
8576 | S: Supported |
8577 | F: drivers/infiniband/hw/mlx4/ | |
8578 | F: include/linux/mlx4/ | |
8579 | F: include/uapi/rdma/mlx4-abi.h | |
8580 | ||
8581 | MELLANOX MLX5 core VPI driver | |
8582 | M: Saeed Mahameed <saeedm@mellanox.com> | |
8583 | M: Matan Barak <matanb@mellanox.com> | |
8584 | M: Leon Romanovsky <leonro@mellanox.com> | |
8585 | L: netdev@vger.kernel.org | |
8586 | L: linux-rdma@vger.kernel.org | |
8587 | W: http://www.mellanox.com | |
8588 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
8589 | S: Supported | |
7683e9e5 LT |
8590 | F: drivers/net/ethernet/mellanox/mlx5/core/ |
8591 | F: include/linux/mlx5/ | |
8592 | ||
8593 | MELLANOX MLX5 IB driver | |
8594 | M: Matan Barak <matanb@mellanox.com> | |
8595 | M: Leon Romanovsky <leonro@mellanox.com> | |
8596 | L: linux-rdma@vger.kernel.org | |
8597 | W: http://www.mellanox.com | |
8598 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
8599 | S: Supported | |
8600 | F: drivers/infiniband/hw/mlx5/ | |
8601 | F: include/linux/mlx5/ | |
8602 | F: include/uapi/rdma/mlx5-abi.h | |
8603 | ||
8604 | MELLANOX MLXCPLD I2C AND MUX DRIVER | |
8605 | M: Vadim Pasternak <vadimp@mellanox.com> | |
8606 | M: Michael Shych <michaelsh@mellanox.com> | |
8607 | L: linux-i2c@vger.kernel.org | |
8608 | S: Supported | |
8609 | F: drivers/i2c/busses/i2c-mlxcpld.c | |
8610 | F: drivers/i2c/muxes/i2c-mux-mlxcpld.c | |
8611 | F: Documentation/i2c/busses/i2c-mlxcpld | |
8612 | ||
8613 | MELLANOX MLXCPLD LED DRIVER | |
8614 | M: Vadim Pasternak <vadimp@mellanox.com> | |
8615 | L: linux-leds@vger.kernel.org | |
8616 | S: Supported | |
8617 | F: drivers/leds/leds-mlxcpld.c | |
8618 | F: Documentation/leds/leds-mlxcpld.txt | |
82abbea7 | 8619 | |
7683e9e5 LT |
8620 | MELLANOX PLATFORM DRIVER |
8621 | M: Vadim Pasternak <vadimp@mellanox.com> | |
8622 | L: platform-driver-x86@vger.kernel.org | |
82abbea7 | 8623 | S: Supported |
7683e9e5 | 8624 | F: drivers/platform/x86/mlx-platform.c |
8700e3e7 | 8625 | |
5b25b13a MD |
8626 | MEMBARRIER SUPPORT |
8627 | M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
8628 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
8629 | L: linux-kernel@vger.kernel.org | |
8630 | S: Supported | |
8631 | F: kernel/membarrier.c | |
8632 | F: include/uapi/linux/membarrier.h | |
8633 | ||
70ea91f1 SR |
8634 | MEMORY MANAGEMENT |
8635 | L: linux-mm@kvack.org | |
70ea91f1 SR |
8636 | W: http://www.linux-mm.org |
8637 | S: Maintained | |
679655da | 8638 | F: include/linux/mm.h |
551450bb CS |
8639 | F: include/linux/gfp.h |
8640 | F: include/linux/mmzone.h | |
8641 | F: include/linux/memory_hotplug.h | |
8642 | F: include/linux/vmalloc.h | |
679655da | 8643 | F: mm/ |
70ea91f1 | 8644 | |
f4e9ce66 | 8645 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 8646 | M: David Woodhouse <dwmw2@infradead.org> |
242c325e | 8647 | M: Brian Norris <computersforpeace@gmail.com> |
30656167 BB |
8648 | M: Boris Brezillon <boris.brezillon@free-electrons.com> |
8649 | M: Marek Vasut <marek.vasut@gmail.com> | |
8650 | M: Richard Weinberger <richard@nod.at> | |
b3bb6d6a | 8651 | M: Cyrille Pitchen <cyrille.pitchen@wedev4u.fr> |
1da177e4 | 8652 | L: linux-mtd@lists.infradead.org |
8a6e2535 JP |
8653 | W: http://www.linux-mtd.infradead.org/ |
8654 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
a9402889 BB |
8655 | T: git git://git.infradead.org/linux-mtd.git master |
8656 | T: git git://git.infradead.org/l2-mtd.git master | |
1da177e4 | 8657 | S: Maintained |
becc7ae5 | 8658 | F: Documentation/devicetree/bindings/mtd/ |
679655da JP |
8659 | F: drivers/mtd/ |
8660 | F: include/linux/mtd/ | |
c117ab84 | 8661 | F: include/uapi/mtd/ |
1da177e4 | 8662 | |
26c57ef1 | 8663 | MEN A21 WATCHDOG DRIVER |
30c7469b | 8664 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
26c57ef1 | 8665 | L: linux-watchdog@vger.kernel.org |
30c7469b | 8666 | S: Maintained |
26c57ef1 JT |
8667 | F: drivers/watchdog/mena21_wdt.c |
8668 | ||
3764e82e | 8669 | MEN CHAMELEON BUS (mcb) |
30c7469b JT |
8670 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
8671 | S: Maintained | |
3764e82e JT |
8672 | F: drivers/mcb/ |
8673 | F: include/linux/mcb.h | |
b9f2f459 | 8674 | F: Documentation/men-chameleon-bus.txt |
3764e82e | 8675 | |
48b490d2 AW |
8676 | MEN F21BMC (Board Management Controller) |
8677 | M: Andreas Werner <andreas.werner@men.de> | |
8678 | S: Supported | |
8679 | F: drivers/mfd/menf21bmc.c | |
8680 | F: drivers/watchdog/menf21bmc_wdt.c | |
8681 | F: drivers/leds/leds-menf21bmc.c | |
8682 | F: drivers/hwmon/menf21bmc_hwmon.c | |
8683 | F: Documentation/hwmon/menf21bmc | |
8684 | ||
12285945 JH |
8685 | METAG ARCHITECTURE |
8686 | M: James Hogan <james.hogan@imgtec.com> | |
d668d9ed | 8687 | L: linux-metag@vger.kernel.org |
9f273c24 | 8688 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git |
f23d0e24 | 8689 | S: Odd Fixes |
12285945 JH |
8690 | F: arch/metag/ |
8691 | F: Documentation/metag/ | |
8692 | F: Documentation/devicetree/bindings/metag/ | |
2d799dde | 8693 | F: Documentation/devicetree/bindings/interrupt-controller/img,* |
a2c5d4ed | 8694 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
8695 | F: drivers/irqchip/irq-metag.c |
8696 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 | 8697 | F: drivers/tty/metag_da.c |
12285945 | 8698 | |
c6375b0a | 8699 | MICROBLAZE ARCHITECTURE |
8b58be88 | 8700 | M: Michal Simek <monstr@monstr.eu> |
c6375b0a MS |
8701 | W: http://www.monstr.eu/fdt/ |
8702 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
8703 | S: Supported | |
0a8c7914 | 8704 | F: arch/microblaze/ |
1da177e4 | 8705 | |
72ce5732 | 8706 | MICROCHIP / ATMEL AT91 SERIAL DRIVER |
5615c371 NF |
8707 | M: Richard Genoud <richard.genoud@gmail.com> |
8708 | S: Maintained | |
8709 | F: drivers/tty/serial/atmel_serial.c | |
8961df89 | 8710 | F: drivers/tty/serial/atmel_serial.h |
5615c371 | 8711 | |
f53243b5 NF |
8712 | MICROCHIP / ATMEL DMA DRIVER |
8713 | M: Ludovic Desroches <ludovic.desroches@microchip.com> | |
8714 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8715 | L: dmaengine@vger.kernel.org | |
8716 | S: Supported | |
8717 | F: drivers/dma/at_hdmac.c | |
8718 | F: drivers/dma/at_hdmac_regs.h | |
8719 | F: include/linux/platform_data/dma-atmel.h | |
8720 | ||
71fb2c74 SW |
8721 | MICROCHIP / ATMEL ISC DRIVER |
8722 | M: Songjun Wu <songjun.wu@microchip.com> | |
8723 | L: linux-media@vger.kernel.org | |
8724 | S: Supported | |
8725 | F: drivers/media/platform/atmel/atmel-isc.c | |
8726 | F: drivers/media/platform/atmel/atmel-isc-regs.h | |
8727 | F: devicetree/bindings/media/atmel-isc.txt | |
8728 | ||
419585a9 WH |
8729 | MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER |
8730 | M: Woojung Huh <Woojung.Huh@microchip.com> | |
8731 | M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com> | |
8732 | L: netdev@vger.kernel.org | |
8733 | S: Maintained | |
8734 | F: net/dsa/tag_ksz.c | |
8735 | F: drivers/net/dsa/microchip/* | |
8736 | F: include/linux/platform_data/microchip-ksz.h | |
8737 | F: Documentation/devicetree/bindings/net/dsa/ksz.txt | |
8738 | ||
3ec72a2a RL |
8739 | MICROCHIP USB251XB DRIVER |
8740 | M: Richard Leitner <richard.leitner@skidata.com> | |
8741 | L: linux-usb@vger.kernel.org | |
8742 | S: Maintained | |
8743 | F: drivers/usb/misc/usb251xb.c | |
3ec72a2a RL |
8744 | F: Documentation/devicetree/bindings/usb/usb251xb.txt |
8745 | ||
82abbea7 RD |
8746 | MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi) |
8747 | M: Don Brace <don.brace@microsemi.com> | |
8748 | L: esc.storagedev@microsemi.com | |
8749 | L: linux-scsi@vger.kernel.org | |
8750 | S: Supported | |
8751 | F: drivers/scsi/smartpqi/smartpqi*.[ch] | |
8752 | F: drivers/scsi/smartpqi/Kconfig | |
8753 | F: drivers/scsi/smartpqi/Makefile | |
8754 | F: include/linux/cciss*.h | |
8755 | F: include/uapi/linux/cciss*.h | |
8756 | F: Documentation/scsi/smartpqi.txt | |
8757 | ||
2508a45a CY |
8758 | MICROSOFT SURFACE PRO 3 BUTTON DRIVER |
8759 | M: Chen Yu <yu.c.chen@intel.com> | |
8760 | L: platform-driver-x86@vger.kernel.org | |
8761 | S: Supported | |
8762 | F: drivers/platform/x86/surfacepro3_button.c | |
8763 | ||
1da177e4 | 8764 | MICROTEK X6 SCANNER |
61eee9a7 | 8765 | M: Oliver Neukum <oliver@neukum.org> |
1da177e4 | 8766 | S: Maintained |
679655da | 8767 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
8768 | |
8769 | MIPS | |
8b58be88 | 8770 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 8771 | L: linux-mips@linux-mips.org |
6097050d | 8772 | W: http://www.linux-mips.org/ |
b05e988e | 8773 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 8774 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 8775 | S: Supported |
f46d92e8 | 8776 | F: Documentation/devicetree/bindings/mips/ |
679655da JP |
8777 | F: Documentation/mips/ |
8778 | F: arch/mips/ | |
1da177e4 | 8779 | |
7683e9e5 LT |
8780 | MIPS BOSTON DEVELOPMENT BOARD |
8781 | M: Paul Burton <paul.burton@imgtec.com> | |
8782 | L: linux-mips@linux-mips.org | |
8783 | S: Maintained | |
8784 | F: Documentation/devicetree/bindings/clock/img,boston-clock.txt | |
8785 | F: arch/mips/boot/dts/img/boston.dts | |
8786 | F: arch/mips/configs/generic/board-boston.config | |
8787 | F: drivers/clk/imgtec/clk-boston.c | |
8788 | F: include/dt-bindings/clock/boston-clock.h | |
8789 | ||
032a469b PB |
8790 | MIPS GENERIC PLATFORM |
8791 | M: Paul Burton <paul.burton@imgtec.com> | |
8792 | L: linux-mips@linux-mips.org | |
8793 | S: Supported | |
8794 | F: arch/mips/generic/ | |
8795 | ||
413ef3f6 KC |
8796 | MIPS/LOONGSON1 ARCHITECTURE |
8797 | M: Keguang Zhang <keguang.zhang@gmail.com> | |
8798 | L: linux-mips@linux-mips.org | |
8799 | S: Maintained | |
8800 | F: arch/mips/loongson32/ | |
8801 | F: arch/mips/include/asm/mach-loongson32/ | |
8802 | F: drivers/*/*loongson1* | |
8803 | F: drivers/*/*/*loongson1* | |
8804 | ||
08b7620a HV |
8805 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
8806 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8807 | L: linux-media@vger.kernel.org | |
8808 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 8809 | W: https://linuxtv.org |
08b7620a HV |
8810 | S: Odd Fixes |
8811 | F: drivers/media/radio/radio-miropcm20* | |
8812 | ||
82abbea7 RD |
8813 | MMP SUPPORT |
8814 | M: Eric Miao <eric.y.miao@gmail.com> | |
8815 | M: Haojian Zhuang <haojian.zhuang@gmail.com> | |
8816 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
8817 | T: git git://github.com/hzhuang1/linux.git | |
8818 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
8819 | S: Maintained | |
8820 | F: arch/arm/boot/dts/mmp* | |
8821 | F: arch/arm/mach-mmp/ | |
6c223761 | 8822 | |
0ce277e4 AP |
8823 | MN88472 MEDIA DRIVER |
8824 | M: Antti Palosaari <crope@iki.fi> | |
8825 | L: linux-media@vger.kernel.org | |
a825eaec | 8826 | W: https://linuxtv.org |
0ce277e4 AP |
8827 | W: http://palosaari.fi/linux/ |
8828 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
0ce277e4 | 8829 | S: Maintained |
94d0eaa4 | 8830 | F: drivers/media/dvb-frontends/mn88472* |
0ce277e4 | 8831 | |
4f4d238f AP |
8832 | MN88473 MEDIA DRIVER |
8833 | M: Antti Palosaari <crope@iki.fi> | |
8834 | L: linux-media@vger.kernel.org | |
a825eaec | 8835 | W: https://linuxtv.org |
4f4d238f AP |
8836 | W: http://palosaari.fi/linux/ |
8837 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4f4d238f | 8838 | S: Maintained |
877ba50b | 8839 | F: drivers/media/dvb-frontends/mn88473* |
4f4d238f | 8840 | |
1da177e4 | 8841 | MODULE SUPPORT |
462c5a82 | 8842 | M: Jessica Yu <jeyu@kernel.org> |
8b58be88 | 8843 | M: Rusty Russell <rusty@rustcorp.com.au> |
0d4ec784 | 8844 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next |
1da177e4 | 8845 | S: Maintained |
679655da JP |
8846 | F: include/linux/module.h |
8847 | F: kernel/module.c | |
1da177e4 LT |
8848 | |
8849 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 8850 | W: http://popies.net/meye/ |
b7788e13 | 8851 | S: Orphan |
618cd932 | 8852 | F: Documentation/media/v4l-drivers/meye* |
90d72ac6 | 8853 | F: drivers/media/pci/meye/ |
6c0f0359 | 8854 | F: include/uapi/linux/meye.h |
1da177e4 | 8855 | |
b9705b60 | 8856 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 8857 | M: Jiri Slaby <jirislaby@gmail.com> |
d735410a | 8858 | S: Maintained |
679655da | 8859 | F: Documentation/serial/moxa-smartio |
c897401b | 8860 | F: drivers/tty/mxser.* |
d735410a | 8861 | |
889b2f87 AK |
8862 | MR800 AVERMEDIA USB FM RADIO DRIVER |
8863 | M: Alexey Klimov <klimov.linux@gmail.com> | |
8864 | L: linux-media@vger.kernel.org | |
8865 | T: git git://linuxtv.org/media_tree.git | |
8866 | S: Maintained | |
8867 | F: drivers/media/radio/radio-mr800.c | |
8868 | ||
d7155691 AO |
8869 | MRF24J40 IEEE 802.15.4 RADIO DRIVER |
8870 | M: Alan Ott <alan@signal11.us> | |
8871 | L: linux-wpan@vger.kernel.org | |
8872 | S: Maintained | |
8873 | F: drivers/net/ieee802154/mrf24j40.c | |
2e6fd648 | 8874 | F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt |
d7155691 | 8875 | |
8c4c731a | 8876 | MSI LAPTOP SUPPORT |
182ae55c | 8877 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 8878 | L: platform-driver-x86@vger.kernel.org |
8c4c731a | 8879 | S: Maintained |
679655da | 8880 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 8881 | |
0f1006b1 | 8882 | MSI WMI SUPPORT |
d0944853 | 8883 | L: platform-driver-x86@vger.kernel.org |
5ee7041e | 8884 | S: Orphan |
0f1006b1 AA |
8885 | F: drivers/platform/x86/msi-wmi.c |
8886 | ||
19a628a0 AP |
8887 | MSI001 MEDIA DRIVER |
8888 | M: Antti Palosaari <crope@iki.fi> | |
8889 | L: linux-media@vger.kernel.org | |
a825eaec | 8890 | W: https://linuxtv.org |
19a628a0 AP |
8891 | W: http://palosaari.fi/linux/ |
8892 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8893 | T: git git://linuxtv.org/anttip/media_tree.git | |
8894 | S: Maintained | |
0185e197 | 8895 | F: drivers/media/tuners/msi001* |
19a628a0 | 8896 | |
7570589d | 8897 | MSI2500 MEDIA DRIVER |
2c57213f AP |
8898 | M: Antti Palosaari <crope@iki.fi> |
8899 | L: linux-media@vger.kernel.org | |
a825eaec | 8900 | W: https://linuxtv.org |
2c57213f AP |
8901 | W: http://palosaari.fi/linux/ |
8902 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8903 | T: git git://linuxtv.org/anttip/media_tree.git | |
8904 | S: Maintained | |
7570589d | 8905 | F: drivers/media/usb/msi2500/ |
2c57213f | 8906 | |
159eeea4 RJ |
8907 | MSYSTEMS DISKONCHIP G3 MTD DRIVER |
8908 | M: Robert Jarzmik <robert.jarzmik@free.fr> | |
8909 | L: linux-mtd@lists.infradead.org | |
8910 | S: Maintained | |
8911 | F: drivers/mtd/devices/docg3* | |
8912 | ||
62a37dc7 | 8913 | MT9M032 APTINA SENSOR DRIVER |
0e837fb9 LP |
8914 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
8915 | L: linux-media@vger.kernel.org | |
8916 | T: git git://linuxtv.org/media_tree.git | |
8917 | S: Maintained | |
8918 | F: drivers/media/i2c/mt9m032.c | |
b5dcee22 | 8919 | F: include/media/i2c/mt9m032.h |
0e837fb9 | 8920 | |
62a37dc7 | 8921 | MT9P031 APTINA CAMERA SENSOR |
0e837fb9 LP |
8922 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
8923 | L: linux-media@vger.kernel.org | |
8924 | T: git git://linuxtv.org/media_tree.git | |
8925 | S: Maintained | |
8926 | F: drivers/media/i2c/mt9p031.c | |
b5dcee22 | 8927 | F: include/media/i2c/mt9p031.h |
0e837fb9 | 8928 | |
62a37dc7 | 8929 | MT9T001 APTINA CAMERA SENSOR |
0e837fb9 LP |
8930 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
8931 | L: linux-media@vger.kernel.org | |
8932 | T: git git://linuxtv.org/media_tree.git | |
8933 | S: Maintained | |
8934 | F: drivers/media/i2c/mt9t001.c | |
b5dcee22 | 8935 | F: include/media/i2c/mt9t001.h |
0e837fb9 | 8936 | |
62a37dc7 | 8937 | MT9V032 APTINA CAMERA SENSOR |
0e837fb9 LP |
8938 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
8939 | L: linux-media@vger.kernel.org | |
8940 | T: git git://linuxtv.org/media_tree.git | |
8941 | S: Maintained | |
f2272e13 | 8942 | F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt |
0e837fb9 | 8943 | F: drivers/media/i2c/mt9v032.c |
b5dcee22 | 8944 | F: include/media/i2c/mt9v032.h |
0e837fb9 | 8945 | |
4e0d13cb | 8946 | MULTIFUNCTION DEVICES (MFD) |
f7d3210e | 8947 | M: Lee Jones <lee.jones@linaro.org> |
7caa7991 | 8948 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git |
4e0d13cb | 8949 | S: Supported |
80366127 | 8950 | F: Documentation/devicetree/bindings/mfd/ |
679655da | 8951 | F: drivers/mfd/ |
55b5940d | 8952 | F: include/linux/mfd/ |
29a0729d | 8953 | F: include/dt-bindings/mfd/ |
4e0d13cb | 8954 | |
7683e9e5 LT |
8955 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
8956 | S: Orphan | |
8957 | F: drivers/mmc/host/mmc_spi.c | |
8958 | F: include/linux/spi/mmc_spi.h | |
8959 | ||
5c4e6f13 | 8960 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
e18eaf8f | 8961 | M: Ulf Hansson <ulf.hansson@linaro.org> |
b2503a94 | 8962 | L: linux-mmc@vger.kernel.org |
82bb095e | 8963 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git |
245feaa6 | 8964 | S: Maintained |
2810984b | 8965 | F: Documentation/devicetree/bindings/mmc/ |
679655da JP |
8966 | F: drivers/mmc/ |
8967 | F: include/linux/mmc/ | |
c117ab84 | 8968 | F: include/uapi/linux/mmc/ |
baca2da4 | 8969 | |
256ac037 PR |
8970 | MULTIPLEXER SUBSYSTEM |
8971 | M: Peter Rosin <peda@axentia.se> | |
8972 | S: Maintained | |
a3b02a9c | 8973 | F: Documentation/ABI/testing/mux/sysfs-class-mux* |
256ac037 PR |
8974 | F: Documentation/devicetree/bindings/mux/ |
8975 | F: include/linux/dt-bindings/mux/ | |
a3b02a9c PR |
8976 | F: include/linux/mux/ |
8977 | F: drivers/mux/ | |
256ac037 | 8978 | |
1da177e4 | 8979 | MULTISOUND SOUND DRIVER |
8b58be88 | 8980 | M: Andrew Veliath <andrewtv@usa.net> |
1da177e4 | 8981 | S: Maintained |
679655da JP |
8982 | F: Documentation/sound/oss/MultiSound |
8983 | F: sound/oss/msnd* | |
1da177e4 | 8984 | |
d735410a | 8985 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 8986 | S: Orphan |
c897401b | 8987 | F: drivers/tty/isicom.c |
679655da | 8988 | F: include/linux/isicom.h |
d735410a | 8989 | |
550a7375 | 8990 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
3b243519 | 8991 | M: Bin Liu <b-liu@ti.com> |
795fb7e7 | 8992 | L: linux-usb@vger.kernel.org |
43b416e5 | 8993 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 8994 | S: Maintained |
679655da | 8995 | F: drivers/usb/musb/ |
550a7375 | 8996 | |
ea0af5f6 MK |
8997 | MXL5007T MEDIA DRIVER |
8998 | M: Michael Krufky <mkrufky@linuxtv.org> | |
8999 | L: linux-media@vger.kernel.org | |
a825eaec | 9000 | W: https://linuxtv.org |
ea0af5f6 MK |
9001 | W: http://github.com/mkrufky |
9002 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9003 | T: git git://linuxtv.org/mkrufky/tuners.git | |
9004 | S: Maintained | |
9005 | F: drivers/media/tuners/mxl5007t.* | |
9006 | ||
45d59d70 MV |
9007 | MXSFB DRM DRIVER |
9008 | M: Marek Vasut <marex@denx.de> | |
9009 | S: Supported | |
9010 | F: drivers/gpu/drm/mxsfb/ | |
9011 | F: Documentation/devicetree/bindings/display/mxsfb-drm.txt | |
9012 | ||
2d3cf588 | 9013 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
205057ae | 9014 | M: Hyong-Youb Kim <hykim@myri.com> |
2d3cf588 | 9015 | L: netdev@vger.kernel.org |
205057ae | 9016 | W: https://www.myricom.com/support/downloads/myri10ge.html |
2d3cf588 | 9017 | S: Supported |
93f7848b | 9018 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 9019 | |
9df4f913 BB |
9020 | NAND FLASH SUBSYSTEM |
9021 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
9022 | R: Richard Weinberger <richard@nod.at> | |
9023 | L: linux-mtd@lists.infradead.org | |
9024 | W: http://www.linux-mtd.infradead.org/ | |
9025 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
a9402889 BB |
9026 | T: git git://git.infradead.org/linux-mtd.git nand/fixes |
9027 | T: git git://git.infradead.org/l2-mtd.git nand/next | |
9df4f913 BB |
9028 | S: Maintained |
9029 | F: drivers/mtd/nand/ | |
9030 | F: include/linux/mtd/nand*.h | |
9031 | ||
23dc05a3 DM |
9032 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
9033 | M: Daniel Mack <zonque@gmail.com> | |
9034 | S: Maintained | |
e5747e40 | 9035 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
23dc05a3 DM |
9036 | W: http://www.native-instruments.com |
9037 | F: sound/usb/caiaq/ | |
9038 | ||
82abbea7 RD |
9039 | NATSEMI ETHERNET DRIVER (DP8381x) |
9040 | S: Orphan | |
9041 | F: drivers/net/ethernet/natsemi/natsemi.c | |
9042 | ||
1da177e4 | 9043 | NCP FILESYSTEM |
52653199 PV |
9044 | M: Petr Vandrovec <petr@vandrovec.name> |
9045 | S: Odd Fixes | |
679655da | 9046 | F: fs/ncpfs/ |
1da177e4 | 9047 | |
a79b0322 FT |
9048 | NCR 5380 SCSI DRIVERS |
9049 | M: Finn Thain <fthain@telegraphics.com.au> | |
9050 | M: Michael Schmitz <schmitzmic@gmail.com> | |
9051 | L: linux-scsi@vger.kernel.org | |
9052 | S: Maintained | |
9053 | F: Documentation/scsi/g_NCR5380.txt | |
9054 | F: drivers/scsi/NCR5380.* | |
9055 | F: drivers/scsi/arm/cumana_1.c | |
9056 | F: drivers/scsi/arm/oak.c | |
a79b0322 FT |
9057 | F: drivers/scsi/atari_scsi.* |
9058 | F: drivers/scsi/dmx3191d.c | |
a79b0322 | 9059 | F: drivers/scsi/g_NCR5380.* |
a79b0322 | 9060 | F: drivers/scsi/mac_scsi.* |
a79b0322 FT |
9061 | F: drivers/scsi/sun3_scsi.* |
9062 | F: drivers/scsi/sun3_scsi_vme.c | |
a79b0322 | 9063 | |
1da177e4 | 9064 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
8b58be88 | 9065 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
9066 | L: linux-scsi@vger.kernel.org |
9067 | S: Maintained | |
679655da | 9068 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 9069 | |
4aa3eb4c GR |
9070 | NCT6775 HARDWARE MONITOR DRIVER |
9071 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 9072 | L: linux-hwmon@vger.kernel.org |
4aa3eb4c GR |
9073 | S: Maintained |
9074 | F: Documentation/hwmon/nct6775 | |
9075 | F: drivers/hwmon/nct6775.c | |
9076 | ||
3c2d774c | 9077 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 9078 | M: Faisal Latif <faisal.latif@intel.com> |
e6cc0fd1 | 9079 | L: linux-rdma@vger.kernel.org |
e3d33cb1 | 9080 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
9081 | S: Supported |
9082 | F: drivers/infiniband/hw/nes/ | |
c546b2a3 | 9083 | F: include/uapi/rdma/nes-abi.h |
3c2d774c | 9084 | |
be2f2e84 | 9085 | NETEM NETWORK EMULATOR |
adbbf69d | 9086 | M: Stephen Hemminger <stephen@networkplumber.org> |
3430284f | 9087 | L: netem@lists.linux-foundation.org (moderated for non-subscribers) |
be2f2e84 | 9088 | S: Maintained |
679655da | 9089 | F: net/sched/sch_netem.c |
be2f2e84 | 9090 | |
b2f5a051 | 9091 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 9092 | M: Jon Mason <jdmason@kudzu.us> |
4a58448b | 9093 | L: netdev@vger.kernel.org |
4a58448b | 9094 | S: Supported |
679655da | 9095 | F: Documentation/networking/s2io.txt |
b2f5a051 | 9096 | F: Documentation/networking/vxge.txt |
86387e1a | 9097 | F: drivers/net/ethernet/neterion/ |
4a58448b | 9098 | |
fc52497e | 9099 | NETFILTER |
0e05e192 | 9100 | M: Pablo Neira Ayuso <pablo@netfilter.org> |
42010ed0 | 9101 | M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> |
1519fccb | 9102 | M: Florian Westphal <fw@strlen.de> |
1a03b81d | 9103 | L: netfilter-devel@vger.kernel.org |
82b98543 | 9104 | L: coreteam@netfilter.org |
1da177e4 LT |
9105 | W: http://www.netfilter.org/ |
9106 | W: http://www.iptables.org/ | |
1519fccb | 9107 | W: http://www.nftables.org/ |
42010ed0 PNA |
9108 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
9109 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
9110 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1519fccb | 9111 | S: Maintained |
679655da JP |
9112 | F: include/linux/netfilter* |
9113 | F: include/linux/netfilter/ | |
9114 | F: include/net/netfilter/ | |
c117ab84 CEB |
9115 | F: include/uapi/linux/netfilter* |
9116 | F: include/uapi/linux/netfilter/ | |
679655da JP |
9117 | F: net/*/netfilter.c |
9118 | F: net/*/netfilter/ | |
9119 | F: net/netfilter/ | |
91c269a0 | 9120 | F: net/bridge/br_netfilter*.c |
1da177e4 | 9121 | |
4cc67735 | 9122 | NETLABEL |
87a0874c | 9123 | M: Paul Moore <paul@paul-moore.com> |
4cc67735 PM |
9124 | W: http://netlabel.sf.net |
9125 | L: netdev@vger.kernel.org | |
87a0874c | 9126 | S: Maintained |
80811493 | 9127 | F: Documentation/netlabel/ |
679655da JP |
9128 | F: include/net/netlabel.h |
9129 | F: net/netlabel/ | |
4cc67735 | 9130 | |
1da177e4 | 9131 | NETROM NETWORK LAYER |
8b58be88 | 9132 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 9133 | L: linux-hams@vger.kernel.org |
d34cb28a | 9134 | W: http://www.linux-ax25.org/ |
1da177e4 | 9135 | S: Maintained |
679655da | 9136 | F: include/net/netrom.h |
c117ab84 | 9137 | F: include/uapi/linux/netrom.h |
679655da | 9138 | F: net/netrom/ |
1da177e4 | 9139 | |
4c352362 JK |
9140 | NETRONOME ETHERNET DRIVERS |
9141 | M: Jakub Kicinski <jakub.kicinski@netronome.com> | |
4c352362 JK |
9142 | L: oss-drivers@netronome.com |
9143 | S: Maintained | |
9144 | F: drivers/net/ethernet/netronome/ | |
9145 | ||
5ddb88c0 | 9146 | NETWORK BLOCK DEVICE (NBD) |
1e668f4e | 9147 | M: Josef Bacik <jbacik@fb.com> |
1da177e4 | 9148 | S: Maintained |
1e668f4e | 9149 | L: linux-block@vger.kernel.org |
5e4b269b | 9150 | L: nbd-general@lists.sourceforge.net |
679655da JP |
9151 | F: Documentation/blockdev/nbd.txt |
9152 | F: drivers/block/nbd.c | |
c117ab84 | 9153 | F: include/uapi/linux/nbd.h |
1da177e4 | 9154 | |
6e43650c NH |
9155 | NETWORK DROP MONITOR |
9156 | M: Neil Horman <nhorman@tuxdriver.com> | |
9157 | L: netdev@vger.kernel.org | |
9158 | S: Maintained | |
9159 | W: https://fedorahosted.org/dropwatch/ | |
9160 | F: net/core/drop_monitor.c | |
9161 | ||
7683e9e5 LT |
9162 | NETWORKING DRIVERS |
9163 | L: netdev@vger.kernel.org | |
9164 | W: http://www.linuxfoundation.org/en/Net | |
9165 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
9166 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git | |
9167 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
9168 | S: Odd Fixes | |
9169 | F: Documentation/devicetree/bindings/net/ | |
9170 | F: drivers/net/ | |
9171 | F: include/linux/if_* | |
9172 | F: include/linux/netdevice.h | |
9173 | F: include/linux/etherdevice.h | |
9174 | F: include/linux/fcdevice.h | |
9175 | F: include/linux/fddidevice.h | |
9176 | F: include/linux/hippidevice.h | |
9177 | F: include/linux/inetdevice.h | |
9178 | F: include/uapi/linux/if_* | |
9179 | F: include/uapi/linux/netdevice.h | |
9180 | ||
9181 | NETWORKING DRIVERS (WIRELESS) | |
9182 | M: Kalle Valo <kvalo@codeaurora.org> | |
9183 | L: linux-wireless@vger.kernel.org | |
9184 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ | |
9185 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git | |
9186 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git | |
9187 | S: Maintained | |
9188 | F: Documentation/devicetree/bindings/net/wireless/ | |
9189 | F: drivers/net/wireless/ | |
9190 | ||
3ed6e498 AL |
9191 | NETWORKING [DSA] |
9192 | M: Andrew Lunn <andrew@lunn.ch> | |
9193 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> | |
9194 | M: Florian Fainelli <f.fainelli@gmail.com> | |
9195 | S: Maintained | |
9196 | F: net/dsa/ | |
9197 | F: include/net/dsa.h | |
9198 | F: drivers/net/dsa/ | |
9199 | ||
1da177e4 | 9200 | NETWORKING [GENERAL] |
8b58be88 | 9201 | M: "David S. Miller" <davem@davemloft.net> |
979b6c13 | 9202 | L: netdev@vger.kernel.org |
b1e8fd54 | 9203 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 9204 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
9205 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
9206 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
b0522e13 | 9207 | B: mailto:netdev@vger.kernel.org |
1da177e4 | 9208 | S: Maintained |
679655da JP |
9209 | F: net/ |
9210 | F: include/net/ | |
018d21ed JP |
9211 | F: include/linux/in.h |
9212 | F: include/linux/net.h | |
9213 | F: include/linux/netdevice.h | |
c117ab84 CEB |
9214 | F: include/uapi/linux/in.h |
9215 | F: include/uapi/linux/net.h | |
9216 | F: include/uapi/linux/netdevice.h | |
0c7aecd4 | 9217 | F: include/uapi/linux/net_namespace.h |
7e814a6c | 9218 | F: tools/net/ |
f4e53f9a | 9219 | F: tools/testing/selftests/net/ |
335a67d2 | 9220 | F: lib/random32.c |
1da177e4 | 9221 | |
73b7656c DM |
9222 | NETWORKING [IPSEC] |
9223 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
9224 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
9225 | M: "David S. Miller" <davem@davemloft.net> | |
9226 | L: netdev@vger.kernel.org | |
d1fc5024 SK |
9227 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git |
9228 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git | |
73b7656c | 9229 | S: Maintained |
5826bdd1 | 9230 | F: net/core/flow.c |
73b7656c DM |
9231 | F: net/xfrm/ |
9232 | F: net/key/ | |
9233 | F: net/ipv4/xfrm* | |
77999328 | 9234 | F: net/ipv4/esp4* |
d1fc5024 SK |
9235 | F: net/ipv4/ah4.c |
9236 | F: net/ipv4/ipcomp.c | |
9237 | F: net/ipv4/ip_vti.c | |
73b7656c | 9238 | F: net/ipv6/xfrm* |
77999328 | 9239 | F: net/ipv6/esp6* |
d1fc5024 SK |
9240 | F: net/ipv6/ah6.c |
9241 | F: net/ipv6/ipcomp6.c | |
9242 | F: net/ipv6/ip6_vti.c | |
73b7656c DM |
9243 | F: include/uapi/linux/xfrm.h |
9244 | F: include/net/xfrm.h | |
9245 | ||
7683e9e5 LT |
9246 | NETWORKING [IPv4/IPv6] |
9247 | M: "David S. Miller" <davem@davemloft.net> | |
9248 | M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> | |
9249 | M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> | |
9250 | L: netdev@vger.kernel.org | |
9251 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git | |
9252 | S: Maintained | |
9253 | F: net/ipv4/ | |
9254 | F: net/ipv6/ | |
9255 | F: include/net/ip* | |
9256 | F: arch/x86/net/* | |
9257 | ||
10e2ff1c | 9258 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 9259 | M: Paul Moore <paul@paul-moore.com> |
10e2ff1c JM |
9260 | L: netdev@vger.kernel.org |
9261 | S: Maintained | |
9262 | ||
7683e9e5 LT |
9263 | NETWORKING [TLS] |
9264 | M: Ilya Lesokhin <ilyal@mellanox.com> | |
9265 | M: Aviad Yehezkel <aviadye@mellanox.com> | |
9266 | M: Dave Watson <davejwatson@fb.com> | |
788873ac | 9267 | L: netdev@vger.kernel.org |
7683e9e5 LT |
9268 | S: Maintained |
9269 | F: net/tls/* | |
9270 | F: include/uapi/linux/tls.h | |
9271 | F: include/net/tls.h | |
788873ac | 9272 | |
7683e9e5 | 9273 | NETWORKING [WIRELESS] |
0e324cf6 JL |
9274 | L: linux-wireless@vger.kernel.org |
9275 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ | |
0e324cf6 | 9276 | |
3d396eb1 | 9277 | NETXEN (1/10) GbE SUPPORT |
67f0160f MY |
9278 | M: Manish Chopra <manish.chopra@cavium.com> |
9279 | M: Rahul Verma <rahul.verma@cavium.com> | |
9280 | M: Dept-GELinuxNICDev@cavium.com | |
3d396eb1 | 9281 | L: netdev@vger.kernel.org |
3d396eb1 | 9282 | S: Supported |
aa43c215 | 9283 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 9284 | |
6423d30f | 9285 | NFC SUBSYSTEM |
6423d30f AAJ |
9286 | M: Samuel Ortiz <sameo@linux.intel.com> |
9287 | L: linux-wireless@vger.kernel.org | |
1eb3b216 | 9288 | L: linux-nfc@lists.01.org (subscribers-only) |
0293ba20 | 9289 | S: Supported |
6423d30f | 9290 | F: net/nfc/ |
55eb94f9 | 9291 | F: include/net/nfc/ |
c117ab84 | 9292 | F: include/uapi/linux/nfc.h |
6423d30f | 9293 | F: drivers/nfc/ |
397d6497 CR |
9294 | F: include/linux/platform_data/nfcmrvl.h |
9295 | F: include/linux/platform_data/nxp-nci.h | |
7ebb88e5 | 9296 | F: Documentation/devicetree/bindings/net/nfc/ |
3d396eb1 | 9297 | |
e8b43555 | 9298 | NFS, SUNRPC, AND LOCKD CLIENTS |
cd7b996a | 9299 | M: Trond Myklebust <trond.myklebust@primarydata.com> |
0e3b137f | 9300 | M: Anna Schumaker <anna.schumaker@netapp.com> |
78f58153 TM |
9301 | L: linux-nfs@vger.kernel.org |
9302 | W: http://client.linux-nfs.org | |
cd7b996a | 9303 | T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git |
1da177e4 | 9304 | S: Maintained |
679655da JP |
9305 | F: fs/lockd/ |
9306 | F: fs/nfs/ | |
9307 | F: fs/nfs_common/ | |
9308 | F: net/sunrpc/ | |
9309 | F: include/linux/lockd/ | |
9310 | F: include/linux/nfs* | |
9311 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
9312 | F: include/uapi/linux/nfs* |
9313 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 9314 | |
85ef9cea | 9315 | NILFS2 FILESYSTEM |
e2126935 | 9316 | M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> |
6aff43f8 | 9317 | L: linux-nilfs@vger.kernel.org |
f9472265 | 9318 | W: http://nilfs.sourceforge.net/ |
9e92e516 | 9319 | W: http://nilfs.osdn.jp/ |
e2126935 | 9320 | T: git git://github.com/konis/nilfs2.git |
85ef9cea | 9321 | S: Supported |
679655da JP |
9322 | F: Documentation/filesystems/nilfs2.txt |
9323 | F: fs/nilfs2/ | |
c35c7ac5 | 9324 | F: include/trace/events/nilfs2.h |
e63e88bc RK |
9325 | F: include/uapi/linux/nilfs2_api.h |
9326 | F: include/uapi/linux/nilfs2_ondisk.h | |
85ef9cea | 9327 | |
1da177e4 | 9328 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 9329 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
1da177e4 LT |
9330 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
9331 | S: Maintained | |
679655da JP |
9332 | F: Documentation/scsi/NinjaSCSI.txt |
9333 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
9334 | |
9335 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
9336 | M: GOTO Masanori <gotom@debian.or.jp> |
9337 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> | |
1da177e4 LT |
9338 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
9339 | S: Maintained | |
679655da JP |
9340 | F: Documentation/scsi/NinjaSCSI.txt |
9341 | F: drivers/scsi/nsp32* | |
1da177e4 | 9342 | |
383b8fb9 LFT |
9343 | NIOS2 ARCHITECTURE |
9344 | M: Ley Foon Tan <lftan@altera.com> | |
9345 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
0094dc40 | 9346 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git |
383b8fb9 LFT |
9347 | S: Maintained |
9348 | F: arch/nios2/ | |
9349 | ||
86d35afb IM |
9350 | NOHZ, DYNTICKS SUPPORT |
9351 | M: Frederic Weisbecker <fweisbec@gmail.com> | |
9352 | M: Thomas Gleixner <tglx@linutronix.de> | |
9353 | M: Ingo Molnar <mingo@kernel.org> | |
9354 | L: linux-kernel@vger.kernel.org | |
9355 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz | |
9356 | S: Maintained | |
9357 | F: kernel/time/tick*.* | |
9358 | F: include/linux/tick.h | |
9359 | F: include/linux/sched/nohz.h | |
9360 | ||
21b5a1c3 PM |
9361 | NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS) |
9362 | M: Pavel Machek <pavel@ucw.cz> | |
9363 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
9364 | L: linux-media@vger.kernel.org | |
9365 | S: Maintained | |
9366 | F: drivers/media/i2c/et8ek8 | |
9367 | F: drivers/media/i2c/ad5820.c | |
9368 | ||
2a6afddb | 9369 | NOKIA N900 POWER SUPPLY DRIVERS |
e35a49b1 | 9370 | R: Pali Rohár <pali.rohar@gmail.com> |
2a6afddb | 9371 | F: include/linux/power/bq2415x_charger.h |
081bab21 | 9372 | F: include/linux/power/bq27xxx_battery.h |
2a6afddb | 9373 | F: include/linux/power/isp1704_charger.h |
8c0984e5 SR |
9374 | F: drivers/power/supply/bq2415x_charger.c |
9375 | F: drivers/power/supply/bq27xxx_battery.c | |
9376 | F: drivers/power/supply/bq27xxx_battery_i2c.c | |
9377 | F: drivers/power/supply/isp1704_charger.c | |
9378 | F: drivers/power/supply/rx51_battery.c | |
2a6afddb | 9379 | |
7683e9e5 LT |
9380 | NTB AMD DRIVER |
9381 | M: Shyam Sundar S K <Shyam-sundar.S-k@amd.com> | |
9382 | L: linux-ntb@googlegroups.com | |
9383 | S: Supported | |
9384 | F: drivers/ntb/hw/amd/ | |
9385 | ||
a1bd3bae | 9386 | NTB DRIVER CORE |
9ef6bf6c JM |
9387 | M: Jon Mason <jdmason@kudzu.us> |
9388 | M: Dave Jiang <dave.jiang@intel.com> | |
a1bd3bae | 9389 | M: Allen Hubbe <Allen.Hubbe@emc.com> |
5e9fd733 | 9390 | L: linux-ntb@googlegroups.com |
fce8a7bb | 9391 | S: Supported |
2984411f JM |
9392 | W: https://github.com/jonmason/ntb/wiki |
9393 | T: git git://github.com/jonmason/ntb.git | |
fce8a7bb | 9394 | F: drivers/ntb/ |
548c237c | 9395 | F: drivers/net/ntb_netdev.c |
fce8a7bb | 9396 | F: include/linux/ntb.h |
a1bd3bae | 9397 | F: include/linux/ntb_transport.h |
a9c59ef7 | 9398 | F: tools/testing/selftests/ntb/ |
fce8a7bb | 9399 | |
bf2a952d SS |
9400 | NTB IDT DRIVER |
9401 | M: Serge Semin <fancer.lancer@gmail.com> | |
9402 | L: linux-ntb@googlegroups.com | |
9403 | S: Supported | |
9404 | F: drivers/ntb/hw/idt/ | |
9405 | ||
e26a5843 AH |
9406 | NTB INTEL DRIVER |
9407 | M: Jon Mason <jdmason@kudzu.us> | |
9408 | M: Dave Jiang <dave.jiang@intel.com> | |
5e9fd733 | 9409 | L: linux-ntb@googlegroups.com |
e26a5843 AH |
9410 | S: Supported |
9411 | W: https://github.com/jonmason/ntb/wiki | |
9412 | T: git git://github.com/jonmason/ntb.git | |
9413 | F: drivers/ntb/hw/intel/ | |
fce8a7bb | 9414 | |
1da177e4 | 9415 | NTFS FILESYSTEM |
2818ef50 | 9416 | M: Anton Altaparmakov <anton@tuxera.com> |
1da177e4 | 9417 | L: linux-ntfs-dev@lists.sourceforge.net |
2818ef50 | 9418 | W: http://www.tuxera.com/ |
e6f4dee7 | 9419 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 9420 | S: Supported |
679655da JP |
9421 | F: Documentation/filesystems/ntfs.txt |
9422 | F: fs/ntfs/ | |
1da177e4 | 9423 | |
9eb8ef74 | 9424 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 9425 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 9426 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 9427 | S: Maintained |
8a61f013 JH |
9428 | F: drivers/video/fbdev/riva/ |
9429 | F: drivers/video/fbdev/nvidia/ | |
1da177e4 | 9430 | |
79461681 | 9431 | NVM EXPRESS DRIVER |
b3975e94 JF |
9432 | M: Keith Busch <keith.busch@intel.com> |
9433 | M: Jens Axboe <axboe@fb.com> | |
b508fc35 CH |
9434 | M: Christoph Hellwig <hch@lst.de> |
9435 | M: Sagi Grimberg <sagi@grimberg.me> | |
79461681 | 9436 | L: linux-nvme@lists.infradead.org |
b508fc35 CH |
9437 | T: git://git.infradead.org/nvme.git |
9438 | W: http://git.infradead.org/nvme.git | |
79461681 | 9439 | S: Supported |
57dacad5 | 9440 | F: drivers/nvme/host/ |
79461681 | 9441 | F: include/linux/nvme.h |
b508fc35 | 9442 | F: include/uapi/linux/nvme_ioctl.h |
79461681 | 9443 | |
b1ad1475 JS |
9444 | NVM EXPRESS FC TRANSPORT DRIVERS |
9445 | M: James Smart <james.smart@broadcom.com> | |
9446 | L: linux-nvme@lists.infradead.org | |
9447 | S: Supported | |
9448 | F: include/linux/nvme-fc.h | |
d6d20012 | 9449 | F: include/linux/nvme-fc-driver.h |
e399441d | 9450 | F: drivers/nvme/host/fc.c |
c5343203 | 9451 | F: drivers/nvme/target/fc.c |
475d0fe7 | 9452 | F: drivers/nvme/target/fcloop.c |
b1ad1475 | 9453 | |
7683e9e5 LT |
9454 | NVM EXPRESS TARGET DRIVER |
9455 | M: Christoph Hellwig <hch@lst.de> | |
9456 | M: Sagi Grimberg <sagi@grimberg.me> | |
9457 | L: linux-nvme@lists.infradead.org | |
9458 | T: git://git.infradead.org/nvme.git | |
9459 | W: http://git.infradead.org/nvme.git | |
9460 | S: Supported | |
9461 | F: drivers/nvme/target/ | |
9462 | ||
aee4b9bd SK |
9463 | NVMEM FRAMEWORK |
9464 | M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> | |
aee4b9bd SK |
9465 | S: Maintained |
9466 | F: drivers/nvmem/ | |
9467 | F: Documentation/devicetree/bindings/nvmem/ | |
9468 | F: include/linux/nvmem-consumer.h | |
9469 | F: include/linux/nvmem-provider.h | |
9470 | ||
f50d7146 | 9471 | NXP TDA998X DRM DRIVER |
0d7f4f05 | 9472 | M: Russell King <linux@armlinux.org.uk> |
f50d7146 | 9473 | S: Supported |
0d7f4f05 RK |
9474 | T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel |
9475 | T: git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes | |
f50d7146 RK |
9476 | F: drivers/gpu/drm/i2c/tda998x_drv.c |
9477 | F: include/drm/i2c/tda998x.h | |
9478 | ||
fbace43e PR |
9479 | NXP TFA9879 DRIVER |
9480 | M: Peter Rosin <peda@axentia.se> | |
9481 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
9482 | S: Maintained | |
9483 | F: sound/soc/codecs/tfa9879* | |
9484 | ||
7683e9e5 LT |
9485 | NXP-NCI NFC DRIVER |
9486 | M: Clément Perrochaud <clement.perrochaud@effinnov.com> | |
9487 | R: Charles Gorand <charles.gorand@effinnov.com> | |
9488 | L: linux-nfc@lists.01.org (moderated for non-subscribers) | |
9489 | S: Supported | |
9490 | F: drivers/nfc/nxp-nci | |
9491 | ||
442f04c3 JP |
9492 | OBJTOOL |
9493 | M: Josh Poimboeuf <jpoimboe@redhat.com> | |
9494 | S: Supported | |
9495 | F: tools/objtool/ | |
9496 | ||
7683e9e5 LT |
9497 | OMAP AUDIO SUPPORT |
9498 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> | |
9499 | M: Jarkko Nikula <jarkko.nikula@bitmer.com> | |
9500 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
57b6bfcf | 9501 | L: linux-omap@vger.kernel.org |
57b6bfcf | 9502 | S: Maintained |
7683e9e5 | 9503 | F: sound/soc/omap/ |
57b6bfcf | 9504 | |
7683e9e5 LT |
9505 | OMAP CLOCK FRAMEWORK SUPPORT |
9506 | M: Paul Walmsley <paul@pwsan.com> | |
f5525786 | 9507 | L: linux-omap@vger.kernel.org |
f5525786 | 9508 | S: Maintained |
7683e9e5 | 9509 | F: arch/arm/*omap*/*clock* |
f5525786 | 9510 | |
50f29fbd | 9511 | OMAP DEVICE TREE SUPPORT |
cdb55ab0 | 9512 | M: Benoît Cousson <bcousson@baylibre.com> |
50f29fbd TL |
9513 | M: Tony Lindgren <tony@atomide.com> |
9514 | L: linux-omap@vger.kernel.org | |
d0fb18c5 | 9515 | L: devicetree@vger.kernel.org |
50f29fbd | 9516 | S: Maintained |
7683e9e5 LT |
9517 | F: arch/arm/boot/dts/*omap* |
9518 | F: arch/arm/boot/dts/*am3* | |
9519 | F: arch/arm/boot/dts/*am4* | |
9520 | F: arch/arm/boot/dts/*am5* | |
9521 | F: arch/arm/boot/dts/*dra7* | |
f5525786 | 9522 | |
7683e9e5 LT |
9523 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
9524 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
692ab1f3 | 9525 | L: linux-omap@vger.kernel.org |
7683e9e5 | 9526 | L: linux-fbdev@vger.kernel.org |
692ab1f3 | 9527 | S: Maintained |
7683e9e5 LT |
9528 | F: drivers/video/fbdev/omap2/ |
9529 | F: Documentation/arm/OMAP/DSS | |
692ab1f3 | 9530 | |
7683e9e5 LT |
9531 | OMAP FRAMEBUFFER SUPPORT |
9532 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
9533 | L: linux-fbdev@vger.kernel.org | |
f5525786 TL |
9534 | L: linux-omap@vger.kernel.org |
9535 | S: Maintained | |
7683e9e5 | 9536 | F: drivers/video/fbdev/omap/ |
f5525786 | 9537 | |
18640193 TL |
9538 | OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT |
9539 | M: Roger Quadros <rogerq@ti.com> | |
9540 | M: Tony Lindgren <tony@atomide.com> | |
9541 | L: linux-omap@vger.kernel.org | |
9542 | S: Maintained | |
9543 | F: drivers/memory/omap-gpmc.c | |
9544 | F: arch/arm/mach-omap2/*gpmc* | |
9545 | ||
7683e9e5 LT |
9546 | OMAP GPIO DRIVER |
9547 | M: Grygorii Strashko <grygorii.strashko@ti.com> | |
9548 | M: Santosh Shilimkar <ssantosh@kernel.org> | |
9549 | M: Kevin Hilman <khilman@kernel.org> | |
178ff4c9 | 9550 | L: linux-omap@vger.kernel.org |
178ff4c9 | 9551 | S: Maintained |
7683e9e5 LT |
9552 | F: Documentation/devicetree/bindings/gpio/gpio-omap.txt |
9553 | F: drivers/gpio/gpio-omap.c | |
178ff4c9 | 9554 | |
8b37fcfc OBC |
9555 | OMAP HARDWARE SPINLOCK SUPPORT |
9556 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
9557 | L: linux-omap@vger.kernel.org | |
9558 | S: Maintained | |
9559 | F: drivers/hwspinlock/omap_hwspinlock.c | |
8b37fcfc | 9560 | |
653f41b5 | 9561 | OMAP HS MMC SUPPORT |
0a4585c6 | 9562 | L: linux-mmc@vger.kernel.org |
653f41b5 | 9563 | L: linux-omap@vger.kernel.org |
dfa5d196 | 9564 | S: Orphan |
653f41b5 | 9565 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 | 9566 | |
8633fb30 PW |
9567 | OMAP HWMOD DATA |
9568 | M: Paul Walmsley <paul@pwsan.com> | |
9569 | L: linux-omap@vger.kernel.org | |
9570 | S: Maintained | |
9571 | F: arch/arm/mach-omap2/omap_hwmod*data* | |
9572 | ||
f400c82e | 9573 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES |
cdb55ab0 | 9574 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
9575 | L: linux-omap@vger.kernel.org |
9576 | S: Maintained | |
9577 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
9578 | ||
7683e9e5 LT |
9579 | OMAP HWMOD SUPPORT |
9580 | M: Benoît Cousson <bcousson@baylibre.com> | |
9581 | M: Paul Walmsley <paul@pwsan.com> | |
9582 | L: linux-omap@vger.kernel.org | |
9583 | S: Maintained | |
9584 | F: arch/arm/mach-omap2/omap_hwmod.* | |
9585 | ||
0db83ced | 9586 | OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS) |
7e8970e1 LP |
9587 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
9588 | L: linux-media@vger.kernel.org | |
9589 | S: Maintained | |
7eec52db | 9590 | F: Documentation/devicetree/bindings/media/ti,omap3isp.txt |
90d72ac6 | 9591 | F: drivers/media/platform/omap3isp/ |
0db83ced | 9592 | F: drivers/staging/media/omap4iss/ |
7e8970e1 | 9593 | |
7683e9e5 LT |
9594 | OMAP MMC SUPPORT |
9595 | M: Jarkko Lavinen <jarkko.lavinen@nokia.com> | |
9596 | L: linux-omap@vger.kernel.org | |
9597 | S: Maintained | |
9598 | F: drivers/mmc/host/omap.c | |
9599 | ||
9600 | OMAP POWER MANAGEMENT SUPPORT | |
9601 | M: Kevin Hilman <khilman@kernel.org> | |
9602 | L: linux-omap@vger.kernel.org | |
9603 | S: Maintained | |
9604 | F: arch/arm/*omap*/*pm* | |
9605 | F: drivers/cpufreq/omap-cpufreq.c | |
9606 | ||
9607 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT | |
9608 | M: Rajendra Nayak <rnayak@codeaurora.org> | |
9609 | M: Paul Walmsley <paul@pwsan.com> | |
9610 | L: linux-omap@vger.kernel.org | |
9611 | S: Maintained | |
9612 | F: arch/arm/mach-omap2/prm* | |
9613 | ||
9614 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
9615 | M: Deepak Saxena <dsaxena@plexity.net> | |
9616 | S: Maintained | |
9617 | F: drivers/char/hw_random/omap-rng.c | |
9618 | ||
f5525786 | 9619 | OMAP USB SUPPORT |
f5525786 TL |
9620 | L: linux-usb@vger.kernel.org |
9621 | L: linux-omap@vger.kernel.org | |
3b243519 | 9622 | S: Orphan |
a16fbd65 JP |
9623 | F: drivers/usb/*/*omap* |
9624 | F: arch/arm/*omap*/usb* | |
f5525786 | 9625 | |
c351e290 MJ |
9626 | OMAP/NEWFLOW NANOBONE MACHINE SUPPORT |
9627 | M: Mark Jackson <mpfj@newflow.co.uk> | |
9628 | L: linux-omap@vger.kernel.org | |
9629 | S: Maintained | |
9630 | F: arch/arm/boot/dts/am335x-nano.dts | |
9631 | ||
7683e9e5 LT |
9632 | OMAP1 SUPPORT |
9633 | M: Aaro Koskinen <aaro.koskinen@iki.fi> | |
9634 | M: Tony Lindgren <tony@atomide.com> | |
9635 | L: linux-omap@vger.kernel.org | |
9636 | Q: http://patchwork.kernel.org/project/linux-omap/list/ | |
9637 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git | |
9638 | S: Maintained | |
9639 | F: arch/arm/mach-omap1/ | |
9640 | F: arch/arm/plat-omap/ | |
9641 | F: arch/arm/configs/omap1_defconfig | |
9642 | F: drivers/i2c/busses/i2c-omap.c | |
9643 | F: include/linux/i2c-omap.h | |
9644 | ||
9645 | OMAP2+ SUPPORT | |
9646 | M: Tony Lindgren <tony@atomide.com> | |
9647 | L: linux-omap@vger.kernel.org | |
9648 | W: http://www.muru.com/linux/omap/ | |
9649 | W: http://linux.omap.com/ | |
9650 | Q: http://patchwork.kernel.org/project/linux-omap/list/ | |
9651 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git | |
9652 | S: Maintained | |
9653 | F: arch/arm/mach-omap2/ | |
9654 | F: arch/arm/plat-omap/ | |
9655 | F: arch/arm/configs/omap2plus_defconfig | |
9656 | F: drivers/i2c/busses/i2c-omap.c | |
9657 | F: drivers/irqchip/irq-omap-intc.c | |
9658 | F: drivers/mfd/*omap*.c | |
9659 | F: drivers/mfd/menelaus.c | |
9660 | F: drivers/mfd/palmas.c | |
9661 | F: drivers/mfd/tps65217.c | |
9662 | F: drivers/mfd/tps65218.c | |
9663 | F: drivers/mfd/tps65910.c | |
9664 | F: drivers/mfd/twl-core.[ch] | |
9665 | F: drivers/mfd/twl4030*.c | |
9666 | F: drivers/mfd/twl6030*.c | |
9667 | F: drivers/mfd/twl6040*.c | |
9668 | F: drivers/regulator/palmas-regulator*.c | |
9669 | F: drivers/regulator/pbias-regulator.c | |
9670 | F: drivers/regulator/tps65217-regulator.c | |
9671 | F: drivers/regulator/tps65218-regulator.c | |
9672 | F: drivers/regulator/tps65910-regulator.c | |
9673 | F: drivers/regulator/twl-regulator.c | |
9674 | F: drivers/regulator/twl6030-regulator.c | |
9675 | F: include/linux/i2c-omap.h | |
9676 | ||
0ad122d9 | 9677 | OMFS FILESYSTEM |
8b58be88 | 9678 | M: Bob Copeland <me@bobcopeland.com> |
0ad122d9 BC |
9679 | L: linux-karma-devel@lists.sourceforge.net |
9680 | S: Maintained | |
679655da JP |
9681 | F: Documentation/filesystems/omfs.txt |
9682 | F: fs/omfs/ | |
0ad122d9 | 9683 | |
c1986ee9 | 9684 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 9685 | M: Harald Welte <laforge@gnumonks.org> |
c1986ee9 | 9686 | S: Maintained |
679655da JP |
9687 | F: drivers/char/pcmcia/cm4000_cs.c |
9688 | F: include/linux/cm4000_cs.h | |
c117ab84 | 9689 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 9690 | |
77c44ab1 | 9691 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 9692 | M: Harald Welte <laforge@gnumonks.org> |
77c44ab1 | 9693 | S: Maintained |
679655da | 9694 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 9695 | |
7683e9e5 LT |
9696 | OMNIVISION OV13858 SENSOR DRIVER |
9697 | M: Sakari Ailus <sakari.ailus@linux.intel.com> | |
9698 | L: linux-media@vger.kernel.org | |
9699 | T: git git://linuxtv.org/media_tree.git | |
9700 | S: Maintained | |
9701 | F: drivers/media/i2c/ov13858.c | |
9702 | ||
2d77a2a6 SL |
9703 | OMNIVISION OV5640 SENSOR DRIVER |
9704 | M: Steve Longerbeam <slongerbeam@gmail.com> | |
9705 | L: linux-media@vger.kernel.org | |
9706 | T: git git://linuxtv.org/media_tree.git | |
9707 | S: Maintained | |
9708 | F: drivers/media/i2c/ov5640.c | |
9709 | ||
3c2472a3 RO |
9710 | OMNIVISION OV5647 SENSOR DRIVER |
9711 | M: Ramiro Oliveira <roliveir@synopsys.com> | |
9712 | L: linux-media@vger.kernel.org | |
9713 | T: git git://linuxtv.org/media_tree.git | |
9714 | S: Maintained | |
9715 | F: drivers/media/i2c/ov5647.c | |
9716 | ||
77d5140f | 9717 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 9718 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 9719 | L: linux-media@vger.kernel.org |
275ffde4 | 9720 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 9721 | S: Maintained |
90d72ac6 | 9722 | F: drivers/media/i2c/ov7670.c |
bba58289 | 9723 | F: Documentation/devicetree/bindings/media/i2c/ov7670.txt |
77d5140f | 9724 | |
431bca73 | 9725 | ONENAND FLASH DRIVER |
8b58be88 | 9726 | M: Kyungmin Park <kyungmin.park@samsung.com> |
431bca73 TG |
9727 | L: linux-mtd@lists.infradead.org |
9728 | S: Maintained | |
679655da JP |
9729 | F: drivers/mtd/onenand/ |
9730 | F: include/linux/mtd/onenand*.h | |
431bca73 | 9731 | |
1da177e4 | 9732 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 9733 | M: Willem Riede <osst@riede.org> |
1da177e4 LT |
9734 | L: osst-users@lists.sourceforge.net |
9735 | L: linux-scsi@vger.kernel.org | |
9736 | S: Maintained | |
f7269cfc JD |
9737 | F: Documentation/scsi/osst.txt |
9738 | F: drivers/scsi/osst.* | |
9739 | F: drivers/scsi/osst_*.h | |
9740 | F: drivers/scsi/st.h | |
1da177e4 | 9741 | |
82abbea7 RD |
9742 | OP-TEE DRIVER |
9743 | M: Jens Wiklander <jens.wiklander@linaro.org> | |
e2d1d6c0 | 9744 | S: Maintained |
82abbea7 RD |
9745 | F: drivers/tee/optee/ |
9746 | ||
9747 | OPA-VNIC DRIVER | |
9748 | M: Dennis Dalessandro <dennis.dalessandro@intel.com> | |
9749 | M: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> | |
9750 | L: linux-rdma@vger.kernel.org | |
9751 | S: Supported | |
9752 | F: drivers/infiniband/ulp/opa_vnic | |
e2d1d6c0 | 9753 | |
7683e9e5 LT |
9754 | OPEN FIRMWARE AND DEVICE TREE OVERLAYS |
9755 | M: Pantelis Antoniou <pantelis.antoniou@konsulko.com> | |
9756 | L: devicetree@vger.kernel.org | |
9757 | S: Maintained | |
9758 | F: Documentation/devicetree/dynamic-resolution-notes.txt | |
9759 | F: Documentation/devicetree/overlay-notes.txt | |
9760 | F: drivers/of/overlay.c | |
9761 | F: drivers/of/resolver.c | |
9762 | ||
860c44c1 | 9763 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
5d3ad8a6 | 9764 | M: Rob Herring <robh+dt@kernel.org> |
c8fb70a3 | 9765 | M: Frank Rowand <frowand.list@gmail.com> |
d0fb18c5 | 9766 | L: devicetree@vger.kernel.org |
a7fefe9f | 9767 | W: http://www.devicetree.org/ |
fcdec35e | 9768 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git |
860c44c1 | 9769 | S: Maintained |
f8828205 | 9770 | F: drivers/of/ |
860c44c1 | 9771 | F: include/linux/of*.h |
f8828205 | 9772 | F: scripts/dtc/ |
acedeb50 | 9773 | F: Documentation/ABI/testing/sysfs-firmware-ofw |
860c44c1 | 9774 | |
f8828205 | 9775 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
5d3ad8a6 | 9776 | M: Rob Herring <robh+dt@kernel.org> |
f8828205 | 9777 | M: Mark Rutland <mark.rutland@arm.com> |
f8828205 | 9778 | L: devicetree@vger.kernel.org |
9f273c24 | 9779 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git |
fcdec35e | 9780 | Q: http://patchwork.ozlabs.org/project/devicetree-bindings/list/ |
f8828205 GL |
9781 | S: Maintained |
9782 | F: Documentation/devicetree/ | |
9783 | F: arch/*/boot/dts/ | |
9784 | F: include/dt-bindings/ | |
9785 | ||
82abbea7 RD |
9786 | OPENCORES I2C BUS DRIVER |
9787 | M: Peter Korsgaard <jacmet@sunsite.dk> | |
9788 | L: linux-i2c@vger.kernel.org | |
9789 | S: Maintained | |
9790 | F: Documentation/i2c/busses/i2c-ocores | |
9791 | F: drivers/i2c/busses/i2c-ocores.c | |
9792 | ||
19f9d392 JB |
9793 | OPENRISC ARCHITECTURE |
9794 | M: Jonas Bonn <jonas@southpole.se> | |
d01e1f35 SH |
9795 | M: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi> |
9796 | M: Stafford Horne <shorne@gmail.com> | |
9dfc96d7 | 9797 | T: git git://github.com/openrisc/linux.git |
d01e1f35 SH |
9798 | L: openrisc@lists.librecores.org |
9799 | W: http://openrisc.io | |
19f9d392 | 9800 | S: Maintained |
14430813 | 9801 | F: arch/openrisc/ |
19f9d392 | 9802 | |
ccb1352e | 9803 | OPENVSWITCH |
4f337ed5 | 9804 | M: Pravin Shelar <pshelar@nicira.com> |
b422da7c | 9805 | L: netdev@vger.kernel.org |
ccb1352e JG |
9806 | L: dev@openvswitch.org |
9807 | W: http://openvswitch.org | |
ccb1352e JG |
9808 | S: Maintained |
9809 | F: net/openvswitch/ | |
b422da7c | 9810 | F: include/uapi/linux/openvswitch.h |
ccb1352e | 9811 | |
875fa6fb VK |
9812 | OPERATING PERFORMANCE POINTS (OPP) |
9813 | M: Viresh Kumar <vireshk@kernel.org> | |
9814 | M: Nishanth Menon <nm@ti.com> | |
9815 | M: Stephen Boyd <sboyd@codeaurora.org> | |
9816 | L: linux-pm@vger.kernel.org | |
9817 | S: Maintained | |
9818 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git | |
9819 | F: drivers/base/power/opp/ | |
9820 | F: include/linux/pm_opp.h | |
9821 | F: Documentation/power/opp.txt | |
9822 | F: Documentation/devicetree/bindings/opp/ | |
9823 | ||
af39917d CL |
9824 | OPL4 DRIVER |
9825 | M: Clemens Ladisch <clemens@ladisch.de> | |
9826 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
9827 | T: git git://git.alsa-project.org/alsa-kernel.git | |
9828 | S: Maintained | |
9829 | F: sound/drivers/opl4/ | |
9830 | ||
1da177e4 | 9831 | OPROFILE |
4cf7e718 | 9832 | M: Robert Richter <rric@kernel.org> |
1da177e4 LT |
9833 | L: oprofile-list@lists.sf.net |
9834 | S: Maintained | |
81c4a8a6 | 9835 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
9836 | F: arch/*/oprofile/ |
9837 | F: drivers/oprofile/ | |
9838 | F: include/linux/oprofile.h | |
1da177e4 | 9839 | |
e2d1d6c0 | 9840 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
0a966fa8 | 9841 | M: Mark Fasheh <mfasheh@versity.com> |
d6351db2 | 9842 | M: Joel Becker <jlbec@evilplan.org> |
e2d1d6c0 | 9843 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
01945fa2 | 9844 | W: http://ocfs2.wiki.kernel.org |
e2d1d6c0 | 9845 | S: Supported |
679655da JP |
9846 | F: Documentation/filesystems/ocfs2.txt |
9847 | F: Documentation/filesystems/dlmfs.txt | |
9848 | F: fs/ocfs2/ | |
e2d1d6c0 | 9849 | |
82abbea7 RD |
9850 | ORANGEFS FILESYSTEM |
9851 | M: Mike Marshall <hubcap@omnibond.com> | |
9852 | L: pvfs2-developers@beowulf-underground.org (subscribers-only) | |
9853 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git | |
9854 | S: Supported | |
9855 | F: fs/orangefs/ | |
9856 | F: Documentation/filesystems/orangefs.txt | |
9857 | ||
9858 | ORINOCO DRIVER | |
9859 | L: linux-wireless@vger.kernel.org | |
491b26b4 | 9860 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 9861 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 9862 | S: Orphan |
2be45b66 | 9863 | F: drivers/net/wireless/intersil/orinoco/ |
1da177e4 | 9864 | |
42c55aa8 | 9865 | OSD LIBRARY and FILESYSTEM |
fadc0752 | 9866 | M: Boaz Harrosh <ooo@electrozaur.com> |
68274794 | 9867 | S: Maintained |
42c55aa8 | 9868 | F: drivers/scsi/osd/ |
6b6f0b6c | 9869 | F: include/scsi/osd_* |
42c55aa8 | 9870 | F: fs/exofs/ |
68274794 | 9871 | |
82abbea7 RD |
9872 | OV2659 OMNIVISION SENSOR DRIVER |
9873 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> | |
9874 | L: linux-media@vger.kernel.org | |
9875 | W: https://linuxtv.org | |
9876 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9877 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9878 | S: Maintained | |
9879 | F: drivers/media/i2c/ov2659.c | |
9880 | F: include/media/i2c/ov2659.h | |
9881 | ||
ef94b186 | 9882 | OVERLAY FILESYSTEM |
7c37fbda | 9883 | M: Miklos Szeredi <miklos@szeredi.hu> |
1d113735 MS |
9884 | L: linux-unionfs@vger.kernel.org |
9885 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git | |
7c37fbda | 9886 | S: Supported |
1d113735 | 9887 | F: fs/overlayfs/ |
7c37fbda NB |
9888 | F: Documentation/filesystems/overlayfs.txt |
9889 | ||
e2d1d6c0 | 9890 | P54 WIRELESS DRIVER |
084cb0fe | 9891 | M: Christian Lamparter <chunkeey@googlemail.com> |
e2d1d6c0 | 9892 | L: linux-wireless@vger.kernel.org |
084cb0fe | 9893 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 9894 | S: Maintained |
d3466830 | 9895 | F: drivers/net/wireless/intersil/p54/ |
e2d1d6c0 | 9896 | |
f5cd7872 | 9897 | PA SEMI ETHERNET DRIVER |
f5cd7872 | 9898 | L: netdev@vger.kernel.org |
56a5b8da | 9899 | S: Orphan |
ded19add | 9900 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 9901 | |
beb58aa3 | 9902 | PA SEMI SMBUS DRIVER |
846557d3 | 9903 | L: linux-i2c@vger.kernel.org |
56a5b8da | 9904 | S: Orphan |
679655da | 9905 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 9906 | |
48fc267e SK |
9907 | PADATA PARALLEL EXECUTION MECHANISM |
9908 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
48fc267e SK |
9909 | L: linux-crypto@vger.kernel.org |
9910 | S: Maintained | |
9911 | F: kernel/padata.c | |
9912 | F: include/linux/padata.h | |
9913 | F: Documentation/padata.txt | |
9914 | ||
709ee531 | 9915 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 9916 | M: Harald Welte <laforge@gnumonks.org> |
d0944853 | 9917 | L: platform-driver-x86@vger.kernel.org |
709ee531 | 9918 | S: Maintained |
679655da | 9919 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 9920 | |
368dd5ac | 9921 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 | 9922 | M: David Howells <dhowells@redhat.com> |
4fa97181 DH |
9923 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
9924 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
9925 | S: Maintained | |
679655da JP |
9926 | F: Documentation/mn10300/ |
9927 | F: arch/mn10300/ | |
4fa97181 | 9928 | |
305b37bd | 9929 | PARALLEL LCD/KEYPAD PANEL DRIVER |
7683e9e5 LT |
9930 | M: Willy Tarreau <willy@haproxy.com> |
9931 | M: Ksenija Stanojevic <ksenija.stanojevic@gmail.com> | |
9932 | S: Odd Fixes | |
9933 | F: Documentation/misc-devices/lcd-panel-cgram.txt | |
9934 | F: drivers/misc/panel.c | |
305b37bd | 9935 | |
64dfff03 SM |
9936 | PARALLEL PORT SUBSYSTEM |
9937 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
80567564 | 9938 | M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk> |
3dd1a329 | 9939 | L: linux-parport@lists.infradead.org (subscribers-only) |
64dfff03 | 9940 | S: Maintained |
679655da JP |
9941 | F: drivers/parport/ |
9942 | F: include/linux/parport*.h | |
9943 | F: drivers/char/ppdev.c | |
c117ab84 | 9944 | F: include/uapi/linux/ppdev.h |
64dfff03 | 9945 | F: Documentation/parport*.txt |
1da177e4 | 9946 | |
4cdf6bc2 | 9947 | PARAVIRT_OPS INTERFACE |
d633180c | 9948 | M: Jeremy Fitzhardinge <jeremy@goop.org> |
8b58be88 JP |
9949 | M: Chris Wright <chrisw@sous-sol.org> |
9950 | M: Alok Kataria <akataria@vmware.com> | |
9951 | M: Rusty Russell <rusty@rustcorp.com.au> | |
c996d8b9 | 9952 | L: virtualization@lists.linux-foundation.org |
4cdf6bc2 | 9953 | S: Supported |
a2e19991 | 9954 | F: Documentation/virtual/paravirt_ops.txt |
679655da JP |
9955 | F: arch/*/kernel/paravirt* |
9956 | F: arch/*/include/asm/paravirt.h | |
47ae4b05 | 9957 | F: include/linux/hypervisor.h |
4cdf6bc2 | 9958 | |
e2d1d6c0 | 9959 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 9960 | M: Tim Waugh <tim@cyberelk.net> |
e2d1d6c0 | 9961 | L: linux-parport@lists.infradead.org (subscribers-only) |
e2d1d6c0 | 9962 | S: Maintained |
679655da JP |
9963 | F: Documentation/blockdev/paride.txt |
9964 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
9965 | |
9966 | PARISC ARCHITECTURE | |
b8828770 | 9967 | M: "James E.J. Bottomley" <jejb@parisc-linux.org> |
b38a03b8 | 9968 | M: Helge Deller <deller@gmx.de> |
e2d1d6c0 RD |
9969 | L: linux-parisc@vger.kernel.org |
9970 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 9971 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 9972 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 9973 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 9974 | S: Maintained |
679655da | 9975 | F: arch/parisc/ |
2b6bac9e | 9976 | F: Documentation/parisc/ |
679655da | 9977 | F: drivers/parisc/ |
2b6bac9e HD |
9978 | F: drivers/char/agp/parisc-agp.c |
9979 | F: drivers/input/serio/gscps2.c | |
9980 | F: drivers/parport/parport_gsc.* | |
9981 | F: drivers/tty/serial/8250/8250_gsc.c | |
8a61f013 | 9982 | F: drivers/video/fbdev/sti* |
2b6bac9e HD |
9983 | F: drivers/video/console/sti* |
9984 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 9985 | |
44091d29 JP |
9986 | PARMAN |
9987 | M: Jiri Pirko <jiri@mellanox.com> | |
9988 | L: netdev@vger.kernel.org | |
9989 | S: Supported | |
9990 | F: lib/parman.c | |
9991 | F: lib/test_parman.c | |
9992 | F: include/linux/parman.h | |
9993 | ||
1662d32c | 9994 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 9995 | M: Jim Cromie <jim.cromie@gmail.com> |
968ce1b1 | 9996 | L: linux-hwmon@vger.kernel.org |
1662d32c | 9997 | S: Maintained |
679655da JP |
9998 | F: Documentation/hwmon/pc87360 |
9999 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
10000 | |
10001 | PC8736x GPIO DRIVER | |
8b58be88 | 10002 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 10003 | S: Maintained |
679655da | 10004 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 10005 | |
1ad107fd | 10006 | PC87427 HARDWARE MONITORING DRIVER |
d8130624 | 10007 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 10008 | L: linux-hwmon@vger.kernel.org |
1ad107fd JD |
10009 | S: Maintained |
10010 | F: Documentation/hwmon/pc87427 | |
10011 | F: drivers/hwmon/pc87427.c | |
10012 | ||
b26e0ed4 | 10013 | PCA9532 LED DRIVER |
8b58be88 | 10014 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 | 10015 | S: Maintained |
d5ca6918 JP |
10016 | F: drivers/leds/leds-pca9532.c |
10017 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 10018 | |
5ce914a8 | 10019 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 10020 | M: Guenter Roeck <linux@roeck-us.net> |
5ce914a8 GR |
10021 | L: linux-i2c@vger.kernel.org |
10022 | S: Maintained | |
b4f0b74e | 10023 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 10024 | |
3971dae5 | 10025 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 10026 | M: Khalid Aziz <khalid@gonehiking.org> |
3971dae5 KA |
10027 | S: Maintained |
10028 | F: drivers/firmware/pcdp.* | |
10029 | ||
7683e9e5 LT |
10030 | PCI DRIVER FOR AARDVARK (Marvell Armada 3700) |
10031 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
f60b15b8 | 10032 | L: linux-pci@vger.kernel.org |
7683e9e5 LT |
10033 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
10034 | S: Maintained | |
10035 | F: Documentation/devicetree/bindings/pci/aardvark-pci.txt | |
10036 | F: drivers/pci/host/pci-aardvark.c | |
f60b15b8 | 10037 | |
eaa6111b LFT |
10038 | PCI DRIVER FOR ALTERA PCIE IP |
10039 | M: Ley Foon Tan <lftan@altera.com> | |
10040 | L: rfi@lists.rocketboards.org (moderated for non-subscribers) | |
10041 | L: linux-pci@vger.kernel.org | |
10042 | S: Supported | |
10043 | F: Documentation/devicetree/bindings/pci/altera-pcie.txt | |
10044 | F: drivers/pci/host/pcie-altera.c | |
10045 | ||
7683e9e5 LT |
10046 | PCI DRIVER FOR APPLIEDMICRO XGENE |
10047 | M: Tanmay Inamdar <tinamdar@apm.com> | |
10048 | L: linux-pci@vger.kernel.org | |
10049 | L: linux-arm-kernel@lists.infradead.org | |
10050 | S: Maintained | |
10051 | F: Documentation/devicetree/bindings/pci/xgene-pci.txt | |
10052 | F: drivers/pci/host/pci-xgene.c | |
10053 | ||
b7e78170 RH |
10054 | PCI DRIVER FOR ARM VERSATILE PLATFORM |
10055 | M: Rob Herring <robh@kernel.org> | |
10056 | L: linux-pci@vger.kernel.org | |
10057 | L: linux-arm-kernel@lists.infradead.org | |
10058 | S: Maintained | |
10059 | F: Documentation/devicetree/bindings/pci/versatile.txt | |
10060 | F: drivers/pci/host/pci-versatile.c | |
10061 | ||
3dc9d38c TP |
10062 | PCI DRIVER FOR ARMADA 8K |
10063 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
10064 | L: linux-pci@vger.kernel.org | |
10065 | L: linux-arm-kernel@lists.infradead.org | |
10066 | S: Maintained | |
10067 | F: Documentation/devicetree/bindings/pci/pci-armada8k.txt | |
950bf638 | 10068 | F: drivers/pci/dwc/pcie-armada8k.c |
3dc9d38c | 10069 | |
62d0ff83 ML |
10070 | PCI DRIVER FOR FREESCALE LAYERSCAPE |
10071 | M: Minghuan Lian <minghuan.Lian@freescale.com> | |
10072 | M: Mingkai Hu <mingkai.hu@freescale.com> | |
10073 | M: Roy Zang <tie-fei.zang@freescale.com> | |
10074 | L: linuxppc-dev@lists.ozlabs.org | |
10075 | L: linux-pci@vger.kernel.org | |
10076 | L: linux-arm-kernel@lists.infradead.org | |
10077 | S: Maintained | |
950bf638 | 10078 | F: drivers/pci/dwc/*layerscape* |
62d0ff83 | 10079 | |
7683e9e5 LT |
10080 | PCI DRIVER FOR GENERIC OF HOSTS |
10081 | M: Will Deacon <will.deacon@arm.com> | |
f0b75693 BH |
10082 | L: linux-pci@vger.kernel.org |
10083 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
10084 | S: Maintained | |
7683e9e5 LT |
10085 | F: Documentation/devicetree/bindings/pci/host-generic-pci.txt |
10086 | F: drivers/pci/host/pci-host-common.c | |
10087 | F: drivers/pci/host/pci-host-generic.c | |
f0b75693 | 10088 | |
7683e9e5 LT |
10089 | PCI DRIVER FOR IMX6 |
10090 | M: Richard Zhu <hongxing.zhu@nxp.com> | |
10091 | M: Lucas Stach <l.stach@pengutronix.de> | |
8c39d710 TP |
10092 | L: linux-pci@vger.kernel.org |
10093 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
10094 | S: Maintained | |
7683e9e5 LT |
10095 | F: Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt |
10096 | F: drivers/pci/dwc/*imx6* | |
10097 | ||
10098 | PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD) | |
10099 | M: Keith Busch <keith.busch@intel.com> | |
10100 | L: linux-pci@vger.kernel.org | |
10101 | S: Supported | |
10102 | F: drivers/pci/host/vmd.c | |
8c39d710 | 10103 | |
080b47de LG |
10104 | PCI DRIVER FOR MICROSEMI SWITCHTEC |
10105 | M: Kurt Schwemmer <kurt.schwemmer@microsemi.com> | |
10106 | M: Stephen Bates <stephen.bates@microsemi.com> | |
10107 | M: Logan Gunthorpe <logang@deltatee.com> | |
10108 | L: linux-pci@vger.kernel.org | |
10109 | S: Maintained | |
44fc691b | 10110 | F: Documentation/switchtec.txt |
5d8e1881 | 10111 | F: Documentation/ABI/testing/sysfs-class-switchtec |
080b47de | 10112 | F: drivers/pci/switch/switchtec* |
52eabba5 | 10113 | F: include/uapi/linux/switchtec_ioctl.h |
080b47de | 10114 | |
7683e9e5 LT |
10115 | PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support) |
10116 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
10117 | M: Jason Cooper <jason@lakedaemon.net> | |
10118 | L: linux-pci@vger.kernel.org | |
10119 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
10120 | S: Maintained | |
10121 | F: drivers/pci/host/*mvebu* | |
10122 | ||
0447cfd7 TR |
10123 | PCI DRIVER FOR NVIDIA TEGRA |
10124 | M: Thierry Reding <thierry.reding@gmail.com> | |
10125 | L: linux-tegra@vger.kernel.org | |
f0b75693 | 10126 | L: linux-pci@vger.kernel.org |
0447cfd7 TR |
10127 | S: Supported |
10128 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt | |
10129 | F: drivers/pci/host/pci-tegra.c | |
10130 | ||
f0b75693 BH |
10131 | PCI DRIVER FOR RENESAS R-CAR |
10132 | M: Simon Horman <horms@verge.net.au> | |
10133 | L: linux-pci@vger.kernel.org | |
4a121096 | 10134 | L: linux-renesas-soc@vger.kernel.org |
f0b75693 BH |
10135 | S: Maintained |
10136 | F: drivers/pci/host/*rcar* | |
10137 | ||
4af82255 | 10138 | PCI DRIVER FOR SAMSUNG EXYNOS |
b7701755 | 10139 | M: Jingoo Han <jingoohan1@gmail.com> |
4af82255 | 10140 | L: linux-pci@vger.kernel.org |
f0b75693 BH |
10141 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
10142 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
4af82255 | 10143 | S: Maintained |
950bf638 | 10144 | F: drivers/pci/dwc/pci-exynos.c |
4af82255 | 10145 | |
f0b75693 | 10146 | PCI DRIVER FOR SYNOPSIS DESIGNWARE |
b7701755 | 10147 | M: Jingoo Han <jingoohan1@gmail.com> |
fc2480f9 | 10148 | M: Joao Pinto <Joao.Pinto@synopsys.com> |
5a3aa2a8 JP |
10149 | L: linux-pci@vger.kernel.org |
10150 | S: Maintained | |
10151 | F: Documentation/devicetree/bindings/pci/designware-pcie.txt | |
950bf638 | 10152 | F: drivers/pci/dwc/*designware* |
5a3aa2a8 | 10153 | |
7683e9e5 LT |
10154 | PCI DRIVER FOR TI DRA7XX |
10155 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
10156 | L: linux-omap@vger.kernel.org | |
10157 | L: linux-pci@vger.kernel.org | |
10158 | S: Supported | |
10159 | F: Documentation/devicetree/bindings/pci/ti-pci.txt | |
10160 | F: drivers/pci/dwc/pci-dra7xx.c | |
10161 | ||
10162 | PCI DRIVER FOR TI KEYSTONE | |
10163 | M: Murali Karicheri <m-karicheri2@ti.com> | |
cf28855b WD |
10164 | L: linux-pci@vger.kernel.org |
10165 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
10166 | S: Maintained | |
7683e9e5 | 10167 | F: drivers/pci/dwc/*keystone* |
cf28855b | 10168 | |
7683e9e5 LT |
10169 | PCI ENDPOINT SUBSYSTEM |
10170 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
185a383a | 10171 | L: linux-pci@vger.kernel.org |
7683e9e5 | 10172 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git |
185a383a | 10173 | S: Supported |
7683e9e5 LT |
10174 | F: drivers/pci/endpoint/ |
10175 | F: drivers/misc/pci_endpoint_test.c | |
10176 | F: tools/pci/ | |
185a383a | 10177 | |
7683e9e5 LT |
10178 | PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC |
10179 | M: Russell Currey <ruscur@russell.cc> | |
10180 | L: linuxppc-dev@lists.ozlabs.org | |
10181 | S: Supported | |
10182 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
10183 | F: arch/powerpc/kernel/eeh*.c | |
10184 | F: arch/powerpc/platforms/*/eeh*.c | |
10185 | F: arch/powerpc/include/*/eeh*.h | |
10186 | ||
10187 | PCI ERROR RECOVERY | |
10188 | M: Linas Vepstas <linasvepstas@gmail.com> | |
51b66a6c | 10189 | L: linux-pci@vger.kernel.org |
7683e9e5 LT |
10190 | S: Supported |
10191 | F: Documentation/PCI/pci-error-recovery.txt | |
51b66a6c | 10192 | |
af1169b4 LFT |
10193 | PCI MSI DRIVER FOR ALTERA MSI IP |
10194 | M: Ley Foon Tan <lftan@altera.com> | |
10195 | L: rfi@lists.rocketboards.org (moderated for non-subscribers) | |
10196 | L: linux-pci@vger.kernel.org | |
10197 | S: Supported | |
10198 | F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt | |
10199 | F: drivers/pci/host/pcie-altera-msi.c | |
51b66a6c | 10200 | |
dcd19de3 DD |
10201 | PCI MSI DRIVER FOR APPLIEDMICRO XGENE |
10202 | M: Duc Dang <dhdang@apm.com> | |
10203 | L: linux-pci@vger.kernel.org | |
10204 | L: linux-arm-kernel@lists.infradead.org | |
10205 | S: Maintained | |
10206 | F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt | |
10207 | F: drivers/pci/host/pci-xgene-msi.c | |
10208 | ||
7683e9e5 LT |
10209 | PCI SUBSYSTEM |
10210 | M: Bjorn Helgaas <bhelgaas@google.com> | |
10211 | L: linux-pci@vger.kernel.org | |
10212 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ | |
10213 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git | |
10214 | S: Supported | |
10215 | F: Documentation/devicetree/bindings/pci/ | |
10216 | F: Documentation/PCI/ | |
10217 | F: drivers/pci/ | |
10218 | F: include/linux/pci* | |
10219 | F: arch/x86/pci/ | |
10220 | F: arch/x86/kernel/quirks.c | |
10221 | ||
a3cbfae1 NC |
10222 | PCIE DRIVER FOR AXIS ARTPEC |
10223 | M: Niklas Cassel <niklas.cassel@axis.com> | |
10224 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
10225 | L: linux-arm-kernel@axis.com | |
10226 | L: linux-pci@vger.kernel.org | |
10227 | S: Maintained | |
10228 | F: Documentation/devicetree/bindings/pci/axis,artpec* | |
950bf638 | 10229 | F: drivers/pci/dwc/*artpec* |
a3cbfae1 | 10230 | |
7683e9e5 LT |
10231 | PCIE DRIVER FOR CAVIUM THUNDERX |
10232 | M: David Daney <david.daney@cavium.com> | |
10233 | L: linux-pci@vger.kernel.org | |
10234 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
10235 | S: Supported | |
10236 | F: Documentation/devicetree/bindings/pci/pci-thunder-* | |
10237 | F: drivers/pci/host/pci-thunder-* | |
10238 | ||
500a1d9a ZW |
10239 | PCIE DRIVER FOR HISILICON |
10240 | M: Zhou Wang <wangzhou1@hisilicon.com> | |
5930fe4e | 10241 | M: Gabriele Paoloni <gabriele.paoloni@huawei.com> |
500a1d9a ZW |
10242 | L: linux-pci@vger.kernel.org |
10243 | S: Maintained | |
10244 | F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt | |
950bf638 | 10245 | F: drivers/pci/dwc/pcie-hisi.c |
500a1d9a | 10246 | |
fc5165db XS |
10247 | PCIE DRIVER FOR HISILICON KIRIN |
10248 | M: Xiaowei Song <songxiaowei@hisilicon.com> | |
10249 | M: Binghui Wang <wangbinghui@hisilicon.com> | |
10250 | L: linux-pci@vger.kernel.org | |
10251 | S: Maintained | |
10252 | F: Documentation/devicetree/bindings/pci/pcie-kirin.txt | |
10253 | F: drivers/pci/dwc/pcie-kirin.c | |
10254 | ||
7683e9e5 LT |
10255 | PCIE DRIVER FOR MEDIATEK |
10256 | M: Ryder Lee <ryder.lee@mediatek.com> | |
10257 | L: linux-pci@vger.kernel.org | |
10258 | L: linux-mediatek@lists.infradead.org | |
10259 | S: Supported | |
10260 | F: Documentation/devicetree/bindings/pci/mediatek* | |
10261 | F: drivers/pci/host/*mediatek* | |
10262 | ||
10263 | PCIE DRIVER FOR QUALCOMM MSM | |
10264 | M: Stanimir Varbanov <svarbanov@mm-sol.com> | |
10265 | L: linux-pci@vger.kernel.org | |
10266 | L: linux-arm-msm@vger.kernel.org | |
10267 | S: Maintained | |
10268 | F: drivers/pci/dwc/*qcom* | |
10269 | ||
e77f847d SL |
10270 | PCIE DRIVER FOR ROCKCHIP |
10271 | M: Shawn Lin <shawn.lin@rock-chips.com> | |
e77f847d SL |
10272 | L: linux-pci@vger.kernel.org |
10273 | L: linux-rockchip@lists.infradead.org | |
10274 | S: Maintained | |
10275 | F: Documentation/devicetree/bindings/pci/rockchip-pcie.txt | |
10276 | F: drivers/pci/host/pcie-rockchip.c | |
10277 | ||
7683e9e5 LT |
10278 | PCIE DRIVER FOR ST SPEAR13XX |
10279 | M: Pratyush Anand <pratyush.anand@gmail.com> | |
f12b76e5 | 10280 | L: linux-pci@vger.kernel.org |
7683e9e5 LT |
10281 | S: Maintained |
10282 | F: drivers/pci/dwc/*spear* | |
637cfaca | 10283 | |
1da177e4 | 10284 | PCMCIA SUBSYSTEM |
4230dfc9 | 10285 | P: Linux PCMCIA Team |
f5df5881 | 10286 | L: linux-pcmcia@lists.infradead.org |
6650e0a5 | 10287 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
9f273c24 | 10288 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git |
4230dfc9 | 10289 | S: Maintained |
679655da | 10290 | F: Documentation/pcmcia/ |
a67cd548 | 10291 | F: tools/pcmcia/ |
679655da JP |
10292 | F: drivers/pcmcia/ |
10293 | F: include/pcmcia/ | |
1da177e4 LT |
10294 | |
10295 | PCNET32 NETWORK DRIVER | |
227fb925 | 10296 | M: Don Fry <pcnet32@frontier.com> |
979b6c13 | 10297 | L: netdev@vger.kernel.org |
1da177e4 | 10298 | S: Maintained |
b955f6ca | 10299 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 10300 | |
48fc267e SK |
10301 | PCRYPT PARALLEL CRYPTO ENGINE |
10302 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
10303 | L: linux-crypto@vger.kernel.org | |
10304 | S: Maintained | |
10305 | F: crypto/pcrypt.c | |
10306 | F: include/crypto/pcrypt.h | |
10307 | ||
e72df0b8 TH |
10308 | PER-CPU MEMORY ALLOCATOR |
10309 | M: Tejun Heo <tj@kernel.org> | |
93e205a7 | 10310 | M: Christoph Lameter <cl@linux.com> |
e72df0b8 TH |
10311 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
10312 | S: Maintained | |
10313 | F: include/linux/percpu*.h | |
10314 | F: mm/percpu*.c | |
10315 | F: arch/*/include/asm/percpu.h | |
10316 | ||
ad4ecbcb | 10317 | PER-TASK DELAY ACCOUNTING |
185e595f | 10318 | M: Balbir Singh <bsingharora@gmail.com> |
ad4ecbcb | 10319 | S: Maintained |
679655da JP |
10320 | F: include/linux/delayacct.h |
10321 | F: kernel/delayacct.c | |
ad4ecbcb | 10322 | |
57c0c15b | 10323 | PERFORMANCE EVENTS SUBSYSTEM |
daecbd26 | 10324 | M: Peter Zijlstra <peterz@infradead.org> |
dd9b238c | 10325 | M: Ingo Molnar <mingo@redhat.com> |
f80c5393 | 10326 | M: Arnaldo Carvalho de Melo <acme@kernel.org> |
a54d690e | 10327 | R: Alexander Shishkin <alexander.shishkin@linux.intel.com> |
981c3a4f | 10328 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 10329 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 10330 | S: Supported |
d53e8365 | 10331 | F: kernel/events/* |
a003236c | 10332 | F: include/linux/perf_event.h |
c117ab84 | 10333 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
10334 | F: arch/*/kernel/perf_event*.c |
10335 | F: arch/*/kernel/*/perf_event*.c | |
10336 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 10337 | F: arch/*/include/asm/perf_event.h |
a003236c | 10338 | F: arch/*/kernel/perf_callchain.c |
b0a434fb | 10339 | F: arch/*/events/* |
a003236c | 10340 | F: tools/perf/ |
6c0b3244 | 10341 | |
dd49d0f5 | 10342 | PERSONALITY HANDLING |
8b58be88 | 10343 | M: Christoph Hellwig <hch@infradead.org> |
dd49d0f5 JC |
10344 | L: linux-abi-devel@lists.sourceforge.net |
10345 | S: Maintained | |
679655da | 10346 | F: include/linux/personality.h |
c117ab84 | 10347 | F: include/uapi/linux/personality.h |
dd49d0f5 | 10348 | |
838e7a03 | 10349 | PHONET PROTOCOL |
2a06b40f | 10350 | M: Remi Denis-Courmont <courmisch@gmail.com> |
838e7a03 RDC |
10351 | S: Supported |
10352 | F: Documentation/networking/phonet.txt | |
10353 | F: include/linux/phonet.h | |
10354 | F: include/net/phonet/ | |
c117ab84 | 10355 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
10356 | F: net/phonet/ |
10357 | ||
1da177e4 | 10358 | PHRAM MTD DRIVER |
8b58be88 | 10359 | M: Joern Engel <joern@lazybastard.org> |
1da177e4 LT |
10360 | L: linux-mtd@lists.infradead.org |
10361 | S: Maintained | |
679655da | 10362 | F: drivers/mtd/devices/phram.c |
1da177e4 | 10363 | |
efdbb10e BP |
10364 | PICOLCD HID DRIVER |
10365 | M: Bruno Prémont <bonbons@linux-vserver.org> | |
10366 | L: linux-input@vger.kernel.org | |
10367 | S: Maintained | |
10368 | F: drivers/hid/hid-picolcd* | |
10369 | ||
a53bfa07 JI |
10370 | PICOXCELL SUPPORT |
10371 | M: Jamie Iles <jamie@jamieiles.com> | |
10372 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
10373 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
10374 | S: Supported | |
b8733987 | 10375 | F: arch/arm/boot/dts/picoxcell* |
14430813 | 10376 | F: arch/arm/mach-picoxcell/ |
b8733987 | 10377 | F: drivers/crypto/picoxcell* |
a53bfa07 | 10378 | |
2744e8af LW |
10379 | PIN CONTROL SUBSYSTEM |
10380 | M: Linus Walleij <linus.walleij@linaro.org> | |
c11f042b | 10381 | L: linux-gpio@vger.kernel.org |
dbe752a3 | 10382 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git |
2744e8af | 10383 | S: Maintained |
9feeed94 | 10384 | F: Documentation/devicetree/bindings/pinctrl/ |
0cca6c89 | 10385 | F: Documentation/driver-api/pinctl.rst |
07f29ba6 | 10386 | F: drivers/pinctrl/ |
8e406fe4 | 10387 | F: include/linux/pinctrl/ |
2744e8af | 10388 | |
2201bbb8 JCPV |
10389 | PIN CONTROLLER - ATMEL AT91 |
10390 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> | |
10391 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
10392 | S: Maintained | |
c654b6bf | 10393 | F: drivers/pinctrl/pinctrl-at91.* |
2201bbb8 | 10394 | |
33d3690c | 10395 | PIN CONTROLLER - ATMEL AT91 PIO4 |
420a3879 | 10396 | M: Ludovic Desroches <ludovic.desroches@microchip.com> |
33d3690c LD |
10397 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
10398 | L: linux-gpio@vger.kernel.org | |
10399 | S: Supported | |
10400 | F: drivers/pinctrl/pinctrl-at91-pio4.* | |
10401 | ||
cbd1b652 MW |
10402 | PIN CONTROLLER - INTEL |
10403 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
10404 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> | |
10405 | S: Maintained | |
10406 | F: drivers/pinctrl/intel/ | |
2201bbb8 | 10407 | |
a66f9d93 BA |
10408 | PIN CONTROLLER - QUALCOMM |
10409 | M: Bjorn Andersson <bjorn.andersson@linaro.org> | |
10410 | S: Maintained | |
10411 | L: linux-arm-msm@vger.kernel.org | |
10412 | F: Documentation/devicetree/bindings/pinctrl/qcom,*.txt | |
10413 | F: drivers/pinctrl/qcom/ | |
10414 | ||
9963b536 LP |
10415 | PIN CONTROLLER - RENESAS |
10416 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
1a4ca6dd | 10417 | M: Geert Uytterhoeven <geert+renesas@glider.be> |
4a121096 | 10418 | L: linux-renesas-soc@vger.kernel.org |
9963b536 LP |
10419 | S: Maintained |
10420 | F: drivers/pinctrl/sh-pfc/ | |
10421 | ||
b75e60d6 | 10422 | PIN CONTROLLER - SAMSUNG |
fea685e9 | 10423 | M: Tomasz Figa <tomasz.figa@gmail.com> |
326dce07 | 10424 | M: Krzysztof Kozlowski <krzk@kernel.org> |
44b03c10 | 10425 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
b75e60d6 DA |
10426 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
10427 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
5fb7edb3 KK |
10428 | Q: https://patchwork.kernel.org/project/linux-samsung-soc/list/ |
10429 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git | |
b75e60d6 | 10430 | S: Maintained |
9b5b33f6 | 10431 | F: drivers/pinctrl/samsung/ |
5db7e3bb KK |
10432 | F: include/dt-bindings/pinctrl/samsung.h |
10433 | F: Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt | |
b75e60d6 | 10434 | |
13cbd906 TL |
10435 | PIN CONTROLLER - SINGLE |
10436 | M: Tony Lindgren <tony@atomide.com> | |
10437 | M: Haojian Zhuang <haojian.zhuang@linaro.org> | |
10438 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
10439 | L: linux-omap@vger.kernel.org | |
10440 | S: Maintained | |
10441 | F: drivers/pinctrl/pinctrl-single.c | |
10442 | ||
deda8287 | 10443 | PIN CONTROLLER - ST SPEAR |
da89947b | 10444 | M: Viresh Kumar <vireshk@kernel.org> |
deda8287 VK |
10445 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
10446 | W: http://www.st.com/spear | |
10447 | S: Maintained | |
8e406fe4 | 10448 | F: drivers/pinctrl/spear/ |
deda8287 | 10449 | |
11a1cf34 | 10450 | PISTACHIO SOC SUPPORT |
7683e9e5 LT |
10451 | M: James Hartley <james.hartley@imgtec.com> |
10452 | M: Ionela Voinescu <ionela.voinescu@imgtec.com> | |
10453 | L: linux-mips@linux-mips.org | |
10454 | S: Maintained | |
10455 | F: arch/mips/pistachio/ | |
10456 | F: arch/mips/include/asm/mach-pistachio/ | |
10457 | F: arch/mips/boot/dts/img/pistachio* | |
10458 | F: arch/mips/configs/pistachio*_defconfig | |
11a1cf34 | 10459 | |
249a6771 | 10460 | PKTCDVD DRIVER |
5a8b187c JA |
10461 | S: Orphan |
10462 | M: linux-block@vger.kernel.org | |
679655da JP |
10463 | F: drivers/block/pktcdvd.c |
10464 | F: include/linux/pktcdvd.h | |
c117ab84 | 10465 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 10466 | |
b31d8273 G |
10467 | PKUNITY SOC DRIVERS |
10468 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
10469 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
10470 | S: Maintained | |
ceebf4d5 | 10471 | T: git git://github.com/gxt/linux.git |
b31d8273 | 10472 | F: drivers/input/serio/i8042-unicore32io.h |
d10e4a66 | 10473 | F: drivers/i2c/busses/i2c-puv3.c |
8a61f013 | 10474 | F: drivers/video/fbdev/fb-puv3.c |
2809e80b | 10475 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 10476 | |
9d2ecfb7 | 10477 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 10478 | M: Guenter Roeck <linux@roeck-us.net> |
968ce1b1 GR |
10479 | L: linux-hwmon@vger.kernel.org |
10480 | W: http://hwmon.wiki.kernel.org/ | |
9d2ecfb7 GR |
10481 | W: http://www.roeck-us.net/linux/drivers/ |
10482 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
10483 | S: Maintained | |
10484 | F: Documentation/hwmon/pmbus | |
10485 | F: drivers/hwmon/pmbus/ | |
4ba1bb12 | 10486 | F: include/linux/pmbus.h |
9d2ecfb7 | 10487 | |
89a36810 | 10488 | PMC SIERRA MaxRAID DRIVER |
89a36810 AR |
10489 | L: linux-scsi@vger.kernel.org |
10490 | W: http://www.pmc-sierra.com/ | |
3cdea4d7 | 10491 | S: Orphan |
89a36810 AR |
10492 | F: drivers/scsi/pmcraid.* |
10493 | ||
dbf9bfe6 | 10494 | PMC SIERRA PM8001 DRIVER |
d32477e2 | 10495 | M: Jack Wang <jinpu.wang@profitbricks.com> |
dbf9bfe6 | 10496 | M: lindar_liu@usish.com |
10497 | L: linux-scsi@vger.kernel.org | |
10498 | S: Supported | |
10499 | F: drivers/scsi/pm8001/ | |
10500 | ||
82abbea7 RD |
10501 | PNP SUPPORT |
10502 | M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> | |
10503 | S: Maintained | |
10504 | F: drivers/pnp/ | |
10505 | ||
1da177e4 | 10506 | POSIX CLOCKS and TIMERS |
8b58be88 | 10507 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 10508 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 10509 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
5cee9645 | 10510 | S: Maintained |
679655da JP |
10511 | F: fs/timerfd.c |
10512 | F: include/linux/timer* | |
5cee9645 | 10513 | F: kernel/time/*timer* |
1da177e4 | 10514 | |
7b06a6d7 RW |
10515 | POWER MANAGEMENT CORE |
10516 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> | |
10517 | L: linux-pm@vger.kernel.org | |
10518 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
68656443 | 10519 | B: https://bugzilla.kernel.org |
7b06a6d7 RW |
10520 | S: Supported |
10521 | F: drivers/base/power/ | |
10522 | F: include/linux/pm.h | |
10523 | F: include/linux/pm_* | |
10524 | F: include/linux/powercap.h | |
10525 | F: drivers/powercap/ | |
10526 | ||
514f161a MR |
10527 | POWER STATE COORDINATION INTERFACE (PSCI) |
10528 | M: Mark Rutland <mark.rutland@arm.com> | |
10529 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
10530 | L: linux-arm-kernel@lists.infradead.org | |
10531 | S: Maintained | |
32d53d1b | 10532 | F: drivers/firmware/psci*.c |
514f161a MR |
10533 | F: include/linux/psci.h |
10534 | F: include/uapi/linux/psci.h | |
10535 | ||
7683e9e5 LT |
10536 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
10537 | M: Sebastian Reichel <sre@kernel.org> | |
10538 | L: linux-pm@vger.kernel.org | |
10539 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git | |
10540 | S: Maintained | |
10541 | F: Documentation/devicetree/bindings/power/supply/ | |
10542 | F: include/linux/power_supply.h | |
10543 | F: drivers/power/supply/ | |
10544 | ||
43a1dd9b SJS |
10545 | POWERNV OPERATOR PANEL LCD DISPLAY DRIVER |
10546 | M: Suraj Jitindar Singh <sjitindarsingh@gmail.com> | |
10547 | L: linuxppc-dev@lists.ozlabs.org | |
10548 | S: Maintained | |
10549 | F: drivers/char/powernv-op-panel.c | |
10550 | ||
1da177e4 | 10551 | PPP OVER ATM (RFC 2364) |
8b58be88 | 10552 | M: Mitchell Blank Jr <mitch@sfgoth.com> |
1da177e4 | 10553 | S: Maintained |
679655da | 10554 | F: net/atm/pppoatm.c |
c117ab84 | 10555 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
10556 | |
10557 | PPP OVER ETHERNET | |
8b58be88 | 10558 | M: Michal Ostrowski <mostrows@earthlink.net> |
1da177e4 | 10559 | S: Maintained |
224cf5ad JK |
10560 | F: drivers/net/ppp/pppoe.c |
10561 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 10562 | |
a6d2370b | 10563 | PPP OVER L2TP |
8b58be88 | 10564 | M: James Chapman <jchapman@katalix.com> |
a6d2370b | 10565 | S: Maintained |
90ca28d1 | 10566 | F: net/l2tp/l2tp_ppp.c |
679655da | 10567 | F: include/linux/if_pppol2tp.h |
c117ab84 | 10568 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 10569 | |
7683e9e5 LT |
10570 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
10571 | M: Paul Mackerras <paulus@samba.org> | |
10572 | L: linux-ppp@vger.kernel.org | |
10573 | S: Maintained | |
10574 | F: drivers/net/ppp/ppp_* | |
10575 | ||
eae9d2ba | 10576 | PPS SUPPORT |
8b58be88 | 10577 | M: Rodolfo Giometti <giometti@enneenne.com> |
eae9d2ba RG |
10578 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
10579 | L: linuxpps@ml.enneenne.com (subscribers-only) | |
10580 | S: Maintained | |
cabaaf41 JP |
10581 | F: Documentation/pps/ |
10582 | F: drivers/pps/ | |
10583 | F: include/linux/pps*.h | |
eae9d2ba | 10584 | |
71a6d0af HW |
10585 | PPTP DRIVER |
10586 | M: Dmitry Kozlov <xeb@mail.ru> | |
10587 | L: netdev@vger.kernel.org | |
10588 | S: Maintained | |
224cf5ad | 10589 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
10590 | W: http://sourceforge.net/projects/accel-pptp |
10591 | ||
1da177e4 | 10592 | PREEMPTIBLE KERNEL |
8b58be88 | 10593 | M: Robert Love <rml@tech9.net> |
1da177e4 | 10594 | L: kpreempt-tech@lists.sourceforge.net |
4f6cce39 | 10595 | W: https://www.kernel.org/pub/linux/kernel/people/rml/preempt-kernel |
1da177e4 | 10596 | S: Supported |
679655da JP |
10597 | F: Documentation/preempt-locking.txt |
10598 | F: include/linux/preempt.h | |
1da177e4 | 10599 | |
548cf34b PM |
10600 | PRINTK |
10601 | M: Petr Mladek <pmladek@suse.com> | |
10602 | M: Sergey Senozhatsky <sergey.senozhatsky@gmail.com> | |
10603 | R: Steven Rostedt <rostedt@goodmis.org> | |
10604 | S: Maintained | |
10605 | F: kernel/printk/ | |
10606 | F: include/linux/printk.h | |
10607 | ||
1da177e4 | 10608 | PRISM54 WIRELESS DRIVER |
8b58be88 | 10609 | M: "Luis R. Rodriguez" <mcgrof@gmail.com> |
724c6b35 | 10610 | L: linux-wireless@vger.kernel.org |
9ef80804 | 10611 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 10612 | S: Obsolete |
c12edfe2 | 10613 | F: drivers/net/wireless/intersil/prism54/ |
1da177e4 | 10614 | |
b689d4a7 LR |
10615 | PROC SYSCTL |
10616 | M: "Luis R. Rodriguez" <mcgrof@kernel.org> | |
10617 | M: Kees Cook <keescook@chromium.org> | |
10618 | L: linux-kernel@vger.kernel.org | |
10619 | L: linux-fsdevel@vger.kernel.org | |
10620 | S: Maintained | |
10621 | F: fs/proc/proc_sysctl.c | |
10622 | F: include/linux/sysctl.h | |
10623 | F: kernel/sysctl.c | |
10624 | F: tools/testing/selftests/sysctl/ | |
10625 | ||
02c18891 | 10626 | PS3 NETWORK SUPPORT |
b809b9ca | 10627 | M: Geoff Levand <geoff@infradead.org> |
02c18891 | 10628 | L: netdev@vger.kernel.org |
a14ab6b6 | 10629 | L: linuxppc-dev@lists.ozlabs.org |
b809b9ca | 10630 | S: Maintained |
8df158ac | 10631 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 10632 | |
f58a9d17 | 10633 | PS3 PLATFORM SUPPORT |
b809b9ca | 10634 | M: Geoff Levand <geoff@infradead.org> |
a4724ed6 | 10635 | L: linuxppc-dev@lists.ozlabs.org |
b809b9ca | 10636 | S: Maintained |
679655da JP |
10637 | F: arch/powerpc/boot/ps3* |
10638 | F: arch/powerpc/include/asm/lv1call.h | |
10639 | F: arch/powerpc/include/asm/ps3*.h | |
10640 | F: arch/powerpc/platforms/ps3/ | |
10641 | F: drivers/*/ps3* | |
10642 | F: drivers/ps3/ | |
fec629b8 | 10643 | F: drivers/rtc/rtc-ps3.c |
679655da | 10644 | F: drivers/usb/host/*ps3.c |
fec629b8 | 10645 | F: sound/ppc/snd_ps3* |
f58a9d17 | 10646 | |
cffb4add | 10647 | PS3VRAM DRIVER |
8b58be88 | 10648 | M: Jim Paris <jim@jtan.com> |
3715a5d0 | 10649 | M: Geoff Levand <geoff@infradead.org> |
a14ab6b6 | 10650 | L: linuxppc-dev@lists.ozlabs.org |
cffb4add | 10651 | S: Maintained |
8a3977cb | 10652 | F: drivers/block/ps3vram.c |
cffb4add | 10653 | |
6ae0a628 YG |
10654 | PSAMPLE PACKET SAMPLING SUPPORT: |
10655 | M: Yotam Gigi <yotamg@mellanox.com> | |
10656 | S: Maintained | |
10657 | F: net/psample | |
10658 | F: include/net/psample.h | |
10659 | F: include/uapi/linux/psample.h | |
10660 | ||
8defe599 | 10661 | PSTORE FILESYSTEM |
fc1b326e | 10662 | M: Kees Cook <keescook@chromium.org> |
9d5e2a02 | 10663 | M: Anton Vorontsov <anton@enomsg.org> |
8defe599 | 10664 | M: Colin Cross <ccross@android.com> |
8defe599 AV |
10665 | M: Tony Luck <tony.luck@intel.com> |
10666 | S: Maintained | |
fc1b326e | 10667 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore |
8defe599 AV |
10668 | F: fs/pstore/ |
10669 | F: include/linux/pstore* | |
04851772 | 10670 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 | 10671 | F: drivers/acpi/apei/erst.c |
fc1b326e KC |
10672 | F: Documentation/admin-guide/ramoops.rst |
10673 | F: Documentation/devicetree/bindings/reserved-memory/ramoops.txt | |
10674 | K: \b(pstore|ramoops) | |
8defe599 | 10675 | |
7fbc415d RC |
10676 | PTP HARDWARE CLOCK SUPPORT |
10677 | M: Richard Cochran <richardcochran@gmail.com> | |
e7333e3c | 10678 | L: netdev@vger.kernel.org |
7fbc415d RC |
10679 | S: Maintained |
10680 | W: http://linuxptp.sourceforge.net/ | |
10681 | F: Documentation/ABI/testing/sysfs-ptp | |
10682 | F: Documentation/ptp/* | |
0ecb3cdd | 10683 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
10684 | F: drivers/net/phy/dp83640* |
10685 | F: drivers/ptp/* | |
10686 | F: include/linux/ptp_cl* | |
10687 | ||
cf94a4d1 | 10688 | PTRACE SUPPORT |
8b58be88 | 10689 | M: Oleg Nesterov <oleg@redhat.com> |
cf94a4d1 CH |
10690 | S: Maintained |
10691 | F: include/asm-generic/syscall.h | |
10692 | F: include/linux/ptrace.h | |
10693 | F: include/linux/regset.h | |
10694 | F: include/linux/tracehook.h | |
c117ab84 | 10695 | F: include/uapi/linux/ptrace.h |
095f6d76 IM |
10696 | F: include/uapi/linux/ptrace.h |
10697 | F: include/asm-generic/ptrace.h | |
cf94a4d1 | 10698 | F: kernel/ptrace.c |
095f6d76 IM |
10699 | F: arch/*/ptrace*.c |
10700 | F: arch/*/*/ptrace*.c | |
10701 | F: arch/*/include/asm/ptrace*.h | |
cf94a4d1 | 10702 | |
3e9d7ba7 HV |
10703 | PULSE8-CEC DRIVER |
10704 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
10705 | L: linux-media@vger.kernel.org | |
10706 | T: git git://linuxtv.org/media_tree.git | |
10707 | S: Maintained | |
104eda6d | 10708 | F: drivers/media/usb/pulse8-cec/* |
3e9d7ba7 | 10709 | |
8320204a | 10710 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 10711 | M: Mike Isely <isely@pobox.com> |
16e9495d | 10712 | L: pvrusb2@isely.net (subscribers-only) |
661263b5 | 10713 | L: linux-media@vger.kernel.org |
8320204a | 10714 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 10715 | T: git git://linuxtv.org/media_tree.git |
8320204a | 10716 | S: Maintained |
618cd932 | 10717 | F: Documentation/media/v4l-drivers/pvrusb2* |
0c0d06ca | 10718 | F: drivers/media/usb/pvrusb2/ |
8320204a | 10719 | |
39532e6c | 10720 | PWC WEBCAM DRIVER |
c0936df4 | 10721 | M: Hans Verkuil <hverkuil@xs4all.nl> |
39532e6c HG |
10722 | L: linux-media@vger.kernel.org |
10723 | T: git git://linuxtv.org/media_tree.git | |
c0936df4 | 10724 | S: Odd Fixes |
39532e6c HG |
10725 | F: drivers/media/usb/pwc/* |
10726 | ||
93c090b3 | 10727 | PWM FAN DRIVER |
774e0362 | 10728 | M: Kamil Debski <kamil@wypas.org> |
0faf7dd5 | 10729 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
968ce1b1 | 10730 | L: linux-hwmon@vger.kernel.org |
93c090b3 KD |
10731 | S: Supported |
10732 | F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt | |
10733 | F: Documentation/hwmon/pwm-fan | |
10734 | F: drivers/hwmon/pwm-fan.c | |
10735 | ||
200efedd | 10736 | PWM SUBSYSTEM |
aa3495f7 TR |
10737 | M: Thierry Reding <thierry.reding@gmail.com> |
10738 | L: linux-pwm@vger.kernel.org | |
0c2498f1 | 10739 | S: Maintained |
006e854f | 10740 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git |
200efedd TR |
10741 | F: Documentation/pwm.txt |
10742 | F: Documentation/devicetree/bindings/pwm/ | |
10743 | F: include/linux/pwm.h | |
0c2498f1 | 10744 | F: drivers/pwm/ |
a140b98d TR |
10745 | F: drivers/video/backlight/pwm_bl.c |
10746 | F: include/linux/pwm_backlight.h | |
757642f9 AL |
10747 | F: drivers/gpio/gpio-mvebu.c |
10748 | F: Documentation/devicetree/bindings/gpio/gpio-mvebu.txt | |
0c2498f1 | 10749 | |
7683e9e5 LT |
10750 | PXA GPIO DRIVER |
10751 | M: Robert Jarzmik <robert.jarzmik@free.fr> | |
10752 | L: linux-gpio@vger.kernel.org | |
10753 | S: Maintained | |
10754 | F: drivers/gpio/gpio-pxa.c | |
10755 | ||
10756 | PXA MMCI DRIVER | |
10757 | S: Orphan | |
10758 | ||
10759 | PXA RTC DRIVER | |
10760 | M: Robert Jarzmik <robert.jarzmik@free.fr> | |
10761 | L: linux-rtc@vger.kernel.org | |
10762 | S: Maintained | |
10763 | ||
30ec261e | 10764 | PXA2xx/PXA3xx SUPPORT |
8da5e302 | 10765 | M: Daniel Mack <daniel@zonque.org> |
a323f664 | 10766 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
8da5e302 | 10767 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 10768 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 | 10769 | T: git git://github.com/hzhuang1/linux.git |
8da5e302 | 10770 | T: git git://github.com/rjarzmik/linux.git |
1da177e4 | 10771 | S: Maintained |
e68d7c14 | 10772 | F: arch/arm/boot/dts/pxa* |
679655da | 10773 | F: arch/arm/mach-pxa/ |
820439f1 | 10774 | F: drivers/dma/pxa* |
679655da | 10775 | F: drivers/pcmcia/pxa2xx* |
1403ead9 | 10776 | F: drivers/pinctrl/pxa/ |
9df92e6c | 10777 | F: drivers/spi/spi-pxa2xx* |
faf2e1db | 10778 | F: drivers/usb/gadget/udc/pxa2* |
679655da | 10779 | F: include/sound/pxa2xx-lib.h |
bec4c99e | 10780 | F: sound/arm/pxa* |
14430813 | 10781 | F: sound/soc/pxa/ |
1da177e4 | 10782 | |
ec64d3bf EG |
10783 | PXA3xx NAND FLASH DRIVER |
10784 | M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> | |
10785 | L: linux-mtd@lists.infradead.org | |
10786 | S: Maintained | |
9a67f099 | 10787 | F: drivers/mtd/nand/pxa3xx_nand.c |
ec64d3bf | 10788 | |
cea4001a | 10789 | QAT DRIVER |
90ab5a81 TS |
10790 | M: Giovanni Cabiddu <giovanni.cabiddu@intel.com> |
10791 | M: Salvatore Benedetto <salvatore.benedetto@intel.com> | |
49e7d9df JP |
10792 | L: qat-linux@intel.com |
10793 | S: Supported | |
10794 | F: drivers/crypto/qat/ | |
cea4001a | 10795 | |
82abbea7 RD |
10796 | QCOM AUDIO (ASoC) DRIVERS |
10797 | M: Patrick Lai <plai@codeaurora.org> | |
10798 | M: Banajit Goswami <bgoswami@codeaurora.org> | |
10799 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
10800 | S: Supported | |
10801 | F: sound/soc/qcom/ | |
10802 | ||
10803 | QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT | |
10804 | M: Gabriel Somlo <somlo@cmu.edu> | |
10805 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
10806 | L: qemu-devel@nongnu.org | |
10807 | S: Maintained | |
10808 | F: drivers/firmware/qemu_fw_cfg.c | |
10809 | ||
52a09a04 | 10810 | QIB DRIVER |
8473c603 | 10811 | M: Mike Marciniszyn <infinipath@intel.com> |
52a09a04 MM |
10812 | L: linux-rdma@vger.kernel.org |
10813 | S: Supported | |
10814 | F: drivers/infiniband/hw/qib/ | |
10815 | ||
7683e9e5 LT |
10816 | QLOGIC QL41xxx FCOE DRIVER |
10817 | M: QLogic-Storage-Upstream@cavium.com | |
10818 | L: linux-scsi@vger.kernel.org | |
10819 | S: Supported | |
10820 | F: drivers/scsi/qedf/ | |
10821 | ||
10822 | QLOGIC QL41xxx ISCSI DRIVER | |
10823 | M: QLogic-Storage-Upstream@cavium.com | |
10824 | L: linux-scsi@vger.kernel.org | |
10825 | S: Supported | |
10826 | F: drivers/scsi/qedi/ | |
10827 | ||
10828 | QLOGIC QL4xxx ETHERNET DRIVER | |
10829 | M: Yuval Mintz <Yuval.Mintz@cavium.com> | |
10830 | M: Ariel Elior <Ariel.Elior@cavium.com> | |
10831 | M: everest-linux-l2@cavium.com | |
10832 | L: netdev@vger.kernel.org | |
10833 | S: Supported | |
10834 | F: drivers/net/ethernet/qlogic/qed/ | |
10835 | F: include/linux/qed/ | |
10836 | F: drivers/net/ethernet/qlogic/qede/ | |
10837 | ||
10838 | QLOGIC QL4xxx RDMA DRIVER | |
10839 | M: Ram Amrani <Ram.Amrani@cavium.com> | |
10840 | M: Ariel Elior <Ariel.Elior@cavium.com> | |
10841 | L: linux-rdma@vger.kernel.org | |
10842 | S: Supported | |
10843 | F: drivers/infiniband/hw/qedr/ | |
10844 | F: include/uapi/rdma/qedr-abi.h | |
10845 | ||
5e9772b9 JS |
10846 | QLOGIC QLA1280 SCSI DRIVER |
10847 | M: Michael Reed <mdr@sgi.com> | |
10848 | L: linux-scsi@vger.kernel.org | |
10849 | S: Maintained | |
10850 | F: drivers/scsi/qla1280.[ch] | |
10851 | ||
1da177e4 | 10852 | QLOGIC QLA2XXX FC-SCSI DRIVER |
2c804eb0 | 10853 | M: qla2xxx-upstream@qlogic.com |
1da177e4 LT |
10854 | L: linux-scsi@vger.kernel.org |
10855 | S: Supported | |
679655da JP |
10856 | F: Documentation/scsi/LICENSE.qla2xxx |
10857 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 10858 | |
5a4faa87 | 10859 | QLOGIC QLA3XXX NETWORK DRIVER |
67f0160f | 10860 | M: Dept-GELinuxNICDev@cavium.com |
5a4faa87 RM |
10861 | L: netdev@vger.kernel.org |
10862 | S: Supported | |
679655da | 10863 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 10864 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 10865 | |
7683e9e5 LT |
10866 | QLOGIC QLA4XXX iSCSI DRIVER |
10867 | M: QLogic-Storage-Upstream@qlogic.com | |
10868 | L: linux-scsi@vger.kernel.org | |
0ec00f03 | 10869 | S: Supported |
7683e9e5 LT |
10870 | F: Documentation/scsi/LICENSE.qla4xxx |
10871 | F: drivers/scsi/qla4xxx/ | |
0ec00f03 | 10872 | |
7683e9e5 | 10873 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
67f0160f MY |
10874 | M: Harish Patil <harish.patil@cavium.com> |
10875 | M: Manish Chopra <manish.chopra@cavium.com> | |
10876 | M: Dept-GELinuxNICDev@cavium.com | |
c4e84bde RM |
10877 | L: netdev@vger.kernel.org |
10878 | S: Supported | |
7683e9e5 | 10879 | F: drivers/net/ethernet/qlogic/qlcnic/ |
61d8658b | 10880 | |
7683e9e5 LT |
10881 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
10882 | M: Harish Patil <harish.patil@cavium.com> | |
10883 | M: Manish Chopra <manish.chopra@cavium.com> | |
10884 | M: Dept-GELinuxNICDev@cavium.com | |
10885 | L: netdev@vger.kernel.org | |
b6ea01ba | 10886 | S: Supported |
7683e9e5 | 10887 | F: drivers/net/ethernet/qlogic/qlge/ |
b6ea01ba | 10888 | |
1da177e4 | 10889 | QNX4 FILESYSTEM |
8b58be88 | 10890 | M: Anders Larsen <al@alarsen.net> |
1da177e4 LT |
10891 | W: http://www.alarsen.net/linux/qnx4fs/ |
10892 | S: Maintained | |
80811493 | 10893 | F: fs/qnx4/ |
c117ab84 CEB |
10894 | F: include/uapi/linux/qnx4_fs.h |
10895 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 10896 | |
d8b97569 | 10897 | QORIQ DPAA2 FSL-MC BUS DRIVER |
f40c60db SY |
10898 | M: Stuart Yoder <stuyoder@gmail.com> |
10899 | M: Laurentiu Tudor <laurentiu.tudor@nxp.com> | |
d8b97569 SY |
10900 | L: linux-kernel@vger.kernel.org |
10901 | S: Maintained | |
10902 | F: drivers/staging/fsl-mc/ | |
c1517d50 | 10903 | F: Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt |
d8b97569 | 10904 | |
91952bc0 AP |
10905 | QT1010 MEDIA DRIVER |
10906 | M: Antti Palosaari <crope@iki.fi> | |
10907 | L: linux-media@vger.kernel.org | |
a825eaec | 10908 | W: https://linuxtv.org |
91952bc0 AP |
10909 | W: http://palosaari.fi/linux/ |
10910 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
10911 | T: git git://linuxtv.org/anttip/media_tree.git | |
10912 | S: Maintained | |
10913 | F: drivers/media/tuners/qt1010* | |
10914 | ||
2ea0ffcb KV |
10915 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
10916 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
10917 | L: ath10k@lists.infradead.org | |
10918 | W: http://wireless.kernel.org/en/users/Drivers/ath10k | |
9f273c24 | 10919 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git |
2ea0ffcb KV |
10920 | S: Supported |
10921 | F: drivers/net/wireless/ath/ath10k/ | |
10922 | ||
7683e9e5 LT |
10923 | QUALCOMM ATHEROS ATH9K WIRELESS DRIVER |
10924 | M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com> | |
10925 | L: linux-wireless@vger.kernel.org | |
10926 | W: http://wireless.kernel.org/en/users/Drivers/ath9k | |
10927 | S: Supported | |
10928 | F: drivers/net/wireless/ath/ath9k/ | |
10929 | ||
b9b17deb TT |
10930 | QUALCOMM EMAC GIGABIT ETHERNET DRIVER |
10931 | M: Timur Tabi <timur@codeaurora.org> | |
10932 | L: netdev@vger.kernel.org | |
10933 | S: Supported | |
10934 | F: drivers/net/ethernet/qualcomm/emac/ | |
10935 | ||
4f4567cf RK |
10936 | QUALCOMM HEXAGON ARCHITECTURE |
10937 | M: Richard Kuo <rkuo@codeaurora.org> | |
10938 | L: linux-hexagon@vger.kernel.org | |
9f273c24 | 10939 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git |
4f4567cf RK |
10940 | S: Supported |
10941 | F: arch/hexagon/ | |
10942 | ||
097748eb SV |
10943 | QUALCOMM VENUS VIDEO ACCELERATOR DRIVER |
10944 | M: Stanimir Varbanov <stanimir.varbanov@linaro.org> | |
10945 | L: linux-media@vger.kernel.org | |
10946 | L: linux-arm-msm@vger.kernel.org | |
10947 | T: git git://linuxtv.org/media_tree.git | |
10948 | S: Maintained | |
10949 | F: drivers/media/platform/qcom/venus/ | |
10950 | ||
8e84c258 EK |
10951 | QUALCOMM WCN36XX WIRELESS DRIVER |
10952 | M: Eugene Krasnikov <k.eugene.e@gmail.com> | |
10953 | L: wcn36xx@lists.infradead.org | |
10954 | W: http://wireless.kernel.org/en/users/Drivers/wcn36xx | |
10955 | T: git git://github.com/KrasnikovEugene/wcn36xx.git | |
10956 | S: Supported | |
10957 | F: drivers/net/wireless/ath/wcn36xx/ | |
10958 | ||
98f44cb0 | 10959 | QUANTENNA QTNFMAC WIRELESS DRIVER |
7683e9e5 LT |
10960 | M: Igor Mitsyanko <imitsyanko@quantenna.com> |
10961 | M: Avinash Patil <avinashp@quantenna.com> | |
10962 | M: Sergey Matyukevich <smatyukevich@quantenna.com> | |
10963 | L: linux-wireless@vger.kernel.org | |
10964 | S: Maintained | |
10965 | F: drivers/net/wireless/quantenna | |
10966 | ||
10967 | RADEON and AMDGPU DRM DRIVERS | |
10968 | M: Alex Deucher <alexander.deucher@amd.com> | |
10969 | M: Christian König <christian.koenig@amd.com> | |
10970 | L: amd-gfx@lists.freedesktop.org | |
10971 | T: git git://people.freedesktop.org/~agd5f/linux | |
10972 | S: Supported | |
10973 | F: drivers/gpu/drm/radeon/ | |
10974 | F: include/uapi/drm/radeon_drm.h | |
10975 | F: drivers/gpu/drm/amd/ | |
10976 | F: include/uapi/drm/amdgpu_drm.h | |
98f44cb0 | 10977 | |
1da177e4 | 10978 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 10979 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
c69f677c | 10980 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 10981 | S: Maintained |
8a61f013 | 10982 | F: drivers/video/fbdev/aty/radeon* |
c117ab84 | 10983 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 10984 | |
c6c9b34c | 10985 | RADIOSHARK RADIO DRIVER |
c0936df4 | 10986 | M: Hans Verkuil <hverkuil@xs4all.nl> |
c6c9b34c HG |
10987 | L: linux-media@vger.kernel.org |
10988 | T: git git://linuxtv.org/media_tree.git | |
10989 | S: Maintained | |
10990 | F: drivers/media/radio/radio-shark.c | |
10991 | ||
10992 | RADIOSHARK2 RADIO DRIVER | |
c0936df4 | 10993 | M: Hans Verkuil <hverkuil@xs4all.nl> |
c6c9b34c HG |
10994 | L: linux-media@vger.kernel.org |
10995 | T: git git://linuxtv.org/media_tree.git | |
10996 | S: Maintained | |
10997 | F: drivers/media/radio/radio-shark2.c | |
10998 | F: drivers/media/radio/radio-tea5777.c | |
10999 | ||
82abbea7 RD |
11000 | RADOS BLOCK DEVICE (RBD) |
11001 | M: Ilya Dryomov <idryomov@gmail.com> | |
11002 | M: Sage Weil <sage@redhat.com> | |
11003 | M: Alex Elder <elder@kernel.org> | |
11004 | L: ceph-devel@vger.kernel.org | |
11005 | W: http://ceph.com/ | |
11006 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
11007 | T: git git://github.com/ceph/ceph-client.git | |
11008 | S: Supported | |
11009 | F: Documentation/ABI/testing/sysfs-bus-rbd | |
11010 | F: drivers/block/rbd.c | |
11011 | F: drivers/block/rbd_types.h | |
11012 | ||
1da177e4 | 11013 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 11014 | M: Paul Mackerras <paulus@samba.org> |
c69f677c | 11015 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 11016 | S: Maintained |
8a61f013 | 11017 | F: drivers/video/fbdev/aty/aty128fb.c |
1da177e4 | 11018 | |
0f314f6c HV |
11019 | RAINSHADOW-CEC DRIVER |
11020 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11021 | L: linux-media@vger.kernel.org | |
11022 | T: git git://linuxtv.org/media_tree.git | |
11023 | S: Maintained | |
11024 | F: drivers/media/usb/rainshadow-cec/* | |
11025 | ||
a0fd81a9 | 11026 | RALINK MIPS ARCHITECTURE |
bdb40e8e | 11027 | M: John Crispin <john@phrozen.org> |
a0fd81a9 JC |
11028 | L: linux-mips@linux-mips.org |
11029 | S: Maintained | |
11030 | F: arch/mips/ralink | |
11031 | ||
e7839f25 | 11032 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 11033 | P: rt2x00 project |
b182427e | 11034 | M: Stanislaw Gruszka <sgruszka@redhat.com> |
f198f98e | 11035 | M: Helmut Schaa <helmut.schaa@googlemail.com> |
95ea3627 | 11036 | L: linux-wireless@vger.kernel.org |
95ea3627 | 11037 | S: Maintained |
33aca94d | 11038 | F: drivers/net/wireless/ralink/rt2x00/ |
95ea3627 | 11039 | |
9db5579b | 11040 | RAMDISK RAM BLOCK DEVICE DRIVER |
ea7618ec | 11041 | M: Jens Axboe <axboe@kernel.dk> |
9db5579b | 11042 | S: Maintained |
679655da JP |
11043 | F: Documentation/blockdev/ramdisk.txt |
11044 | F: drivers/block/brd.c | |
9db5579b | 11045 | |
9e95ce27 | 11046 | RANDOM NUMBER DRIVER |
0624bcaa | 11047 | M: "Theodore Ts'o" <tytso@mit.edu> |
9e95ce27 | 11048 | S: Maintained |
679655da | 11049 | F: drivers/char/random.c |
9e95ce27 | 11050 | |
394b701c | 11051 | RAPIDIO SUBSYSTEM |
8b58be88 | 11052 | M: Matt Porter <mporter@kernel.crashing.org> |
b8bc1dd3 | 11053 | M: Alexandre Bounine <alexandre.bounine@idt.com> |
394b701c | 11054 | S: Maintained |
679655da | 11055 | F: drivers/rapidio/ |
394b701c | 11056 | |
e2d1d6c0 | 11057 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 11058 | L: linux-wireless@vger.kernel.org |
f52a5490 | 11059 | S: Orphan |
679655da | 11060 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
11061 | |
11062 | RCUTORTURE MODULE | |
e0198b29 | 11063 | M: Josh Triplett <josh@joshtriplett.org> |
8b58be88 | 11064 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
981c3a4f | 11065 | L: linux-kernel@vger.kernel.org |
f9094d8e | 11066 | S: Supported |
08deed1e | 11067 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da | 11068 | F: Documentation/RCU/torture.txt |
34e2d560 | 11069 | F: kernel/rcu/rcutorture.c |
e2d1d6c0 | 11070 | |
c87b9c60 PM |
11071 | RCUTORTURE TEST FRAMEWORK |
11072 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
ab0afd6c | 11073 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
11074 | R: Steven Rostedt <rostedt@goodmis.org> |
11075 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
96a39bc4 | 11076 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
981c3a4f | 11077 | L: linux-kernel@vger.kernel.org |
c87b9c60 PM |
11078 | S: Supported |
11079 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
11080 | F: tools/testing/selftests/rcutorture | |
11081 | ||
c1f766b5 | 11082 | RDC R-321X SoC |
8b58be88 | 11083 | M: Florian Fainelli <florian@openwrt.org> |
c1f766b5 FF |
11084 | S: Maintained |
11085 | ||
db17f395 | 11086 | RDC R6040 FAST ETHERNET DRIVER |
35566e96 | 11087 | M: Florian Fainelli <f.fainelli@gmail.com> |
db17f395 FF |
11088 | L: netdev@vger.kernel.org |
11089 | S: Maintained | |
58565a35 | 11090 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 11091 | |
82abbea7 RD |
11092 | RDMAVT - RDMA verbs software |
11093 | M: Dennis Dalessandro <dennis.dalessandro@intel.com> | |
11094 | L: linux-rdma@vger.kernel.org | |
11095 | S: Supported | |
11096 | F: drivers/infiniband/sw/rdmavt | |
11097 | ||
a09ed661 | 11098 | RDS - RELIABLE DATAGRAM SOCKETS |
72f26eee | 11099 | M: Santosh Shilimkar <santosh.shilimkar@oracle.com> |
11100 | L: netdev@vger.kernel.org | |
11101 | L: linux-rdma@vger.kernel.org | |
fbb5a558 | 11102 | L: rds-devel@oss.oracle.com (moderated for non-subscribers) |
72f26eee | 11103 | W: https://oss.oracle.com/projects/rds/ |
a09ed661 | 11104 | S: Supported |
679655da | 11105 | F: net/rds/ |
72f26eee | 11106 | F: Documentation/networking/rds.txt |
a09ed661 | 11107 | |
48553d10 FY |
11108 | RDT - RESOURCE ALLOCATION |
11109 | M: Fenghua Yu <fenghua.yu@intel.com> | |
11110 | L: linux-kernel@vger.kernel.org | |
11111 | S: Supported | |
11112 | F: arch/x86/kernel/cpu/intel_rdt* | |
11113 | F: arch/x86/include/asm/intel_rdt* | |
11114 | F: Documentation/x86/intel_rdt* | |
11115 | ||
595182bc | 11116 | READ-COPY UPDATE (RCU) |
8b58be88 | 11117 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
ab0afd6c | 11118 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
11119 | R: Steven Rostedt <rostedt@goodmis.org> |
11120 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
96a39bc4 | 11121 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
981c3a4f | 11122 | L: linux-kernel@vger.kernel.org |
9fab9787 | 11123 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 11124 | S: Supported |
08deed1e | 11125 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 11126 | F: Documentation/RCU/ |
9fab9787 | 11127 | X: Documentation/RCU/torture.txt |
f9094d8e | 11128 | F: include/linux/rcu* |
4102adab PM |
11129 | X: include/linux/srcu.h |
11130 | F: kernel/rcu/ | |
34e2d560 | 11131 | X: kernel/torture.c |
595182bc | 11132 | |
0c86edc0 | 11133 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 11134 | M: Alessandro Zummo <a.zummo@towertech.it> |
7c6f84f8 | 11135 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
6ceec695 | 11136 | L: linux-rtc@vger.kernel.org |
8a6e2535 | 11137 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
4733f397 | 11138 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git |
0c86edc0 | 11139 | S: Maintained |
7af6a2e1 | 11140 | F: Documentation/devicetree/bindings/rtc/ |
679655da JP |
11141 | F: Documentation/rtc.txt |
11142 | F: drivers/rtc/ | |
11143 | F: include/linux/rtc.h | |
c117ab84 | 11144 | F: include/uapi/linux/rtc.h |
fe23c336 AB |
11145 | F: include/linux/rtc/ |
11146 | F: include/linux/platform_data/rtc-* | |
11147 | F: tools/testing/selftests/timers/rtctest.c | |
0c86edc0 | 11148 | |
0e400c53 MB |
11149 | REALTEK AUDIO CODECS |
11150 | M: Bard Liao <bardliao@realtek.com> | |
11151 | M: Oder Chiou <oder_chiou@realtek.com> | |
11152 | S: Maintained | |
11153 | F: sound/soc/codecs/rt* | |
11154 | F: include/sound/rt*.h | |
11155 | ||
b83a313b | 11156 | REGISTER MAP ABSTRACTION |
b02e48f2 | 11157 | M: Mark Brown <broonie@kernel.org> |
dd060bc9 | 11158 | L: linux-kernel@vger.kernel.org |
b83a313b MB |
11159 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
11160 | S: Supported | |
9398a639 | 11161 | F: Documentation/devicetree/bindings/regmap/ |
b83a313b MB |
11162 | F: drivers/base/regmap/ |
11163 | F: include/linux/regmap.h | |
11164 | ||
82abbea7 RD |
11165 | REISERFS FILE SYSTEM |
11166 | L: reiserfs-devel@vger.kernel.org | |
11167 | S: Supported | |
11168 | F: fs/reiserfs/ | |
11169 | ||
400e64df OBC |
11170 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
11171 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
69ae9895 | 11172 | M: Bjorn Andersson <bjorn.andersson@linaro.org> |
d7586849 | 11173 | L: linux-remoteproc@vger.kernel.org |
6bb697b6 | 11174 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df | 11175 | S: Maintained |
15ebc72d | 11176 | F: Documentation/devicetree/bindings/remoteproc/ |
400e64df | 11177 | F: Documentation/remoteproc.txt |
15ebc72d | 11178 | F: drivers/remoteproc/ |
6fc26488 | 11179 | F: include/linux/remoteproc.h |
400e64df | 11180 | |
d8115db5 OBC |
11181 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
11182 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
69ae9895 | 11183 | M: Bjorn Andersson <bjorn.andersson@linaro.org> |
d7586849 | 11184 | L: linux-remoteproc@vger.kernel.org |
d8115db5 OBC |
11185 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git |
11186 | S: Maintained | |
11187 | F: drivers/rpmsg/ | |
11188 | F: Documentation/rpmsg.txt | |
11189 | F: include/linux/rpmsg.h | |
38c6fc32 | 11190 | F: include/linux/rpmsg/ |
d8115db5 | 11191 | |
fedc81e7 GU |
11192 | RENESAS CLOCK DRIVERS |
11193 | M: Geert Uytterhoeven <geert+renesas@glider.be> | |
11194 | L: linux-renesas-soc@vger.kernel.org | |
11195 | S: Supported | |
11196 | F: drivers/clk/renesas/ | |
11197 | ||
8e6569af SS |
11198 | RENESAS ETHERNET DRIVERS |
11199 | R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> | |
11200 | L: netdev@vger.kernel.org | |
4a121096 | 11201 | L: linux-renesas-soc@vger.kernel.org |
8e6569af SS |
11202 | F: drivers/net/ethernet/renesas/ |
11203 | F: include/linux/sh_eth.h | |
11204 | ||
059c53b3 MV |
11205 | RENESAS R-CAR GYROADC DRIVER |
11206 | M: Marek Vasut <marek.vasut@gmail.com> | |
11207 | L: linux-iio@vger.kernel.org | |
11208 | S: Supported | |
11209 | F: drivers/iio/adc/rcar_gyro_adc.c | |
11210 | ||
7c7356ba | 11211 | RENESAS USB PHY DRIVER |
3e46c397 | 11212 | M: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> |
4a121096 | 11213 | L: linux-renesas-soc@vger.kernel.org |
3e46c397 | 11214 | S: Maintained |
7c7356ba | 11215 | F: drivers/phy/renesas/phy-rcar-gen3-usb*.c |
3e46c397 | 11216 | |
1b0fe6be PZ |
11217 | RESET CONTROLLER FRAMEWORK |
11218 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
9f273c24 | 11219 | T: git git://git.pengutronix.de/git/pza/linux |
1b0fe6be PZ |
11220 | S: Maintained |
11221 | F: drivers/reset/ | |
11222 | F: Documentation/devicetree/bindings/reset/ | |
b2f6dd7b | 11223 | F: include/dt-bindings/reset/ |
1b0fe6be PZ |
11224 | F: include/linux/reset.h |
11225 | F: include/linux/reset-controller.h | |
11226 | ||
e0897645 | 11227 | RFKILL |
8b58be88 | 11228 | M: Johannes Berg <johannes@sipsolutions.net> |
19d337df | 11229 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
11230 | W: http://wireless.kernel.org/ |
11231 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
11232 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 11233 | S: Maintained |
505c9247 | 11234 | F: Documentation/rfkill.txt |
80811493 | 11235 | F: net/rfkill/ |
e0897645 | 11236 | |
933685ca TG |
11237 | RHASHTABLE |
11238 | M: Thomas Graf <tgraf@suug.ch> | |
39ec406d | 11239 | M: Herbert Xu <herbert@gondor.apana.org.au> |
933685ca TG |
11240 | L: netdev@vger.kernel.org |
11241 | S: Maintained | |
11242 | F: lib/rhashtable.c | |
11243 | F: include/linux/rhashtable.h | |
11244 | ||
7683e9e5 | 11245 | RICOH R5C592 MEMORYSTICK DRIVER |
67e054e9 ML |
11246 | M: Maxim Levitsky <maximlevitsky@gmail.com> |
11247 | S: Maintained | |
7683e9e5 | 11248 | F: drivers/memstick/host/r592.* |
67e054e9 | 11249 | |
7683e9e5 | 11250 | RICOH SMARTMEDIA/XD DRIVER |
92634125 ML |
11251 | M: Maxim Levitsky <maximlevitsky@gmail.com> |
11252 | S: Maintained | |
7683e9e5 LT |
11253 | F: drivers/mtd/nand/r852.c |
11254 | F: drivers/mtd/nand/r852.h | |
92634125 | 11255 | |
27f1d2f9 SA |
11256 | ROCCAT DRIVERS |
11257 | M: Stefan Achatz <erazor_de@users.sourceforge.net> | |
11258 | W: http://sourceforge.net/projects/roccat/ | |
11259 | S: Maintained | |
11260 | F: drivers/hid/hid-roccat* | |
11261 | F: include/linux/hid-roccat* | |
11262 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* | |
11263 | ||
4b8ac966 JP |
11264 | ROCKER DRIVER |
11265 | M: Jiri Pirko <jiri@resnulli.us> | |
4b8ac966 JP |
11266 | L: netdev@vger.kernel.org |
11267 | S: Supported | |
11268 | F: drivers/net/ethernet/rocker/ | |
11269 | ||
1da177e4 LT |
11270 | ROCKETPORT DRIVER |
11271 | P: Comtrol Corp. | |
1da177e4 LT |
11272 | W: http://www.comtrol.com |
11273 | S: Maintained | |
679655da | 11274 | F: Documentation/serial/rocket.txt |
c897401b | 11275 | F: drivers/tty/rocket* |
1da177e4 | 11276 | |
7645c2f4 KC |
11277 | ROCKETPORT EXPRESS/INFINITY DRIVER |
11278 | M: Kevin Cernekee <cernekee@gmail.com> | |
11279 | L: linux-serial@vger.kernel.org | |
11280 | S: Odd Fixes | |
11281 | F: drivers/tty/serial/rp2.* | |
11282 | ||
1da177e4 | 11283 | ROSE NETWORK LAYER |
8b58be88 | 11284 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 11285 | L: linux-hams@vger.kernel.org |
d34cb28a | 11286 | W: http://www.linux-ax25.org/ |
1da177e4 | 11287 | S: Maintained |
679655da | 11288 | F: include/net/rose.h |
c117ab84 | 11289 | F: include/uapi/linux/rose.h |
679655da | 11290 | F: net/rose/ |
1da177e4 | 11291 | |
91952bc0 AP |
11292 | RTL2830 MEDIA DRIVER |
11293 | M: Antti Palosaari <crope@iki.fi> | |
11294 | L: linux-media@vger.kernel.org | |
a825eaec | 11295 | W: https://linuxtv.org |
91952bc0 AP |
11296 | W: http://palosaari.fi/linux/ |
11297 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11298 | T: git git://linuxtv.org/anttip/media_tree.git | |
11299 | S: Maintained | |
11300 | F: drivers/media/dvb-frontends/rtl2830* | |
11301 | ||
27a0aacf AP |
11302 | RTL2832 MEDIA DRIVER |
11303 | M: Antti Palosaari <crope@iki.fi> | |
11304 | L: linux-media@vger.kernel.org | |
a825eaec | 11305 | W: https://linuxtv.org |
27a0aacf AP |
11306 | W: http://palosaari.fi/linux/ |
11307 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11308 | T: git git://linuxtv.org/anttip/media_tree.git | |
11309 | S: Maintained | |
11310 | F: drivers/media/dvb-frontends/rtl2832* | |
11311 | ||
ba6e6f6e AP |
11312 | RTL2832_SDR MEDIA DRIVER |
11313 | M: Antti Palosaari <crope@iki.fi> | |
11314 | L: linux-media@vger.kernel.org | |
a825eaec | 11315 | W: https://linuxtv.org |
ba6e6f6e AP |
11316 | W: http://palosaari.fi/linux/ |
11317 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11318 | T: git git://linuxtv.org/anttip/media_tree.git | |
11319 | S: Maintained | |
b4bb1c28 | 11320 | F: drivers/media/dvb-frontends/rtl2832_sdr* |
ba6e6f6e | 11321 | |
59840488 | 11322 | RTL8180 WIRELESS DRIVER |
605bebe2 | 11323 | L: linux-wireless@vger.kernel.org |
491b26b4 | 11324 | W: http://wireless.kernel.org/ |
54e5881d | 11325 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7be6ff65 | 11326 | S: Orphan |
62141726 | 11327 | F: drivers/net/wireless/realtek/rtl818x/rtl8180/ |
605bebe2 | 11328 | |
59840488 | 11329 | RTL8187 WIRELESS DRIVER |
9f0939bf | 11330 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
8b58be88 JP |
11331 | M: Hin-Tak Leung <htl10@users.sourceforge.net> |
11332 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
7d2c86b5 | 11333 | L: linux-wireless@vger.kernel.org |
491b26b4 | 11334 | W: http://wireless.kernel.org/ |
54e5881d | 11335 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 11336 | S: Maintained |
62141726 | 11337 | F: drivers/net/wireless/realtek/rtl818x/rtl8187/ |
59840488 | 11338 | |
3cf0c8ad LF |
11339 | RTL8192CE WIRELESS DRIVER |
11340 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
11341 | M: Chaoming Li <chaoming_li@realsil.com.cn> | |
11342 | L: linux-wireless@vger.kernel.org | |
491b26b4 | 11343 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
11344 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
11345 | S: Maintained | |
62141726 KV |
11346 | F: drivers/net/wireless/realtek/rtlwifi/ |
11347 | F: drivers/net/wireless/realtek/rtlwifi/rtl8192ce/ | |
59840488 | 11348 | |
26f1fad2 | 11349 | RTL8XXXU WIRELESS DRIVER (rtl8xxxu) |
1ee83789 | 11350 | M: Jes Sorensen <Jes.Sorensen@gmail.com> |
26f1fad2 | 11351 | L: linux-wireless@vger.kernel.org |
171a900c | 11352 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel |
26f1fad2 JS |
11353 | S: Maintained |
11354 | F: drivers/net/wireless/realtek/rtl8xxxu/ | |
11355 | ||
9eb8ef74 | 11356 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 11357 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 11358 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 11359 | S: Maintained |
8a61f013 | 11360 | F: drivers/video/fbdev/savage/ |
9eb8ef74 | 11361 | |
1da177e4 | 11362 | S390 |
8b58be88 JP |
11363 | M: Martin Schwidefsky <schwidefsky@de.ibm.com> |
11364 | M: Heiko Carstens <heiko.carstens@de.ibm.com> | |
d58140cc | 11365 | L: linux-s390@vger.kernel.org |
5238da45 | 11366 | W: http://www.ibm.com/developerworks/linux/linux390/ |
9f273c24 | 11367 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git |
5238da45 | 11368 | S: Supported |
679655da | 11369 | F: arch/s390/ |
a968cd3e | 11370 | F: drivers/s390/ |
3bfe6858 | 11371 | F: Documentation/s390/ |
0c88a041 | 11372 | F: Documentation/driver-api/s390-drivers.rst |
5238da45 | 11373 | |
322986ca SO |
11374 | S390 COMMON I/O LAYER |
11375 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
11376 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
11377 | L: linux-s390@vger.kernel.org | |
11378 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
11379 | S: Supported | |
11380 | F: drivers/s390/cio/ | |
11381 | ||
11382 | S390 DASD DRIVER | |
38b7f07a SH |
11383 | M: Stefan Haberland <sth@linux.vnet.ibm.com> |
11384 | M: Jan Hoeppner <hoeppner@linux.vnet.ibm.com> | |
322986ca SO |
11385 | L: linux-s390@vger.kernel.org |
11386 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
11387 | S: Supported | |
11388 | F: drivers/s390/block/dasd* | |
11389 | F: block/partitions/ibm.c | |
11390 | ||
7683e9e5 LT |
11391 | S390 IOMMU (PCI) |
11392 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> | |
11393 | L: linux-s390@vger.kernel.org | |
11394 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
11395 | S: Supported | |
11396 | F: drivers/iommu/s390-iommu.c | |
11397 | ||
11398 | S390 IUCV NETWORK LAYER | |
11399 | M: Julian Wiedmann <jwi@linux.vnet.ibm.com> | |
11400 | M: Ursula Braun <ubraun@linux.vnet.ibm.com> | |
11401 | L: linux-s390@vger.kernel.org | |
11402 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
11403 | S: Supported | |
11404 | F: drivers/s390/net/*iucv* | |
11405 | F: include/net/iucv/ | |
11406 | F: net/iucv/ | |
11407 | ||
5238da45 | 11408 | S390 NETWORK DRIVERS |
90b14dc7 | 11409 | M: Julian Wiedmann <jwi@linux.vnet.ibm.com> |
f0c59aff | 11410 | M: Ursula Braun <ubraun@linux.vnet.ibm.com> |
d58140cc | 11411 | L: linux-s390@vger.kernel.org |
5238da45 HC |
11412 | W: http://www.ibm.com/developerworks/linux/linux390/ |
11413 | S: Supported | |
679655da | 11414 | F: drivers/s390/net/ |
5238da45 | 11415 | |
322986ca SO |
11416 | S390 PCI SUBSYSTEM |
11417 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
11418 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> | |
11419 | L: linux-s390@vger.kernel.org | |
11420 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
11421 | S: Supported | |
11422 | F: arch/s390/pci/ | |
11423 | F: drivers/pci/hotplug/s390_pci_hpc.c | |
11424 | ||
7683e9e5 LT |
11425 | S390 VFIO-CCW DRIVER |
11426 | M: Cornelia Huck <cohuck@redhat.com> | |
11427 | M: Dong Jia Shi <bjsdjshi@linux.vnet.ibm.com> | |
11428 | L: linux-s390@vger.kernel.org | |
11429 | L: kvm@vger.kernel.org | |
11430 | S: Supported | |
11431 | F: drivers/s390/cio/vfio_ccw* | |
11432 | F: Documentation/s390/vfio-ccw.txt | |
11433 | F: include/uapi/linux/vfio_ccw.h | |
11434 | ||
feed9b62 | 11435 | S390 ZCRYPT DRIVER |
cb9c6385 | 11436 | M: Harald Freudenberger <freude@de.ibm.com> |
feed9b62 | 11437 | L: linux-s390@vger.kernel.org |
a968cd3e | 11438 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 11439 | S: Supported |
d5ca6918 | 11440 | F: drivers/s390/crypto/ |
feed9b62 | 11441 | |
5238da45 | 11442 | S390 ZFCP DRIVER |
d38e19d0 | 11443 | M: Steffen Maier <maier@linux.vnet.ibm.com> |
d58140cc | 11444 | L: linux-s390@vger.kernel.org |
5238da45 | 11445 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 11446 | S: Supported |
679655da | 11447 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 11448 | |
4dde7f75 | 11449 | S3C24XX SD/MMC Driver |
8b58be88 | 11450 | M: Ben Dooks <ben-linux@fluff.org> |
efc03ecb | 11451 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4dde7f75 | 11452 | S: Supported |
679655da | 11453 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 11454 | |
1f15a229 HV |
11455 | SAA6588 RDS RECEIVER DRIVER |
11456 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11457 | L: linux-media@vger.kernel.org | |
11458 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11459 | W: https://linuxtv.org |
1f15a229 HV |
11460 | S: Odd Fixes |
11461 | F: drivers/media/i2c/saa6588* | |
11462 | ||
98ed12e6 | 11463 | SAA7134 VIDEO4LINUX DRIVER |
5dc8a864 MCC |
11464 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
11465 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
98ed12e6 | 11466 | L: linux-media@vger.kernel.org |
a825eaec | 11467 | W: https://linuxtv.org |
98ed12e6 MCC |
11468 | T: git git://linuxtv.org/media_tree.git |
11469 | S: Odd fixes | |
618cd932 | 11470 | F: Documentation/media/v4l-drivers/saa7134* |
98ed12e6 MCC |
11471 | F: drivers/media/pci/saa7134/ |
11472 | ||
1da177e4 | 11473 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 11474 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 11475 | L: linux-media@vger.kernel.org |
275ffde4 | 11476 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 11477 | S: Maintained |
90d72ac6 MCC |
11478 | F: drivers/media/common/saa7146/ |
11479 | F: drivers/media/pci/saa7146/ | |
11480 | F: include/media/saa7146* | |
1da177e4 | 11481 | |
4a109cc0 | 11482 | SAMSUNG AUDIO (ASoC) DRIVERS |
326dce07 | 11483 | M: Krzysztof Kozlowski <krzk@kernel.org> |
250b6851 | 11484 | M: Sangbeom Kim <sbkim73@samsung.com> |
09a01028 | 11485 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
4a109cc0 MB |
11486 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
11487 | S: Supported | |
14430813 | 11488 | F: sound/soc/samsung/ |
4a109cc0 | 11489 | |
c46ea13f KK |
11490 | SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER |
11491 | M: Krzysztof Kozlowski <krzk@kernel.org> | |
11492 | L: linux-crypto@vger.kernel.org | |
11493 | L: linux-samsung-soc@vger.kernel.org | |
11494 | S: Maintained | |
11495 | F: drivers/crypto/exynos-rng.c | |
11496 | F: Documentation/devicetree/bindings/rng/samsung,exynos-rng4.txt | |
11497 | ||
0d89a28b | 11498 | SAMSUNG FRAMEBUFFER DRIVER |
b7701755 | 11499 | M: Jingoo Han <jingoohan1@gmail.com> |
0d89a28b JH |
11500 | L: linux-fbdev@vger.kernel.org |
11501 | S: Maintained | |
8a61f013 | 11502 | F: drivers/video/fbdev/s3c-fb.c |
0d89a28b | 11503 | |
7683e9e5 LT |
11504 | SAMSUNG LAPTOP DRIVER |
11505 | M: Corentin Chary <corentin.chary@gmail.com> | |
11506 | L: platform-driver-x86@vger.kernel.org | |
11507 | S: Maintained | |
11508 | F: drivers/platform/x86/samsung-laptop.c | |
11509 | ||
b40f0632 | 11510 | SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS |
f69d3a17 | 11511 | M: Sangbeom Kim <sbkim73@samsung.com> |
326dce07 KK |
11512 | M: Krzysztof Kozlowski <krzk@kernel.org> |
11513 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | |
f69d3a17 | 11514 | L: linux-kernel@vger.kernel.org |
b40f0632 | 11515 | L: linux-samsung-soc@vger.kernel.org |
f69d3a17 SK |
11516 | S: Supported |
11517 | F: drivers/mfd/sec*.c | |
11518 | F: drivers/regulator/s2m*.c | |
11519 | F: drivers/regulator/s5m*.c | |
b40f0632 KK |
11520 | F: drivers/clk/clk-s2mps11.c |
11521 | F: drivers/rtc/rtc-s5m.c | |
f69d3a17 | 11522 | F: include/linux/mfd/samsung/ |
a13c7c51 KK |
11523 | F: Documentation/devicetree/bindings/mfd/samsung,sec-core.txt |
11524 | F: Documentation/devicetree/bindings/regulator/samsung,s2m*.txt | |
27383ca9 | 11525 | F: Documentation/devicetree/bindings/regulator/samsung,s5m*.txt |
a13c7c51 | 11526 | F: Documentation/devicetree/bindings/clock/samsung,s2mps11.txt |
f69d3a17 | 11527 | |
6fd86ab2 SN |
11528 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
11529 | M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com> | |
11530 | L: linux-media@vger.kernel.org | |
11531 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
11532 | S: Maintained | |
11533 | F: drivers/media/platform/s3c-camif/ | |
d647f0b7 | 11534 | F: include/media/drv-intf/s3c_camif.h |
6fd86ab2 | 11535 | |
7683e9e5 LT |
11536 | SAMSUNG S3FWRN5 NFC DRIVER |
11537 | M: Robert Baldyga <r.baldyga@samsung.com> | |
11538 | M: Krzysztof Opasiak <k.opasiak@samsung.com> | |
11539 | L: linux-nfc@lists.01.org (moderated for non-subscribers) | |
11540 | S: Supported | |
11541 | F: drivers/nfc/s3fwrn5 | |
11542 | ||
b84ef24e AH |
11543 | SAMSUNG S5C73M3 CAMERA DRIVER |
11544 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
11545 | M: Andrzej Hajda <a.hajda@samsung.com> | |
11546 | L: linux-media@vger.kernel.org | |
11547 | S: Supported | |
11548 | F: drivers/media/i2c/s5c73m3/* | |
11549 | ||
7d459937 AH |
11550 | SAMSUNG S5K5BAF CAMERA DRIVER |
11551 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
11552 | M: Andrzej Hajda <a.hajda@samsung.com> | |
11553 | L: linux-media@vger.kernel.org | |
11554 | S: Supported | |
11555 | F: drivers/media/i2c/s5k5baf.c | |
11556 | ||
7683e9e5 LT |
11557 | SAMSUNG S5P Security SubSystem (SSS) DRIVER |
11558 | M: Krzysztof Kozlowski <krzk@kernel.org> | |
11559 | M: Vladimir Zapolskiy <vz@mleia.com> | |
11560 | L: linux-crypto@vger.kernel.org | |
11561 | L: linux-samsung-soc@vger.kernel.org | |
11562 | S: Maintained | |
11563 | F: drivers/crypto/s5p-sss.c | |
11564 | ||
11565 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS | |
11566 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
11567 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> | |
11568 | L: linux-media@vger.kernel.org | |
11569 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
c04c674f | 11570 | S: Supported |
7683e9e5 | 11571 | F: drivers/media/platform/exynos4-is/ |
c04c674f | 11572 | |
310e39c9 | 11573 | SAMSUNG SOC CLOCK DRIVERS |
fea685e9 TF |
11574 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
11575 | M: Tomasz Figa <tomasz.figa@gmail.com> | |
490583f0 | 11576 | M: Chanwoo Choi <cw00.choi@samsung.com> |
310e39c9 TF |
11577 | S: Supported |
11578 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
11579 | F: drivers/clk/samsung/ | |
490583f0 CC |
11580 | F: include/dt-bindings/clock/exynos*.h |
11581 | F: Documentation/devicetree/bindings/clock/exynos*.txt | |
310e39c9 | 11582 | |
2e365a70 AS |
11583 | SAMSUNG SPI DRIVERS |
11584 | M: Kukjin Kim <kgene@kernel.org> | |
11585 | M: Krzysztof Kozlowski <krzk@kernel.org> | |
11586 | M: Andi Shyti <andi.shyti@samsung.com> | |
11587 | L: linux-spi@vger.kernel.org | |
11588 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
11589 | S: Maintained | |
11590 | F: Documentation/devicetree/bindings/spi/spi-samsung.txt | |
11591 | F: drivers/spi/spi-s3c* | |
11592 | F: include/linux/platform_data/spi-s3c64xx.h | |
11593 | ||
66890ed6 BA |
11594 | SAMSUNG SXGBE DRIVERS |
11595 | M: Byungho An <bh74.an@samsung.com> | |
11596 | M: Girish K S <ks.giri@samsung.com> | |
66890ed6 BA |
11597 | M: Vipul Pandya <vipul.pandya@samsung.com> |
11598 | S: Supported | |
11599 | L: netdev@vger.kernel.org | |
11600 | F: drivers/net/ethernet/samsung/sxgbe/ | |
11601 | ||
93c537af | 11602 | SAMSUNG THERMAL DRIVER |
0faf7dd5 | 11603 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
93c537af LM |
11604 | L: linux-pm@vger.kernel.org |
11605 | L: linux-samsung-soc@vger.kernel.org | |
11606 | S: Supported | |
9f273c24 | 11607 | T: git https://github.com/lmajewski/linux-samsung-thermal.git |
93c537af LM |
11608 | F: drivers/thermal/samsung/ |
11609 | ||
e296cd32 | 11610 | SAMSUNG USB2 PHY DRIVER |
774e0362 KD |
11611 | M: Kamil Debski <kamil@wypas.org> |
11612 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> | |
e296cd32 KD |
11613 | L: linux-kernel@vger.kernel.org |
11614 | S: Supported | |
11615 | F: Documentation/devicetree/bindings/phy/samsung-phy.txt | |
11616 | F: Documentation/phy/samsung-usb2.txt | |
0b56e9a7 VG |
11617 | F: drivers/phy/samsung/phy-exynos4210-usb2.c |
11618 | F: drivers/phy/samsung/phy-exynos4x12-usb2.c | |
11619 | F: drivers/phy/samsung/phy-exynos5250-usb2.c | |
11620 | F: drivers/phy/samsung/phy-s5pv210-usb2.c | |
11621 | F: drivers/phy/samsung/phy-samsung-usb2.c | |
11622 | F: drivers/phy/samsung/phy-samsung-usb2.h | |
e296cd32 | 11623 | |
1da177e4 | 11624 | SC1200 WDT DRIVER |
b300645a | 11625 | M: Zwane Mwaikambo <zwanem@gmail.com> |
1da177e4 | 11626 | S: Maintained |
679655da | 11627 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
11628 | |
11629 | SCHEDULER | |
dd9b238c | 11630 | M: Ingo Molnar <mingo@redhat.com> |
8b58be88 | 11631 | M: Peter Zijlstra <peterz@infradead.org> |
981c3a4f | 11632 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 11633 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 11634 | S: Maintained |
95c0d71d | 11635 | F: kernel/sched/ |
679655da | 11636 | F: include/linux/sched.h |
c117ab84 | 11637 | F: include/uapi/linux/sched.h |
c2eb505b | 11638 | F: include/linux/wait.h |
1da177e4 | 11639 | |
6bcf6737 | 11640 | SCORE ARCHITECTURE |
ed38665e | 11641 | M: Chen Liqin <liqin.linux@gmail.com> |
a2681a75 | 11642 | M: Lennox Wu <lennox.wu@gmail.com> |
ed38665e | 11643 | W: http://www.sunplus.com |
6bcf6737 | 11644 | S: Supported |
a2681a75 | 11645 | F: arch/score/ |
6bcf6737 | 11646 | |
f2ed287b LR |
11647 | SCR24X CHIP CARD INTERFACE DRIVER |
11648 | M: Lubomir Rintel <lkundrak@v3.sk> | |
11649 | S: Supported | |
11650 | F: drivers/char/pcmcia/scr24x_cs.c | |
11651 | ||
1da177e4 | 11652 | SCSI CDROM DRIVER |
8b58be88 | 11653 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
11654 | L: linux-scsi@vger.kernel.org |
11655 | W: http://www.kernel.dk | |
11656 | S: Maintained | |
679655da | 11657 | F: drivers/scsi/sr* |
1da177e4 | 11658 | |
fb50a83d | 11659 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
3453bddb | 11660 | M: Bart Van Assche <bart.vanassche@sandisk.com> |
fb50a83d RD |
11661 | L: linux-rdma@vger.kernel.org |
11662 | S: Supported | |
11663 | W: http://www.openfabrics.org | |
11664 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
11665 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
11666 | F: drivers/infiniband/ulp/srp/ | |
11667 | F: include/scsi/srp.h | |
11668 | ||
1da177e4 | 11669 | SCSI SG DRIVER |
8b58be88 | 11670 | M: Doug Gilbert <dgilbert@interlog.com> |
1da177e4 | 11671 | L: linux-scsi@vger.kernel.org |
59ab3c93 | 11672 | W: http://sg.danny.cz/sg |
1da177e4 | 11673 | S: Maintained |
59ab3c93 | 11674 | F: Documentation/scsi/scsi-generic.txt |
679655da JP |
11675 | F: drivers/scsi/sg.c |
11676 | F: include/scsi/sg.h | |
1da177e4 LT |
11677 | |
11678 | SCSI SUBSYSTEM | |
7ee7895c | 11679 | M: "James E.J. Bottomley" <jejb@linux.vnet.ibm.com> |
0351b8f8 | 11680 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git |
f4ab421b MP |
11681 | M: "Martin K. Petersen" <martin.petersen@oracle.com> |
11682 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git | |
11683 | L: linux-scsi@vger.kernel.org | |
1da177e4 | 11684 | S: Maintained |
2c99a314 | 11685 | F: Documentation/devicetree/bindings/scsi/ |
679655da JP |
11686 | F: drivers/scsi/ |
11687 | F: include/scsi/ | |
1da177e4 LT |
11688 | |
11689 | SCSI TAPE DRIVER | |
8b58be88 | 11690 | M: Kai Mäkisara <Kai.Makisara@kolumbus.fi> |
1da177e4 LT |
11691 | L: linux-scsi@vger.kernel.org |
11692 | S: Maintained | |
679655da | 11693 | F: Documentation/scsi/st.txt |
f7269cfc JD |
11694 | F: drivers/scsi/st.* |
11695 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
11696 | |
11697 | SCTP PROTOCOL | |
8b6efb75 | 11698 | M: Vlad Yasevich <vyasevich@gmail.com> |
02c38d0a | 11699 | M: Neil Horman <nhorman@tuxdriver.com> |
1a418796 | 11700 | L: linux-sctp@vger.kernel.org |
5f85813c | 11701 | W: http://lksctp.sourceforge.net |
8b6efb75 | 11702 | S: Maintained |
679655da JP |
11703 | F: Documentation/networking/sctp.txt |
11704 | F: include/linux/sctp.h | |
4d58c025 | 11705 | F: include/uapi/linux/sctp.h |
679655da JP |
11706 | F: include/net/sctp/ |
11707 | F: net/sctp/ | |
1da177e4 LT |
11708 | |
11709 | SCx200 CPU SUPPORT | |
8b58be88 | 11710 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 11711 | S: Odd Fixes |
679655da | 11712 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 11713 | F: arch/x86/platform/scx200/ |
679655da JP |
11714 | F: drivers/watchdog/scx200_wdt.c |
11715 | F: drivers/i2c/busses/scx200* | |
11716 | F: drivers/mtd/maps/scx200_docflash.c | |
11717 | F: include/linux/scx200.h | |
1662d32c JC |
11718 | |
11719 | SCx200 GPIO DRIVER | |
8b58be88 | 11720 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 11721 | S: Maintained |
679655da JP |
11722 | F: drivers/char/scx200_gpio.c |
11723 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
11724 | |
11725 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 11726 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 11727 | S: Maintained |
679655da | 11728 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 11729 | |
6a36913a | 11730 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 11731 | M: Sascha Sommer <saschasommer@freenet.de> |
6a36913a SS |
11732 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
11733 | S: Maintained | |
679655da | 11734 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 11735 | |
c04f9d61 KC |
11736 | SECURE COMPUTING |
11737 | M: Kees Cook <keescook@chromium.org> | |
a0cfd75f KC |
11738 | R: Andy Lutomirski <luto@amacapital.net> |
11739 | R: Will Drewry <wad@chromium.org> | |
c04f9d61 KC |
11740 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp |
11741 | S: Supported | |
11742 | F: kernel/seccomp.c | |
11743 | F: include/uapi/linux/seccomp.h | |
11744 | F: include/linux/seccomp.h | |
c99ee51a | 11745 | F: tools/testing/selftests/seccomp/* |
0b40808a | 11746 | F: tools/testing/selftests/kselftest_harness.h |
c061f33f | 11747 | F: Documentation/userspace-api/seccomp_filter.rst |
c04f9d61 KC |
11748 | K: \bsecure_computing |
11749 | K: \bTIF_SECCOMP\b | |
11750 | ||
7683e9e5 LT |
11751 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER |
11752 | M: Al Cooper <alcooperx@gmail.com> | |
11753 | L: linux-mmc@vger.kernel.org | |
11754 | L: bcm-kernel-feedback-list@broadcom.com | |
11755 | S: Maintained | |
11756 | F: drivers/mmc/host/sdhci-brcmstb* | |
11757 | ||
82abbea7 RD |
11758 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
11759 | M: Adrian Hunter <adrian.hunter@intel.com> | |
11760 | L: linux-mmc@vger.kernel.org | |
11761 | T: git git://git.infradead.org/users/ahunter/linux-sdhci.git | |
11762 | S: Maintained | |
11763 | F: drivers/mmc/host/sdhci* | |
11764 | F: include/linux/mmc/sdhci* | |
11765 | ||
0d1bb41a | 11766 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 11767 | M: Ben Dooks <ben-linux@fluff.org> |
dc524882 | 11768 | M: Jaehoon Chung <jh80.chung@samsung.com> |
7a241d6e | 11769 | L: linux-mmc@vger.kernel.org |
0d1bb41a | 11770 | S: Maintained |
dc524882 | 11771 | F: drivers/mmc/host/sdhci-s3c* |
0d1bb41a | 11772 | |
c63b3cba | 11773 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
da89947b | 11774 | M: Viresh Kumar <vireshk@kernel.org> |
c63b3cba VK |
11775 | L: linux-mmc@vger.kernel.org |
11776 | S: Maintained | |
11777 | F: drivers/mmc/host/sdhci-spear.c | |
11778 | ||
455a7b23 SB |
11779 | SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER |
11780 | M: Scott Bauer <scott.bauer@intel.com> | |
11781 | M: Jonathan Derrick <jonathan.derrick@intel.com> | |
11782 | M: Rafael Antognolli <rafael.antognolli@intel.com> | |
0222967b | 11783 | L: linux-block@vger.kernel.org |
455a7b23 SB |
11784 | S: Supported |
11785 | F: block/sed* | |
11786 | F: block/opal_proto.h | |
11787 | F: include/linux/sed* | |
11788 | F: include/uapi/linux/sed* | |
11789 | ||
7683e9e5 LT |
11790 | SECURITY CONTACT |
11791 | M: Security Officers <security@kernel.org> | |
11792 | S: Supported | |
11793 | ||
8711cca2 | 11794 | SECURITY SUBSYSTEM |
9b45c0d2 | 11795 | M: James Morris <james.l.morris@oracle.com> |
9c3646d1 | 11796 | M: "Serge E. Hallyn" <serge@hallyn.com> |
8711cca2 | 11797 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
89879a7e | 11798 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 11799 | W: http://kernsec.org/ |
8711cca2 | 11800 | S: Supported |
7d2c86b5 | 11801 | F: security/ |
8711cca2 | 11802 | |
1da177e4 | 11803 | SELINUX SECURITY MODULE |
e0238b4c | 11804 | M: Paul Moore <paul@paul-moore.com> |
8b58be88 | 11805 | M: Stephen Smalley <sds@tycho.nsa.gov> |
8b58be88 | 11806 | M: Eric Paris <eparis@parisplace.org> |
e0238b4c | 11807 | L: selinux@tycho.nsa.gov (moderated for non-subscribers) |
f058925b | 11808 | W: http://selinuxproject.org |
5a5f2acf | 11809 | T: git git://git.infradead.org/users/pcmoore/selinux |
1da177e4 | 11810 | S: Supported |
679655da JP |
11811 | F: include/linux/selinux* |
11812 | F: security/selinux/ | |
6bde95ce | 11813 | F: scripts/selinux/ |
229fd05c | 11814 | F: Documentation/admin-guide/LSM/SELinux.rst |
1da177e4 | 11815 | |
cef2cf07 | 11816 | SENSABLE PHANTOM |
8b58be88 | 11817 | M: Jiri Slaby <jirislaby@gmail.com> |
cef2cf07 | 11818 | S: Maintained |
679655da | 11819 | F: drivers/misc/phantom.c |
c117ab84 | 11820 | F: include/uapi/linux/phantom.h |
cef2cf07 | 11821 | |
82abbea7 RD |
11822 | SERIAL DEVICE BUS |
11823 | M: Rob Herring <robh@kernel.org> | |
11824 | L: linux-serial@vger.kernel.org | |
11825 | S: Maintained | |
11826 | F: Documentation/devicetree/bindings/serial/slave-device.txt | |
11827 | F: drivers/tty/serdev/ | |
11828 | F: include/linux/serdev.h | |
6b7c5b94 | 11829 | |
7683e9e5 LT |
11830 | SERIAL DRIVERS |
11831 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
11832 | L: linux-serial@vger.kernel.org | |
11833 | S: Maintained | |
11834 | F: Documentation/devicetree/bindings/serial/ | |
11835 | F: drivers/tty/serial/ | |
11836 | ||
82abbea7 RD |
11837 | SERIAL IR RECEIVER |
11838 | M: Sean Young <sean@mess.org> | |
11839 | L: linux-media@vger.kernel.org | |
11840 | S: Maintained | |
11841 | F: drivers/media/rc/serial_ir.c | |
d2928a8c | 11842 | |
8ceee660 | 11843 | SFC NETWORK DRIVER |
c06f51ea | 11844 | M: Solarflare linux maintainers <linux-net-drivers@solarflare.com> |
e00f8017 BK |
11845 | M: Edward Cree <ecree@solarflare.com> |
11846 | M: Bert Kenward <bkenward@solarflare.com> | |
c06f51ea | 11847 | L: netdev@vger.kernel.org |
8ceee660 | 11848 | S: Supported |
874aeea5 | 11849 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 11850 | |
e2d1d6c0 | 11851 | SGI GRU DRIVER |
cc883afc | 11852 | M: Dimitri Sivanich <sivanich@sgi.com> |
e2d1d6c0 | 11853 | S: Maintained |
679655da | 11854 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
11855 | |
11856 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 11857 | M: Pat Gefre <pfg@sgi.com> |
e2d1d6c0 RD |
11858 | L: linux-ia64@vger.kernel.org |
11859 | S: Supported | |
679655da | 11860 | F: Documentation/ia64/serial.txt |
df621252 | 11861 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 11862 | F: include/linux/ioc?.h |
e2d1d6c0 | 11863 | |
75312619 | 11864 | SGI XP/XPC/XPNET DRIVER |
e180383f RH |
11865 | M: Cliff Whickman <cpw@sgi.com> |
11866 | M: Robin Holt <robinmholt@gmail.com> | |
75312619 | 11867 | S: Maintained |
679655da | 11868 | F: drivers/misc/sgi-xp/ |
75312619 | 11869 | |
7683e9e5 LT |
11870 | SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS |
11871 | M: Ursula Braun <ubraun@linux.vnet.ibm.com> | |
11872 | L: linux-s390@vger.kernel.org | |
11873 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
11874 | S: Supported | |
11875 | F: net/smc/ | |
11876 | ||
82abbea7 RD |
11877 | SH_VEU V4L2 MEM2MEM DRIVER |
11878 | L: linux-media@vger.kernel.org | |
11879 | S: Orphan | |
11880 | F: drivers/media/platform/sh_veu.c | |
11881 | ||
11882 | SH_VOU V4L2 OUTPUT DRIVER | |
11883 | L: linux-media@vger.kernel.org | |
11884 | S: Orphan | |
11885 | F: drivers/media/platform/sh_vou.c | |
11886 | F: include/media/drv-intf/sh_vou.h | |
11887 | ||
46eacf3b AP |
11888 | SI2157 MEDIA DRIVER |
11889 | M: Antti Palosaari <crope@iki.fi> | |
11890 | L: linux-media@vger.kernel.org | |
a825eaec | 11891 | W: https://linuxtv.org |
46eacf3b AP |
11892 | W: http://palosaari.fi/linux/ |
11893 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11894 | T: git git://linuxtv.org/anttip/media_tree.git | |
11895 | S: Maintained | |
11896 | F: drivers/media/tuners/si2157* | |
11897 | ||
75e2d5ba AP |
11898 | SI2168 MEDIA DRIVER |
11899 | M: Antti Palosaari <crope@iki.fi> | |
11900 | L: linux-media@vger.kernel.org | |
a825eaec | 11901 | W: https://linuxtv.org |
75e2d5ba AP |
11902 | W: http://palosaari.fi/linux/ |
11903 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
11904 | T: git git://linuxtv.org/anttip/media_tree.git | |
11905 | S: Maintained | |
11906 | F: drivers/media/dvb-frontends/si2168* | |
11907 | ||
49cc629d HV |
11908 | SI470X FM RADIO RECEIVER I2C DRIVER |
11909 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11910 | L: linux-media@vger.kernel.org | |
11911 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11912 | W: https://linuxtv.org |
49cc629d HV |
11913 | S: Odd Fixes |
11914 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
11915 | ||
11916 | SI470X FM RADIO RECEIVER USB DRIVER | |
11917 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11918 | L: linux-media@vger.kernel.org | |
11919 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11920 | W: https://linuxtv.org |
49cc629d HV |
11921 | S: Maintained |
11922 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
11923 | F: drivers/media/radio/si470x/radio-si470x.h | |
11924 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
11925 | ||
c937ca03 EV |
11926 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
11927 | M: Eduardo Valentin <edubezval@gmail.com> | |
11928 | L: linux-media@vger.kernel.org | |
11929 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11930 | W: https://linuxtv.org |
c937ca03 | 11931 | S: Odd Fixes |
99995ded | 11932 | F: drivers/media/radio/si4713/si4713.? |
c937ca03 EV |
11933 | |
11934 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
11935 | M: Eduardo Valentin <edubezval@gmail.com> | |
11936 | L: linux-media@vger.kernel.org | |
11937 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11938 | W: https://linuxtv.org |
c937ca03 | 11939 | S: Odd Fixes |
99995ded DR |
11940 | F: drivers/media/radio/si4713/radio-platform-si4713.c |
11941 | ||
11942 | SI4713 FM RADIO TRANSMITTER USB DRIVER | |
11943 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
11944 | L: linux-media@vger.kernel.org | |
11945 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 11946 | W: https://linuxtv.org |
99995ded DR |
11947 | S: Maintained |
11948 | F: drivers/media/radio/si4713/radio-usb-si4713.c | |
c937ca03 | 11949 | |
beb91d46 | 11950 | SIANO DVB DRIVER |
5dc8a864 MCC |
11951 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
11952 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
beb91d46 | 11953 | L: linux-media@vger.kernel.org |
a825eaec | 11954 | W: https://linuxtv.org |
beb91d46 MCC |
11955 | T: git git://linuxtv.org/media_tree.git |
11956 | S: Odd fixes | |
11957 | F: drivers/media/common/siano/ | |
beb91d46 | 11958 | F: drivers/media/usb/siano/ |
beb91d46 | 11959 | F: drivers/media/usb/siano/ |
14430813 | 11960 | F: drivers/media/mmc/siano/ |
beb91d46 | 11961 | |
cef9dd85 HG |
11962 | SILEAD TOUCHSCREEN DRIVER |
11963 | M: Hans de Goede <hdegoede@redhat.com> | |
11964 | L: linux-input@vger.kernel.org | |
11965 | L: platform-driver-x86@vger.kernel.org | |
11966 | S: Maintained | |
11967 | F: drivers/input/touchscreen/silead.c | |
11968 | F: drivers/platform/x86/silead_dmi.c | |
11969 | ||
82abbea7 RD |
11970 | SILICON MOTION SM712 FRAME BUFFER DRIVER |
11971 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
11972 | M: Teddy Wang <teddy.wang@siliconmotion.com> | |
11973 | M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk> | |
6f15b602 HG |
11974 | L: linux-fbdev@vger.kernel.org |
11975 | S: Maintained | |
82abbea7 RD |
11976 | F: drivers/video/fbdev/sm712* |
11977 | F: Documentation/fb/sm712fb.txt | |
b618b69c | 11978 | |
6349d997 | 11979 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 11980 | M: Len Brown <lenb@kernel.org> |
6349d997 LB |
11981 | L: sfi-devel@simplefirmware.org |
11982 | W: http://simplefirmware.org/ | |
11983 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 11984 | S: Supported |
943fc810 | 11985 | F: arch/x86/platform/sfi/ |
6349d997 LB |
11986 | F: drivers/sfi/ |
11987 | F: include/linux/sfi*.h | |
e2d1d6c0 | 11988 | |
82abbea7 RD |
11989 | SIMPLEFB FB DRIVER |
11990 | M: Hans de Goede <hdegoede@redhat.com> | |
11991 | L: linux-fbdev@vger.kernel.org | |
11992 | S: Maintained | |
11993 | F: Documentation/devicetree/bindings/display/simple-framebuffer.txt | |
11994 | F: drivers/video/fbdev/simplefb.c | |
11995 | F: include/linux/platform_data/simplefb.h | |
11996 | ||
1da177e4 LT |
11997 | SIMTEC EB110ATX (Chalice CATS) |
11998 | P: Ben Dooks | |
b16957c6 BD |
11999 | P: Vincent Sanders <vince@simtec.co.uk> |
12000 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
12001 | W: http://www.simtec.co.uk/products/EB110ATX/ |
12002 | S: Supported | |
12003 | ||
12004 | SIMTEC EB2410ITX (BAST) | |
12005 | P: Ben Dooks | |
b16957c6 BD |
12006 | P: Vincent Sanders <vince@simtec.co.uk> |
12007 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
12008 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
12009 | S: Supported | |
15dba387 JP |
12010 | F: arch/arm/mach-s3c24xx/mach-bast.c |
12011 | F: arch/arm/mach-s3c24xx/bast-ide.c | |
12012 | F: arch/arm/mach-s3c24xx/bast-irq.c | |
1da177e4 | 12013 | |
2c956a60 JD |
12014 | SIPHASH PRF ROUTINES |
12015 | M: Jason A. Donenfeld <Jason@zx2c4.com> | |
12016 | S: Maintained | |
12017 | F: lib/siphash.c | |
12018 | F: lib/test_siphash.c | |
12019 | F: include/linux/siphash.h | |
12020 | ||
92aab3c0 | 12021 | SIS 190 ETHERNET DRIVER |
8b58be88 | 12022 | M: Francois Romieu <romieu@fr.zoreil.com> |
92aab3c0 FR |
12023 | L: netdev@vger.kernel.org |
12024 | S: Maintained | |
8c7de408 | 12025 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 12026 | |
1da177e4 | 12027 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 12028 | M: Daniele Venzano <venza@brownhat.org> |
1da177e4 | 12029 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 12030 | L: netdev@vger.kernel.org |
1da177e4 | 12031 | S: Maintained |
8c7de408 | 12032 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
12033 | |
12034 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 12035 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 | 12036 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 12037 | S: Maintained |
679655da | 12038 | F: Documentation/fb/sisfb.txt |
8a61f013 | 12039 | F: drivers/video/fbdev/sis/ |
679655da | 12040 | F: include/video/sisfb.h |
1da177e4 LT |
12041 | |
12042 | SIS USB2VGA DRIVER | |
8b58be88 | 12043 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 LT |
12044 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
12045 | S: Maintained | |
679655da | 12046 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 12047 | |
415ad26d | 12048 | SLAB ALLOCATOR |
16e943bf | 12049 | M: Christoph Lameter <cl@linux.com> |
2ed1c525 | 12050 | M: Pekka Enberg <penberg@kernel.org> |
16e943bf CL |
12051 | M: David Rientjes <rientjes@google.com> |
12052 | M: Joonsoo Kim <iamjoonsoo.kim@lge.com> | |
12053 | M: Andrew Morton <akpm@linux-foundation.org> | |
415ad26d CL |
12054 | L: linux-mm@kvack.org |
12055 | S: Maintained | |
679655da | 12056 | F: include/linux/sl?b*.h |
16e943bf | 12057 | F: mm/sl?b* |
415ad26d | 12058 | |
9fab9787 | 12059 | SLEEPABLE READ-COPY UPDATE (SRCU) |
96a39bc4 | 12060 | M: Lai Jiangshan <jiangshanlai@gmail.com> |
9fab9787 | 12061 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
ab0afd6c | 12062 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
12063 | R: Steven Rostedt <rostedt@goodmis.org> |
12064 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
981c3a4f | 12065 | L: linux-kernel@vger.kernel.org |
9fab9787 PM |
12066 | W: http://www.rdrop.com/users/paulmck/RCU/ |
12067 | S: Supported | |
12068 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
4102adab PM |
12069 | F: include/linux/srcu.h |
12070 | F: kernel/rcu/srcu.c | |
9fab9787 | 12071 | |
66372841 CS |
12072 | SMACK SECURITY MODULE |
12073 | M: Casey Schaufler <casey@schaufler-ca.com> | |
12074 | L: linux-security-module@vger.kernel.org | |
12075 | W: http://schaufler-ca.com | |
ece38248 | 12076 | T: git git://github.com/cschaufler/smack-next |
66372841 | 12077 | S: Maintained |
a5606ced | 12078 | F: Documentation/admin-guide/LSM/Smack.rst |
66372841 CS |
12079 | F: security/smack/ |
12080 | ||
1da177e4 | 12081 | SMC91x ETHERNET DRIVER |
2f82af08 | 12082 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 12083 | S: Odd Fixes |
ae150435 | 12084 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 12085 | |
e8e31622 SA |
12086 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
12087 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
12088 | L: linux-media@vger.kernel.org | |
12089 | S: Maintained | |
14430813 | 12090 | F: drivers/media/i2c/smiapp/ |
b5dcee22 | 12091 | F: include/media/i2c/smiapp.h |
e8e31622 SA |
12092 | F: drivers/media/i2c/smiapp-pll.c |
12093 | F: drivers/media/i2c/smiapp-pll.h | |
fd2bfdc8 | 12094 | F: include/uapi/linux/smiapp.h |
a2cec3c0 | 12095 | F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt |
e8e31622 | 12096 | |
920fa1ff GR |
12097 | SMM665 HARDWARE MONITOR DRIVER |
12098 | M: Guenter Roeck <linux@roeck-us.net> | |
968ce1b1 | 12099 | L: linux-hwmon@vger.kernel.org |
920fa1ff GR |
12100 | S: Maintained |
12101 | F: Documentation/hwmon/smm665 | |
12102 | F: drivers/hwmon/smm665.c | |
12103 | ||
9df7305b | 12104 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 12105 | M: Steve Glendinning <steve.glendinning@shawell.net> |
968ce1b1 | 12106 | L: linux-hwmon@vger.kernel.org |
90b24cfb | 12107 | S: Maintained |
9df7305b SG |
12108 | F: Documentation/hwmon/emc2103 |
12109 | F: drivers/hwmon/emc2103.c | |
12110 | ||
a98d506c HG |
12111 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
12112 | M: Hans de Goede <hdegoede@redhat.com> | |
968ce1b1 | 12113 | L: linux-hwmon@vger.kernel.org |
a98d506c HG |
12114 | S: Supported |
12115 | F: Documentation/hwmon/sch5627 | |
12116 | F: drivers/hwmon/sch5627.c | |
12117 | ||
7683e9e5 LT |
12118 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
12119 | M: Steve Glendinning <steve.glendinning@shawell.net> | |
12120 | L: linux-fbdev@vger.kernel.org | |
12121 | S: Maintained | |
12122 | F: drivers/video/fbdev/smscufx.c | |
12123 | ||
6ea884db | 12124 | SMSC47B397 HARDWARE MONITOR DRIVER |
d8130624 | 12125 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 12126 | L: linux-hwmon@vger.kernel.org |
6ea884db | 12127 | S: Maintained |
679655da JP |
12128 | F: Documentation/hwmon/smsc47b397 |
12129 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 12130 | |
fd9abb3d | 12131 | SMSC911x ETHERNET DRIVER |
90b24cfb | 12132 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2cb37728 | 12133 | L: netdev@vger.kernel.org |
90b24cfb | 12134 | S: Maintained |
679655da | 12135 | F: include/linux/smsc911x.h |
ae150435 | 12136 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
12137 | |
12138 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 12139 | M: Steve Glendinning <steve.glendinning@shawell.net> |
fd9abb3d | 12140 | L: netdev@vger.kernel.org |
90b24cfb | 12141 | S: Maintained |
ae150435 | 12142 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 12143 | |
668acf32 | 12144 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 12145 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
661263b5 | 12146 | L: linux-media@vger.kernel.org |
275ffde4 | 12147 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 12148 | S: Maintained |
90d72ac6 MCC |
12149 | F: include/media/soc* |
12150 | F: drivers/media/i2c/soc_camera/ | |
12151 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 12152 | |
e2d1d6c0 | 12153 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 12154 | M: Chris Boot <bootc@bootc.net> |
e2d1d6c0 | 12155 | S: Maintained |
679655da | 12156 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 12157 | |
82abbea7 RD |
12158 | SOFT-ROCE DRIVER (rxe) |
12159 | M: Moni Shoua <monis@mellanox.com> | |
12160 | L: linux-rdma@vger.kernel.org | |
12161 | S: Supported | |
12162 | W: https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home | |
12163 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
12164 | F: drivers/infiniband/sw/rxe/ | |
12165 | F: include/uapi/rdma/rdma_user_rxe.h | |
12166 | ||
e3994db1 | 12167 | SOFTLOGIC 6x10 MPEG CODEC |
9661975d | 12168 | M: Bluecherry Maintainers <maintainers@bluecherrydvr.com> |
40662e72 | 12169 | M: Anton Sviridenko <anton@corp.bluecherry.net> |
9661975d | 12170 | M: Andrey Utkin <andrey.utkin@corp.bluecherry.net> |
5c1d6045 | 12171 | M: Andrey Utkin <andrey_utkin@fastmail.com> |
1f141f6b | 12172 | M: Ismael Luceno <ismael@iodev.co.uk> |
e3994db1 JP |
12173 | L: linux-media@vger.kernel.org |
12174 | S: Supported | |
12175 | F: drivers/media/pci/solo6x10/ | |
12176 | ||
1da177e4 | 12177 | SOFTWARE RAID (Multiple Disks) SUPPORT |
c2f662eb | 12178 | M: Shaohua Li <shli@kernel.org> |
1da177e4 | 12179 | L: linux-raid@vger.kernel.org |
0f9ce866 | 12180 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git |
524418bb | 12181 | S: Supported |
679655da JP |
12182 | F: drivers/md/ |
12183 | F: include/linux/raid/ | |
c117ab84 | 12184 | F: include/uapi/linux/raid/ |
1da177e4 | 12185 | |
1da177e4 | 12186 | SONIC NETWORK DRIVER |
8b58be88 | 12187 | M: Thomas Bogendoerfer <tsbogend@alpha.franken.de> |
979b6c13 | 12188 | L: netdev@vger.kernel.org |
1da177e4 | 12189 | S: Maintained |
d9fb9f38 | 12190 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 12191 | |
61e115a5 | 12192 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 12193 | M: Michael Buesch <m@bues.ch> |
e7828b28 | 12194 | L: linux-wireless@vger.kernel.org |
61e115a5 | 12195 | S: Maintained |
679655da JP |
12196 | F: drivers/ssb/ |
12197 | F: include/linux/ssb/ | |
61e115a5 | 12198 | |
baf8532a | 12199 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 12200 | M: Alex Dubov <oakad@yahoo.com> |
baf8532a AD |
12201 | W: http://tifmxx.berlios.de/ |
12202 | S: Maintained | |
679655da | 12203 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 12204 | |
0ab30494 ML |
12205 | SONY MEMORYSTICK STANDARD SUPPORT |
12206 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
12207 | S: Maintained | |
12208 | F: drivers/memstick/core/ms_block.* | |
12209 | ||
7683e9e5 LT |
12210 | SONY VAIO CONTROL DEVICE DRIVER |
12211 | M: Mattia Dongili <malattia@linux.it> | |
12212 | L: platform-driver-x86@vger.kernel.org | |
12213 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers | |
12214 | S: Maintained | |
12215 | F: Documentation/laptops/sony-laptop.txt | |
12216 | F: drivers/char/sonypi.c | |
12217 | F: drivers/platform/x86/sony-laptop.c | |
12218 | F: include/linux/sony-laptop.h | |
12219 | ||
1da177e4 | 12220 | SOUND |
8b58be88 | 12221 | M: Jaroslav Kysela <perex@perex.cz> |
d8130624 | 12222 | M: Takashi Iwai <tiwai@suse.com> |
93711660 | 12223 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
3126a179 | 12224 | W: http://www.alsa-project.org/ |
dde7ad8d | 12225 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 12226 | T: git git://git.alsa-project.org/alsa-kernel.git |
ff4a8f32 | 12227 | Q: http://patchwork.kernel.org/project/alsa-devel/list/ |
1da177e4 | 12228 | S: Maintained |
3126a179 JP |
12229 | F: Documentation/sound/ |
12230 | F: include/sound/ | |
c117ab84 | 12231 | F: include/uapi/sound/ |
679655da | 12232 | F: sound/ |
1da177e4 | 12233 | |
33bbe149 MB |
12234 | SOUND - COMPRESSED AUDIO |
12235 | M: Vinod Koul <vinod.koul@intel.com> | |
12236 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
12237 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git | |
12238 | S: Supported | |
f672f31a | 12239 | F: Documentation/sound/alsa/compress_offload.txt |
33bbe149 | 12240 | F: include/sound/compress_driver.h |
f672f31a | 12241 | F: include/uapi/sound/compress_* |
33bbe149 MB |
12242 | F: sound/core/compress_offload.c |
12243 | F: sound/soc/soc-compress.c | |
12244 | ||
7683e9e5 LT |
12245 | SOUND - DMAENGINE HELPERS |
12246 | M: Lars-Peter Clausen <lars@metafoo.de> | |
12247 | S: Supported | |
12248 | F: include/sound/dmaengine_pcm.h | |
12249 | F: sound/core/pcm_dmaengine.c | |
12250 | F: sound/soc/soc-generic-dmaengine-pcm.c | |
12251 | ||
bd903bde | 12252 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 12253 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 12254 | M: Mark Brown <broonie@kernel.org> |
86f14df8 | 12255 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 12256 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
b0b8daf7 | 12257 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 12258 | S: Supported |
181ad2a5 | 12259 | F: Documentation/devicetree/bindings/sound/ |
2820f615 | 12260 | F: Documentation/sound/alsa/soc/ |
7683e9e5 LT |
12261 | F: sound/soc/ |
12262 | F: include/sound/soc* | |
d7f8761b | 12263 | |
990a6a99 OS |
12264 | SP2 MEDIA DRIVER |
12265 | M: Olli Salonen <olli.salonen@iki.fi> | |
12266 | L: linux-media@vger.kernel.org | |
a825eaec | 12267 | W: https://linuxtv.org |
990a6a99 OS |
12268 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
12269 | S: Maintained | |
12270 | F: drivers/media/dvb-frontends/sp2* | |
12271 | ||
473321fc | 12272 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 12273 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 12274 | L: sparclinux@vger.kernel.org |
8a6e2535 | 12275 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
12276 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
12277 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 12278 | S: Maintained |
679655da | 12279 | F: arch/sparc/ |
7765b8bb | 12280 | F: drivers/sbus/ |
1da177e4 | 12281 | |
6404fcca DM |
12282 | SPARC SERIAL DRIVERS |
12283 | M: "David S. Miller" <davem@davemloft.net> | |
12284 | L: sparclinux@vger.kernel.org | |
08deed1e JP |
12285 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
12286 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 12287 | S: Maintained |
6816383a | 12288 | F: include/linux/sunserialcore.h |
df621252 | 12289 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
12290 | F: drivers/tty/serial/sunhv.c |
12291 | F: drivers/tty/serial/sunsab.c | |
12292 | F: drivers/tty/serial/sunsab.h | |
12293 | F: drivers/tty/serial/sunsu.c | |
12294 | F: drivers/tty/serial/sunzilog.c | |
12295 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 12296 | |
389325b4 CL |
12297 | SPARSE CHECKER |
12298 | M: "Christopher Li" <sparse@chrisli.org> | |
12299 | L: linux-sparse@vger.kernel.org | |
12300 | W: https://sparse.wiki.kernel.org/ | |
12301 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
12302 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
12303 | S: Maintained | |
12304 | F: include/linux/compiler.h | |
12305 | ||
7683e9e5 | 12306 | SPEAR CLOCK FRAMEWORK SUPPORT |
da89947b | 12307 | M: Viresh Kumar <vireshk@kernel.org> |
fbfa0748 | 12308 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
fc0c195a VK |
12309 | W: http://www.st.com/spear |
12310 | S: Maintained | |
7683e9e5 | 12311 | F: drivers/clk/spear/ |
fc0c195a | 12312 | |
7683e9e5 | 12313 | SPEAR PLATFORM SUPPORT |
da89947b | 12314 | M: Viresh Kumar <vireshk@kernel.org> |
7683e9e5 | 12315 | M: Shiraz Hashim <shiraz.linux.kernel@gmail.com> |
fbfa0748 | 12316 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
fc0c195a VK |
12317 | W: http://www.st.com/spear |
12318 | S: Maintained | |
7683e9e5 LT |
12319 | F: arch/arm/boot/dts/spear* |
12320 | F: arch/arm/mach-spear/ | |
fc0c195a | 12321 | |
e2796541 | 12322 | SPI NOR SUBSYSTEM |
b3bb6d6a | 12323 | M: Cyrille Pitchen <cyrille.pitchen@wedev4u.fr> |
e2796541 CP |
12324 | M: Marek Vasut <marek.vasut@gmail.com> |
12325 | L: linux-mtd@lists.infradead.org | |
12326 | W: http://www.linux-mtd.infradead.org/ | |
12327 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
6eab81e6 CP |
12328 | T: git git://git.infradead.org/linux-mtd.git spi-nor/fixes |
12329 | T: git git://git.infradead.org/l2-mtd.git spi-nor/next | |
e2796541 CP |
12330 | S: Maintained |
12331 | F: drivers/mtd/spi-nor/ | |
12332 | F: include/linux/mtd/spi-nor.h | |
12333 | ||
e2d1d6c0 | 12334 | SPI SUBSYSTEM |
b02e48f2 | 12335 | M: Mark Brown <broonie@kernel.org> |
dfbe403c | 12336 | L: linux-spi@vger.kernel.org |
e7e4e13c | 12337 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 12338 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 12339 | S: Maintained |
87306eb7 | 12340 | F: Documentation/devicetree/bindings/spi/ |
679655da JP |
12341 | F: Documentation/spi/ |
12342 | F: drivers/spi/ | |
12343 | F: include/linux/spi/ | |
c117ab84 | 12344 | F: include/uapi/linux/spi/ |
a43cd4bb | 12345 | F: tools/spi/ |
e2d1d6c0 | 12346 | |
2752e401 | 12347 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 | 12348 | M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp> |
2752e401 JL |
12349 | L: netdev@vger.kernel.org |
12350 | S: Supported | |
679655da | 12351 | F: Documentation/networking/spider_net.txt |
8df158ac | 12352 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 12353 | |
6b71016e SB |
12354 | SPMI SUBSYSTEM |
12355 | R: Stephen Boyd <sboyd@codeaurora.org> | |
12356 | L: linux-arm-msm@vger.kernel.org | |
12357 | F: Documentation/devicetree/bindings/spmi/ | |
12358 | F: drivers/spmi/ | |
12359 | F: include/dt-bindings/spmi/spmi.h | |
12360 | F: include/linux/spmi.h | |
12361 | F: include/trace/events/spmi.h | |
12362 | ||
e2d1d6c0 | 12363 | SPU FILE SYSTEM |
8b58be88 | 12364 | M: Jeremy Kerr <jk@ozlabs.org> |
a4724ed6 | 12365 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 RD |
12366 | W: http://www.ibm.com/developerworks/power/cell/ |
12367 | S: Supported | |
679655da JP |
12368 | F: Documentation/filesystems/spufs.txt |
12369 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 12370 | |
fc555841 | 12371 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 12372 | M: Phillip Lougher <phillip@squashfs.org.uk> |
fc555841 PL |
12373 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
12374 | W: http://squashfs.org.uk | |
9f273c24 | 12375 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git |
fc555841 | 12376 | S: Maintained |
679655da JP |
12377 | F: Documentation/filesystems/squashfs.txt |
12378 | F: fs/squashfs/ | |
fc555841 | 12379 | |
1da177e4 | 12380 | SRM (Alpha) environment access |
8b58be88 | 12381 | M: Jan-Benedict Glaw <jbglaw@lug-owl.de> |
1da177e4 | 12382 | S: Maintained |
679655da | 12383 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 12384 | |
26e9a397 | 12385 | STABLE BRANCH |
879a5a00 | 12386 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
bc7a2f3a | 12387 | L: stable@vger.kernel.org |
879a5a00 | 12388 | S: Supported |
8c27ceff | 12389 | F: Documentation/process/stable-kernel-rules.rst |
e2d1d6c0 | 12390 | |
ebd3d010 JP |
12391 | STAGING - COMEDI |
12392 | M: Ian Abbott <abbotti@mev.co.uk> | |
81b884c9 | 12393 | M: H Hartley Sweeten <hsweeten@visionengravers.com> |
ebd3d010 JP |
12394 | S: Odd Fixes |
12395 | F: drivers/staging/comedi/ | |
12396 | ||
a0138163 JP |
12397 | STAGING - FLARION FT1000 DRIVERS |
12398 | M: Marek Belisko <marek.belisko@gmail.com> | |
12399 | S: Odd Fixes | |
12400 | F: drivers/staging/ft1000/ | |
12401 | ||
6c1bb424 | 12402 | STAGING - INDUSTRIAL IO |
030a13d7 | 12403 | M: Jonathan Cameron <jic23@kernel.org> |
a0138163 | 12404 | L: linux-iio@vger.kernel.org |
6c1bb424 | 12405 | S: Odd Fixes |
5291582d | 12406 | F: Documentation/devicetree/bindings/staging/iio/ |
6c1bb424 JP |
12407 | F: drivers/staging/iio/ |
12408 | ||
a0138163 JP |
12409 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
12410 | M: Jarod Wilson <jarod@wilsonet.com> | |
12411 | W: http://www.lirc.org/ | |
12412 | S: Odd Fixes | |
b2b0186d | 12413 | F: drivers/staging/media/lirc/ |
a0138163 | 12414 | |
f5e5de1e OD |
12415 | STAGING - LUSTRE PARALLEL FILESYSTEM |
12416 | M: Oleg Drokin <oleg.drokin@intel.com> | |
12417 | M: Andreas Dilger <andreas.dilger@intel.com> | |
8701dbf9 | 12418 | M: James Simmons <jsimmons@infradead.org> |
d98229f0 AD |
12419 | L: lustre-devel@lists.lustre.org (moderated for non-subscribers) |
12420 | W: http://wiki.lustre.org/ | |
f5e5de1e OD |
12421 | S: Maintained |
12422 | F: drivers/staging/lustre | |
12423 | ||
7c6b6c71 MD |
12424 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
12425 | M: Marc Dietrich <marvin24@gmx.de> | |
12426 | L: ac100@lists.launchpad.net (moderated for non-subscribers) | |
5d96bf4d | 12427 | L: linux-tegra@vger.kernel.org |
7c6b6c71 MD |
12428 | S: Maintained |
12429 | F: drivers/staging/nvec/ | |
12430 | ||
53c43c5c GKH |
12431 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
12432 | M: Jens Frederich <jfrederich@gmail.com> | |
12433 | M: Daniel Drake <dsd@laptop.org> | |
12434 | M: Jon Nettleton <jon.nettleton@gmail.com> | |
12435 | W: http://wiki.laptop.org/go/DCON | |
12436 | S: Maintained | |
12437 | F: drivers/staging/olpc_dcon/ | |
12438 | ||
a0138163 JP |
12439 | STAGING - REALTEK RTL8712U DRIVERS |
12440 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
12441 | M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>. | |
12442 | S: Odd Fixes | |
12443 | F: drivers/staging/rtl8712/ | |
12444 | ||
980ac4d7 SM |
12445 | STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER |
12446 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> | |
12447 | M: Teddy Wang <teddy.wang@siliconmotion.com> | |
80567564 | 12448 | M: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk> |
980ac4d7 SM |
12449 | L: linux-fbdev@vger.kernel.org |
12450 | S: Maintained | |
12451 | F: drivers/staging/sm750fb/ | |
12452 | ||
a0138163 JP |
12453 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER |
12454 | M: William Hubbs <w.d.hubbs@gmail.com> | |
12455 | M: Chris Brannon <chris@the-brannons.com> | |
d33bce31 | 12456 | M: Kirk Reiser <kirk@reisers.ca> |
a0138163 | 12457 | M: Samuel Thibault <samuel.thibault@ens-lyon.org> |
e6a152ef | 12458 | L: speakup@linux-speakup.org |
a0138163 JP |
12459 | W: http://www.linux-speakup.org/ |
12460 | S: Odd Fixes | |
12461 | F: drivers/staging/speakup/ | |
12462 | ||
b3e871ce JP |
12463 | STAGING - VIA VT665X DRIVERS |
12464 | M: Forest Bond <forest@alittletooquiet.net> | |
12465 | S: Odd Fixes | |
12466 | F: drivers/staging/vt665?/ | |
12467 | ||
a30baec1 | 12468 | STAGING - WILC1000 WIFI DRIVER |
d9a85940 AS |
12469 | M: Aditya Shankar <aditya.shankar@microchip.com> |
12470 | M: Ganesh Krishna <ganesh.krishna@microchip.com> | |
a30baec1 JK |
12471 | L: linux-wireless@vger.kernel.org |
12472 | S: Supported | |
12473 | F: drivers/staging/wilc1000/ | |
12474 | ||
709bcb07 | 12475 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 12476 | M: Arnaud Patard <arnaud.patard@rtp-net.org> |
709bcb07 JP |
12477 | S: Odd Fixes |
12478 | F: drivers/staging/xgifb/ | |
12479 | ||
7683e9e5 LT |
12480 | STAGING SUBSYSTEM |
12481 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
12482 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git | |
12483 | L: devel@driverdev.osuosl.org | |
12484 | S: Supported | |
12485 | F: drivers/staging/ | |
12486 | ||
1da177e4 | 12487 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 12488 | M: Ion Badulescu <ionut@badula.org> |
b4f90189 | 12489 | S: Odd Fixes |
9bba23b0 | 12490 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 12491 | |
82abbea7 RD |
12492 | STI CEC DRIVER |
12493 | M: Benjamin Gaignard <benjamin.gaignard@linaro.org> | |
12494 | S: Maintained | |
12495 | F: drivers/staging/media/st-cec/ | |
12496 | F: Documentation/devicetree/bindings/media/stih-cec.txt | |
12497 | ||
12498 | STK1160 USB VIDEO CAPTURE DRIVER | |
12499 | M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> | |
12500 | L: linux-media@vger.kernel.org | |
12501 | T: git git://linuxtv.org/media_tree.git | |
12502 | S: Maintained | |
12503 | F: drivers/media/usb/stk1160/ | |
12504 | ||
12505 | STMMAC ETHERNET DRIVER | |
12506 | M: Giuseppe Cavallaro <peppe.cavallaro@st.com> | |
12507 | M: Alexandre Torgue <alexandre.torgue@st.com> | |
12508 | L: netdev@vger.kernel.org | |
12509 | W: http://www.stlinux.com | |
12510 | S: Supported | |
12511 | F: drivers/net/ethernet/stmicro/stmmac/ | |
12512 | ||
e2d1d6c0 | 12513 | SUN3/3X |
8b58be88 | 12514 | M: Sam Creasey <sammy@sammy.net> |
e2d1d6c0 RD |
12515 | W: http://sammy.net/sun3/ |
12516 | S: Maintained | |
679655da JP |
12517 | F: arch/m68k/kernel/*sun3* |
12518 | F: arch/m68k/sun3*/ | |
12519 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 12520 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 12521 | |
af6a5af8 HG |
12522 | SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER |
12523 | M: Hans de Goede <hdegoede@redhat.com> | |
12524 | L: linux-input@vger.kernel.org | |
12525 | S: Maintained | |
12526 | F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt | |
12527 | F: drivers/input/keyboard/sun4i-lradc-keys.c | |
12528 | ||
2bc9ff01 DK |
12529 | SUNDANCE NETWORK DRIVER |
12530 | M: Denis Kirjanov <kda@linux-powerpc.org> | |
12531 | L: netdev@vger.kernel.org | |
12532 | S: Maintained | |
12533 | F: drivers/net/ethernet/dlink/sundance.c | |
12534 | ||
2cbb12a4 | 12535 | SUPERH |
114bf37e RF |
12536 | M: Yoshinori Sato <ysato@users.sourceforge.jp> |
12537 | M: Rich Felker <dalias@libc.org> | |
2cbb12a4 | 12538 | L: linux-sh@vger.kernel.org |
8a6e2535 | 12539 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
114bf37e | 12540 | S: Maintained |
066069e1 | 12541 | F: Documentation/sh/ |
679655da | 12542 | F: arch/sh/ |
066069e1 | 12543 | F: drivers/sh/ |
1da177e4 | 12544 | |
4480f15b | 12545 | SUSPEND TO RAM |
7fb06082 | 12546 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
8b58be88 JP |
12547 | M: Len Brown <len.brown@intel.com> |
12548 | M: Pavel Machek <pavel@ucw.cz> | |
bf1c138e | 12549 | L: linux-pm@vger.kernel.org |
68656443 | 12550 | B: https://bugzilla.kernel.org |
e2d1d6c0 | 12551 | S: Supported |
679655da JP |
12552 | F: Documentation/power/ |
12553 | F: arch/x86/kernel/acpi/ | |
12554 | F: drivers/base/power/ | |
12555 | F: kernel/power/ | |
12556 | F: include/linux/suspend.h | |
12557 | F: include/linux/freezer.h | |
12558 | F: include/linux/pm.h | |
1da177e4 LT |
12559 | |
12560 | SVGA HANDLING | |
8b58be88 | 12561 | M: Martin Mares <mj@ucw.cz> |
1da177e4 LT |
12562 | L: linux-video@atrey.karlin.mff.cuni.cz |
12563 | S: Maintained | |
679655da JP |
12564 | F: Documentation/svga.txt |
12565 | F: arch/x86/boot/video* | |
1da177e4 | 12566 | |
6e28b761 KRW |
12567 | SWIOTLB SUBSYSTEM |
12568 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
12569 | L: linux-kernel@vger.kernel.org | |
9f273c24 | 12570 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git |
6e28b761 KRW |
12571 | S: Supported |
12572 | F: lib/swiotlb.c | |
12573 | F: arch/*/kernel/pci-swiotlb.c | |
12574 | F: include/linux/swiotlb.h | |
12575 | ||
007f790c JP |
12576 | SWITCHDEV |
12577 | M: Jiri Pirko <jiri@resnulli.us> | |
f38c5ad7 | 12578 | M: Ivan Vecera <ivecera@redhat.com> |
007f790c JP |
12579 | L: netdev@vger.kernel.org |
12580 | S: Supported | |
12581 | F: net/switchdev/ | |
12582 | F: include/net/switchdev.h | |
12583 | ||
82abbea7 RD |
12584 | SYNC FILE FRAMEWORK |
12585 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
12586 | R: Gustavo Padovan <gustavo@padovan.org> | |
12587 | S: Maintained | |
12588 | L: linux-media@vger.kernel.org | |
12589 | L: dri-devel@lists.freedesktop.org | |
12590 | F: drivers/dma-buf/sync_* | |
12591 | F: drivers/dma-buf/dma-fence* | |
12592 | F: drivers/dma-buf/sw_sync.c | |
12593 | F: include/linux/sync_file.h | |
12594 | F: include/uapi/linux/sync_file.h | |
12595 | F: Documentation/sync_file.txt | |
12596 | T: git git://anongit.freedesktop.org/drm/drm-misc | |
12597 | ||
db8e35d5 VG |
12598 | SYNOPSYS ARC ARCHITECTURE |
12599 | M: Vineet Gupta <vgupta@synopsys.com> | |
30b9dbee | 12600 | L: linux-snps-arc@lists.infradead.org |
db8e35d5 VG |
12601 | S: Supported |
12602 | F: arch/arc/ | |
9b28829d | 12603 | F: Documentation/devicetree/bindings/arc/* |
2d799dde | 12604 | F: Documentation/devicetree/bindings/interrupt-controller/snps,arc* |
c4c9a040 | 12605 | F: drivers/clocksource/arc_timer.c |
c6a0fe4a | 12606 | F: drivers/tty/serial/arc_uart.c |
b7182d1a | 12607 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git |
db8e35d5 | 12608 | |
556cc1c5 AB |
12609 | SYNOPSYS ARC SDP platform support |
12610 | M: Alexey Brodkin <abrodkin@synopsys.com> | |
12611 | S: Supported | |
12612 | F: arch/arc/plat-axs10x | |
12613 | F: arch/arc/boot/dts/ax* | |
12614 | F: Documentation/devicetree/bindings/arc/axs10* | |
12615 | ||
82abbea7 RD |
12616 | SYNOPSYS DESIGNWARE DMAC DRIVER |
12617 | M: Viresh Kumar <vireshk@kernel.org> | |
12618 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> | |
12619 | S: Maintained | |
12620 | F: include/linux/dma/dw.h | |
12621 | F: include/linux/platform_data/dma-dw.h | |
12622 | F: drivers/dma/dw/ | |
12623 | ||
12624 | SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER | |
12625 | M: Jie Deng <jiedeng@synopsys.com> | |
12626 | L: netdev@vger.kernel.org | |
12627 | S: Supported | |
12628 | F: drivers/net/ethernet/synopsys/ | |
12629 | ||
12630 | SYNOPSYS DESIGNWARE I2C DRIVER | |
12631 | M: Jarkko Nikula <jarkko.nikula@linux.intel.com> | |
12632 | R: Andy Shevchenko <andriy.shevchenko@linux.intel.com> | |
12633 | R: Mika Westerberg <mika.westerberg@linux.intel.com> | |
12634 | L: linux-i2c@vger.kernel.org | |
12635 | S: Maintained | |
12636 | F: drivers/i2c/busses/i2c-designware-* | |
12637 | F: include/linux/platform_data/i2c-designware.h | |
12638 | ||
12639 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER | |
12640 | M: Jaehoon Chung <jh80.chung@samsung.com> | |
12641 | L: linux-mmc@vger.kernel.org | |
12642 | S: Maintained | |
12643 | F: drivers/mmc/host/dw_mmc* | |
12644 | ||
6c284c9a LJ |
12645 | SYSTEM CONFIGURATION (SYSCON) |
12646 | M: Lee Jones <lee.jones@linaro.org> | |
12647 | M: Arnd Bergmann <arnd@arndb.de> | |
12648 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git | |
12649 | S: Supported | |
12650 | F: drivers/mfd/syscon.c | |
12651 | ||
82abbea7 RD |
12652 | SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers |
12653 | M: Sudeep Holla <sudeep.holla@arm.com> | |
12654 | L: linux-arm-kernel@lists.infradead.org | |
12655 | S: Maintained | |
12656 | F: Documentation/devicetree/bindings/arm/arm,scpi.txt | |
12657 | F: drivers/clk/clk-scpi.c | |
12658 | F: drivers/cpufreq/scpi-cpufreq.c | |
12659 | F: drivers/firmware/arm_scpi.c | |
12660 | F: include/linux/scpi_protocol.h | |
12661 | ||
8c0984e5 SR |
12662 | SYSTEM RESET/SHUTDOWN DRIVERS |
12663 | M: Sebastian Reichel <sre@kernel.org> | |
8c0984e5 | 12664 | L: linux-pm@vger.kernel.org |
58db9505 | 12665 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git |
8c0984e5 SR |
12666 | S: Maintained |
12667 | F: Documentation/devicetree/bindings/power/reset/ | |
12668 | F: drivers/power/reset/ | |
12669 | ||
82abbea7 RD |
12670 | SYSTEM TRACE MODULE CLASS |
12671 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> | |
12672 | S: Maintained | |
12673 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git | |
12674 | F: Documentation/trace/stm.txt | |
12675 | F: drivers/hwtracing/stm/ | |
12676 | F: include/linux/stm.h | |
12677 | F: include/uapi/linux/stm.h | |
12678 | ||
1da177e4 | 12679 | SYSV FILESYSTEM |
8b58be88 | 12680 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 | 12681 | S: Maintained |
679655da JP |
12682 | F: Documentation/filesystems/sysv-fs.txt |
12683 | F: fs/sysv/ | |
12684 | F: include/linux/sysv_fs.h | |
1da177e4 | 12685 | |
86cfa7fc | 12686 | TARGET SUBSYSTEM |
9c3646d1 | 12687 | M: "Nicholas A. Bellinger" <nab@linux-iscsi.org> |
86cfa7fc | 12688 | L: linux-scsi@vger.kernel.org |
b9f5edc2 | 12689 | L: target-devel@vger.kernel.org |
86cfa7fc | 12690 | W: http://www.linux-iscsi.org |
cf015e9f | 12691 | W: http://groups.google.com/group/linux-iscsi-target-dev |
452cf324 | 12692 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
12693 | S: Supported |
12694 | F: drivers/target/ | |
12695 | F: include/target/ | |
12696 | F: Documentation/target/ | |
12697 | ||
4e68852d | 12698 | TASKSTATS STATISTICS INTERFACE |
185e595f | 12699 | M: Balbir Singh <bsingharora@gmail.com> |
4e68852d | 12700 | S: Maintained |
679655da JP |
12701 | F: Documentation/accounting/taskstats* |
12702 | F: include/linux/taskstats* | |
12703 | F: kernel/taskstats.c | |
4e68852d | 12704 | |
6b2af241 | 12705 | TC subsystem |
f935f3f8 | 12706 | M: Jamal Hadi Salim <jhs@mojatatu.com> |
7ab273be | 12707 | M: Cong Wang <xiyou.wangcong@gmail.com> |
b603aa4d | 12708 | M: Jiri Pirko <jiri@resnulli.us> |
781b456a SH |
12709 | L: netdev@vger.kernel.org |
12710 | S: Maintained | |
679655da | 12711 | F: include/net/pkt_cls.h |
6b2af241 JP |
12712 | F: include/net/pkt_sched.h |
12713 | F: include/net/tc_act/ | |
c117ab84 | 12714 | F: include/uapi/linux/pkt_cls.h |
6b2af241 JP |
12715 | F: include/uapi/linux/pkt_sched.h |
12716 | F: include/uapi/linux/tc_act/ | |
12717 | F: include/uapi/linux/tc_ematch/ | |
679655da | 12718 | F: net/sched/ |
781b456a | 12719 | |
5067f08a | 12720 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
12721 | M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com> |
12722 | M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com> | |
5067f08a WHSE |
12723 | W: http://tcp-lp-mod.sourceforge.net/ |
12724 | S: Maintained | |
679655da | 12725 | F: net/ipv4/tcp_lp.c |
5067f08a | 12726 | |
91952bc0 AP |
12727 | TDA10071 MEDIA DRIVER |
12728 | M: Antti Palosaari <crope@iki.fi> | |
12729 | L: linux-media@vger.kernel.org | |
a825eaec | 12730 | W: https://linuxtv.org |
91952bc0 AP |
12731 | W: http://palosaari.fi/linux/ |
12732 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
12733 | T: git git://linuxtv.org/anttip/media_tree.git | |
12734 | S: Maintained | |
12735 | F: drivers/media/dvb-frontends/tda10071* | |
12736 | ||
12737 | TDA18212 MEDIA DRIVER | |
12738 | M: Antti Palosaari <crope@iki.fi> | |
12739 | L: linux-media@vger.kernel.org | |
a825eaec | 12740 | W: https://linuxtv.org |
91952bc0 AP |
12741 | W: http://palosaari.fi/linux/ |
12742 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
12743 | T: git git://linuxtv.org/anttip/media_tree.git | |
12744 | S: Maintained | |
12745 | F: drivers/media/tuners/tda18212* | |
12746 | ||
12747 | TDA18218 MEDIA DRIVER | |
12748 | M: Antti Palosaari <crope@iki.fi> | |
12749 | L: linux-media@vger.kernel.org | |
a825eaec | 12750 | W: https://linuxtv.org |
91952bc0 AP |
12751 | W: http://palosaari.fi/linux/ |
12752 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
12753 | T: git git://linuxtv.org/anttip/media_tree.git | |
12754 | S: Maintained | |
12755 | F: drivers/media/tuners/tda18218* | |
12756 | ||
3b2f6aba MK |
12757 | TDA18271 MEDIA DRIVER |
12758 | M: Michael Krufky <mkrufky@linuxtv.org> | |
12759 | L: linux-media@vger.kernel.org | |
a825eaec | 12760 | W: https://linuxtv.org |
3b2f6aba MK |
12761 | W: http://github.com/mkrufky |
12762 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
12763 | T: git git://linuxtv.org/mkrufky/tuners.git | |
12764 | S: Maintained | |
12765 | F: drivers/media/tuners/tda18271* | |
12766 | ||
e48307a9 MK |
12767 | TDA827x MEDIA DRIVER |
12768 | M: Michael Krufky <mkrufky@linuxtv.org> | |
12769 | L: linux-media@vger.kernel.org | |
a825eaec | 12770 | W: https://linuxtv.org |
e48307a9 MK |
12771 | W: http://github.com/mkrufky |
12772 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
12773 | T: git git://linuxtv.org/mkrufky/tuners.git | |
12774 | S: Maintained | |
12775 | F: drivers/media/tuners/tda8290.* | |
12776 | ||
66cf9212 MK |
12777 | TDA8290 MEDIA DRIVER |
12778 | M: Michael Krufky <mkrufky@linuxtv.org> | |
12779 | L: linux-media@vger.kernel.org | |
a825eaec | 12780 | W: https://linuxtv.org |
66cf9212 MK |
12781 | W: http://github.com/mkrufky |
12782 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
12783 | T: git git://linuxtv.org/mkrufky/tuners.git | |
12784 | S: Maintained | |
12785 | F: drivers/media/tuners/tda8290.* | |
12786 | ||
4b9fba30 HV |
12787 | TDA9840 MEDIA DRIVER |
12788 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
12789 | L: linux-media@vger.kernel.org | |
12790 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 12791 | W: https://linuxtv.org |
4b9fba30 HV |
12792 | S: Maintained |
12793 | F: drivers/media/i2c/tda9840* | |
12794 | ||
2cb654fd | 12795 | TEA5761 TUNER DRIVER |
5dc8a864 MCC |
12796 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
12797 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
2cb654fd | 12798 | L: linux-media@vger.kernel.org |
a825eaec | 12799 | W: https://linuxtv.org |
2cb654fd MCC |
12800 | T: git git://linuxtv.org/media_tree.git |
12801 | S: Odd fixes | |
12802 | F: drivers/media/tuners/tea5761.* | |
12803 | ||
12804 | TEA5767 TUNER DRIVER | |
5dc8a864 MCC |
12805 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
12806 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
2cb654fd | 12807 | L: linux-media@vger.kernel.org |
a825eaec | 12808 | W: https://linuxtv.org |
2cb654fd MCC |
12809 | T: git git://linuxtv.org/media_tree.git |
12810 | S: Maintained | |
12811 | F: drivers/media/tuners/tea5767.* | |
12812 | ||
4b9fba30 HV |
12813 | TEA6415C MEDIA DRIVER |
12814 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
12815 | L: linux-media@vger.kernel.org | |
12816 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 12817 | W: https://linuxtv.org |
4b9fba30 HV |
12818 | S: Maintained |
12819 | F: drivers/media/i2c/tea6415c* | |
12820 | ||
12821 | TEA6420 MEDIA DRIVER | |
12822 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
12823 | L: linux-media@vger.kernel.org | |
12824 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 12825 | W: https://linuxtv.org |
4b9fba30 HV |
12826 | S: Maintained |
12827 | F: drivers/media/i2c/tea6420* | |
12828 | ||
3d249d4c | 12829 | TEAM DRIVER |
dca9ab92 | 12830 | M: Jiri Pirko <jiri@resnulli.us> |
3d249d4c JP |
12831 | L: netdev@vger.kernel.org |
12832 | S: Supported | |
12833 | F: drivers/net/team/ | |
12834 | F: include/linux/if_team.h | |
c117ab84 | 12835 | F: include/uapi/linux/if_team.h |
3d249d4c | 12836 | |
7d029125 | 12837 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
9c3646d1 | 12838 | M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com> |
7d029125 VD |
12839 | S: Maintained |
12840 | F: arch/x86/platform/ts5500/ | |
12841 | ||
40ad4a30 SY |
12842 | TECHNOTREND USB IR RECEIVER |
12843 | M: Sean Young <sean@mess.org> | |
12844 | L: linux-media@vger.kernel.org | |
12845 | S: Maintained | |
12846 | F: drivers/media/rc/ttusbir.c | |
12847 | ||
82abbea7 RD |
12848 | TEE SUBSYSTEM |
12849 | M: Jens Wiklander <jens.wiklander@linaro.org> | |
12850 | S: Maintained | |
12851 | F: include/linux/tee_drv.h | |
12852 | F: include/uapi/linux/tee.h | |
12853 | F: drivers/tee/ | |
12854 | F: Documentation/tee.txt | |
12855 | ||
adabdb0c | 12856 | TEGRA ARCHITECTURE SUPPORT |
adabdb0c | 12857 | M: Thierry Reding <thierry.reding@gmail.com> |
a06eb006 | 12858 | M: Jonathan Hunter <jonathanh@nvidia.com> |
84b9414b | 12859 | L: linux-tegra@vger.kernel.org |
fd117cd1 | 12860 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
b779b88d | 12861 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git |
84b9414b | 12862 | S: Supported |
bbbe96ed | 12863 | N: [^a-z]tegra |
84b9414b | 12864 | |
adabdb0c SW |
12865 | TEGRA CLOCK DRIVER |
12866 | M: Peter De Schrijver <pdeschrijver@nvidia.com> | |
12867 | M: Prashant Gaikwad <pgaikwad@nvidia.com> | |
12868 | S: Supported | |
12869 | F: drivers/clk/tegra/ | |
12870 | ||
86e486a0 | 12871 | TEGRA DMA DRIVERS |
adabdb0c | 12872 | M: Laxman Dewangan <ldewangan@nvidia.com> |
86e486a0 | 12873 | M: Jon Hunter <jonathanh@nvidia.com> |
adabdb0c | 12874 | S: Supported |
86e486a0 | 12875 | F: drivers/dma/tegra* |
adabdb0c | 12876 | |
adabdb0c SW |
12877 | TEGRA I2C DRIVER |
12878 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
12879 | S: Supported | |
12880 | F: drivers/i2c/busses/i2c-tegra.c | |
12881 | ||
12882 | TEGRA IOMMU DRIVERS | |
12883 | M: Hiroshi Doyu <hdoyu@nvidia.com> | |
12884 | S: Supported | |
12885 | F: drivers/iommu/tegra* | |
12886 | ||
12887 | TEGRA KBC DRIVER | |
12888 | M: Rakesh Iyer <riyer@nvidia.com> | |
12889 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
12890 | S: Supported | |
12891 | F: drivers/input/keyboard/tegra-kbc.c | |
12892 | ||
adabdb0c SW |
12893 | TEGRA PWM DRIVER |
12894 | M: Thierry Reding <thierry.reding@gmail.com> | |
12895 | S: Supported | |
12896 | F: drivers/pwm/pwm-tegra.c | |
12897 | ||
12898 | TEGRA SERIAL DRIVER | |
12899 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
12900 | S: Supported | |
12901 | F: drivers/tty/serial/serial-tegra.c | |
12902 | ||
12903 | TEGRA SPI DRIVER | |
12904 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
12905 | S: Supported | |
12906 | F: drivers/spi/spi-tegra* | |
12907 | ||
1a348ccc | 12908 | TEHUTI ETHERNET DRIVER |
8b58be88 | 12909 | M: Andy Gospodarek <andy@greyhouse.net> |
1a348ccc AG |
12910 | L: netdev@vger.kernel.org |
12911 | S: Supported | |
ef7f5429 | 12912 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 12913 | |
4e68852d | 12914 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 12915 | M: Mark Gross <mark.gross@intel.com> |
4e68852d | 12916 | S: Supported |
679655da | 12917 | F: drivers/char/tlclk.c |
4e68852d | 12918 | |
4480f15b | 12919 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 12920 | M: Chris Zankel <chris@zankel.net> |
f959ed2f CZ |
12921 | M: Max Filippov <jcmvbkbc@gmail.com> |
12922 | L: linux-xtensa@linux-xtensa.org | |
9f273c24 | 12923 | T: git git://github.com/czankel/xtensa-linux.git |
4e68852d | 12924 | S: Maintained |
679655da | 12925 | F: arch/xtensa/ |
3dc99857 | 12926 | F: drivers/irqchip/irq-xtensa-* |
4e68852d | 12927 | |
04f1024e NM |
12928 | Texas Instruments' System Control Interface (TISCI) Protocol Driver |
12929 | M: Nishanth Menon <nm@ti.com> | |
12930 | M: Tero Kristo <t-kristo@ti.com> | |
12931 | M: Santosh Shilimkar <ssantosh@kernel.org> | |
12932 | L: linux-arm-kernel@lists.infradead.org | |
12933 | S: Maintained | |
12934 | F: Documentation/devicetree/bindings/arm/keystone/ti,sci.txt | |
aa276781 NM |
12935 | F: drivers/firmware/ti_sci* |
12936 | F: include/linux/soc/ti/ti_sci_protocol.h | |
7cc119f2 DG |
12937 | F: Documentation/devicetree/bindings/soc/ti/sci-pm-domain.txt |
12938 | F: include/dt-bindings/genpd/k2g.h | |
52835d59 | 12939 | F: drivers/soc/ti/ti_sci_pm_domains.c |
18a00620 | 12940 | F: Documentation/devicetree/bindings/reset/ti,sci-reset.txt |
8f306cfe | 12941 | F: Documentation/devicetree/bindings/clock/ti,sci-clk.txt |
b745c079 | 12942 | F: drivers/clk/keystone/sci-clk.c |
28df169b | 12943 | F: drivers/reset/reset-ti-sci.c |
04f1024e | 12944 | |
5313ba66 HV |
12945 | THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER |
12946 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
12947 | L: linux-media@vger.kernel.org | |
12948 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 12949 | W: https://linuxtv.org |
5313ba66 HV |
12950 | S: Maintained |
12951 | F: drivers/media/radio/radio-raremono.c | |
12952 | ||
d3fb6955 | 12953 | THERMAL |
b75f0050 | 12954 | M: Zhang Rui <rui.zhang@intel.com> |
f14d1c24 | 12955 | M: Eduardo Valentin <edubezval@gmail.com> |
b75f0050 JP |
12956 | L: linux-pm@vger.kernel.org |
12957 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
12958 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git | |
12959 | Q: https://patchwork.kernel.org/project/linux-pm/list/ | |
12960 | S: Supported | |
12961 | F: drivers/thermal/ | |
12962 | F: include/linux/thermal.h | |
af6c9f16 | 12963 | F: include/uapi/linux/thermal.h |
b75f0050 JP |
12964 | F: include/linux/cpu_cooling.h |
12965 | F: Documentation/devicetree/bindings/thermal/ | |
d3fb6955 | 12966 | |
64e05d8b VK |
12967 | THERMAL/CPU_COOLING |
12968 | M: Amit Daniel Kachhap <amit.kachhap@gmail.com> | |
12969 | M: Viresh Kumar <viresh.kumar@linaro.org> | |
9a2172a8 | 12970 | M: Javi Merino <javi.merino@kernel.org> |
64e05d8b VK |
12971 | L: linux-pm@vger.kernel.org |
12972 | S: Supported | |
12973 | F: Documentation/thermal/cpu-cooling-api.txt | |
12974 | F: drivers/thermal/cpu_cooling.c | |
12975 | F: include/linux/cpu_cooling.h | |
12976 | ||
4e68852d | 12977 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 12978 | M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br> |
4e68852d | 12979 | L: ibm-acpi-devel@lists.sourceforge.net |
d0944853 | 12980 | L: platform-driver-x86@vger.kernel.org |
4e68852d AC |
12981 | W: http://ibm-acpi.sourceforge.net |
12982 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 12983 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 12984 | S: Maintained |
679655da | 12985 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 12986 | |
82abbea7 RD |
12987 | THUNDERBOLT DRIVER |
12988 | M: Andreas Noever <andreas.noever@gmail.com> | |
12989 | M: Michael Jamet <michael.jamet@intel.com> | |
12990 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
12991 | M: Yehezkel Bernat <yehezkel.bernat@intel.com> | |
12992 | S: Maintained | |
12993 | F: drivers/thunderbolt/ | |
12994 | ||
82abbea7 RD |
12995 | TI AM437X VPFE DRIVER |
12996 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> | |
12997 | L: linux-media@vger.kernel.org | |
12998 | W: https://linuxtv.org | |
12999 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
13000 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
13001 | S: Maintained | |
13002 | F: drivers/media/platform/am437x/ | |
13003 | ||
1b46f2a2 | 13004 | TI BANDGAP AND THERMAL DRIVER |
f14d1c24 | 13005 | M: Eduardo Valentin <edubezval@gmail.com> |
ef41be81 | 13006 | M: Keerthy <j-keerthy@ti.com> |
1b46f2a2 | 13007 | L: linux-pm@vger.kernel.org |
531ff13e | 13008 | L: linux-omap@vger.kernel.org |
5a723e81 | 13009 | S: Maintained |
794b2e25 | 13010 | F: drivers/thermal/ti-soc-thermal/ |
1b46f2a2 | 13011 | |
7683e9e5 LT |
13012 | TI BQ27XXX POWER SUPPLY DRIVER |
13013 | R: Andrew F. Davis <afd@ti.com> | |
13014 | F: include/linux/power/bq27xxx_battery.h | |
13015 | F: drivers/power/supply/bq27xxx_battery.c | |
13016 | F: drivers/power/supply/bq27xxx_battery_i2c.c | |
ccf963d3 | 13017 | |
0c7665c3 MF |
13018 | TI CDCE706 CLOCK DRIVER |
13019 | M: Max Filippov <jcmvbkbc@gmail.com> | |
13020 | S: Maintained | |
13021 | F: drivers/clk/clk-cdce706.c | |
13022 | ||
49b6a5e3 TK |
13023 | TI CLOCK DRIVER |
13024 | M: Tero Kristo <t-kristo@ti.com> | |
13025 | L: linux-omap@vger.kernel.org | |
13026 | S: Maintained | |
13027 | F: drivers/clk/ti/ | |
13028 | F: include/linux/clk/ti.h | |
13029 | ||
7683e9e5 LT |
13030 | TI DAVINCI MACHINE SUPPORT |
13031 | M: Sekhar Nori <nsekhar@ti.com> | |
13032 | M: Kevin Hilman <khilman@kernel.org> | |
13033 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
13034 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git | |
13035 | S: Supported | |
13036 | F: arch/arm/mach-davinci/ | |
13037 | F: drivers/i2c/busses/i2c-davinci.c | |
13038 | F: arch/arm/boot/dts/da850* | |
13039 | ||
13040 | TI DAVINCI SERIES GPIO DRIVER | |
13041 | M: Keerthy <j-keerthy@ti.com> | |
13042 | L: linux-gpio@vger.kernel.org | |
13043 | S: Maintained | |
13044 | F: Documentation/devicetree/bindings/gpio/gpio-davinci.txt | |
13045 | F: drivers/gpio/gpio-davinci.c | |
13046 | ||
13047 | TI DAVINCI SERIES MEDIA DRIVER | |
13048 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> | |
13049 | L: linux-media@vger.kernel.org | |
13050 | W: https://linuxtv.org | |
13051 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
13052 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
13053 | S: Maintained | |
13054 | F: drivers/media/platform/davinci/ | |
13055 | F: include/media/davinci/ | |
13056 | ||
f75cfbad | 13057 | TI ETHERNET SWITCH DRIVER (CPSW) |
f75cfbad GS |
13058 | R: Grygorii Strashko <grygorii.strashko@ti.com> |
13059 | L: linux-omap@vger.kernel.org | |
13060 | L: netdev@vger.kernel.org | |
13061 | S: Maintained | |
13062 | F: drivers/net/ethernet/ti/cpsw* | |
13063 | F: drivers/net/ethernet/ti/davinci* | |
13064 | ||
4020f2d7 | 13065 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 13066 | M: Alex Dubov <oakad@yahoo.com> |
795fb7e7 | 13067 | S: Maintained |
679655da JP |
13068 | F: drivers/misc/tifm* |
13069 | F: drivers/mmc/host/tifm_sd.c | |
13070 | F: include/linux/tifm.h | |
4020f2d7 | 13071 | |
e0c52404 | 13072 | TI KEYSTONE MULTICORE NAVIGATOR DRIVERS |
97215800 | 13073 | M: Santosh Shilimkar <ssantosh@kernel.org> |
e0c52404 SS |
13074 | L: linux-kernel@vger.kernel.org |
13075 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
13076 | S: Maintained | |
13077 | F: drivers/soc/ti/* | |
13078 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git | |
13079 | ||
152ad442 SR |
13080 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
13081 | M: M R Swami Reddy <mr.swami.reddy@ti.com> | |
d392dead | 13082 | M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com> |
152ad442 SR |
13083 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
13084 | S: Maintained | |
13085 | F: sound/soc/codecs/lm49453* | |
d392dead | 13086 | F: sound/soc/codecs/isabelle* |
152ad442 | 13087 | |
0edd807d KM |
13088 | TI LP855x BACKLIGHT DRIVER |
13089 | M: Milo Kim <milo.kim@ti.com> | |
13090 | S: Maintained | |
13091 | F: Documentation/backlight/lp855x-driver.txt | |
13092 | F: drivers/video/backlight/lp855x_bl.c | |
13093 | F: include/linux/platform_data/lp855x.h | |
13094 | ||
faf13f6d KM |
13095 | TI LP8727 CHARGER DRIVER |
13096 | M: Milo Kim <milo.kim@ti.com> | |
13097 | S: Maintained | |
8c0984e5 | 13098 | F: drivers/power/supply/lp8727_charger.c |
faf13f6d KM |
13099 | F: include/linux/platform_data/lp8727.h |
13100 | ||
22f1229f KM |
13101 | TI LP8788 MFD DRIVER |
13102 | M: Milo Kim <milo.kim@ti.com> | |
13103 | S: Maintained | |
13104 | F: drivers/iio/adc/lp8788_adc.c | |
13105 | F: drivers/leds/leds-lp8788.c | |
13106 | F: drivers/mfd/lp8788*.c | |
8c0984e5 | 13107 | F: drivers/power/supply/lp8788-charger.c |
22f1229f KM |
13108 | F: drivers/regulator/lp8788-*.c |
13109 | F: include/linux/mfd/lp8788*.h | |
13110 | ||
84640e27 KM |
13111 | TI NETCP ETHERNET DRIVER |
13112 | M: Wingman Kwok <w-kwok2@ti.com> | |
13113 | M: Murali Karicheri <m-karicheri2@ti.com> | |
13114 | L: netdev@vger.kernel.org | |
13115 | S: Maintained | |
13116 | F: drivers/net/ethernet/ti/netcp* | |
13117 | ||
217e0ca9 KC |
13118 | TI TAS571X FAMILY ASoC CODEC DRIVER |
13119 | M: Kevin Cernekee <cernekee@chromium.org> | |
13120 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
13121 | S: Odd Fixes | |
13122 | F: sound/soc/codecs/tas571x* | |
13123 | ||
82abbea7 RD |
13124 | TI TRF7970A NFC DRIVER |
13125 | M: Mark Greer <mgreer@animalcreek.com> | |
13126 | L: linux-wireless@vger.kernel.org | |
13127 | L: linux-nfc@lists.01.org (moderated for non-subscribers) | |
13128 | S: Supported | |
13129 | F: drivers/nfc/trf7970a.c | |
13130 | F: Documentation/devicetree/bindings/net/nfc/trf7970a.txt | |
13131 | ||
dd5e8e6b | 13132 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 13133 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
dd5e8e6b PU |
13134 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
13135 | S: Maintained | |
13136 | F: sound/soc/codecs/twl4030* | |
13137 | ||
7683e9e5 LT |
13138 | TI VPE/CAL DRIVERS |
13139 | M: Benoit Parrot <bparrot@ti.com> | |
13140 | L: linux-media@vger.kernel.org | |
13141 | W: http://linuxtv.org/ | |
13142 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
13143 | S: Maintained | |
13144 | F: drivers/media/platform/ti-vpe/ | |
13145 | ||
90921014 | 13146 | TI WILINK WIRELESS DRIVERS |
90921014 LC |
13147 | L: linux-wireless@vger.kernel.org |
13148 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
13149 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
13150 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
22d072f6 | 13151 | S: Orphan |
90921014 LC |
13152 | F: drivers/net/wireless/ti/ |
13153 | F: include/linux/wl12xx.h | |
13154 | ||
867e359b | 13155 | TILE ARCHITECTURE |
b9a279f6 | 13156 | M: Chris Metcalf <cmetcalf@mellanox.com> |
8c34d8d9 | 13157 | W: http://www.mellanox.com/repository/solutions/tile-scm/ |
7fa129cc | 13158 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git |
867e359b CM |
13159 | S: Supported |
13160 | F: arch/tile/ | |
6b940606 | 13161 | F: drivers/char/tile-srom.c |
5c770755 | 13162 | F: drivers/edac/tile_edac.c |
6b940606 CM |
13163 | F: drivers/net/ethernet/tile/ |
13164 | F: drivers/rtc/rtc-tile.c | |
13165 | F: drivers/tty/hvc/hvc_tile.c | |
b5c6c1a7 | 13166 | F: drivers/tty/serial/tilegx.c |
6b940606 CM |
13167 | F: drivers/usb/host/*-tilegx.c |
13168 | F: include/linux/usb/tilegx.h | |
867e359b | 13169 | |
82abbea7 RD |
13170 | TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER |
13171 | M: John Stultz <john.stultz@linaro.org> | |
13172 | M: Thomas Gleixner <tglx@linutronix.de> | |
13173 | R: Stephen Boyd <sboyd@codeaurora.org> | |
13174 | L: linux-kernel@vger.kernel.org | |
13175 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core | |
13176 | S: Supported | |
13177 | F: include/linux/clocksource.h | |
13178 | F: include/linux/time.h | |
13179 | F: include/linux/timex.h | |
13180 | F: include/uapi/linux/time.h | |
13181 | F: include/uapi/linux/timex.h | |
13182 | F: kernel/time/clocksource.c | |
13183 | F: kernel/time/time*.c | |
13184 | F: kernel/time/alarmtimer.c | |
13185 | F: kernel/time/ntp.c | |
13186 | F: tools/testing/selftests/timers/ | |
13187 | ||
13188 | TIPC NETWORK LAYER | |
13189 | M: Jon Maloy <jon.maloy@ericsson.com> | |
13190 | M: Ying Xue <ying.xue@windriver.com> | |
13191 | L: netdev@vger.kernel.org (core kernel code) | |
13192 | L: tipc-discussion@lists.sourceforge.net (user apps, general discussion) | |
13193 | W: http://tipc.sourceforge.net/ | |
13194 | S: Maintained | |
13195 | F: include/uapi/linux/tipc*.h | |
13196 | F: net/tipc/ | |
13197 | ||
13198 | TLAN NETWORK DRIVER | |
13199 | M: Samuel Chessman <chessman@tux.org> | |
13200 | L: tlan-devel@lists.sourceforge.net (subscribers-only) | |
13201 | W: http://sourceforge.net/projects/tlan/ | |
13202 | S: Maintained | |
13203 | F: Documentation/networking/tlan.txt | |
13204 | F: drivers/net/ethernet/ti/tlan.* | |
13205 | ||
13206 | TM6000 VIDEO4LINUX DRIVER | |
13207 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> | |
13208 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
13209 | L: linux-media@vger.kernel.org | |
13210 | W: https://linuxtv.org | |
13211 | T: git git://linuxtv.org/media_tree.git | |
13212 | S: Odd fixes | |
13213 | F: drivers/media/usb/tm6000/ | |
13214 | F: Documentation/media/v4l-drivers/tm6000* | |
13215 | ||
13216 | TMIO/SDHI MMC DRIVER | |
13217 | M: Wolfram Sang <wsa+renesas@sang-engineering.com> | |
13218 | L: linux-mmc@vger.kernel.org | |
13219 | S: Supported | |
13220 | F: drivers/mmc/host/tmio_mmc* | |
13221 | F: drivers/mmc/host/renesas_sdhi* | |
13222 | F: include/linux/mfd/tmio.h | |
13223 | ||
13224 | TMP401 HARDWARE MONITOR DRIVER | |
13225 | M: Guenter Roeck <linux@roeck-us.net> | |
13226 | L: linux-hwmon@vger.kernel.org | |
1da177e4 | 13227 | S: Maintained |
82abbea7 RD |
13228 | F: Documentation/hwmon/tmp401 |
13229 | F: drivers/hwmon/tmp401.c | |
13230 | ||
13231 | TMPFS (SHMEM FILESYSTEM) | |
13232 | M: Hugh Dickins <hughd@google.com> | |
13233 | L: linux-mm@kvack.org | |
13234 | S: Maintained | |
13235 | F: include/linux/shmem_fs.h | |
13236 | F: mm/shmem.c | |
1da177e4 | 13237 | |
d74db3b2 | 13238 | TOMOYO SECURITY MODULE |
8b58be88 JP |
13239 | M: Kentaro Takeda <takedakn@nttdata.co.jp> |
13240 | M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> | |
d03a5d88 TH |
13241 | L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English) |
13242 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English) | |
d74db3b2 KT |
13243 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
13244 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) | |
13245 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 13246 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 13247 | S: Maintained |
679655da | 13248 | F: security/tomoyo/ |
d74db3b2 | 13249 | |
9caeb532 | 13250 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 13251 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
d0944853 | 13252 | L: platform-driver-x86@vger.kernel.org |
9caeb532 HRK |
13253 | S: Maintained |
13254 | F: drivers/platform/x86/topstar-laptop.c | |
13255 | ||
1da177e4 | 13256 | TOSHIBA ACPI EXTRAS DRIVER |
0a63ca11 | 13257 | M: Azael Avalos <coproscefalo@gmail.com> |
d0944853 | 13258 | L: platform-driver-x86@vger.kernel.org |
0a63ca11 | 13259 | S: Maintained |
679655da | 13260 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 | 13261 | |
0a63ca11 AA |
13262 | TOSHIBA BLUETOOTH DRIVER |
13263 | M: Azael Avalos <coproscefalo@gmail.com> | |
13264 | L: platform-driver-x86@vger.kernel.org | |
13265 | S: Maintained | |
13266 | F: drivers/platform/x86/toshiba_bluetooth.c | |
13267 | ||
13268 | TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER | |
13269 | M: Azael Avalos <coproscefalo@gmail.com> | |
13270 | L: platform-driver-x86@vger.kernel.org | |
13271 | S: Maintained | |
13272 | F: drivers/platform/x86/toshiba_haps.c | |
13273 | ||
1da177e4 | 13274 | TOSHIBA SMM DRIVER |
8b58be88 | 13275 | M: Jonathan Buzzard <jonathan@buzzard.org.uk> |
1da177e4 LT |
13276 | W: http://www.buzzard.org.uk/toshiba/ |
13277 | S: Maintained | |
679655da JP |
13278 | F: drivers/char/toshiba.c |
13279 | F: include/linux/toshiba.h | |
c117ab84 | 13280 | F: include/uapi/linux/toshiba.h |
1da177e4 | 13281 | |
d32d9864 MR |
13282 | TOSHIBA TC358743 DRIVER |
13283 | M: Mats Randgaard <matrandg@cisco.com> | |
13284 | L: linux-media@vger.kernel.org | |
13285 | S: Maintained | |
13286 | F: drivers/media/i2c/tc358743* | |
b5dcee22 | 13287 | F: include/media/i2c/tc358743.h |
d32d9864 | 13288 | |
7683e9e5 LT |
13289 | TOSHIBA WMI HOTKEYS DRIVER |
13290 | M: Azael Avalos <coproscefalo@gmail.com> | |
13291 | L: platform-driver-x86@vger.kernel.org | |
13292 | S: Maintained | |
13293 | F: drivers/platform/x86/toshiba-wmi.c | |
13294 | ||
4e68852d | 13295 | TPM DEVICE DRIVER |
901486b8 | 13296 | M: Peter Huewe <peterhuewe@gmx.de> |
cbb2d5e4 | 13297 | M: Marcel Selhorst <tpmdd@selhorst.net> |
89adb83c | 13298 | M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> |
ce93b4b0 | 13299 | R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> |
383dec1f | 13300 | W: http://tpmdd.sourceforge.net |
63a10dfd | 13301 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
d9912846 JS |
13302 | Q: https://patchwork.kernel.org/project/tpmdd-devel/list/ |
13303 | T: git git://git.infradead.org/users/jjs/linux-tpmdd.git | |
4e68852d | 13304 | S: Maintained |
679655da | 13305 | F: drivers/char/tpm/ |
4e68852d | 13306 | |
1a0f1b27 AL |
13307 | TPM IBM_VTPM DEVICE DRIVER |
13308 | M: Ashley Lai <ashleydlai@gmail.com> | |
13309 | W: http://tpmdd.sourceforge.net | |
13310 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) | |
13311 | S: Maintained | |
13312 | F: drivers/char/tpm/tpm_ibmvtpm* | |
13313 | ||
d6f005a1 JP |
13314 | TRACING |
13315 | M: Steven Rostedt <rostedt@goodmis.org> | |
d6f005a1 | 13316 | M: Ingo Molnar <mingo@redhat.com> |
75fc2d37 | 13317 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
13318 | S: Maintained |
13319 | F: Documentation/trace/ftrace.txt | |
13320 | F: arch/*/*/*/ftrace.h | |
13321 | F: arch/*/kernel/ftrace.c | |
13322 | F: include/*/ftrace.h | |
13323 | F: include/linux/trace*.h | |
13324 | F: include/trace/ | |
13325 | F: kernel/trace/ | |
6e68e6c5 | 13326 | F: tools/testing/selftests/ftrace/ |
d6f005a1 | 13327 | |
4abac0d0 IM |
13328 | TRACING MMIO ACCESSES (MMIOTRACE) |
13329 | M: Steven Rostedt <rostedt@goodmis.org> | |
13330 | M: Ingo Molnar <mingo@kernel.org> | |
13331 | R: Karol Herbst <karolherbst@gmail.com> | |
13332 | R: Pekka Paalanen <ppaalanen@gmail.com> | |
13333 | S: Maintained | |
13334 | L: linux-kernel@vger.kernel.org | |
13335 | L: nouveau@lists.freedesktop.org | |
13336 | F: kernel/trace/trace_mmiotrace.c | |
13337 | F: include/linux/mmiotrace.h | |
13338 | F: arch/x86/mm/kmmio.c | |
13339 | F: arch/x86/mm/mmio-mod.c | |
13340 | F: arch/x86/mm/testmmiotrace.c | |
13341 | ||
1da177e4 | 13342 | TRIVIAL PATCHES |
8b58be88 | 13343 | M: Jiri Kosina <trivial@kernel.org> |
54e5881d | 13344 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 13345 | S: Maintained |
86ef925f | 13346 | K: ^Subject:.*(?i)trivial |
1da177e4 | 13347 | |
4e68852d | 13348 | TTY LAYER |
879a5a00 | 13349 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
d8130624 | 13350 | M: Jiri Slaby <jslaby@suse.com> |
879a5a00 | 13351 | S: Supported |
08deed1e | 13352 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
84e1eb83 | 13353 | F: Documentation/serial/ |
8dd5d2f1 | 13354 | F: drivers/tty/ |
df621252 | 13355 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
13356 | F: include/linux/serial_core.h |
13357 | F: include/linux/serial.h | |
13358 | F: include/linux/tty.h | |
c117ab84 CEB |
13359 | F: include/uapi/linux/serial_core.h |
13360 | F: include/uapi/linux/serial.h | |
13361 | F: include/uapi/linux/tty.h | |
4e68852d | 13362 | |
91952bc0 AP |
13363 | TUA9001 MEDIA DRIVER |
13364 | M: Antti Palosaari <crope@iki.fi> | |
13365 | L: linux-media@vger.kernel.org | |
a825eaec | 13366 | W: https://linuxtv.org |
91952bc0 AP |
13367 | W: http://palosaari.fi/linux/ |
13368 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
13369 | T: git git://linuxtv.org/anttip/media_tree.git | |
13370 | S: Maintained | |
13371 | F: drivers/media/tuners/tua9001* | |
13372 | ||
740db6d7 | 13373 | TULIP NETWORK DRIVERS |
740db6d7 | 13374 | L: netdev@vger.kernel.org |
cf869eb1 GG |
13375 | L: linux-parisc@vger.kernel.org |
13376 | S: Orphan | |
0f04e2aa | 13377 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
13378 | |
13379 | TUN/TAP driver | |
ba57b6f2 | 13380 | M: Maxim Krasnyansky <maxk@qti.qualcomm.com> |
1da177e4 LT |
13381 | W: http://vtun.sourceforge.net/tun |
13382 | S: Maintained | |
679655da JP |
13383 | F: Documentation/networking/tuntap.txt |
13384 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 13385 | |
b454cc66 | 13386 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 13387 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
c406339c RB |
13388 | M: Ralf Baechle <ralf@linux-mips.org> |
13389 | L: linux-mips@linux-mips.org | |
13390 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ | |
b454cc66 | 13391 | S: Maintained |
679655da JP |
13392 | F: drivers/tc/ |
13393 | F: include/linux/tc.h | |
b454cc66 | 13394 | |
82abbea7 RD |
13395 | TW5864 VIDEO4LINUX DRIVER |
13396 | M: Bluecherry Maintainers <maintainers@bluecherrydvr.com> | |
13397 | M: Anton Sviridenko <anton@corp.bluecherry.net> | |
13398 | M: Andrey Utkin <andrey.utkin@corp.bluecherry.net> | |
13399 | M: Andrey Utkin <andrey_utkin@fastmail.com> | |
13400 | L: linux-media@vger.kernel.org | |
13401 | S: Supported | |
13402 | F: drivers/media/pci/tw5864/ | |
13403 | ||
13404 | TW68 VIDEO4LINUX DRIVER | |
13405 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
13406 | L: linux-media@vger.kernel.org | |
13407 | T: git git://linuxtv.org/media_tree.git | |
13408 | W: https://linuxtv.org | |
13409 | S: Odd Fixes | |
13410 | F: drivers/media/pci/tw68/ | |
13411 | ||
13412 | TW686X VIDEO4LINUX DRIVER | |
13413 | M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> | |
13414 | L: linux-media@vger.kernel.org | |
13415 | T: git git://linuxtv.org/media_tree.git | |
13416 | W: http://linuxtv.org | |
13417 | S: Maintained | |
13418 | F: drivers/media/pci/tw686x/ | |
13419 | ||
e2d1d6c0 | 13420 | UBI FILE SYSTEM (UBIFS) |
a7859936 | 13421 | M: Richard Weinberger <richard@nod.at> |
949cb623 | 13422 | M: Artem Bityutskiy <dedekind1@gmail.com> |
cc8f9b99 | 13423 | M: Adrian Hunter <adrian.hunter@intel.com> |
e2d1d6c0 | 13424 | L: linux-mtd@lists.infradead.org |
e2966cbe | 13425 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 | 13426 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
a7859936 | 13427 | S: Supported |
679655da JP |
13428 | F: Documentation/filesystems/ubifs.txt |
13429 | F: fs/ubifs/ | |
e2d1d6c0 | 13430 | |
e1632fa2 | 13431 | UCLINUX (M68KNOMMU AND COLDFIRE) |
44156aff GU |
13432 | M: Greg Ungerer <gerg@linux-m68k.org> |
13433 | W: http://www.linux-m68k.org/ | |
cc2020e6 | 13434 | W: http://www.uclinux.org/ |
e1632fa2 | 13435 | L: linux-m68k@lists.linux-m68k.org |
cc2020e6 | 13436 | L: uclinux-dev@uclinux.org (subscribers-only) |
e1632fa2 | 13437 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git |
cc2020e6 | 13438 | S: Maintained |
e1632fa2 GU |
13439 | F: arch/m68k/coldfire/ |
13440 | F: arch/m68k/68*/ | |
61bc02bb JP |
13441 | F: arch/m68k/*/*_no.* |
13442 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 13443 | |
1da177e4 | 13444 | UDF FILESYSTEM |
d8130624 | 13445 | M: Jan Kara <jack@suse.com> |
1da177e4 | 13446 | S: Maintained |
679655da JP |
13447 | F: Documentation/filesystems/udf.txt |
13448 | F: fs/udf/ | |
1da177e4 | 13449 | |
0edffe65 BN |
13450 | UDRAW TABLET |
13451 | M: Bastien Nocera <hadess@hadess.net> | |
13452 | L: linux-input@vger.kernel.org | |
13453 | S: Maintained | |
13454 | F: drivers/hid/hid-udraw.c | |
13455 | ||
cc2020e6 | 13456 | UFS FILESYSTEM |
8b58be88 | 13457 | M: Evgeniy Dushistov <dushistov@mail.ru> |
cc2020e6 | 13458 | S: Maintained |
679655da JP |
13459 | F: Documentation/filesystems/ufs.txt |
13460 | F: fs/ufs/ | |
cc2020e6 | 13461 | |
0a09d3ab DH |
13462 | UHID USERSPACE HID IO DRIVER: |
13463 | M: David Herrmann <dh.herrmann@googlemail.com> | |
13464 | L: linux-input@vger.kernel.org | |
13465 | S: Maintained | |
13466 | F: drivers/hid/uhid.c | |
c117ab84 | 13467 | F: include/uapi/linux/uhid.h |
0a09d3ab | 13468 | |
82abbea7 RD |
13469 | ULPI BUS |
13470 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> | |
13471 | L: linux-usb@vger.kernel.org | |
13472 | S: Maintained | |
13473 | F: drivers/usb/common/ulpi.c | |
13474 | F: include/linux/ulpi/ | |
13475 | ||
18332a80 | 13476 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 13477 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 13478 | S: Orphan |
355ffe69 | 13479 | F: drivers/uwb/ |
679655da JP |
13480 | F: include/linux/uwb.h |
13481 | F: include/linux/uwb/ | |
18332a80 | 13482 | |
b31d8273 G |
13483 | UNICORE32 ARCHITECTURE: |
13484 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
13485 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
13486 | S: Maintained | |
ceebf4d5 | 13487 | T: git git://github.com/gxt/linux.git |
b31d8273 G |
13488 | F: arch/unicore32/ |
13489 | ||
d8379ab1 TF |
13490 | UNIFDEF |
13491 | M: Tony Finch <dot@dotat.at> | |
13492 | W: http://dotat.at/prog/unifdef | |
13493 | S: Maintained | |
13494 | F: scripts/unifdef.c | |
13495 | ||
1da177e4 | 13496 | UNIFORM CDROM DRIVER |
8b58be88 | 13497 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
13498 | W: http://www.kernel.dk |
13499 | S: Maintained | |
679655da JP |
13500 | F: Documentation/cdrom/ |
13501 | F: drivers/cdrom/cdrom.c | |
13502 | F: include/linux/cdrom.h | |
c117ab84 | 13503 | F: include/uapi/linux/cdrom.h |
1da177e4 | 13504 | |
56df0122 | 13505 | UNISYS S-PAR DRIVERS |
49e7d9df JP |
13506 | M: David Kershner <david.kershner@unisys.com> |
13507 | L: sparmaintainer@unisys.com (Unisys internal) | |
13508 | S: Supported | |
13509 | F: drivers/staging/unisys/ | |
56df0122 | 13510 | |
9941fa6e VH |
13511 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
13512 | M: Vinayak Holikatti <vinholikatti@gmail.com> | |
9941fa6e VH |
13513 | L: linux-scsi@vger.kernel.org |
13514 | S: Supported | |
13515 | F: Documentation/scsi/ufs.txt | |
13516 | F: drivers/scsi/ufs/ | |
13517 | ||
4b9ffb5a | 13518 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS |
bdee9860 JP |
13519 | M: Manjunath M Bettegowda <manjumb@synopsys.com> |
13520 | M: Prabu Thangamuthu <prabut@synopsys.com> | |
4b9ffb5a JP |
13521 | L: linux-scsi@vger.kernel.org |
13522 | S: Supported | |
13523 | F: drivers/scsi/ufs/*dwc* | |
13524 | ||
e2d1d6c0 | 13525 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 13526 | M: Artem Bityutskiy <dedekind1@gmail.com> |
346be9bc | 13527 | M: Richard Weinberger <richard@nod.at> |
e2d1d6c0 RD |
13528 | W: http://www.linux-mtd.infradead.org/ |
13529 | L: linux-mtd@lists.infradead.org | |
b6b44e0a | 13530 | T: git git://git.infradead.org/ubifs-2.6.git |
346be9bc | 13531 | S: Supported |
80811493 | 13532 | F: drivers/mtd/ubi/ |
679655da | 13533 | F: include/linux/mtd/ubi.h |
c117ab84 | 13534 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 13535 | |
7683e9e5 LT |
13536 | USB "USBNET" DRIVER FRAMEWORK |
13537 | M: Oliver Neukum <oneukum@suse.com> | |
13538 | L: netdev@vger.kernel.org | |
13539 | W: http://www.linux-usb.org/usbnet | |
13540 | S: Maintained | |
13541 | F: drivers/net/usb/usbnet.c | |
13542 | F: include/linux/usb/usbnet.h | |
13543 | ||
1da177e4 | 13544 | USB ACM DRIVER |
ca1c3e6f | 13545 | M: Oliver Neukum <oneukum@suse.com> |
6372594a | 13546 | L: linux-usb@vger.kernel.org |
1da177e4 | 13547 | S: Maintained |
679655da JP |
13548 | F: Documentation/usb/acm.txt |
13549 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 13550 | |
b7d572e1 PF |
13551 | USB AR5523 WIRELESS DRIVER |
13552 | M: Pontus Fuchs <pontus.fuchs@gmail.com> | |
13553 | L: linux-wireless@vger.kernel.org | |
13554 | S: Maintained | |
13555 | F: drivers/net/wireless/ath/ar5523/ | |
13556 | ||
115bb1ff | 13557 | USB ATTACHED SCSI |
866d372e | 13558 | M: Oliver Neukum <oneukum@suse.com> |
115bb1ff MW |
13559 | L: linux-usb@vger.kernel.org |
13560 | L: linux-scsi@vger.kernel.org | |
8eae0fb7 | 13561 | S: Maintained |
115bb1ff MW |
13562 | F: drivers/usb/storage/uas.c |
13563 | ||
1da177e4 | 13564 | USB CDC ETHERNET DRIVER |
61eee9a7 | 13565 | M: Oliver Neukum <oliver@neukum.org> |
795fb7e7 | 13566 | L: linux-usb@vger.kernel.org |
1da177e4 | 13567 | S: Maintained |
679655da | 13568 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 13569 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 13570 | |
66e3e591 KP |
13571 | USB CHAOSKEY DRIVER |
13572 | M: Keith Packard <keithp@keithp.com> | |
13573 | L: linux-usb@vger.kernel.org | |
13574 | S: Maintained | |
13575 | F: drivers/usb/misc/chaoskey.c | |
13576 | ||
b02b371e | 13577 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 13578 | M: Peter Korsgaard <jacmet@sunsite.dk> |
b02b371e PK |
13579 | L: linux-usb@vger.kernel.org |
13580 | S: Maintained | |
679655da | 13581 | F: drivers/usb/c67x00/ |
b02b371e | 13582 | |
d0374f4f | 13583 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 13584 | M: Peter Korsgaard <jacmet@sunsite.dk> |
043600a6 | 13585 | L: netdev@vger.kernel.org |
d0374f4f PK |
13586 | W: http://www.linux-usb.org/usbnet |
13587 | S: Maintained | |
679655da | 13588 | F: drivers/net/usb/dm9601.c |
d0374f4f | 13589 | |
cc2020e6 | 13590 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 13591 | M: Cesar Miquel <miquel@df.uba.ar> |
cc2020e6 AC |
13592 | L: rio500-users@lists.sourceforge.net |
13593 | W: http://rio500.sourceforge.net | |
13594 | S: Maintained | |
679655da | 13595 | F: drivers/usb/misc/rio500* |
cc2020e6 | 13596 | |
1da177e4 | 13597 | USB EHCI DRIVER |
578333ab | 13598 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 13599 | L: linux-usb@vger.kernel.org |
578333ab | 13600 | S: Maintained |
679655da JP |
13601 | F: Documentation/usb/ehci.txt |
13602 | F: drivers/usb/host/ehci* | |
1da177e4 | 13603 | |
69ae9e3e | 13604 | USB GADGET/PERIPHERAL SUBSYSTEM |
a55f6286 | 13605 | M: Felipe Balbi <balbi@kernel.org> |
795fb7e7 | 13606 | L: linux-usb@vger.kernel.org |
69ae9e3e | 13607 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
13608 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
13609 | S: Maintained | |
679655da JP |
13610 | F: drivers/usb/gadget/ |
13611 | F: include/linux/usb/gadget* | |
69ae9e3e | 13612 | |
2dea64b4 | 13613 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
e5f6450c | 13614 | M: Jiri Kosina <jikos@kernel.org> |
406df153 | 13615 | R: Benjamin Tissoires <benjamin.tissoires@redhat.com> |
795fb7e7 | 13616 | L: linux-usb@vger.kernel.org |
54e5881d | 13617 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 13618 | S: Maintained |
c2f01971 | 13619 | F: Documentation/hid/hiddev.txt |
679655da | 13620 | F: drivers/hid/usbhid/ |
1da177e4 | 13621 | |
959eea21 | 13622 | USB ISP116X DRIVER |
8b58be88 | 13623 | M: Olav Kongas <ok@artecdesign.ee> |
795fb7e7 | 13624 | L: linux-usb@vger.kernel.org |
959eea21 | 13625 | S: Maintained |
679655da JP |
13626 | F: drivers/usb/host/isp116x* |
13627 | F: include/linux/usb/isp116x.h | |
959eea21 | 13628 | |
146498ea WH |
13629 | USB LAN78XX ETHERNET DRIVER |
13630 | M: Woojung Huh <woojung.huh@microchip.com> | |
13631 | M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com> | |
13632 | L: netdev@vger.kernel.org | |
13633 | S: Maintained | |
13634 | F: drivers/net/usb/lan78xx.* | |
13635 | ||
1da177e4 | 13636 | USB MASS STORAGE DRIVER |
fc8b690d | 13637 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 13638 | L: linux-usb@vger.kernel.org |
8836aeb8 | 13639 | L: usb-storage@lists.one-eyed-alien.net |
1da177e4 LT |
13640 | S: Maintained |
13641 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 13642 | F: drivers/usb/storage/ |
1da177e4 | 13643 | |
af39917d CL |
13644 | USB MIDI DRIVER |
13645 | M: Clemens Ladisch <clemens@ladisch.de> | |
13646 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
13647 | T: git git://git.alsa-project.org/alsa-kernel.git | |
13648 | S: Maintained | |
13649 | F: sound/usb/midi.* | |
13650 | ||
444ce9d4 JP |
13651 | USB NETWORKING DRIVERS |
13652 | L: linux-usb@vger.kernel.org | |
13653 | S: Odd Fixes | |
13654 | F: drivers/net/usb/ | |
13655 | ||
1da177e4 | 13656 | USB OHCI DRIVER |
578333ab | 13657 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 13658 | L: linux-usb@vger.kernel.org |
578333ab | 13659 | S: Maintained |
679655da JP |
13660 | F: Documentation/usb/ohci.txt |
13661 | F: drivers/usb/host/ohci* | |
1da177e4 | 13662 | |
963ffa3e | 13663 | USB OTG FSM (Finite State Machine) |
60d77b3d | 13664 | M: Peter Chen <Peter.Chen@nxp.com> |
8373856d | 13665 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
963ffa3e PC |
13666 | L: linux-usb@vger.kernel.org |
13667 | S: Maintained | |
13668 | F: drivers/usb/common/usb-otg-fsm.c | |
13669 | ||
563da3a9 VM |
13670 | USB OVER IP DRIVER |
13671 | M: Valentina Manea <valentina.manea.m@gmail.com> | |
90effdcd SK |
13672 | M: Shuah Khan <shuahkh@osg.samsung.com> |
13673 | M: Shuah Khan <shuah@kernel.org> | |
563da3a9 VM |
13674 | L: linux-usb@vger.kernel.org |
13675 | S: Maintained | |
a6d6fc2b | 13676 | F: Documentation/usb/usbip_protocol.txt |
563da3a9 VM |
13677 | F: drivers/usb/usbip/ |
13678 | F: tools/usb/usbip/ | |
13679 | ||
1da177e4 | 13680 | USB PEGASUS DRIVER |
a16b945c | 13681 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 13682 | L: linux-usb@vger.kernel.org |
043600a6 | 13683 | L: netdev@vger.kernel.org |
052e3128 PM |
13684 | T: git git://github.com/petkan/pegasus.git |
13685 | W: https://github.com/petkan/pegasus | |
1da177e4 | 13686 | S: Maintained |
679655da | 13687 | F: drivers/net/usb/pegasus.* |
1da177e4 | 13688 | |
d3ad558f | 13689 | USB PHY LAYER |
a55f6286 | 13690 | M: Felipe Balbi <balbi@kernel.org> |
d3ad558f FB |
13691 | L: linux-usb@vger.kernel.org |
13692 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
13693 | S: Maintained | |
13694 | F: drivers/usb/phy/ | |
d3ad558f | 13695 | |
73e4fb3f | 13696 | USB PRINTER DRIVER (usblp) |
8b58be88 | 13697 | M: Pete Zaitcev <zaitcev@redhat.com> |
795fb7e7 | 13698 | L: linux-usb@vger.kernel.org |
73e4fb3f | 13699 | S: Supported |
679655da | 13700 | F: drivers/usb/class/usblp.c |
1da177e4 | 13701 | |
4521b477 BM |
13702 | USB QMI WWAN NETWORK DRIVER |
13703 | M: Bjørn Mork <bjorn@mork.no> | |
13704 | L: netdev@vger.kernel.org | |
13705 | S: Maintained | |
13706 | F: Documentation/ABI/testing/sysfs-class-net-qmi | |
13707 | F: drivers/net/usb/qmi_wwan.c | |
13708 | ||
1da177e4 | 13709 | USB RTL8150 DRIVER |
a16b945c | 13710 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 13711 | L: linux-usb@vger.kernel.org |
043600a6 | 13712 | L: netdev@vger.kernel.org |
052e3128 PM |
13713 | T: git git://github.com/petkan/rtl8150.git |
13714 | W: https://github.com/petkan/rtl8150 | |
1da177e4 | 13715 | S: Maintained |
679655da | 13716 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 13717 | |
f896b796 | 13718 | USB SERIAL SUBSYSTEM |
66085694 | 13719 | M: Johan Hovold <johan@kernel.org> |
795fb7e7 | 13720 | L: linux-usb@vger.kernel.org |
5ee05309 | 13721 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git |
4e68852d | 13722 | S: Maintained |
679655da | 13723 | F: Documentation/usb/usb-serial.txt |
f896b796 | 13724 | F: drivers/usb/serial/ |
679655da | 13725 | F: include/linux/usb/serial.h |
1da177e4 | 13726 | |
b3f0db1c SG |
13727 | USB SMSC75XX ETHERNET DRIVER |
13728 | M: Steve Glendinning <steve.glendinning@shawell.net> | |
13729 | L: netdev@vger.kernel.org | |
13730 | S: Maintained | |
13731 | F: drivers/net/usb/smsc75xx.* | |
13732 | ||
2f7ca802 | 13733 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 13734 | M: Steve Glendinning <steve.glendinning@shawell.net> |
983ccd74 | 13735 | M: Microchip Linux Driver Support <UNGLinuxDriver@microchip.com> |
2f7ca802 | 13736 | L: netdev@vger.kernel.org |
90b24cfb | 13737 | S: Maintained |
679655da | 13738 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 13739 | |
1da177e4 | 13740 | USB SUBSYSTEM |
879a5a00 | 13741 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
795fb7e7 | 13742 | L: linux-usb@vger.kernel.org |
1da177e4 | 13743 | W: http://www.linux-usb.org |
08deed1e | 13744 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 13745 | S: Supported |
1700bd98 | 13746 | F: Documentation/devicetree/bindings/usb/ |
679655da | 13747 | F: Documentation/usb/ |
679655da JP |
13748 | F: drivers/usb/ |
13749 | F: include/linux/usb.h | |
13750 | F: include/linux/usb/ | |
1da177e4 | 13751 | |
fab92884 HK |
13752 | USB TYPEC SUBSYSTEM |
13753 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> | |
13754 | L: linux-usb@vger.kernel.org | |
13755 | S: Maintained | |
13756 | F: Documentation/ABI/testing/sysfs-class-typec | |
13757 | F: Documentation/usb/typec.rst | |
13758 | F: drivers/usb/typec/ | |
13759 | F: include/linux/usb/typec.h | |
13760 | ||
1da177e4 | 13761 | USB UHCI DRIVER |
8b58be88 | 13762 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 13763 | L: linux-usb@vger.kernel.org |
1da177e4 | 13764 | S: Maintained |
679655da | 13765 | F: drivers/usb/host/uhci* |
1da177e4 | 13766 | |
c0efd232 | 13767 | USB VIDEO CLASS |
c53ac071 | 13768 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
616bd4e2 | 13769 | L: linux-uvc-devel@lists.sourceforge.net (subscribers-only) |
661263b5 | 13770 | L: linux-media@vger.kernel.org |
275ffde4 | 13771 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 13772 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 13773 | S: Maintained |
0c0d06ca | 13774 | F: drivers/media/usb/uvc/ |
6c0f0359 | 13775 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 13776 | |
b60b9c45 HV |
13777 | USB VISION DRIVER |
13778 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
13779 | L: linux-media@vger.kernel.org | |
13780 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 13781 | W: https://linuxtv.org |
b60b9c45 HV |
13782 | S: Odd Fixes |
13783 | F: drivers/media/usb/usbvision/ | |
13784 | ||
8282da47 LP |
13785 | USB WEBCAM GADGET |
13786 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
13787 | L: linux-usb@vger.kernel.org | |
13788 | S: Maintained | |
3a83c16e | 13789 | F: drivers/usb/gadget/function/*uvc* |
faf2e1db | 13790 | F: drivers/usb/gadget/legacy/webcam.c |
8282da47 | 13791 | |
bf164cc0 | 13792 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 13793 | M: Jussi Kivilinna <jussi.kivilinna@iki.fi> |
bf164cc0 JK |
13794 | L: linux-wireless@vger.kernel.org |
13795 | S: Maintained | |
679655da | 13796 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 13797 | |
eb6bab13 | 13798 | USB XHCI DRIVER |
03d85053 | 13799 | M: Mathias Nyman <mathias.nyman@intel.com> |
eb6bab13 SS |
13800 | L: linux-usb@vger.kernel.org |
13801 | S: Supported | |
36d0344c SS |
13802 | F: drivers/usb/host/xhci* |
13803 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 13804 | |
1da177e4 | 13805 | USB ZD1201 DRIVER |
4086b9ca | 13806 | L: linux-wireless@vger.kernel.org |
1da177e4 | 13807 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 13808 | S: Orphan |
ed0ad06f | 13809 | F: drivers/net/wireless/zydas/zd1201.* |
1da177e4 | 13810 | |
b7eee616 | 13811 | USB ZR364XX DRIVER |
8b58be88 | 13812 | M: Antoine Jacquet <royale@zerezo.com> |
795fb7e7 | 13813 | L: linux-usb@vger.kernel.org |
661263b5 | 13814 | L: linux-media@vger.kernel.org |
275ffde4 | 13815 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
13816 | W: http://royale.zerezo.com/zr364xx/ |
13817 | S: Maintained | |
618cd932 | 13818 | F: Documentation/media/v4l-drivers/zr364xx* |
90d72ac6 | 13819 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 13820 | |
e7839f25 | 13821 | USER-MODE LINUX (UML) |
8b58be88 | 13822 | M: Jeff Dike <jdike@addtoit.com> |
b15194b7 | 13823 | M: Richard Weinberger <richard@nod.at> |
1da177e4 LT |
13824 | L: user-mode-linux-devel@lists.sourceforge.net |
13825 | L: user-mode-linux-user@lists.sourceforge.net | |
13826 | W: http://user-mode-linux.sourceforge.net | |
9f273c24 | 13827 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git |
1da177e4 | 13828 | S: Maintained |
61516587 | 13829 | F: Documentation/virtual/uml/ |
679655da | 13830 | F: arch/um/ |
b070989a | 13831 | F: arch/x86/um/ |
679655da JP |
13832 | F: fs/hostfs/ |
13833 | F: fs/hppfs/ | |
b7eee616 | 13834 | |
e5f114e9 | 13835 | USERSPACE I/O (UIO) |
879a5a00 | 13836 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
e5f114e9 | 13837 | S: Maintained |
3d3fecbd | 13838 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
cadf8106 | 13839 | F: Documentation/driver-api/uio-howto.rst |
679655da JP |
13840 | F: drivers/uio/ |
13841 | F: include/linux/uio*.h | |
e5f114e9 | 13842 | |
256cccbe | 13843 | UTIL-LINUX PACKAGE |
8b58be88 | 13844 | M: Karel Zak <kzak@redhat.com> |
256cccbe KZ |
13845 | L: util-linux@vger.kernel.org |
13846 | W: http://en.wikipedia.org/wiki/Util-linux | |
13847 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
13848 | S: Maintained |
13849 | ||
fafd3cdf CH |
13850 | UUID HELPERS |
13851 | M: Christoph Hellwig <hch@lst.de> | |
13852 | R: Andy Shevchenko <andriy.shevchenko@linux.intel.com> | |
13853 | L: linux-kernel@vger.kernel.org | |
13854 | T: git git://git.infradead.org/users/hch/uuid.git | |
13855 | F: lib/uuid.c | |
13856 | F: lib/test_uuid.c | |
13857 | F: include/linux/uuid.h | |
13858 | F: include/uapi/linux/uuid.h | |
13859 | S: Maintained | |
13860 | ||
c1fd1c07 | 13861 | UVESAFB DRIVER |
8b58be88 | 13862 | M: Michal Januszewski <spock@gentoo.org> |
c69f677c | 13863 | L: linux-fbdev@vger.kernel.org |
c1fd1c07 MJ |
13864 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
13865 | S: Maintained | |
679655da | 13866 | F: Documentation/fb/uvesafb.txt |
8a61f013 | 13867 | F: drivers/video/fbdev/uvesafb.* |
c1fd1c07 | 13868 | |
456930d8 SA |
13869 | VF610 NAND DRIVER |
13870 | M: Stefan Agner <stefan@agner.ch> | |
13871 | L: linux-mtd@lists.infradead.org | |
13872 | S: Supported | |
13873 | F: drivers/mtd/nand/vf610_nfc.c | |
13874 | ||
4480f15b | 13875 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 13876 | M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> |
1da177e4 | 13877 | S: Maintained |
679655da JP |
13878 | F: Documentation/filesystems/vfat.txt |
13879 | F: fs/fat/ | |
1da177e4 | 13880 | |
cba3345c AW |
13881 | VFIO DRIVER |
13882 | M: Alex Williamson <alex.williamson@redhat.com> | |
13883 | L: kvm@vger.kernel.org | |
9f273c24 | 13884 | T: git git://github.com/awilliam/linux-vfio.git |
cba3345c AW |
13885 | S: Maintained |
13886 | F: Documentation/vfio.txt | |
13887 | F: drivers/vfio/ | |
13888 | F: include/linux/vfio.h | |
c117ab84 | 13889 | F: include/uapi/linux/vfio.h |
cba3345c | 13890 | |
5188287a KW |
13891 | VFIO MEDIATED DEVICE DRIVERS |
13892 | M: Kirti Wankhede <kwankhede@nvidia.com> | |
13893 | L: kvm@vger.kernel.org | |
13894 | S: Maintained | |
13895 | F: Documentation/vfio-mediated-device.txt | |
13896 | F: drivers/vfio/mdev/ | |
13897 | F: include/linux/mdev.h | |
13898 | F: samples/vfio-mdev/ | |
13899 | ||
a714ea5f AW |
13900 | VFIO PLATFORM DRIVER |
13901 | M: Baptiste Reynal <b.reynal@virtualopensystems.com> | |
13902 | L: kvm@vger.kernel.org | |
13903 | S: Maintained | |
13904 | F: drivers/vfio/platform/ | |
13905 | ||
8ccd1e51 LW |
13906 | VGA_SWITCHEROO |
13907 | R: Lukas Wunner <lukas@wunner.de> | |
13908 | S: Maintained | |
13909 | F: Documentation/gpu/vga-switcheroo.rst | |
13910 | F: drivers/gpu/vga/vga_switcheroo.c | |
13911 | F: include/linux/vga_switcheroo.h | |
13912 | T: git git://anongit.freedesktop.org/drm/drm-misc | |
13913 | ||
82abbea7 RD |
13914 | VIA RHINE NETWORK DRIVER |
13915 | S: Orphan | |
13916 | F: drivers/net/ethernet/via/via-rhine.c | |
13917 | ||
13918 | VIA SD/MMC CARD CONTROLLER DRIVER | |
13919 | M: Bruce Chang <brucechang@via.com.tw> | |
13920 | M: Harald Welte <HaraldWelte@viatech.com> | |
13921 | S: Maintained | |
13922 | F: drivers/mmc/host/via-sdmmc.c | |
13923 | ||
13924 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER | |
13925 | M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> | |
13926 | L: linux-fbdev@vger.kernel.org | |
13927 | S: Maintained | |
13928 | F: include/linux/via-core.h | |
13929 | F: include/linux/via-gpio.h | |
13930 | F: include/linux/via_i2c.h | |
13931 | F: drivers/video/fbdev/via/ | |
13932 | ||
13933 | VIA VELOCITY NETWORK DRIVER | |
13934 | M: Francois Romieu <romieu@fr.zoreil.com> | |
13935 | L: netdev@vger.kernel.org | |
13936 | S: Maintained | |
13937 | F: drivers/net/ethernet/via/via-velocity.* | |
13938 | ||
7683e9e5 LT |
13939 | VIDEO MULTIPLEXER DRIVER |
13940 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
13941 | L: linux-media@vger.kernel.org | |
13942 | S: Maintained | |
13943 | F: drivers/media/platform/video-mux.c | |
13944 | ||
9e6f3438 PO |
13945 | VIDEOBUF2 FRAMEWORK |
13946 | M: Pawel Osciak <pawel@osciak.com> | |
13947 | M: Marek Szyprowski <m.szyprowski@samsung.com> | |
e76e4706 | 13948 | M: Kyungmin Park <kyungmin.park@samsung.com> |
9e6f3438 PO |
13949 | L: linux-media@vger.kernel.org |
13950 | S: Maintained | |
90d72ac6 | 13951 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
13952 | F: include/media/videobuf2-* |
13953 | ||
82abbea7 RD |
13954 | VIMC VIRTUAL MEDIA CONTROLLER DRIVER |
13955 | M: Helen Koike <helen.koike@collabora.com> | |
13956 | L: linux-media@vger.kernel.org | |
13957 | T: git git://linuxtv.org/media_tree.git | |
13958 | W: https://linuxtv.org | |
13959 | S: Maintained | |
13960 | F: drivers/media/platform/vimc/* | |
13961 | ||
13962 | VIRT LIB | |
13963 | M: Alex Williamson <alex.williamson@redhat.com> | |
13964 | M: Paolo Bonzini <pbonzini@redhat.com> | |
13965 | L: kvm@vger.kernel.org | |
13966 | S: Supported | |
13967 | F: virt/lib/ | |
13968 | ||
06a8fc78 AH |
13969 | VIRTIO AND VHOST VSOCK DRIVER |
13970 | M: Stefan Hajnoczi <stefanha@redhat.com> | |
13971 | L: kvm@vger.kernel.org | |
13972 | L: virtualization@lists.linux-foundation.org | |
13973 | L: netdev@vger.kernel.org | |
13974 | S: Maintained | |
13975 | F: include/linux/virtio_vsock.h | |
13976 | F: include/uapi/linux/virtio_vsock.h | |
0b2e6644 | 13977 | F: include/uapi/linux/vsockmon.h |
531b3748 | 13978 | F: net/vmw_vsock/af_vsock_tap.c |
06a8fc78 | 13979 | F: net/vmw_vsock/virtio_transport_common.c |
0ea9e1d3 | 13980 | F: net/vmw_vsock/virtio_transport.c |
0b2e6644 | 13981 | F: drivers/net/vsockmon.c |
433fc58e AH |
13982 | F: drivers/vhost/vsock.c |
13983 | F: drivers/vhost/vsock.h | |
06a8fc78 | 13984 | |
9a82446b | 13985 | VIRTIO CONSOLE DRIVER |
79134d11 | 13986 | M: Amit Shah <amit@kernel.org> |
9a82446b AS |
13987 | L: virtualization@lists.linux-foundation.org |
13988 | S: Maintained | |
13989 | F: drivers/char/virtio_console.c | |
13990 | F: include/linux/virtio_console.h | |
c117ab84 | 13991 | F: include/uapi/linux/virtio_console.h |
9a82446b | 13992 | |
2426ec8f | 13993 | VIRTIO CORE, NET AND BLOCK DRIVERS |
2426ec8f | 13994 | M: "Michael S. Tsirkin" <mst@redhat.com> |
678ff27d | 13995 | M: Jason Wang <jasowang@redhat.com> |
2426ec8f MT |
13996 | L: virtualization@lists.linux-foundation.org |
13997 | S: Maintained | |
0e4191fe | 13998 | F: Documentation/devicetree/bindings/virtio/ |
2426ec8f | 13999 | F: drivers/virtio/ |
c893c8d7 | 14000 | F: tools/virtio/ |
2426ec8f MT |
14001 | F: drivers/net/virtio_net.c |
14002 | F: drivers/block/virtio_blk.c | |
404a5c39 | 14003 | F: include/linux/virtio*.h |
916cdabc | 14004 | F: include/uapi/linux/virtio_*.h |
dbaf0624 | 14005 | F: drivers/crypto/virtio/ |
c0a6a5ae | 14006 | F: mm/balloon_compaction.c |
2426ec8f | 14007 | |
7683e9e5 LT |
14008 | VIRTIO CRYPTO DRIVER |
14009 | M: Gonglei <arei.gonglei@huawei.com> | |
14010 | L: virtualization@lists.linux-foundation.org | |
14011 | L: linux-crypto@vger.kernel.org | |
14012 | S: Maintained | |
14013 | F: drivers/crypto/virtio/ | |
14014 | F: include/uapi/linux/virtio_crypto.h | |
14015 | ||
f2dbda3b | 14016 | VIRTIO DRIVERS FOR S390 |
1372324b | 14017 | M: Cornelia Huck <cohuck@redhat.com> |
c8b0d729 | 14018 | M: Halil Pasic <pasic@linux.vnet.ibm.com> |
f2dbda3b CH |
14019 | L: linux-s390@vger.kernel.org |
14020 | L: virtualization@lists.linux-foundation.org | |
14021 | L: kvm@vger.kernel.org | |
14022 | S: Supported | |
1b568d93 | 14023 | F: drivers/s390/virtio/ |
f2dbda3b | 14024 | |
4ad6ee91 GH |
14025 | VIRTIO GPU DRIVER |
14026 | M: David Airlie <airlied@linux.ie> | |
14027 | M: Gerd Hoffmann <kraxel@redhat.com> | |
14028 | L: dri-devel@lists.freedesktop.org | |
14029 | L: virtualization@lists.linux-foundation.org | |
0f445486 | 14030 | T: git git://anongit.freedesktop.org/drm/drm-misc |
4ad6ee91 GH |
14031 | S: Maintained |
14032 | F: drivers/gpu/drm/virtio/ | |
14033 | F: include/uapi/linux/virtio_gpu.h | |
14034 | ||
3a4d5c94 MT |
14035 | VIRTIO HOST (VHOST) |
14036 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
678ff27d | 14037 | M: Jason Wang <jasowang@redhat.com> |
3a4d5c94 | 14038 | L: kvm@vger.kernel.org |
c996d8b9 | 14039 | L: virtualization@lists.linux-foundation.org |
3a4d5c94 | 14040 | L: netdev@vger.kernel.org |
9f273c24 | 14041 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git |
3a4d5c94 MT |
14042 | S: Maintained |
14043 | F: drivers/vhost/ | |
c117ab84 | 14044 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 14045 | |
271c8651 GH |
14046 | VIRTIO INPUT DRIVER |
14047 | M: Gerd Hoffmann <kraxel@redhat.com> | |
14048 | S: Maintained | |
14049 | F: drivers/virtio/virtio_input.c | |
14050 | F: include/uapi/linux/virtio_input.h | |
14051 | ||
82abbea7 RD |
14052 | VIRTUAL SERIO DEVICE DRIVER |
14053 | M: Stephen Chandler Paul <thatslyude@gmail.com> | |
01f20734 | 14054 | S: Maintained |
82abbea7 RD |
14055 | F: drivers/input/serio/userio.c |
14056 | F: include/uapi/linux/userio.h | |
f73f8173 | 14057 | |
77911fd2 | 14058 | VIVID VIRTUAL VIDEO DRIVER |
0b7bc1fa HV |
14059 | M: Hans Verkuil <hverkuil@xs4all.nl> |
14060 | L: linux-media@vger.kernel.org | |
14061 | T: git git://linuxtv.org/media_tree.git | |
a825eaec | 14062 | W: https://linuxtv.org |
0b7bc1fa | 14063 | S: Maintained |
77911fd2 | 14064 | F: drivers/media/platform/vivid/* |
0b7bc1fa | 14065 | |
55e331cf | 14066 | VLYNQ BUS |
08eeb306 | 14067 | M: Florian Fainelli <f.fainelli@gmail.com> |
8578d7af | 14068 | L: openwrt-devel@lists.openwrt.org (subscribers-only) |
55e331cf FF |
14069 | S: Maintained |
14070 | F: drivers/vlynq/vlynq.c | |
14071 | F: include/linux/vlynq.h | |
14072 | ||
390beae4 | 14073 | VME SUBSYSTEM |
74c600e3 | 14074 | M: Martyn Welch <martyn@welchs.me.uk> |
1bd289d1 | 14075 | M: Manohar Vanga <manohar.vanga@gmail.com> |
390beae4 MW |
14076 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
14077 | L: devel@driverdev.osuosl.org | |
14078 | S: Maintained | |
14079 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
75a163c4 | 14080 | F: Documentation/driver-api/vme.rst |
390beae4 MW |
14081 | F: drivers/staging/vme/ |
14082 | F: drivers/vme/ | |
14083 | F: include/linux/vme* | |
14084 | ||
73b35d07 DT |
14085 | VMWARE BALLOON DRIVER |
14086 | M: Xavier Deguillard <xdeguillard@vmware.com> | |
14087 | M: Philip Moltmann <moltmann@vmware.com> | |
14088 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
14089 | L: linux-kernel@vger.kernel.org | |
14090 | S: Maintained | |
14091 | F: drivers/misc/vmw_balloon.c | |
14092 | ||
7683e9e5 LT |
14093 | VMWARE HYPERVISOR INTERFACE |
14094 | M: Alok Kataria <akataria@vmware.com> | |
14095 | L: virtualization@lists.linux-foundation.org | |
14096 | S: Supported | |
14097 | F: arch/x86/kernel/cpu/vmware.c | |
14098 | ||
14099 | VMWARE PVRDMA DRIVER | |
14100 | M: Adit Ranadive <aditr@vmware.com> | |
14101 | M: VMware PV-Drivers <pv-drivers@vmware.com> | |
14102 | L: linux-rdma@vger.kernel.org | |
14103 | S: Maintained | |
14104 | F: drivers/infiniband/hw/vmw_pvrdma/ | |
14105 | ||
14106 | VMware PVSCSI driver | |
14107 | M: Jim Gill <jgill@vmware.com> | |
14108 | M: VMware PV-Drivers <pv-drivers@vmware.com> | |
14109 | L: linux-scsi@vger.kernel.org | |
14110 | S: Maintained | |
14111 | F: drivers/scsi/vmw_pvscsi.c | |
14112 | F: drivers/scsi/vmw_pvscsi.h | |
14113 | ||
8b8be51b TH |
14114 | VMWARE VMMOUSE SUBDRIVER |
14115 | M: "VMware Graphics" <linux-graphics-maintainer@vmware.com> | |
14116 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
14117 | L: linux-input@vger.kernel.org | |
14118 | S: Maintained | |
14119 | F: drivers/input/mouse/vmmouse.c | |
14120 | F: drivers/input/mouse/vmmouse.h | |
14121 | ||
d1a890fa | 14122 | VMWARE VMXNET3 ETHERNET DRIVER |
04e1b734 | 14123 | M: Shrikrishna Khare <skhare@vmware.com> |
65c8bb5b JP |
14124 | M: "VMware, Inc." <pv-drivers@vmware.com> |
14125 | L: netdev@vger.kernel.org | |
14126 | S: Maintained | |
14127 | F: drivers/net/vmxnet3/ | |
d1a890fa | 14128 | |
e53e86c7 | 14129 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 14130 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 14131 | M: Mark Brown <broonie@kernel.org> |
5cdeb2c8 | 14132 | L: linux-kernel@vger.kernel.org |
1dd68f01 | 14133 | W: http://www.slimlogic.co.uk/?p=48 |
6febb5ab | 14134 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
e53e86c7 | 14135 | S: Supported |
9d2597e8 | 14136 | F: Documentation/devicetree/bindings/regulator/ |
679655da | 14137 | F: drivers/regulator/ |
9d2597e8 | 14138 | F: include/dt-bindings/regulator/ |
679655da | 14139 | F: include/linux/regulator/ |
e53e86c7 | 14140 | |
081958eb DA |
14141 | VRF |
14142 | M: David Ahern <dsa@cumulusnetworks.com> | |
14143 | M: Shrijeet Mukherjee <shm@cumulusnetworks.com> | |
14144 | L: netdev@vger.kernel.org | |
14145 | S: Maintained | |
14146 | F: drivers/net/vrf.c | |
562d897d | 14147 | F: Documentation/networking/vrf.txt |
081958eb | 14148 | |
ab41319e | 14149 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 14150 | M: Juerg Haefliger <juergh@gmail.com> |
968ce1b1 | 14151 | L: linux-hwmon@vger.kernel.org |
ab41319e | 14152 | S: Maintained |
679655da JP |
14153 | F: Documentation/hwmon/vt1211 |
14154 | F: drivers/hwmon/vt1211.c | |
ab41319e | 14155 | |
1de9e371 | 14156 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 14157 | M: Roger Lucas <vt8231@hiddenengine.co.uk> |
968ce1b1 | 14158 | L: linux-hwmon@vger.kernel.org |
1de9e371 | 14159 | S: Maintained |
679655da | 14160 | F: drivers/hwmon/vt8231.c |
1de9e371 | 14161 | |
88095e7b TO |
14162 | VUB300 USB to SDIO/SD/MMC bridge chip |
14163 | M: Tony Olech <tony.olech@elandigitalsystems.com> | |
14164 | L: linux-mmc@vger.kernel.org | |
14165 | L: linux-usb@vger.kernel.org | |
14166 | S: Supported | |
14167 | F: drivers/mmc/host/vub300.c | |
14168 | ||
1da177e4 | 14169 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 14170 | M: Evgeniy Polyakov <zbr@ioremap.net> |
1da177e4 | 14171 | S: Maintained |
679655da JP |
14172 | F: Documentation/w1/ |
14173 | F: drivers/w1/ | |
de0d6dbd | 14174 | F: include/linux/w1.h |
1da177e4 | 14175 | |
13927079 | 14176 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 14177 | M: Marc Hulsman <m.hulsman@tudelft.nl> |
968ce1b1 | 14178 | L: linux-hwmon@vger.kernel.org |
25845c22 | 14179 | S: Maintained |
679655da JP |
14180 | F: Documentation/hwmon/w83791d |
14181 | F: drivers/hwmon/w83791d.c | |
13927079 | 14182 | |
61db011d | 14183 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 14184 | M: Rudolf Marek <r.marek@assembler.cz> |
968ce1b1 | 14185 | L: linux-hwmon@vger.kernel.org |
61db011d | 14186 | S: Maintained |
679655da JP |
14187 | F: Documentation/hwmon/w83793 |
14188 | F: drivers/hwmon/w83793.c | |
61db011d | 14189 | |
e3760b43 | 14190 | W83795 HARDWARE MONITORING DRIVER |
d8130624 | 14191 | M: Jean Delvare <jdelvare@suse.com> |
968ce1b1 | 14192 | L: linux-hwmon@vger.kernel.org |
e3760b43 JD |
14193 | S: Maintained |
14194 | F: drivers/hwmon/w83795.c | |
14195 | ||
1da177e4 | 14196 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 14197 | M: Pierre Ossman <pierre@ossman.eu> |
1da177e4 | 14198 | S: Maintained |
679655da | 14199 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 14200 | |
b4e05923 HG |
14201 | WACOM PROTOCOL 4 SERIAL TABLETS |
14202 | M: Julian Squires <julian@cipht.net> | |
14203 | M: Hans de Goede <hdegoede@redhat.com> | |
14204 | L: linux-input@vger.kernel.org | |
14205 | S: Maintained | |
14206 | F: drivers/input/tablet/wacom_serial4.c | |
14207 | ||
3527761c | 14208 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 14209 | M: Wim Van Sebroeck <wim@iguana.be> |
1f32f83e | 14210 | R: Guenter Roeck <linux@roeck-us.net> |
230a5cef WVS |
14211 | L: linux-watchdog@vger.kernel.org |
14212 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 14213 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 14214 | S: Maintained |
540be8b2 | 14215 | F: Documentation/devicetree/bindings/watchdog/ |
679655da JP |
14216 | F: Documentation/watchdog/ |
14217 | F: drivers/watchdog/ | |
14218 | F: include/linux/watchdog.h | |
c117ab84 | 14219 | F: include/uapi/linux/watchdog.h |
3527761c | 14220 | |
727fd697 KS |
14221 | WHISKEYCOVE PMIC GPIO DRIVER |
14222 | M: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com> | |
14223 | L: linux-gpio@vger.kernel.org | |
14224 | S: Maintained | |
14225 | F: drivers/gpio/gpio-wcove.c | |
14226 | ||
b22e00f3 DH |
14227 | WIIMOTE HID DRIVER |
14228 | M: David Herrmann <dh.herrmann@googlemail.com> | |
14229 | L: linux-input@vger.kernel.org | |
14230 | S: Maintained | |
14231 | F: drivers/hid/hid-wiimote* | |
14232 | ||
82abbea7 RD |
14233 | WILOCITY WIL6210 WIRELESS DRIVER |
14234 | M: Maya Erez <qca_merez@qca.qualcomm.com> | |
14235 | L: linux-wireless@vger.kernel.org | |
14236 | L: wil6210@qca.qualcomm.com | |
14237 | S: Supported | |
14238 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
14239 | F: drivers/net/wireless/ath/wil6210/ | |
14240 | F: include/uapi/linux/wil6210_uapi.h | |
14241 | ||
14242 | WIMAX STACK | |
14243 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> | |
14244 | M: linux-wimax@intel.com | |
14245 | L: wimax@linuxwimax.org (subscribers-only) | |
14246 | S: Supported | |
14247 | W: http://linuxwimax.org | |
14248 | F: Documentation/wimax/README.wimax | |
14249 | F: include/linux/wimax/debug.h | |
14250 | F: include/net/wimax.h | |
14251 | F: include/uapi/linux/wimax.h | |
14252 | F: net/wimax/ | |
14253 | ||
e258b80e | 14254 | WINBOND CIR DRIVER |
364e9e18 | 14255 | M: David Härdeman <david@hardeman.nu> |
e258b80e | 14256 | S: Maintained |
116ab806 | 14257 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 14258 | |
c36a483d WBG |
14259 | WINSYSTEMS EBC-C384 WATCHDOG DRIVER |
14260 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
14261 | L: linux-watchdog@vger.kernel.org | |
14262 | S: Maintained | |
14263 | F: drivers/watchdog/ebc-c384_wdt.c | |
14264 | ||
9c26df9b WBG |
14265 | WINSYSTEMS WS16C48 GPIO DRIVER |
14266 | M: William Breathitt Gray <vilhelm.gray@gmail.com> | |
14267 | L: linux-gpio@vger.kernel.org | |
14268 | S: Maintained | |
14269 | F: drivers/gpio/gpio-ws16c48.c | |
e258b80e | 14270 | |
5fc14680 | 14271 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 14272 | M: Miloslav Trmac <mitr@volny.cz> |
5fc14680 | 14273 | S: Maintained |
679655da | 14274 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 14275 | |
1da177e4 | 14276 | WL3501 WIRELESS PCMCIA CARD DRIVER |
724c6b35 | 14277 | L: linux-wireless@vger.kernel.org |
0c59d281 | 14278 | S: Odd fixes |
679655da | 14279 | F: drivers/net/wireless/wl3501* |
1da177e4 | 14280 | |
055bcbcb | 14281 | WOLFSON MICROELECTRONICS DRIVERS |
3a1672bb | 14282 | L: patches@opensource.cirrus.com |
f0e03dbd RF |
14283 | T: git https://github.com/CirrusLogic/linux-drivers.git |
14284 | W: https://github.com/CirrusLogic/linux-drivers/wiki | |
b75ea16a | 14285 | S: Supported |
3768f0b1 | 14286 | F: Documentation/hwmon/wm83?? |
f494993f CK |
14287 | F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt |
14288 | F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt | |
14289 | F: Documentation/devicetree/bindings/mfd/arizona.txt | |
9f7c7cee | 14290 | F: Documentation/devicetree/bindings/mfd/wm831x.txt |
af1c5386 | 14291 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 14292 | F: drivers/clk/clk-wm83*.c |
9c309598 | 14293 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 14294 | F: drivers/leds/leds-wm83*.c |
25b273ba | 14295 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 14296 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 14297 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
14298 | F: drivers/input/misc/wm831x-on.c |
14299 | F: drivers/input/touchscreen/wm831x-ts.c | |
14300 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
14301 | F: drivers/mfd/arizona* |
14302 | F: drivers/mfd/wm*.c | |
12ebc137 | 14303 | F: drivers/mfd/cs47l24* |
8c0984e5 | 14304 | F: drivers/power/supply/wm83*.c |
b75ea16a MB |
14305 | F: drivers/rtc/rtc-wm83*.c |
14306 | F: drivers/regulator/wm8*.c | |
cdf4275e | 14307 | F: drivers/regulator/arizona* |
3860e6c4 | 14308 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 14309 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 14310 | F: include/linux/mfd/arizona/ |
3860e6c4 | 14311 | F: include/linux/mfd/wm831x/ |
b75ea16a | 14312 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 14313 | F: include/linux/mfd/wm8400* |
22161f3e | 14314 | F: include/linux/regulator/arizona* |
59ec6da2 | 14315 | F: include/linux/wm97xx.h |
055bcbcb | 14316 | F: include/sound/wm????.h |
9c309598 | 14317 | F: sound/soc/codecs/arizona.? |
055bcbcb | 14318 | F: sound/soc/codecs/wm* |
12ebc137 | 14319 | F: sound/soc/codecs/cs47l24* |
b75ea16a | 14320 | |
3e6cd7a4 TH |
14321 | WORKQUEUE |
14322 | M: Tejun Heo <tj@kernel.org> | |
badb7f5e | 14323 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
3e6cd7a4 TH |
14324 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
14325 | S: Maintained | |
14326 | F: include/linux/workqueue.h | |
14327 | F: kernel/workqueue.c | |
e7f08ffb | 14328 | F: Documentation/core-api/workqueue.rst |
3e6cd7a4 | 14329 | |
39ac9f48 CYT |
14330 | X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS |
14331 | M: Chen-Yu Tsai <wens@csie.org> | |
14332 | L: linux-kernel@vger.kernel.org | |
14333 | S: Maintained | |
14334 | N: axp[128] | |
14335 | ||
1da177e4 | 14336 | X.25 NETWORK LAYER |
8bf28059 | 14337 | M: Andrew Hendry <andrew.hendry@gmail.com> |
1da177e4 | 14338 | L: linux-x25@vger.kernel.org |
8bf28059 | 14339 | S: Odd Fixes |
679655da JP |
14340 | F: Documentation/networking/x25* |
14341 | F: include/net/x25* | |
14342 | F: net/x25/ | |
1da177e4 | 14343 | |
e2d1d6c0 | 14344 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
14345 | M: Thomas Gleixner <tglx@linutronix.de> |
14346 | M: Ingo Molnar <mingo@redhat.com> | |
14347 | M: "H. Peter Anvin" <hpa@zytor.com> | |
bcde563c | 14348 | M: x86@kernel.org |
981c3a4f | 14349 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 14350 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 14351 | S: Maintained |
679655da JP |
14352 | F: Documentation/x86/ |
14353 | F: arch/x86/ | |
e2d1d6c0 | 14354 | |
c1f5c54b IM |
14355 | X86 MCE INFRASTRUCTURE |
14356 | M: Tony Luck <tony.luck@intel.com> | |
487ba8e8 | 14357 | M: Borislav Petkov <bp@alien8.de> |
c1f5c54b IM |
14358 | L: linux-edac@vger.kernel.org |
14359 | S: Maintained | |
14360 | F: arch/x86/kernel/cpu/mcheck/* | |
14361 | ||
79ebdc95 BP |
14362 | X86 MICROCODE UPDATE SUPPORT |
14363 | M: Borislav Petkov <bp@alien8.de> | |
14364 | S: Maintained | |
14365 | F: arch/x86/kernel/cpu/microcode/* | |
14366 | ||
7683e9e5 LT |
14367 | X86 PLATFORM DRIVERS |
14368 | M: Darren Hart <dvhart@infradead.org> | |
14369 | M: Andy Shevchenko <andy@infradead.org> | |
14370 | L: platform-driver-x86@vger.kernel.org | |
14371 | T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git | |
14372 | S: Maintained | |
14373 | F: drivers/platform/x86/ | |
14374 | F: drivers/platform/olpc/ | |
14375 | ||
f0905c5a AL |
14376 | X86 VDSO |
14377 | M: Andy Lutomirski <luto@amacapital.net> | |
14378 | L: linux-kernel@vger.kernel.org | |
14379 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso | |
14380 | S: Maintained | |
d603c8e1 | 14381 | F: arch/x86/entry/vdso/ |
f0905c5a | 14382 | |
d6fad502 | 14383 | XC2028/3028 TUNER DRIVER |
5dc8a864 MCC |
14384 | M: Mauro Carvalho Chehab <mchehab@s-opensource.com> |
14385 | M: Mauro Carvalho Chehab <mchehab@kernel.org> | |
d6fad502 | 14386 | L: linux-media@vger.kernel.org |
a825eaec | 14387 | W: https://linuxtv.org |
d6fad502 MCC |
14388 | T: git git://linuxtv.org/media_tree.git |
14389 | S: Maintained | |
14390 | F: drivers/media/tuners/tuner-xc2028.* | |
14391 | ||
7683e9e5 LT |
14392 | XEN BLOCK SUBSYSTEM |
14393 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
14394 | M: Roger Pau Monné <roger.pau@citrix.com> | |
11dbb52b | 14395 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c4468085 | 14396 | S: Supported |
7683e9e5 LT |
14397 | F: drivers/block/xen-blkback/* |
14398 | F: drivers/block/xen* | |
c4468085 | 14399 | |
77bfb479 | 14400 | XEN HYPERVISOR ARM |
85d1a29d | 14401 | M: Stefano Stabellini <sstabellini@kernel.org> |
11dbb52b | 14402 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
85d1a29d | 14403 | S: Maintained |
77bfb479 SS |
14404 | F: arch/arm/xen/ |
14405 | F: arch/arm/include/asm/xen/ | |
14406 | ||
b475e83f | 14407 | XEN HYPERVISOR ARM64 |
85d1a29d | 14408 | M: Stefano Stabellini <sstabellini@kernel.org> |
11dbb52b | 14409 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
85d1a29d | 14410 | S: Maintained |
b475e83f SS |
14411 | F: arch/arm64/xen/ |
14412 | F: arch/arm64/include/asm/xen/ | |
14413 | ||
7683e9e5 LT |
14414 | XEN HYPERVISOR INTERFACE |
14415 | M: Boris Ostrovsky <boris.ostrovsky@oracle.com> | |
14416 | M: Juergen Gross <jgross@suse.com> | |
14417 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) | |
14418 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git | |
14419 | S: Supported | |
14420 | F: arch/x86/xen/ | |
14421 | F: drivers/*/xen-*front.c | |
14422 | F: drivers/xen/ | |
14423 | F: arch/x86/include/asm/xen/ | |
14424 | F: include/xen/ | |
14425 | F: include/uapi/xen/ | |
14426 | F: Documentation/ABI/stable/sysfs-hypervisor-xen | |
14427 | F: Documentation/ABI/testing/sysfs-hypervisor-xen | |
14428 | ||
9b57e1a7 | 14429 | XEN NETWORK BACKEND DRIVER |
8386040b | 14430 | M: Wei Liu <wei.liu2@citrix.com> |
7d3cfc36 | 14431 | M: Paul Durrant <paul.durrant@citrix.com> |
11dbb52b | 14432 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
9b57e1a7 IC |
14433 | L: netdev@vger.kernel.org |
14434 | S: Supported | |
14435 | F: drivers/net/xen-netback/* | |
14436 | ||
c5f8e29d KRW |
14437 | XEN PCI SUBSYSTEM |
14438 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 14439 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
14440 | S: Supported |
14441 | F: arch/x86/pci/*xen* | |
14442 | F: drivers/pci/*xen* | |
14443 | ||
15d03609 JG |
14444 | XEN PVSCSI DRIVERS |
14445 | M: Juergen Gross <jgross@suse.com> | |
14446 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) | |
14447 | L: linux-scsi@vger.kernel.org | |
14448 | S: Supported | |
14449 | F: drivers/scsi/xen-scsifront.c | |
14450 | F: drivers/xen/xen-scsiback.c | |
14451 | F: include/xen/interface/io/vscsiif.h | |
14452 | ||
c5f8e29d KRW |
14453 | XEN SWIOTLB SUBSYSTEM |
14454 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 14455 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
14456 | S: Supported |
14457 | F: arch/x86/xen/*swiotlb* | |
14458 | F: drivers/xen/*swiotlb* | |
14459 | ||
1da177e4 | 14460 | XFS FILESYSTEM |
721a0edf | 14461 | M: Darrick J. Wong <darrick.wong@oracle.com> |
541d48f0 DC |
14462 | M: linux-xfs@vger.kernel.org |
14463 | L: linux-xfs@vger.kernel.org | |
14464 | W: http://xfs.org/ | |
721a0edf | 14465 | T: git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git |
1da177e4 | 14466 | S: Supported |
679655da JP |
14467 | F: Documentation/filesystems/xfs.txt |
14468 | F: fs/xfs/ | |
1da177e4 | 14469 | |
8a3b7a25 | 14470 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
14471 | M: Anirudha Sarangi <anirudh@xilinx.com> |
14472 | M: John Linn <John.Linn@xilinx.com> | |
8a3b7a25 | 14473 | S: Maintained |
14474 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
14475 | ||
238b8721 | 14476 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 14477 | M: Peter Korsgaard <jacmet@sunsite.dk> |
238b8721 PK |
14478 | L: linux-serial@vger.kernel.org |
14479 | S: Maintained | |
df621252 | 14480 | F: drivers/tty/serial/uartlite.c |
238b8721 | 14481 | |
df330515 LP |
14482 | XILINX VIDEO IP CORES |
14483 | M: Hyun Kwon <hyun.kwon@xilinx.com> | |
14484 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
14485 | L: linux-media@vger.kernel.org | |
14486 | T: git git://linuxtv.org/media_tree.git | |
14487 | S: Supported | |
14488 | F: Documentation/devicetree/bindings/media/xilinx/ | |
14489 | F: drivers/media/platform/xilinx/ | |
a5562f65 | 14490 | F: include/uapi/linux/xilinx-v4l2-controls.h |
df330515 | 14491 | |
74316949 EB |
14492 | XILLYBUS DRIVER |
14493 | M: Eli Billauer <eli.billauer@gmail.com> | |
14494 | L: linux-kernel@vger.kernel.org | |
14495 | S: Supported | |
14496 | F: drivers/char/xillybus/ | |
14497 | ||
39d2675a NH |
14498 | XRA1403 GPIO EXPANDER |
14499 | M: Nandor Han <nandor.han@ge.com> | |
14500 | M: Semi Malinen <semi.malinen@ge.com> | |
14501 | L: linux-gpio@vger.kernel.org | |
14502 | S: Maintained | |
14503 | F: drivers/gpio/gpio-xra1403.c | |
14504 | F: Documentation/devicetree/bindings/gpio/gpio-xra1403.txt | |
14505 | ||
f620e4b8 MF |
14506 | XTENSA XTFPGA PLATFORM SUPPORT |
14507 | M: Max Filippov <jcmvbkbc@gmail.com> | |
14508 | L: linux-xtensa@linux-xtensa.org | |
14509 | S: Maintained | |
14510 | F: drivers/spi/spi-xtensa-xtfpga.c | |
57b7068d | 14511 | F: sound/soc/xtensa/xtfpga-i2s.c |
f620e4b8 | 14512 | |
1da177e4 | 14513 | YAM DRIVER FOR AX.25 |
8b58be88 | 14514 | M: Jean-Paul Roubelat <jpr@f6fbb.org> |
1da177e4 LT |
14515 | L: linux-hams@vger.kernel.org |
14516 | S: Maintained | |
679655da JP |
14517 | F: drivers/net/hamradio/yam* |
14518 | F: include/linux/yam.h | |
1da177e4 | 14519 | |
82abbea7 RD |
14520 | YAMA SECURITY MODULE |
14521 | M: Kees Cook <keescook@chromium.org> | |
14522 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip | |
14523 | S: Supported | |
14524 | F: security/yama/ | |
14525 | F: Documentation/admin-guide/LSM/Yama.rst | |
14526 | ||
af64a5eb | 14527 | YEALINK PHONE DRIVER |
8b58be88 | 14528 | M: Henk Vergonet <Henk.Vergonet@gmail.com> |
af64a5eb HV |
14529 | L: usbb2k-api-dev@nongnu.org |
14530 | S: Maintained | |
e2ba5731 | 14531 | F: Documentation/input/yealink.rst |
679655da | 14532 | F: drivers/input/misc/yealink.* |
af64a5eb | 14533 | |
1da177e4 | 14534 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 14535 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
14536 | W: http://yaina.de/jreuter/ |
14537 | W: http://www.qsl.net/dl1bke/ | |
14538 | L: linux-hams@vger.kernel.org | |
14539 | S: Maintained | |
679655da JP |
14540 | F: Documentation/networking/z8530drv.txt |
14541 | F: drivers/net/hamradio/*scc.c | |
14542 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 14543 | |
0cf31ec1 | 14544 | ZBUD COMPRESSED PAGE ALLOCATOR |
0bb181c7 | 14545 | M: Seth Jennings <sjenning@redhat.com> |
aab45453 | 14546 | M: Dan Streetman <ddstreet@ieee.org> |
0cf31ec1 SJ |
14547 | L: linux-mm@kvack.org |
14548 | S: Maintained | |
14549 | F: mm/zbud.c | |
14550 | F: include/linux/zbud.h | |
14551 | ||
7c0c3afb | 14552 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
14553 | M: Daniel Drake <dsd@gentoo.org> |
14554 | M: Ulrich Kunitz <kune@deine-taler.de> | |
7c0c3afb | 14555 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 14556 | L: linux-wireless@vger.kernel.org |
7c0c3afb DD |
14557 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
14558 | S: Maintained | |
6948300c | 14559 | F: drivers/net/wireless/zydas/zd1211rw/ |
7c0c3afb | 14560 | |
82abbea7 | 14561 | ZD1301 MEDIA DRIVER |
a40cc814 AP |
14562 | M: Antti Palosaari <crope@iki.fi> |
14563 | L: linux-media@vger.kernel.org | |
14564 | W: https://linuxtv.org/ | |
14565 | W: http://palosaari.fi/linux/ | |
14566 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
14567 | S: Maintained | |
82abbea7 | 14568 | F: drivers/media/usb/dvb-usb-v2/zd1301* |
a40cc814 | 14569 | |
82abbea7 | 14570 | ZD1301_DEMOD MEDIA DRIVER |
d4c554c3 AP |
14571 | M: Antti Palosaari <crope@iki.fi> |
14572 | L: linux-media@vger.kernel.org | |
14573 | W: https://linuxtv.org/ | |
14574 | W: http://palosaari.fi/linux/ | |
14575 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
14576 | S: Maintained | |
82abbea7 | 14577 | F: drivers/media/dvb-frontends/zd1301_demod* |
d4c554c3 | 14578 | |
20263029 DS |
14579 | ZPOOL COMPRESSED PAGE STORAGE API |
14580 | M: Dan Streetman <ddstreet@ieee.org> | |
14581 | L: linux-mm@kvack.org | |
14582 | S: Maintained | |
14583 | F: mm/zpool.c | |
14584 | F: include/linux/zpool.h | |
14585 | ||
1da177e4 | 14586 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 14587 | L: mjpeg-users@lists.sourceforge.net |
f63145e2 | 14588 | L: linux-media@vger.kernel.org |
1da177e4 | 14589 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
a825eaec | 14590 | T: hg https://linuxtv.org/hg/v4l-dvb |
f63145e2 | 14591 | S: Odd Fixes |
90d72ac6 | 14592 | F: drivers/media/pci/zoran/ |
1da177e4 | 14593 | |
6920f2cc MK |
14594 | ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER |
14595 | M: Minchan Kim <minchan@kernel.org> | |
14596 | M: Nitin Gupta <ngupta@vflare.org> | |
74f3037c | 14597 | R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
6920f2cc MK |
14598 | L: linux-kernel@vger.kernel.org |
14599 | S: Maintained | |
14600 | F: drivers/block/zram/ | |
14601 | F: Documentation/blockdev/zram.txt | |
14602 | ||
8b4a4080 | 14603 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 14604 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
8b4a4080 | 14605 | S: Maintained |
df621252 | 14606 | F: drivers/tty/serial/zs.* |
8b4a4080 | 14607 | |
eae70d06 MK |
14608 | ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR |
14609 | M: Minchan Kim <minchan@kernel.org> | |
14610 | M: Nitin Gupta <ngupta@vflare.org> | |
41192a2d | 14611 | R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
eae70d06 MK |
14612 | L: linux-mm@kvack.org |
14613 | S: Maintained | |
14614 | F: mm/zsmalloc.c | |
14615 | F: include/linux/zsmalloc.h | |
d02be50d | 14616 | F: Documentation/vm/zsmalloc.txt |
eae70d06 | 14617 | |
0cf31ec1 | 14618 | ZSWAP COMPRESSED SWAP CACHING |
0bb181c7 | 14619 | M: Seth Jennings <sjenning@redhat.com> |
534c9dc9 | 14620 | M: Dan Streetman <ddstreet@ieee.org> |
0cf31ec1 SJ |
14621 | L: linux-mm@kvack.org |
14622 | S: Maintained | |
14623 | F: mm/zswap.c | |
14624 | ||
1da177e4 | 14625 | THE REST |
8b58be88 | 14626 | M: Linus Torvalds <torvalds@linux-foundation.org> |
34d03cc1 | 14627 | L: linux-kernel@vger.kernel.org |
8a6e2535 | 14628 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 14629 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 14630 | S: Buried alive in reporters |
34d03cc1 JP |
14631 | F: * |
14632 | F: */ |